/* ================= RESET & TOKENS ================= */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #26336e;
  --navy-deep: #1f2a5c;
  --cream: #f4eee3;
  --cream-2: #efe8db;
  --lavender: #d9d2ea;
  --lavender-2: #cfc7e6;
  --gold: #b8965a;
  --olive: #6f8a2e;
  --ink: #2c2c33;
  --muted: #6a6a72;
  --white: #ffffff;
  --radius: 26px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Jost", "Segoe UI", sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3, h4 { font-family: var(--serif); color: var(--navy); font-weight: 600; }

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .06em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 40px;
  padding: 15px 28px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn-whatsapp {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 10px 24px rgba(38, 51, 110, .28);
}
.btn-whatsapp:hover { background: var(--navy-deep); transform: translateY(-2px); }

.btn-light {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .18);
}
.btn-light:hover { transform: translateY(-2px); }

/* whatsapp glyph */
.wa-icon {
  width: 20px; height: 20px; flex: 0 0 20px;
  border-radius: 50%;
  background: #fff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 0 0-8.6 15L2 22l5.2-1.4A10 10 0 1 0 12 2zm5.9 14.1c-.2.7-1.4 1.3-2 1.4-.5.1-1.1.1-1.8-.1-.4-.1-1-.3-1.7-.6-3-1.3-4.9-4.3-5.1-4.5-.1-.2-1.2-1.5-1.2-2.9s.7-2 1-2.3c.2-.3.5-.4.7-.4h.5c.2 0 .4 0 .6.5l.8 2c.1.1.1.3 0 .5l-.4.5-.3.3c-.1.1-.2.3-.1.5s.5.9 1.1 1.4c.8.7 1.4.9 1.6 1s.4.1.5-.1l.7-.8c.2-.2.3-.2.5-.1l1.9.9c.2.1.4.2.4.3.1.2.1.6-.1 1.3z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 0 0-8.6 15L2 22l5.2-1.4A10 10 0 1 0 12 2zm5.9 14.1c-.2.7-1.4 1.3-2 1.4-.5.1-1.1.1-1.8-.1-.4-.1-1-.3-1.7-.6-3-1.3-4.9-4.3-5.1-4.5-.1-.2-1.2-1.5-1.2-2.9s.7-2 1-2.3c.2-.3.5-.4.7-.4h.5c.2 0 .4 0 .6.5l.8 2c.1.1.1.3 0 .5l-.4.5-.3.3c-.1.1-.2.3-.1.5s.5.9 1.1 1.4c.8.7 1.4.9 1.6 1s.4.1.5-.1l.7-.8c.2-.2.3-.2.5-.1l1.9.9c.2.1.4.2.4.3.1.2.1.6-.1 1.3z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.btn-whatsapp .wa-icon { background: #fff; }
.wa-icon-green { background: #2aa81a; }

/* ================= HEADER ================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 238, 227, .92);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
  height: 70px;
}

.brand { display: flex; align-items: center; text-decoration: none; }
.brand-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
  transform: scale(1.65);
  transform-origin: left center;
}

.main-nav {
  display: flex;
  gap: 34px;
  margin-left: auto;
}
.main-nav a {
  text-decoration: none;
  color: var(--navy);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .1em;
  padding-bottom: 4px;
  position: relative;
}
.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--navy);
}

.header-cta { padding: 12px 22px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 2px; background: var(--navy);
  transition: .3s;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  background-image: url("images/Hero (2).png");
  background-position: right center;
  background-size: 88% auto;
  background-repeat: no-repeat;
  padding: 70px 0 80px;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-copy {
  max-width: 520px;
}

.hero-copy h1 {
  font-size: clamp(42px, 5.2vw, 70px);
  line-height: 1.05;
  font-weight: 600;
  color: var(--navy);
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.leaf-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
  max-width: 220px;
}
.leaf-divider .line { flex: 1; height: 1px; background: var(--gold); opacity: .8; }

.hero-copy p {
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 32px;
  font-weight: 400;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

/* ================= FEATURES ================= */
.features {
  position: relative;
  z-index: 10;
  background: var(--cream-2);
  border-radius: var(--radius);
  margin: -48px auto 0;
  max-width: 1124px;
  padding: 6px;
  box-shadow: 0 14px 34px rgba(38, 51, 110, 0.08);
}
.feature-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 26px;
  padding-bottom: 26px;
}
.feature { display: flex; align-items: center; gap: 14px; flex: 1; }
.feature-text h3 {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--navy);
  line-height: 1.15;
}
.feature-text p { font-size: 13px; color: var(--muted); }
.feature-sep { width: 1px; align-self: stretch; background: #d9cfbd; margin: 4px 0; }
.br-narrow { display: none; }

/* ================= BLEND ================= */
.blend { padding: 44px 0; }
.blend-card {
  background: url("images/middle (2).png") center center / cover no-repeat;
  border-radius: 30px;
  display: flex;
  align-items: center;
  padding: 56px 48px;
  min-height: 420px;
  overflow: hidden;
}
.blend-copy { max-width: 480px; }
.blend-copy h2 { font-size: clamp(28px, 3.4vw, 38px); margin-bottom: 16px; }
.blend-copy p { color: #4b4a5a; max-width: 420px; margin-bottom: 22px; }
.ingredients { list-style: none; margin-bottom: 28px; }
.ingredients li {
  display: flex; align-items: center; gap: 12px;
  color: var(--navy);
  font-size: 17px;
  padding: 5px 0;
}
.leaf-bullet {
  width: 16px; height: 16px; flex: 0 0 16px;
  background: var(--navy);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 20c0-8 6-14 14-15-1 9-6 15-14 15z' fill='black'/%3E%3Cpath d='M8 18c3-4 7-7 10-8' stroke='white' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 20c0-8 6-14 14-15-1 9-6 15-14 15z' fill='black'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ================= WHY ================= */
.why { padding: 20px 0 56px; }
.why-inner {
  background: var(--cream-2);
  border-radius: 30px;
  padding: 48px;
  position: relative;
}
.why-inner > h2 {
  font-size: clamp(28px, 3.4vw, 38px);
  margin-bottom: 36px;
  line-height: 1.15;
}
.why-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: start;
}
.why-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.benefit { text-align: center; }
.benefit-icon,
.info-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #e6dfd0;
  margin-bottom: 14px;
}
.benefit h4 { font-size: 20px; margin-bottom: 6px; }
.benefit p { font-size: 13px; color: var(--muted); }

.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.info-card {
  background: #ece5d7;
  border-radius: 18px;
  padding: 24px 22px;
}
.info-icon { background: transparent; width: 44px; height: 44px; margin-bottom: 8px; }
.info-card h4 { font-size: 19px; margin-bottom: 10px; line-height: 1.2; }
.info-card p { font-size: 14px; color: var(--muted); }

/* ================= CTA ================= */
.cta { padding: 0 0 60px; }
.cta-card {
  background: url("images/footer (2).png") center center / cover no-repeat;
  border-radius: 30px;
  text-align: center;
  padding: 64px 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cta-card h2 { color: #fff; font-size: clamp(26px, 3.2vw, 36px); margin-bottom: 12px; }
.cta-card p { color: #d6dbf0; margin-bottom: 28px; }

/* ================= FOOTER ================= */
.site-footer {
  background: radial-gradient(120% 160% at 20% 0%, #2a3873 0%, #26336e 50%, #1f2a5c 100%);
  color: #fff;
  padding: 48px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand-col { display: flex; flex-direction: column; gap: 10px; }
.footer-brand .brand-logo {
  height: 48px;
  transform: scale(1.5);
  transform-origin: left center;
  filter: brightness(0) invert(1);
}
.footer-tagline {
  font-family: var(--serif);
  font-size: 15px;
  color: rgba(255,255,255,.7);
  margin-top: 6px;
  font-style: italic;
}
.footer-social { display: flex; align-items: center; gap: 10px; margin-top: 4px; }
.footer-social .social {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s ease, transform .2s ease;
}
.footer-social .social:hover { background: rgba(255,255,255,.25); transform: translateY(-2px); }
.footer-social .social svg { fill: #fff; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s ease;
}
.footer-col ul li a:hover { color: #fff; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,.65);
  font-size: 14px;
  line-height: 1.5;
}
.footer-contact li svg { flex-shrink: 0; margin-top: 2px; stroke: rgba(255,255,255,.5); }
.footer-bottom {
  padding: 18px 0;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.4); }

/* ================= SECTION HEADING ================= */
.section-heading {
  font-size: clamp(28px, 3.4vw, 38px);
  text-align: center;
  margin-bottom: 40px;
  color: var(--navy);
  line-height: 1.15;
}

/* ================= REVIEWS CAROUSEL ================= */
.reviews { padding: 20px 0 56px; }
.reviews-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
.carousel-track-wrapper {
  overflow: hidden;
  flex: 1;
  border-radius: 22px;
}
.carousel-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.review-card {
  min-width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--cream-2);
  border-radius: 22px;
  padding: 36px 40px;
  box-sizing: border-box;
}
.review-photo {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 16px;
  overflow: hidden;
}
.review-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-body { flex: 1; }
.review-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 16px;
  font-style: italic;
}
.review-name {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 2px;
}
.review-role {
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
  opacity: .75;
}
.carousel-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: var(--cream);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s ease, transform .2s ease;
}
.carousel-arrow:hover { background: var(--navy); color: #fff; transform: scale(1.08); }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d4cfc5;
  border: none;
  cursor: pointer;
  transition: background .3s ease, transform .3s ease;
}
.carousel-dot.active {
  background: var(--navy);
  transform: scale(1.2);
}

/* ================= FAQ ================= */
.faq { padding: 20px 0 56px; }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #ddd5c8;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  text-align: left;
  transition: color .2s ease;
}
.faq-question:hover { color: var(--navy-deep); }
.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--cream-2);
  position: relative;
  transition: background .3s ease, transform .3s ease;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--navy);
  border-radius: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform .3s ease, opacity .3s ease;
}
.faq-icon::before { width: 14px; height: 2px; }
.faq-icon::after { width: 2px; height: 14px; }
.faq-item.open .faq-icon { background: var(--navy); transform: rotate(180deg); }
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after { background: #fff; }
.faq-item.open .faq-icon::after { opacity: 0; transform: translate(-50%, -50%) rotate(90deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.faq-answer-inner {
  padding: 0 4px 20px;
}
.faq-answer-inner p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ================= PAGE HERO ================= */
.page-hero {
  background: var(--cream-2);
  padding: 48px 0;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ================= RESPONSIVE ================= */
.mobile-hero-cta {
  display: none;
}

@media (max-width: 960px) {
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    box-shadow: 0 12px 24px rgba(0,0,0,.08);
  }
  .main-nav.open { max-height: 320px; padding: 12px 28px 20px; }
  .main-nav a { padding: 12px 0; }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  /* Header */
  .site-header {
    background: #f4eee3;
  }
  .header-inner {
    height: 60px;
    padding: 6px 16px;
    justify-content: space-between;
  }
  .brand-logo {
    height: 38px;
    max-height: 40px;
    transform: none;
  }

  /* Hero Section */
  .hero {
    position: relative;
    background-image: url("images/Mobile Hero.jpeg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0;
    min-height: 0;
    aspect-ratio: 3 / 4;
    overflow: hidden;
  }
  .hero::before {
    display: none;
  }
  .hero-inner {
    display: none;
  }

  /* Feature Bar */
  .features {
    margin: -14px 10px 16px;
    border-radius: 12px;
    padding: 2px 4px;
    box-shadow: 0 6px 18px rgba(38, 51, 110, 0.06);
    background: #f7f2ea;
  }
  .feature-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 2px;
    padding: 8px 4px;
  }
  .feature {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 2px;
  }
  .feature-icon {
    flex-shrink: 0;
  }
  .feature-icon svg {
    width: 16px;
    height: 16px;
  }
  .feature-text h3 {
    font-size: 8px;
    line-height: 1.15;
    letter-spacing: 0;
  }
  .feature-text p {
    font-size: 7.5px;
    line-height: 1.1;
    margin-top: 1px;
  }
  .feature-sep {
    display: block;
    width: 1px;
    height: 22px;
    background: rgba(38, 51, 110, 0.12);
    flex-shrink: 0;
  }
  .br-narrow {
    display: inline;
  }

  /* Mobile Hero CTA Button */
  .mobile-hero-cta {
    display: flex;
    justify-content: center;
    margin: 4px 0 22px;
  }
  .mobile-hero-cta .btn-whatsapp {
    width: 82%;
    max-width: 320px;
    justify-content: center;
    padding: 11px 20px;
    font-size: 12px;
    border-radius: 30px;
  }

  /* Blend / About Card */
  .blend-card {
    padding: 22px 16px;
    border-radius: 18px;
    background: url("images/Mobile UI Middle Image.png") center center / cover no-repeat;
    min-height: 250px;
  }
  .blend-copy {
    max-width: 60%;
  }
  .blend-copy h2 {
    font-size: 19px;
    line-height: 1.15;
    margin-bottom: 8px;
  }
  .blend-copy p {
    font-size: 11px;
    line-height: 1.35;
    margin-bottom: 10px;
  }
  .ingredients {
    margin-bottom: 14px;
    gap: 5px;
  }
  .ingredients li {
    font-size: 10.5px;
    gap: 5px;
  }
  .blend-copy .btn-whatsapp {
    padding: 8px 14px;
    font-size: 10.5px;
    border-radius: 30px;
  }

  /* Why / Product Section */
  .why {
    padding: 20px 0 32px;
  }
  .why .container {
    padding: 0;
    max-width: 100%;
  }
  .why-inner {
    padding: 24px 16px;
    border-radius: 0;
  }
  .why-inner h2 {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 18px;
    text-align: center;
  }
  .why-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .why-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    background: #f7f2ea;
    border-radius: 14px;
    padding: 14px 6px;
  }
  .benefit {
    text-align: center;
  }
  .benefit-icon svg {
    width: 22px;
    height: 22px;
  }
  .benefit h4 {
    font-size: 12px;
    margin: 4px 0 2px;
  }
  .benefit p {
    font-size: 9.5px;
    line-height: 1.2;
  }

  .why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .info-card {
    background: #f7f2ea;
    border-radius: 14px;
    padding: 14px 10px;
    text-align: left;
  }
  .info-icon svg {
    width: 26px;
    height: 26px;
  }
  .info-card h4 {
    font-size: 12px;
    margin: 6px 0 3px;
  }
  .info-card p {
    font-size: 9.5px;
    line-height: 1.25;
  }

  /* CTA Section */
  .cta-card {
    padding: 32px 16px;
    border-radius: 18px;
    min-height: 210px;
  }
  .cta-card h2 {
    font-size: 19px;
    line-height: 1.2;
    margin-bottom: 8px;
  }
  .cta-card p {
    font-size: 11px;
    margin-bottom: 18px;
  }
  .cta-card .btn {
    padding: 9px 20px;
    font-size: 11px;
  }

  /* Reviews */
  .reviews { padding: 10px 0 32px; }
  .section-heading { font-size: 20px; margin-bottom: 24px; }
  .carousel-arrow { display: none; }
  .reviews-carousel { gap: 0; }
  .carousel-track-wrapper { border-radius: 16px; }
  .review-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 18px;
    gap: 14px;
    border-radius: 16px;
  }
  .review-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
  }
  .review-text { font-size: 13px; line-height: 1.6; margin-bottom: 10px; }
  .review-body { display: flex; flex-direction: column; width: 100%; }
  .review-name { font-size: 14px; text-align: right; }
  .review-role { font-size: 12px; text-align: right; }
  .carousel-dots { margin-top: 14px; }
  .carousel-dot { width: 8px; height: 8px; }

  /* FAQ */
  .faq { padding: 10px 0 32px; }
  .faq-question { font-size: 14px; padding: 16px 2px; }
  .faq-icon { width: 24px; height: 24px; }
  .faq-icon::before { width: 12px; }
  .faq-icon::after { height: 12px; }
  .faq-answer-inner p { font-size: 13px; }

  /* Footer */
  .site-footer {
    padding: 32px 0 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
  }
  .footer-brand .brand-logo {
    transform: scale(1.3);
  }
  .footer-social { justify-content: center; }
  .footer-col h4 { font-size: 12px; margin-bottom: 10px; }
  .footer-col ul li { margin-bottom: 8px; }
  .footer-col ul li a { font-size: 13px; }
  .footer-contact li { font-size: 13px; }
  .footer-bottom { padding: 14px 0; }
  .footer-bottom p { font-size: 11px; }

  /* Page Hero */
  .page-hero { padding: 28px 0; }
  .page-hero h1 { font-size: 24px; }
  .page-hero p { font-size: 13px; }
}
