/* =============================================================
   CSS RESET & BASE TYPOGRAPHY – Elegant Classic Style
   ============================================================= */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  background: #F2F2F2;
  color: #232C3C;
  line-height: 1.7;
  min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: #232C3C;
  font-weight: 700;
  line-height: 1.2;
}
h1 {
  font-size: 2.375rem; /* 38px */
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 20px;
}
h3 {
  font-size: 1.375rem; /* 22px */
  margin-bottom: 14px;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1.125rem; /* 18px */
  margin-bottom: 10px;
  font-weight: 500;
}
p, ul, ol {
  color: #232C3C;
  font-size: 1rem;
  margin-bottom: 1.4em;
}
ul, ol {
  padding-left: 1.5em;
}
li {
  margin-bottom: 0.5em;
}
a {
  color: #A8996F;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #232C3C;
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: #232C3C;
  background: #F7F6F3;
  border-left: 4px solid #A8996F;
  margin-bottom: 16px;
  padding: 12px 20px 12px 24px;
}

/* =============================================================
   CONTAINER & LAYOUT FOUNDATION
   ============================================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

@media (min-width: 900px) {
  .content-wrapper.feature-grid,
  .content-wrapper.usp-list,
  .content-wrapper.text-image-section,
  .content-wrapper.content-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
  }
  .content-wrapper.feature-grid > div,
  .content-wrapper.usp-list > ul,
  .content-wrapper.usp-list > .partner-logos,
  .content-wrapper.content-grid > * {
    flex: 1 1 0;
    min-width: 220px;
    max-width: 320px;
  }
}

/* =============================================================
   HEADER & NAVIGATION
   ============================================================= */
header {
  background: #fff;
  box-shadow: 0 2px 18px rgba(35,44,60,0.07);
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 14px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 24px;
}
.main-nav {
  display: flex;
  gap: 32px;
}
.main-nav a {
  font-family: 'Playfair Display', serif;
  color: #232C3C;
  font-size: 1.1rem;
  opacity: 0.88;
  letter-spacing: 0.01em;
  position: relative;
  padding: 8px 0;
  transition: color .2s, opacity .2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #A8996F;
  opacity: 1;
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
}

.cta-btn {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  background: #232C3C;
  color: #fff;
  padding: 12px 32px;
  border: none;
  border-radius: 28px;
  margin-left: 20px;
  box-shadow: 0 2px 12px rgba(35,44,60,0.06);
  cursor: pointer;
  text-align: center;
  transition: background .2s, box-shadow .2s, color .2s;
  letter-spacing: 0.025em;
  font-weight: 500;
  outline: none;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #A8996F;
  color: #232C3C;
  box-shadow: 0 4px 20px rgba(168,153,111,0.13);
  text-decoration: none;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #232C3C;
  display: none;
  cursor: pointer;
  z-index: 1002;
  margin-left: 6px;
}
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: block;
  }
  .cta-btn {
    margin-left: 0;
  }
}

/* -------------------------------------------------------------
   MOBILE MENU OVERLAY
   ------------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,44,60,0.93);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.65,.05,.36,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.4rem;
  color: #fff;
  margin: 28px 32px 16px 0;
  cursor: pointer;
  z-index: 1003;
  transition: color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #A8996F;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}
.mobile-nav a {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.4rem;
  padding: 10px 32px;
  border-radius: 4px;
  transition: background 0.18s, color .2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #A8996F;
  color: #232C3C;
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =============================================================
   HERO SECTIONS
   ============================================================= */
.hero {
  background: linear-gradient(135deg, #F2F2F2 75%, #A8996F 120%);
  padding: 0;
  border-bottom: 1px solid #e5e2da;
}
.hero .container {
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  gap: 22px;
  max-width: 650px;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.hero p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.18rem;
  color: #444;
  margin-bottom: 10px;
}
@media (min-width: 900px) {
  .hero .container {
    padding-top: 74px;
    padding-bottom: 78px;
    align-items: flex-start;
  }
  .hero h1 {
    font-size: 3rem;
  }
}

/* =============================================================
   SECTIONS & SPACING
   ============================================================= */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0px 2px 16px rgba(35,44,60,0.03);
}
@media (max-width: 600px) {
  section {
    padding: 30px 8px;
    margin-bottom: 38px;
  }
}

.section { margin-bottom: 60px; padding: 40px 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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 16px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 30px;
  background: #F7F6F3;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(35,44,60,0.06);
  min-width: 286px;
  max-width: 470px;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* Features Grid (".feature-grid") */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid > div {
  background: #fff;
  border: 1px solid #ece8df;
  box-shadow: 0 2px 12px rgba(168,153,111,0.05);
  border-radius: 14px;
  padding: 26px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 225px;
  min-width: 225px;
  max-width: 320px;
  transition: box-shadow 0.18s, border .18s;
}
.feature-grid > div:hover, .feature-grid > div:focus {
  border: 1px solid #A8996F;
  box-shadow: 0 6px 24px rgba(168,153,111,0.11);
}
.feature-grid img {
  width: 40px;
  margin-bottom: 16px;
}

/* USP List & Partner Logos */
.usp-list {
  display: flex;
  flex-direction: row;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
}
.usp-list ul {
  list-style: disc;
  padding-left: 1.3em;
  margin-bottom: 0;
}
.partner-logos {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  margin-top: 12px;
}
.partner-logos img {
  width: 48px;
  opacity: 0.89;
  filter: grayscale(20%) contrast(105%);
}
@media (max-width: 700px) {
  .usp-list {
    flex-direction: column;
    gap: 20px;
  }
  .partner-logos {
    margin-top: 10px;
  }
}

/* Blog List */
.blog-list .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.blog-list article {
  background: #fff;
  border: 1px solid #ece8df;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(35,44,60,0.06);
  padding: 30px 22px;
  transition: box-shadow .18s, border .18s;
}
.blog-list article:hover, .blog-list article:focus-within {
  border: 1px solid #A8996F;
  box-shadow: 0 6px 18px rgba(168,153,111,0.09);
}
.blog-list h3 {
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}
.blog-list a {
  color: #232C3C;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: underline;
  transition: color 0.18s;
}
.blog-list a:hover, .blog-list a:focus {
  color: #A8996F;
}

/* About / Legal Sections */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 12px;
}

/* Thank-you Section */
.thank-you {
  text-align: left;
  background: #fff;
  border-radius: 16px;
  max-width: 670px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 3px 24px rgba(35,44,60,0.07);
}
.thank-you h1 {
  margin-bottom: 18px;
}
.thank-you ul {
  padding-left: 1.25em;
  margin-bottom: 0.75em;
}

/* =============================================================
   FOOTER
   ============================================================= */
footer {
  background: #232C3C;
  color: #fff;
  padding: 54px 0 30px 0;
  margin-top: 50px;
  border-top: 2px solid #A8996F;
  font-size: 15px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 220px;
}
.footer-brand img {
  width: 52px;
  height: auto;
  margin-bottom: 2px;
}
.tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  color: #ECE8DF;
  opacity: 0.9;
  font-style: italic;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 180px;
}
.footer-nav a {
  color: #ECE8DF;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  opacity: 0.92;
  transition: color .16s, opacity .2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #A8996F;
  opacity: 1;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #fff;
  opacity: 0.88;
  min-width: 235px;
  font-size: 0.98rem;
}
.contact-details img {
  height: 18px;
  width: 18px;
  vertical-align: middle;
  margin-right: 4px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 14px;
  }
}

/* =============================================================
   BUTTONS & INTERACTIVE
   ============================================================= */
button, .cta-btn, input[type="submit"], input[type="button"] {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  transition: background .19s, color .19s, box-shadow .18s;
  outline: none;
}
button:focus, .cta-btn:focus, input[type="submit"]:focus {
  box-shadow: 0 0 0 3px #A8996F33;
}

/* =============================================================
   COOKIE CONSENT BANNER
   ============================================================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #232C3C;
  color: #fff;
  padding: 22px 20px 18px 20px;
  box-shadow: 0 -3px 18px rgba(35,44,60,.11);
  z-index: 1400;
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .32s cubic-bezier(.51,.19,.31,.91);
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner .cookie-text {
  font-size: 1rem;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  flex: 1 1 0;
  color: #ECE8DF;
  max-width: 700px;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-btn {
  border-radius: 30px;
  padding: 8px 26px;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  border: none;
  background: #fff;
  color: #232C3C;
  margin: 0;
  cursor: pointer;
  transition: background .18s, color .18s;
}
.cookie-btn.accept {
  background: #A8996F;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #F2F2F2;
  color: #232C3C;
}
.cookie-btn.reject {
  background: #ECE8DF;
  color: #232C3C;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #A8996F;
  color: #fff;
}
.cookie-btn.settings {
  background: none;
  border: 1px solid #ECE8DF;
  color: #fff;
  padding: 8px 24px;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #A8996F;
  color: #fff;
  border-color: #A8996F;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 15px 6px 11px 8px;
  }
  .cookie-banner .cookie-btns {
    gap: 8px;
  }
}

/* ===== Cookie Modal ===== */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(0.97);
  background: #fff;
  color: #232C3C;
  border-radius: 18px;
  box-shadow: 0 8px 60px 12px rgba(35,44,60,0.19);
  z-index: 2000;
  min-width: 330px;
  max-width: 94vw;
  width: 100%;
  padding: 38px 34px 28px 34px;
  display: none;
  flex-direction: column;
  gap: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s cubic-bezier(.53,.19,.31,.91);
}
.cookie-modal.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  animation: modalIn .3s cubic-bezier(.53,.19,.31,.91);
}
@keyframes modalIn {
  0% { opacity: 0; transform: translate(-50%,-52%) scale(0.91); }
  100% { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.4rem;
  margin-bottom: 0.7em;
  color: #232C3C;
  font-family: 'Playfair Display', serif;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.cookie-toggle {
  width: 32px;
  height: 18px;
  border-radius: 999px;
  background: #ece8df;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  border: 1px solid #ccc;
  transition: background .17s;
}
.cookie-toggle[data-checked="true"] {
  background: #A8996F;
  border-color: #927f49;
}
.cookie-toggle .slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: left .18s;
}
.cookie-toggle[data-checked="true"] .slider {
  left: 16px;
}
.cookie-modal .category-title {
  font-family: 'Playfair Display', serif;
  color: #232C3C;
  font-weight: 600;
}
.cookie-modal .category-desc {
  font-size: 0.99rem;
  color: #767676;
}
.cookie-modal .btn-row {
  display: flex;
  gap: 18px;
  margin-top: 14px;
}
.cookie-modal .cookie-btn {
  padding: 10px 28px;
  border-radius: 28px;
}
.cookie-modal .cookie-btn.cancel {
  background: #ECE8DF;
  color: #232C3C;
  border: none;
}
.cookie-modal .cookie-btn.cancel:hover, .cookie-modal .cookie-btn.cancel:focus {
  background: #A8996F;
  color: #fff;
}

@media (max-width: 520px) {
  .cookie-modal {
    min-width: 0;
    padding: 18px 7px 14px 9px;
  }
}


/* =============================================================
   MISC UTILITIES & FLEXBOX RULES
   ============================================================= */
.mb-0 { margin-bottom: 0!important; }
.mb-20 { margin-bottom: 20px!important; }
.text-center { text-align: center!important; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.align-center { align-items: center!important; }
.align-start { align-items: flex-start!important; }
.gap-20 { gap: 20px!important; }
.gap-32 { gap: 32px!important; }

/* Custom scrollbar for elegance */
::-webkit-scrollbar {
  width: 12px;
  background: #ece8df; 
}
::-webkit-scrollbar-thumb {
  background: #A8996F;
  border-radius: 8px;
}

/* =============================================================
   RESPONSIVENESS
   ============================================================= */
@media (max-width: 1100px) {
  .container { padding: 0 8px; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.38rem; }
  h3 { font-size: 1.12rem; }
  .feature-grid > div, .content-wrapper.feature-grid > div {
    min-width: 170px;
    padding: 18px 8px 14px 8px;
  }
}
@media (max-width: 576px) {
  .container { padding: 0 2px; }
  footer { padding: 32px 0 18px 0; }
  section { border-radius: 10px; }
}

/* -------------------------------------------------------------
   MICRO-INTERACTIONS & SUBTLE ANIMATIONS
   ------------------------------------------------------------- */
.cta-btn, .feature-grid > div, .blog-list article, .testimonial-card, .cookie-btn, .mobile-menu, .mobile-menu-close {
  transition: box-shadow .19s, background .19s, color .19s, border .18s;
}
.feature-grid > div:hover, .blog-list article:hover, .testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(168,153,111,0.14);
}

/* -------------------------------------------------------------
   FOCUS STATES
   ------------------------------------------------------------- */
a:focus, .cta-btn:focus, button:focus, .cookie-btn:focus {
  outline: 1.5px solid #A8996F;
  outline-offset: 2px;
  transition: outline-color .15s;
}

/* -------------------------------------------------------------
   DARK TEXT FOR TESTIMONIALS/REVIEWS (Critical Contrast)
   ------------------------------------------------------------- */
.testimonial-card, .testimonial-card blockquote, .testimonial-card strong {
  color: #232C3C;
  background: #F7F6F3;
}


/* =============================================================
   END OF CSS
   ============================================================= */
