/* =============================
   CSS RESET & NORMALIZE
============================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #f7f7f2;
  color: #232946;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  /* For mobile tap color */
  -webkit-tap-highlight-color: rgba(238, 187, 195, 0.15);
}
a {
  color: #232946;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #eebbc3;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}

/* =============================
   BRAND FONT IMPORTS
============================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

/* =============================
   LUXURY PREMIUM COLORS & VARIABLES
============================= */
:root {
  --primary: #232946;
  --secondary: #eebbc3;
  --accent: #f7f7f2;
  --gold: #C7A966;
  --gold-light: #ead59c;
  --footer-dark: #16182a;
  --card-bg: #fff;
  --cta-gradient: #eebbc3;
  --text-dark: #232946;
  --text-light: #f7f7f2;
  --shadow-card: 0 4px 24px 0 rgba(35,41,70,0.06), 0 1.5px 3px 0 rgba(199,169,102,0.10);
  --shadow-hover: 0 8px 36px 0 rgba(35,41,70,0.13), 0 4px 8px 0 rgba(199,169,102,0.17);
  --radius-md: 16px;
  --radius-lg: 20px;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 40px;
  --spacing-xl: 60px;
  --transition: 0.3s cubic-bezier(.38,.1,.31,.99);
}

/* =============================
   GLOBAL TYPOGRAPHY
============================= */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 24px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  margin-bottom: 20px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0;
  color: var(--text-dark);
  margin-bottom: 16px;
}
p {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 18px;
}
blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  font-style: italic;
  font-size: 1.125rem;
  color: var(--primary);
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
  color: var(--primary);
}

/* =============================
   CONTAINER, SPACING & GRID
============================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.section {
  margin-bottom: var(--spacing-xl);
  padding: var(--spacing-lg) 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Helper for card spacing */
section > .container > .content-wrapper > ul > li,
section > .container > .content-wrapper > ol > li {
  margin-bottom: 20px;
}

/* =============================
   HEADER & MAIN NAV
============================= */
header {
  background: var(--accent);
  box-shadow: 0 1px 8px 0 rgba(35,41,70,0.05);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}
header img {
  max-height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--primary);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-bottom-color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}
.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  background: var(--gold);
  color: var(--text-light);
  border: none;
  outline: none;
  border-radius: var(--radius-md);
  padding: 10px 34px;
  box-shadow: var(--shadow-card);
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.22s, transform 0.18s;
  text-align: center;
  margin-left: 16px;
  text-shadow: 0 1px 8px rgba(35,41,70,0.15);
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--gold-light);
  color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.03);
}

/* =============================
   MOBILE NAVIGATION
============================= */
.mobile-menu-toggle {
  display: none;
  background: var(--gold);
  color: var(--text-light);
  border: none;
  border-radius: 44px;
  padding: 10px 16px;
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  margin-left: 8px;
  transition: background 0.18s, color 0.2s;
  z-index: 102;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--secondary);
  background: var(--gold-light);
  color: var(--primary);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,41,70, 0.96);
  box-shadow: 0 0 40px 0 rgba(35,41,70,0.45);
  transform: translateX(100%);
  transition: transform var(--transition);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 32px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: var(--gold);
  border: none;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  margin: 16px 32px 36px 0;
  transition: color 0.23s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--gold-light);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  align-items: flex-end;
  padding: 0 32px;
}
.mobile-nav a {
  color: var(--gold);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 10px 0;
  transition: color 0.14s, background 0.2s;
  text-align: right;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
  background: rgba(247,247,242,0.07);
  border-radius: 6px;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  header .container {
    gap: 6px;
  }
  .main-nav {
    gap: 11px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }
  .cta-btn {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* =============================
   HERO / CTA / MAIN SECTION
============================= */
.hero {
  padding-top: 56px;
  padding-bottom: 56px;
  background-color: var(--card-bg);
  background-image: linear-gradient(125deg, #f7f7f2 62%, #ead59c25 100%);
  border-bottom: 2px solid var(--gold-light);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 14px;
  max-width: 800px;
}
.hero h1 {
  background: linear-gradient(90deg, var(--primary), var(--gold) 65%, var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.hero p {
  font-size: 1.125rem;
  max-width: 600px;
  line-height: 1.7;
}
.cta {
  background: var(--gold-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 36px 24px;
  margin-top: 30px;
}
.cta .cta-btn {
  margin-top: 18px;
}

/* =============================
   FEATURES SECTIONS
============================= */
.features {
  background: var(--accent);
}
.features .content-wrapper > h2 {
  color: var(--primary);
  margin-bottom: 18px;
}
.features ul {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.features ul li {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 28px 22px;
  min-width: 220px;
  flex: 1 1 240px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.22s, transform 0.22s;
  border: 1.5px solid #ead59c35;
}
.features ul li:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--gold-light);
  transform: translateY(-4px) scale(1.025);
}
.features ul img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 4px;
}
.features ul h3 {
  font-size: 1.12rem;
  color: var(--primary);
  margin-bottom: 5px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.features ul p {
  font-size: 15px;
  font-family: 'Roboto', Arial, sans-serif;
}
@media (max-width: 900px) {
  .features ul {
    flex-direction: column;
    gap: 20px;
  }
  .features ul li {
    width: 100%;
    min-width: unset;
    max-width: unset;
  }
}

/* =============================
   ABOUT, VALUES, TEAM, SERVICES
============================= */
.about {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  margin-top: 20px;
}
.values ul, .services ul, .team ul, .about ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.values ul li,
.services ul li,
.team ul li,
.about ul li {
  padding-left: 0;
  position: relative;
  font-size: 1rem;
  color: var(--text-dark);
  background: none;
  line-height: 1.6;
}
.team ul li {
  background: var(--accent);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 0 0.6rem 0.02rem #eebbc315;
}

/* =============================
   TESTIMONIALS SECTION
============================= */
.testimonials {
  background: var(--accent);
}
.testimonials .content-wrapper {
  gap: 20px;
}
.testimonial-card {
  background: var(--card-bg);
  box-shadow: var(--shadow-card);
  border-radius: 14px;
  padding: 24px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border: 1.5px solid #ead59c35;
  color: var(--text-dark);
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #232946;
  line-height: 1.7;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #746c4d;
}

/* =============================
   LEGAL, STORY, CONTACT
============================= */
.legal {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 40px 24px;
}
.story-highlight {
  background: #ead59c18;
  border: 1px solid var(--gold-light);
  padding: 18px 20px;
  border-radius: 13px;
  font-size: 1.06rem;
  color: var(--primary);
  margin-bottom: 14px;
}
.contact ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 22px;
}
.contact ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
}
.contact ul img {
  width: 28px;
  height: 28px;
}
.contact .cta {
  margin-top: 18px;
  background: #ead59c25;
}

/* =============================
   FOOTER
============================= */
footer {
  background: var(--footer-dark);
  color: var(--text-light);
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: 30px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  margin-bottom: 8px;
}
.footer-nav a {
  color: var(--gold);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--secondary); }
footer p {
  color: var(--accent);
  font-size: 0.98rem;
}

@media (max-width: 600px) {
  .footer-nav {
    flex-direction: column;
    gap: 8px;
  }
  footer .container {
    gap: 8px;
  }
}

/* =============================
   THANK YOU SECTION
============================= */
.thankyou {
  padding: 60px 0 30px 0;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  margin-top: 54px;
  text-align: center;
}
.thankyou h1 {
  color: var(--primary);
  margin-bottom: 24px;
}

/* =============================
   COOKIE CONSENT BANNER
============================= */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #16182aF7;
  color: var(--accent);
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  padding: 21px 26px 21px 26px;
  box-shadow: 0 -7px 32px #C7A96626;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  animation: cookie-banner-in 0.45s cubic-bezier(.57,.61,.33,1) both;
}
@keyframes cookie-banner-in {
  0% { transform: translateY(80%); opacity: 0.3; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-left: 10px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 7px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.cookie-banner .cookie-accept {
  background: var(--gold);
  color: var(--text-light);
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: var(--gold-light);
  color: var(--primary);
}
.cookie-banner .cookie-reject {
  background: transparent;
  border: 1.5px solid var(--secondary);
  color: var(--secondary);
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .cookie-settings {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: var(--gold);
  color: var(--primary);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 12px 18px 12px;
  }
  .cookie-banner .cookie-buttons {
    margin-left: 0;
    width: 100%;
    gap: 8px;
  }
}

/* =============================
   COOKIE PREFERENCES MODAL
============================= */
.cookie-modal-overlay {
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,41,70,0.86);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-in 0.18s;
}
@keyframes modal-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  box-shadow: 0 8px 64px 0 rgba(35,41,70,0.21);
  border-radius: var(--radius-lg);
  padding: 36px 30px 24px 30px;
  max-width: 360px;
  width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.21rem;
  color: var(--primary);
  margin-bottom: 11px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
}
.cookie-modal label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.04rem;
  color: var(--primary);
}
.cookie-modal .cookie-always {
  color: #746c4d;
  font-size: 0.99rem;
  margin-left: 4px;
}
.cookie-modal .cookie-modal-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-close {
  background: transparent;
  color: var(--gold);
  border: none;
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 14px;
  right: 16px;
  transition: color 0.22s;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  color: var(--gold-light);
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 21px 10px 16px 10px;
    max-width: 98vw;
  }
}

/* =============================
   MEDIA QUERIES for RESPONSIVENESS
============================= */
@media (max-width: 1024px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.35rem; }
}
@media (max-width: 900px) {
  .container { padding: 0 12px; }
  .section { padding: var(--spacing-md) 10px; }
}
@media (max-width: 768px) {
  .content-wrapper, .content-grid, .card-container, .features ul {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .hero {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .cta {
    padding: 24px 10px;
    margin-top: 18px;
  }
  .thankyou {
    margin-top: 30px;
    padding: 24px 0 20px 0;
  }
}
@media (max-width: 550px) {
  h1, .h1 { font-size: 1.43rem; }
  h2, .h2 { font-size: 1.13rem; }
  .features ul li,
  .testimonials .testimonial-card,
  .about, .legal, .cta, .team ul li {
    padding: 16px 5px;
  }
  .footer-nav { flex-direction: column; gap: 8px; }
  .container { padding: 0 4px; }
}

/* =============================
   FOCUS STATES & ACCESSIBILITY
============================= */
a:focus, button:focus, .cta-btn:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* =============================
   ANIMATION & MICROSCOPIC INTERACTIONS
============================= */
.card, .testimonial-card, .features ul li, .cta, .about, .legal, .team ul li {
  transition: box-shadow 0.22s, border-color 0.21s, transform 0.18s;
}
.card:hover, .card:focus, .testimonial-card:hover, .testimonial-card:focus, .about:hover, .about:focus {
  box-shadow: var(--shadow-hover);
  border-color: var(--gold-light);
  transform: translateY(-2px) scale(1.01);
}

/* =============================
   FINER GOLD ACCENTS
============================= */
h1, h2, .h1, .h2, .footer-nav a:hover, .main-nav a:hover {
  --gradient: linear-gradient(90deg, var(--gold) 15%, var(--primary) 90%);
}
h2, .h2 {
  border-left: 4px solid var(--gold);
  padding-left: 12px;
  background: none;
}

/* =============================
   REMOVE OVERLAP & SET Gaps
============================= */
section, .section {
  margin-bottom: var(--spacing-xl) !important;
  padding-top: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
}
section > .container > .content-wrapper > * {
  margin-bottom: 20px;
}
section > .container > .content-wrapper > *:last-child {
  margin-bottom: 0;
}

/* =============================
   FIXED FLEX UTILITY CLASSES
============================= */
.flex { display: flex; }
.flex-row { flex-direction: row; }
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-center { align-items: center; justify-content: center; }
.gap-20 { gap: 20px; }
.align-start { align-items: flex-start; }
.align-center { align-items: center; }
.space-between { justify-content: space-between; }

/* ===============
   Print support
================ */
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal-overlay, footer { display: none !important; }
}

/* End of style.css */
