/* ===== 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 {
  min-height: 100vh;
  background: #FAF9F7;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
}
img, picture {
  max-width: 100%;
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button, input, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}
*:focus {
  outline: 2px solid #C4A484;
  outline-offset: 2px;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #3a4430;
}
h1 { font-size: 2.75rem; line-height: 1.1; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 8px; }
h4, h5, h6 { font-size: 1.1rem; }

p, li, input, textarea, address {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #222;
}
p {
  margin-bottom: 16px;
}
strong, b { font-weight: 700; }
.subheadline {
  font-size: 1.125rem;
  margin-bottom: 32px;
  color: #556B2F;
}

/* ===== LUXURY PREMIUM COLORS & GOLD ACCENTS ===== */
:root {
  --brand-primary: #556B2F;
  --brand-secondary: #C4A484;
  --brand-accent: #F6F3EE;
  --gold: #C4A484;
  --gold-dark: #a47f4b;
  --background-light: #FAF9F7;
  --background: #F6F3EE;
  --text-dark: #222;
  --text-medium: #3a4430;
  --surface: #fff;
  --border-radius: 20px;
  --border-radius-sm: 14px;
  --shadow: 0 6px 24px 0 rgba(85,107,47,0.06), 0 1.5px 6px 0 rgba(196,164,132,0.09);
  --focus: #deb97c;
}

/* ===== MAIN LAYOUT ===== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--surface);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow);
  padding: 24px 20px;
  transition: box-shadow 0.20s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 12px 34px 0 rgba(196,164,132,0.18),0 2px 7px 0 rgba(85,107,47,0.10);
  transform: translateY(-3px) scale(1.018);
}
.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;
  background: var(--background-light);
  border-left: 4px solid var(--gold);
  border-radius: var(--border-radius-sm);
  box-shadow: 0 2px 14px 0 rgba(85,107,47,0.04), 0 0.5px 2px 0 rgba(196,164,132,0.06);
  margin-top: 18px;
  margin-bottom: 18px;
  color: #222;
}
.testimonial-card p {
  font-style: italic;
  color: #23230e;
  margin-bottom: 0;
}
.testimonial-card span {
  font-size: 1rem;
  color: var(--gold-dark);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===== FEATURE GRID (For icon lists) ===== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: var(--surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: left;
  padding: 32px 24px 26px 24px;
  flex: 1 1 225px;
  min-width: 260px;
  max-width: 300px;
  margin-bottom: 20px;
  border: 1.5px solid var(--background);
  transition: box-shadow 0.15s, border-color 0.15s, transform .15s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 22px 0 rgba(196,164,132,0.16),0 2px 7px 0 rgba(85,107,47,0.11);
  border-color: var(--gold);
  transform: translateY(-2.5px) scale(1.013);
}
.feature-grid img {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
}

/* ===== BUTTONS & CTAs ===== */
.cta, .cta.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--text-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .06em;
  font-size: 1.13rem;
  padding: 13px 36px;
  border: none;
  border-radius: 42px;
  box-shadow: 0 2px 16px 0 rgba(196,164,132,0.10);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.21s, transform .17s;
  margin-top: 12px;
}
.cta.primary:hover, .cta.primary:focus {
  background: #a47f4b;
  color: #fff;
  box-shadow: 0 4px 18px 0 #a47f4b22;
  transform: translateY(-2px) scale(1.025);
}
.cta.secondary {
  background: var(--brand-primary);
  color: #fff;
  border: 2px solid var(--gold);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--gold-dark);
  color: var(--brand-primary);
}
.button-small {
  font-size: 0.98rem;
  padding: 9px 20px;
}

/* ===== HEADER ===== */
header {
  background: var(--surface);
  box-shadow: 0 2px 13px 0 rgba(85,107,47,0.07), 0px 1px 2px 0 rgba(44,44,44,0.01);
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
  min-height: 68px;
  display: flex;
  align-items: center;
  flex-direction: row;
  padding: 0 0;
}
header .logo {
  margin-left: 24px;
  margin-right: 36px;
  display: flex;
  align-items: center;
}
header .logo img {
  height: 42px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 26px;
  flex: 1 1 auto;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--brand-primary);
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.16s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--gold-dark);
  border-bottom: 2px solid var(--gold);
}
header .cta.primary {
  margin: 0 24px 0 28px;
}
.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--brand-primary);
  font-size: 2.1rem;
  cursor: pointer;
  margin-right: 22px;
  padding: 4px 8px;
  display: none;
  z-index: 100;
  transition: color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: var(--gold-dark);
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(246,243,238,0.99);
  z-index: 2002;
  transform: translateX(100vw);
  transition: transform 0.33s cubic-bezier(.87, .03, .43, .92);
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--brand-primary);
  font-size: 2.0rem;
  align-self: flex-end;
  margin: 18px 24px 0 0;
  cursor: pointer;
  transition: color 0.16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--gold-dark);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 48px 0 0 0;
  padding: 0 34px;
}
.mobile-nav a {
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-primary);
  font-weight: 700;
  padding: 13px 0;
  border-bottom: 1.5px dotted var(--gold);
  transition: color 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--gold-dark);
}

/* ===== HERO/CTA BLOCKS ===== */
.cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: var(--background);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 14px 0 rgba(85,107,47,0.03),0 0.5px 2px 0 rgba(196,164,132,0.07);
  padding: 40px 20px;
  margin-top: 16px;
}
.cta-block h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--brand-primary);
}

/* ===== FORMS ===== */
form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--surface);
  padding: 32px 20px 26px;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 2px 14px 0 rgba(85,107,47,0.04);
  margin-bottom: 30px;
}
form label {
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--brand-primary);
}
input[type=text],
input[type=email],
input[type=password],
input[type=search],
textarea {
  border: 1.4px solid var(--gold);
  border-radius: 7px;
  background: #fff;
  padding: 10px 14px;
  font-size: 1rem;
  transition: border 0.15s, box-shadow 0.13s;
  color: var(--text-dark);
}
input:focus, textarea:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 2px #c4a48444;
}
button[type=submit].cta.primary {
  margin-top: 8px;
}

/* ===== LISTS & TABLES ===== */
ul, ol {
  margin-left: 26px;
  margin-bottom: 18px;
  color: #444;
}
ul li, ol li {
  margin-bottom: 8px;
}
ul li strong {
  color: var(--brand-primary);
}

/* ===== FOOTER ===== */
footer {
  background: #f5efe4;
  color: var(--brand-primary);
  padding: 38px 0 26px 0;
  font-size: 1rem;
  border-top: 1px solid var(--gold);
}
footer .container {
  padding: 0 20px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
}
footer .brand-tagline {
  display: block;
  margin-top: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  color: var(--gold-dark);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-nav a {
  color: var(--brand-primary);
  font-weight: 600;
  transition: color 0.17s;
  margin-bottom: 3px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--gold-dark);
}
.contact-info-summary {
  color: var(--text-dark);
  font-size: 0.97rem;
  line-height: 1.5;
}
.contact-info-summary address {
  font-style: normal;
  margin-bottom: 2px;
}
.social-links {
  display: flex;
  gap: 17px;
  align-items: center;
  margin-top: 8px;
}
.social-links a img {
  height: 30px;
  width: 30px;
  border-radius: 8px;
  transition: box-shadow 0.16s, transform .14s;
}
.social-links a:hover img, .social-links a:focus img {
  box-shadow: 0 4px 16px 0 #c4a48455;
  transform: scale(1.11);
}

/* ===== ACCESSIBILITY & VISUAL DETAILS ===== */
hr {
  border: none;
  border-top: 1.5px solid var(--gold);
  margin: 40px 0;
}

::-webkit-input-placeholder { color: #868686; opacity:1; }
::-moz-placeholder { color: #868686; opacity:1; }
:-ms-input-placeholder { color: #868686; opacity:1; }
::placeholder { color: #868686; opacity:1; }

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  z-index: 2040;
  background: #fffaf3;
  color: #3a4430;
  box-shadow: 0 -2px 14px 0 rgba(196,164,132,0.13);
  padding: 22px 18px 22px 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  font-size: 1rem;
  border-top: 2px solid var(--gold);
  animation: fadeinCookie 0.7s;
}
@keyframes fadeinCookie { from { opacity: 0; transform: translateY(72px);} to { opacity: 1; transform: translateY(0);} }
.cookie-banner .cookie-message {
  flex: 1 1 190px;
  max-width: 500px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
}
.cookie-banner .cta, .cookie-banner button {
  font-size: 1rem;
  padding: 7px 22px;
  border-radius: 40px;
  border: none;
  background: var(--gold);
  color: var(--brand-primary);
  font-weight: 700;
  transition: background .17s, color .16s;
  cursor: pointer;
}
.cookie-banner .cta:hover, .cookie-banner .cta:focus, .cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--gold-dark);
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: var(--brand-primary);
  color: #fff;
  border: 2px solid var(--gold);
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: var(--gold-dark);
  color: var(--brand-primary);
}

/* ===== COOKIE PREFERENCES MODAL ===== */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2042;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(34,34,34,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalFadein 0.27s;
}
@keyframes cookieModalFadein { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal {
  background: #fff;
  padding: 36px 26px 30px 26px;
  border-radius: 32px;
  box-shadow: 0 6px 36px 0 #C4A48422;
  min-width: 330px;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 21px;
  align-items: flex-start;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.5rem;
  color: var(--brand-primary);
  margin-bottom: 8px;
}
.cookie-modal .pref-group {
  margin-bottom: 13px;
  width: 100%;
}
.cookie-modal .pref-group label {
  font-weight: 500;
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  margin-bottom: 3px;
}
.cookie-modal .pref-group input[type=checkbox] {
  accent-color: var(--gold);
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  width: 100%;
  margin-top: 5px;
}
.cookie-modal .close-modal-btn {
  position: absolute;
  top: 11px; right: 12px;
  background: none;
  border: none;
  color: var(--brand-primary);
  font-size: 1.6rem;
  cursor: pointer;
  transition: color .15s;
}
.cookie-modal .close-modal-btn:hover,
.cookie-modal .close-modal-btn:focus {
  color: var(--gold-dark);
}

/* ===== UTILITIES & MICRO-INTERACTIONS ===== */
.shadow-gold {
  box-shadow: 0 6px 32px 0 #C4A48433;
}
.bordered {
  border: 1.8px solid var(--gold);
}
.rounded {
  border-radius: var(--border-radius);
}
.text-gold {
  color: var(--gold);
}

/* ===== RESPONSIVE: MOBILE FIRST ===== */
@media (max-width: 990px) {
  .container {
    max-width: 100%;
  }
  .feature-grid > div {
    min-width: 200px;
    flex: 1 1 200px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .feature-grid,
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .cta.primary {
    margin: 0 10px 0 10px;
    font-size: 1rem;
    padding: 9px 18px;
  }
  header .logo {
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media (max-width: 650px) {
  .container {
    padding: 0 10px;
  }
  .section {
    padding: 28px 8px;
  }
  .feature-grid > div {
    max-width: 98vw;
    min-width: unset;
  }
  .cta-block {
    padding: 24px 6px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 13px;
  }
  footer .content-wrapper {
    gap: 16px;
  }
}

/* ===== SPECIAL: THANK YOU PAGE ===== */
.next-steps {
  font-style: italic;
  color: var(--gold-dark);
  margin-bottom: 12px !important;
}

/* ===== TEXT SECTIONS & DETAILS ===== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.text-section ul {
  margin-left: 20px;
}
.text-section h3 {
  margin-bottom: 7px;
}

/* ===== ACCESSIBILITY ADDITIONS ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

/* ===== Z-INDEX LAYERS ===== */
header,
.mobile-menu,
.cookie-banner,
.cookie-modal-overlay {
  z-index: 2000;
}

/* ===== END ===== */
