/* =============================
   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, main, 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.6;
  background: #F5F0E3;
  color: #2E2C23;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  font-size: 16px;
}
main { min-height: 60vh; }

img { max-width: 100%; height: auto; vertical-align: middle; }
a { color: #B75C2B; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #c28d39; }
ul, ol { margin-left: 1.5em; }

/* ===============
   Font Faces
   =============== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Source+Sans+Pro:wght@400;600&display=swap');
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: #2E2C23;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: 2.7rem; line-height: 1.2; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; font-weight: 500; }
h4 { font-size: 1.1rem; }
.subheadline { font-size: 1.15rem; color: #8A3F1D; font-family: 'Source Sans Pro', Arial, sans-serif; margin-bottom: 22px; }

p, ul, ol, li, blockquote {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  color: #2E2C23;
  font-size: 1rem;
}
strong { color: #B75C2B; font-weight: 600; }

/* =================
   Layout Containers
   ================= */
.container {
  width: 100%;
  max-width: 1170px;
  padding-left: 18px;
  padding-right: 18px;
  margin-left: auto;
  margin-right: auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(46,44,35,0.04);
}

/* =================
   Header & Navigation
   ================= */
header {
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(46,44,35,0.045);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 18px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  color: #2E2C23;
  font-weight: 600;
  font-size: 1.06rem;
  padding: 7px 9px;
  border-radius: 6px;
  transition: background 0.16s, color 0.17s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: #B75C2B;
  background: #FAF5E4;
}
.main-nav a img { height: 32px; width: auto; margin-right: 10px; vertical-align: middle; }

.cta-btn {
  background-image: none;
  background: linear-gradient(90deg, #c6a159 10%, #e3b868 90%);
  color: #2E2C23;
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  font-weight: 700;
  padding: 10px 32px;
  border-radius: 28px;
  box-shadow: 0px 1px 10px 0 rgba(48,45,35,0.10);
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: box-shadow 0.18s, background 0.18s, color 0.12s;
  margin-left: 16px;
  text-shadow: 0 1px 0 #fff7dc;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #e3b868 10%, #c6a159 90%);
  color: #B75C2B;
  box-shadow: 0px 2px 18px 0 rgba(183, 92, 43, 0.18);
}

/* ================
   Mobile Navigation
   ================ */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #B75C2B;
  padding: 3px 14px;
  border-radius: 9px;
  box-shadow: 0 1px 6px 0 rgba(183,92,43,0.04);
  cursor: pointer;
  transition: background 0.14s;
  z-index: 41;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #F5F0E3;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 85vw;
  max-width: 360px;
  height: 100vh;
  background: #fff;
  box-shadow: -3px 0 24px 0 rgba(183,92,43,0.08);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.77,0.2,0.05,1.0);
  z-index: 50;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 22px 24px 27px;
}
@media (max-width: 900px) {
  .mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 85vw;
  max-width: 360px;
  height: 100vh;
  background: #fff;
  box-shadow: -3px 0 24px 0 rgba(183,92,43,0.08);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.77,0.2,0.05,1.0);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 22px 24px 27px;
}
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #B75C2B;
  font-size: 2.1rem;
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 99;
  cursor: pointer;
  transition: color 0.14s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #c6a159;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 50px;
}
.mobile-nav a {
  font-size: 1.22rem;
  color: #2E2C23;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  padding: 12px;
  border-radius: 7px;
  font-weight: 600;
  transition: background 0.17s, color 0.18s;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FCFAF4;
  color: #B75C2B;
}

@media (max-width: 1100px) {
  .main-nav { gap: 22px; }
}
@media (max-width: 900px) {
  .cta-btn { padding: 9px 22px; font-size: 1.05rem;}
  .main-nav { gap: 14px; }
}
@media (max-width: 768px) {
  .main-nav { display: none !important; }
  .cta-btn { margin-left: 0; }
  .mobile-menu-toggle { display: inline-block; }
  .container { padding-left: 12px; padding-right: 12px; }
  header .container { gap: 7px; }
}

/* =============================
   SECTION SPACING & STRUCTURE
============================= */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(183,92,43,0.08);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px;
  transition: box-shadow 0.18s, border 0.15s;
  border: 1.5px solid #F5F0E3;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px 0 rgba(183,92,43,0.21);
  border-color: #c6a159;
}

.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 {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px -2px rgba(170,130,30,0.09);
  border: 1.25px solid #E3D3A7;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
}
.testimonial-card blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.22rem;
  color: #2E2C23;
  font-style: italic;
  margin-bottom: 7px;
}
.testimonial-card p {
  color: #8A3F1D;
  font-weight: 500;
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 10px;
  padding: 20px 16px 18px 16px;
  box-shadow: 0 2px 8px 0 rgba(226,176,76,0.05);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.feature-grid > div {
  flex: 1 1 270px;
  min-width: 230px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #FAF7EF;
  box-shadow: 0 2px 12px 0 rgba(183,92,43,0.06);
  border-radius: 12px;
  border: 1.1px solid #EBE2C6;
  padding: 24px 18px 18px 18px;
  transition: box-shadow 0.15s, border 0.15s, transform 0.16s;
  margin-bottom: 20px;
  position: relative;
}
.feature-grid > div:hover, .feature-grid > div:focus-within {
  box-shadow: 0 4px 18px 0 rgba(183,92,43,0.19);
  border: 1.1px solid #c6a159;
  transform: translateY(-2px) scale(1.024);
}
.feature-grid img {
  margin-bottom: 17px;
  width: 54px;
  height: 54px;
}
.feature-grid h3 {
  color: #B75C2B;
  margin-bottom: 9px;
  font-size: 1.18rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}
.feature-grid p {
  margin-bottom: 0;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 19px;
}

ul, ol {
  margin-bottom: 18px;
}
li {
  margin-bottom: 7px;
  line-height: 1.6;
}
ul li span {
  color: #c6a159;
  font-weight: 600;
  font-size: 1.01em;
}

/* =================
   Footer
   ================= */
footer {
  background: #2E2C23;
  color: #fff;
  padding: 36px 0 27px 0;
  text-align: center;
  font-size: 1rem;
  margin-top: 48px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
  margin-bottom: 10px;
}
footer nav a {
  color: #F5F0E3;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 4px;
  transition: background 0.14s, color 0.15s;
}
footer nav a:hover, footer nav a:focus {
  background: #B75C2B;
  color: #fff;
}
footer p {
  margin-top: 12px;
  font-size: 0.96rem;
  color: #C9C1B7;
}

/* =============================
   Cookie Consent Banner Styles
   ============================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: #2E2C23;
  color: #fff;
  padding: 22px 14px 22px 14px;
  box-shadow: 0 -2px 18px 0 rgba(46,44,35,0.18);
  z-index: 1002;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(0.77,0.2,0.05,1.0), opacity 0.22s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(90px);
}
.cookie-banner p {
  color: #fff;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 1.08rem;
  flex: 1 1 240px;
  margin-right: 24px;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
}
.cookie-banner button, .cookie-banner .btn {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.01rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  padding: 8px 20px;
  transition: background 0.14s, color 0.13s, box-shadow 0.12s;
}
.cookie-banner .accept {
  background: linear-gradient(90deg, #c6a159 15%, #e3b868 85%);
  color: #2E2C23;
  border: 1px solid #c6a159;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #e3b868;
}
.cookie-banner .reject {
  background: #fff;
  color: #B75C2B;
  border: 1px solid #B75C2B;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #F5F0E3;
}
.cookie-banner .settings {
  background: #2E2C23;
  color: #fff;
  border: 1px solid #e3b868;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #423E27;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  z-index: 1100;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(46,44,35,0.43);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.22s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  color: #2E2C23;
  border-radius: 16px;
  min-width: 310px;
  max-width: 98vw;
  width: 410px;
  padding: 38px 34px 24px 34px;
  box-shadow: 0 8px 48px 0 rgba(183,92,43,0.09);
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-modal-content h2 {
  font-size: 1.35rem;
  color: #B75C2B;
}
.cookie-modal-content .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  margin-bottom: 11px;
}
.cookie-modal-content label {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  color: #2E2C23;
  font-weight: 500;
}
.cookie-modal-content .toggle {
  margin-right: 4px;
  width: 38px;
  height: 22px;
}
.cookie-modal-content .modal-btns {
  display: flex;
  gap: 13px;
  margin-top: 14px;
}
.cookie-modal-content button, .cookie-modal-content .btn {
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.14s, color 0.13s;
}
.cookie-modal-content .accept {
  background: linear-gradient(90deg, #c6a159 10%, #e3b868 90%);
  color: #2E2C23;
  border: 1px solid #c6a159;
}
.cookie-modal-content .accept:hover,
.cookie-modal-content .accept:focus {
  background: #e3b868;
}
.cookie-modal-content .close {
  background: #fff;
  color: #B75C2B;
  border: 1.2px solid #B75C2B;
}
.cookie-modal-content .close:hover,
.cookie-modal-content .close:focus {
  background: #F5F0E3;
}
.cookie-modal .modal-close-x {
  background: none;
  border: none;
  color: #B75C2B;
  font-size: 2rem;
  position: absolute;
  top: 13px; right: 18px;
  cursor: pointer;
  z-index: 2;
}
.cookie-modal .modal-close-x:hover, .cookie-modal .modal-close-x:focus { color: #c6a159; }

/* ==========
   Animations
   ========== */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(25px); }
  100% { opacity: 1; transform: translateY(0); }
}
section,.cta-btn,.card,.feature-grid>div,.testimonial-card,footer,.mobile-menu,.cookie-banner,.cookie-modal-content {
  animation: fadeInUp 0.7s ease;
}

/* Microinteractions */
a, .cta-btn, .card, .feature-grid > div, .mobile-menu-toggle, .mobile-menu-close, .cookie-banner button, .cookie-modal-content button {
  transition: background 0.18s, box-shadow 0.17s, color 0.14s, border 0.15s;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1000px) {
  .feature-grid > div {
    min-width: 40vw;
    max-width: 49vw;
  }
}
@media (max-width: 870px) {
  .feature-grid {
    gap: 14px;
  }
  .feature-grid > div {
    min-width: 80vw;
    max-width: 99vw;
  }
}
@media (max-width: 768px) {
  section, .section {
    margin-bottom: 45px;
    padding: 25px 7px;
    border-radius: 8px;
  }
  .content-wrapper, .text-section {
    gap: 16px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.25rem; }
  .feature-grid {
    flex-direction: column;
    gap: 14px;
  }
  .feature-grid > div {
    min-width: 97vw;
    max-width: 97vw;
    padding: 18px 12px 14px 13px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 8px 14px 8px;
    font-size: 0.97rem;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 12px 16px 13px;
  }
  .cookie-banner p {
    margin-right: 0;
    font-size: 1rem;
  }
}
@media (max-width: 475px) {
  .container {
    padding-left: 4px; padding-right: 4px;
  }
  h1 { font-size: 1.28rem; }
  h2 { font-size: 1rem; }
  .cta-btn { font-size: 0.96rem; padding: 8px 15px; }
}

/* ========== Accessibility ========== */
:focus {
  outline: 2.5px solid #c6a159;
  outline-offset: 1.5px;
}

/* Hide visually but accessible */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* ========== Extra UTILITIES ========== */
.mb-32 { margin-bottom: 32px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mt-32 { margin-top: 32px !important; }
.text-center { text-align: center !important; }

/* =======================
   LUXURY & PREMIUM GOLDS
   ======================= */
/* Gold accent border/deco (use where desired) */
.accent-gold {
  color: #c6a159 !important;
}
.gold-border {
  border: 1.5px solid #c6a159 !important;
}
.bg-gold {
  background: #FAF3DD !important;
}

/* ========================
   Ensure no overlap, always adequate spacing
   ======================== */
.card:not(:last-child), .testimonial-card:not(:last-child), .feature-grid > div:not(:last-child) {
  margin-bottom: 20px;
}

/* ========================
   END MAIN STYLES
   ======================== */