:root {
  --bg: #efe3d6;
  --bg-soft: #f7eee4;
  --surface: #fbf2e7;
  --surface-strong: #ecd7c0;
  --surface-accent: #dfc2a5;
  --surface-olive: #dde4d7;
  --surface-terra: #efe0d2;
  --surface-deep: #d8c0a8;
  --text: #2d221b;
  --heading: #211712;
  --muted: #67574b;
  --line: rgba(86, 62, 44, 0.18);
  --line-strong: rgba(86, 62, 44, 0.28);
  --green: #2f4c3d;
  --green-deep: #22362b;
  --green-soft: #72856f;
  --olive: #a6b195;
  --gold: #c79a48;
  --shadow: 0 24px 52px rgba(62, 43, 28, 0.13);
  --shadow-soft: 0 14px 28px rgba(62, 43, 28, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.32), transparent 26%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.22), transparent 22%),
    linear-gradient(180deg, #efe2d4 0%, #f4eadf 44%, #ecdfd1 100%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
svg { flex-shrink: 0; }

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}
.section { padding: 5.3rem 0; }
.warm-section {
  background:
    linear-gradient(180deg, rgba(116, 134, 102, 0.06), rgba(239, 227, 214, 0.12)),
    linear-gradient(180deg, rgba(255, 250, 245, 0.64), rgba(235, 221, 205, 0.52));
}
.accent-section {
  background:
    linear-gradient(180deg, rgba(219, 201, 182, 0.64), rgba(243, 235, 226, 0.46));
}
.soft-shadow { box-shadow: var(--shadow); }
.card {
  background: rgba(251, 242, 231, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.icon-instagram {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.58rem 0.96rem;
  border-radius: 999px;
  background: rgba(47, 76, 61, 0.12);
  color: var(--green);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.015em;
}
.eyebrow-soft {
  background: rgba(90, 112, 83, 0.13);
}
.section-heading {
  max-width: 860px;
  margin-bottom: 2.4rem;
}
.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-heading h2,
.hero h1,
.split-copy h2,
.about-copy h2,
.final-cta-copy h2,
.process-copy h2,
.booking-header h2,
.booking-page-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.01;
  margin: 0.9rem 0 1rem;
  color: var(--heading);
}
.hero h1 { font-size: clamp(2.55rem, 4vw, 4.15rem); max-width: 720px; }
.section-heading h2,
.split-copy h2,
.about-copy h2,
.final-cta-copy h2,
.process-copy h2,
.booking-header h2,
.booking-page-title { font-size: clamp(2rem, 3vw, 3rem); }

p {
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 1rem;
}
.section-heading p,
.split-copy p,
.about-copy p,
.process-copy p,
.final-cta-copy p,
.booking-header p,
.booking-page-copy p { font-size: 1.02rem; }
.lead { font-size: 1.14rem; max-width: 670px; }
.micro-note { margin-top: 0.95rem; color: #594a3f; font-size: 0.98rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.92rem 1.45rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary {
  background: linear-gradient(180deg, #35513f 0%, #213426 100%);
  color: #fff;
  box-shadow: 0 18px 32px rgba(34, 56, 42, 0.22);
}
.button-secondary {
  background: rgba(251, 244, 236, 0.85);
  border-color: rgba(47, 76, 61, 0.2);
  color: var(--green-deep);
}
.button-instagram {
  background: rgba(229, 214, 198, 0.88);
  border-color: rgba(95, 74, 56, 0.14);
}
.button.full { width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(247, 238, 228, 0.86);
  border-bottom: 1px solid rgba(95, 74, 56, 0.09);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 1rem;
}
.brand img { width: 210px; }
.desktop-nav { display: flex; align-items: center; gap: 1.8rem; }
.desktop-nav a { color: #3a3028; font-weight: 500; }
.nav-instagram { display: inline-flex; align-items: center; gap: 0.45rem; }
.desktop-cta { white-space: nowrap; }
.menu-toggle, .mobile-menu { display: none; }
.mobile-menu {
  padding: 1rem;
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.mobile-menu.open { display: grid; gap: 0.8rem; }

.hero-grid,
.split-layout,
.about-grid,
.process-grid,
.footer-grid,
.final-cta,
.booking-page-grid,
.booking-page-form-wrap,
.booking-helper-grid {
  display: grid;
  gap: 2rem;
}
.hero-grid {
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  min-height: min(88vh, 840px);
}
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 1.5rem; }
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 1.35rem 0 0;
}
.hero-tags li {
  list-style: none;
  padding: 0.72rem 0.98rem;
  border-radius: 999px;
  background: rgba(250, 242, 233, 0.78);
  border: 1px solid rgba(47, 76, 61, 0.13);
  color: #4d4035;
}
.hero-visual { position: relative; }
.hero-photo-frame {
  padding: 1rem;
  background: linear-gradient(180deg, #e7d2bc 0%, #f7eee4 100%);
  border-radius: var(--radius-xl);
}
.hero-photo-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
  border-radius: calc(var(--radius-xl) - 10px);
}

.symptom-grid,
.areas-grid,
.credentials-grid,
.booking-helper-grid {
  display: grid;
  gap: 1rem;
}
.symptom-grid, .areas-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.booking-helper-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 1.25rem; }
.info-card,
.area-card,
.credential-card,
.step-card,
.testimonial-card,
.booking-selected,
.helper-card,
.booking-page-note,
.booking-form,
.faq-item {
  background: rgba(251, 242, 231, 0.95);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.45rem;
  box-shadow: var(--shadow-soft);
}
.info-card:nth-child(3n+1),
.helper-warm,
.testimonial-warm,
.faq-item:nth-child(3n+1),
.credential-card:nth-child(3n+1) {
  background: linear-gradient(180deg, rgba(245, 231, 218, 0.96), rgba(251, 242, 231, 0.98));
}
.info-card:nth-child(3n+2),
.helper-olive,
.testimonial-olive,
.faq-item:nth-child(3n+2),
.credential-card:nth-child(3n+2) {
  background: linear-gradient(180deg, rgba(225, 232, 220, 0.95), rgba(246, 240, 233, 0.98));
}
.info-card:nth-child(3n),
.helper-terra,
.testimonial-terra,
.faq-item:nth-child(3n),
.credential-card:nth-child(3n) {
  background: linear-gradient(180deg, rgba(239, 224, 210, 0.96), rgba(250, 243, 236, 0.98));
}
.area-card:nth-child(1) { background: linear-gradient(180deg, rgba(228, 236, 224, 0.98), rgba(251, 242, 231, 0.98)); }
.area-card:nth-child(2) { background: linear-gradient(180deg, rgba(187, 214, 185, 0.98), rgba(226, 238, 219, 0.98)); }
.area-card:nth-child(3) { background: linear-gradient(180deg, rgba(235, 221, 207, 0.98), rgba(248, 239, 230, 0.98)); }
.step-card { background: linear-gradient(180deg, rgba(249, 240, 230, 0.98), rgba(245, 234, 221, 0.98)); }
.booking-selected { padding: 1.4rem; }
.info-card h3,
.area-card h3,
.credential-card h3,
.step-card h3,
.booking-selected h3,
.helper-card h3,
.booking-page-note h2,
.faq-item summary,
.footer-grid h3,
.timeline h3 {
  margin: 0 0 0.7rem;
  font-size: 1.08rem;
  color: #241b14;
}
.area-card ul { margin: 1rem 0 0; padding-left: 1.1rem; color: var(--muted); }
.area-card li { margin-bottom: 0.6rem; }

.split-layout { grid-template-columns: 0.96fr 1.04fr; align-items: start; }
.cards-stack { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.step-card span,
.timeline span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(47, 76, 61, 0.12);
  color: var(--green);
  font-weight: 800;
  margin-bottom: 0.9rem;
}

.process-grid { grid-template-columns: 0.88fr 1.12fr; align-items: center; }
.process-photo img,
.about-photo img,
.final-cta-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.process-photo img { min-height: 520px; object-position: center top; }
.about-photo img { min-height: 620px; object-position: center top; }
.final-cta-photo img { min-height: 500px; object-position: center top; }
.timeline { display: grid; gap: 1rem; }
.timeline article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(95, 74, 56, 0.12);
}
.timeline article:last-child { border-bottom: 0; }

.booking-shell {
  background: linear-gradient(180deg, rgba(247, 238, 228, 0.86), rgba(235, 220, 205, 0.72));
  border: 1px solid var(--line-strong);
  border-radius: calc(var(--radius-xl) + 4px);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.booking-header {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.5rem;
}
.booking-notes { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.booking-notes span {
  padding: 0.72rem 0.96rem;
  border-radius: 999px;
  background: rgba(47, 76, 61, 0.12);
  color: var(--green);
  font-weight: 700;
}
.schedule-widget { padding: 1.3rem; }
.schedule-topbar {
  display: grid;
  grid-template-columns: 54px 1fr 54px;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
.week-nav {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(47, 76, 61, 0.16);
  background: rgba(255,255,255,0.86);
  color: var(--green);
  font-size: 2rem;
}
.week-nav:disabled { opacity: 0.35; cursor: not-allowed; }
.week-label {
  text-align: center;
  font-weight: 700;
  color: #2f261f;
}
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
}
.day-column {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(253, 247, 240, 0.88);
  border: 1px solid var(--line);
  min-height: 260px;
}
.day-card {
  text-align: center;
  background: linear-gradient(180deg, rgba(221, 230, 217, 0.92), rgba(251, 242, 231, 0.96));
  border: 1px solid rgba(47, 76, 61, 0.18);
  border-radius: 18px;
  padding: 0.85rem 0.55rem;
  margin-bottom: 1rem;
}
.day-card .weekday { font-size: 0.88rem; font-weight: 700; color: var(--green); }
.day-card .day-number { font-size: 2rem; font-weight: 800; color: var(--heading); line-height: 1; margin: 0.35rem 0; }
.day-card .month { font-size: 0.82rem; font-weight: 700; color: #5f5145; }
.slot-list { display: grid; gap: 0.65rem; }
.slot-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(47, 76, 61, 0.14);
  background: rgba(255,255,255,0.92);
  color: #2c241e;
  font-weight: 700;
}
.slot-button:hover { background: var(--green); color: #fff; }
.day-empty {
  color: #7e6f61;
  font-size: 0.92rem;
  text-align: center;
  padding-top: 1rem;
}

.testimonials-carousel { overflow: hidden; }
.testimonial-track {
  display: flex;
  gap: 1rem;
  will-change: transform;
}
.testimonial-card {
  min-width: calc(50% - 0.5rem);
  position: relative;
  padding-top: 1.25rem;
}
.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 44px;
  width: 24px;
  height: 24px;
  background: inherit;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transform: rotate(-45deg);
}
.testimonial-soft {
  background: linear-gradient(180deg, rgba(243, 233, 221, 0.98), rgba(249, 242, 236, 0.98));
}
.stars {
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
  letter-spacing: 0.08em;
}
.testimonial-card strong { display: inline-block; margin-top: 0.7rem; color: var(--green); }

.about-grid,
.final-cta { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
.about-copy p:first-of-type { color: #3d3026; }
.credentials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 1.2rem; }

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.faq-item summary { cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin: 0.8rem 0 0; }

.final-cta {
  padding: 1.75rem;
  background: linear-gradient(180deg, rgba(247, 237, 226, 0.96), rgba(236, 223, 209, 0.92));
}
.instagram-handle {
  margin-top: 0.95rem;
  color: var(--green);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.site-footer {
  padding: 2rem 0 3.5rem;
  border-top: 1px solid rgba(95, 74, 56, 0.1);
  background: rgba(242, 232, 221, 0.88);
}
.footer-grid { grid-template-columns: 1.1fr 1fr 0.8fr; align-items: start; }
.footer-logo { width: 170px; margin-bottom: 0.8rem; }
.footer-grid a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  margin-bottom: 0.55rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 60;
  padding: 0.95rem 1.1rem;
  background: linear-gradient(180deg, #365741 0%, #274130 100%);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(34, 56, 42, 0.32);
  font-weight: 700;
}

.booking-page-body {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.28), transparent 28%),
    linear-gradient(180deg, #efe2d4 0%, #f4eadf 50%, #eadbcb 100%);
}
.booking-page-main { min-height: 100vh; }
.booking-page-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}
.booking-page-copy,
.booking-page-form-wrap { align-self: stretch; }
.booking-page-title { font-size: clamp(2rem, 3vw, 3rem); }
.booking-page-note ul { margin: 0; padding-left: 1.1rem; color: var(--muted); }
.booking-page-note li { margin-bottom: 0.7rem; }
.booking-summary-strong { font-size: 1.08rem; color: #3c3026; font-weight: 700; }
.booking-form {
  display: grid;
  gap: 1rem;
}
.booking-form label { display: grid; gap: 0.45rem; color: #3f3228; font-weight: 600; }
.booking-form input,
.booking-form textarea,
.booking-form select {
  width: 100%;
  padding: 0.92rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(95, 74, 56, 0.18);
  background: rgba(255,255,255,0.94);
  color: var(--text);
}
.booking-selected-top {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.booking-selected-top span {
  border-radius: 999px;
  background: rgba(47, 76, 61, 0.08);
  color: var(--green);
  padding: 0.58rem 0.8rem;
}
.form-note { margin: -0.1rem 0 0; font-size: 0.93rem; }
.form-feedback { min-height: 1.5rem; font-weight: 600; }
.form-feedback.error { color: #8f2f2f; }
.form-feedback.success { color: var(--green); }

.is-hidden { display: none !important; }
.booking-success {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
  background: rgba(255, 252, 247, 0.94);
  border: 1px solid rgba(47, 77, 59, 0.14);
}
.booking-success h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #2f3d33;
}
.booking-success p {
  margin: 0;
}
.booking-success-actions {
  margin-top: 0;
}

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }

@media (max-width: 980px) {
  .desktop-nav, .desktop-cta { display: none; }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(47, 77, 59, 0.14);
    background: rgba(255,255,255,0.8);
    color: var(--green);
    font-weight: 700;
  }
  .hero-grid,
  .split-layout,
  .process-grid,
  .about-grid,
  .final-cta,
  .footer-grid,
  .booking-page-grid,
  .booking-helper-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual { order: -1; }
  .symptom-grid, .areas-grid, .cards-stack, .credentials-grid, .faq-list { grid-template-columns: 1fr; }
  .booking-header { flex-direction: column; align-items: start; }
  .schedule-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .testimonial-card { min-width: 100%; }
}

@media (max-width: 720px) {
  .section { padding: 4.1rem 0; }
  .brand img { width: 180px; }
  .hero h1 { font-size: 2.45rem; }
  .section-heading h2,
  .split-copy h2,
  .about-copy h2,
  .final-cta-copy h2,
  .process-copy h2,
  .booking-header h2,
  .booking-page-title { font-size: 2.25rem; }
  .schedule-grid { grid-template-columns: 1fr; }
  .schedule-topbar { grid-template-columns: 46px 1fr 46px; }
  .week-nav { width: 46px; height: 46px; font-size: 1.7rem; }
  .booking-shell { padding: 1.25rem; }
  .floating-whatsapp { right: 0.8rem; bottom: 0.8rem; }
}


.booking-helper-grid-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.testimonials-section .section-heading p { display: none; }
.testimonial-card { background: linear-gradient(180deg, rgba(249, 239, 229, 0.98), rgba(255, 250, 245, 0.98)); }
.testimonial-olive { background: linear-gradient(180deg, rgba(220, 233, 216, 0.98), rgba(240, 248, 237, 0.98)); }
.testimonial-terra { background: linear-gradient(180deg, rgba(241, 224, 208, 0.98), rgba(250, 242, 235, 0.98)); }
.testimonial-soft { background: linear-gradient(180deg, rgba(235, 227, 216, 0.98), rgba(248, 242, 236, 0.98)); }
.about-photo,
.final-cta-photo {
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(233, 223, 211, 0.72), rgba(247, 239, 231, 0.92));
  padding: 0.9rem;
  box-shadow: var(--shadow);
}
.about-photo img,
.final-cta-photo img {
  box-shadow: none;
  background: rgba(255,255,255,0.66);
}
.about-photo img { min-height: 620px; object-fit: contain; object-position: center center; }
.final-cta-photo img { min-height: 500px; object-fit: contain; object-position: center center; }
.qualifications-toggle {
  margin: 1.2rem 0 1.35rem;
  background: linear-gradient(180deg, rgba(241, 232, 221, 0.95), rgba(249, 242, 234, 0.98));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem 1.15rem;
  box-shadow: var(--shadow-soft);
}
.qualifications-toggle summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--green-deep);
  list-style: none;
}
.qualifications-toggle summary::-webkit-details-marker { display: none; }
.qualifications-toggle summary::after {
  content: '+';
  float: right;
  font-size: 1.2rem;
  line-height: 1;
}
.qualifications-toggle[open] summary::after { content: '−'; }
.qualifications-content { padding-top: 0.9rem; }
.qualifications-content ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}
.qualifications-content li { margin-bottom: 0.65rem; }
.instagram-handle {
  margin-top: 1rem;
  color: var(--green);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.faq-item:nth-child(3),
.faq-item:nth-child(4) {
  background: linear-gradient(180deg, rgba(190, 216, 186, 0.98), rgba(231, 241, 226, 0.98));
}
.footer-grid a {
  display: flex;
  width: fit-content;
}
@media (max-width: 980px) {
  .booking-helper-grid-two { grid-template-columns: 1fr; }
}


/* v8 refinements */
.about-photo,
.final-cta-photo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-photo img,
.final-cta-photo img {
  width: 100%;
  height: auto;
  max-height: none;
  min-height: 0;
  object-fit: contain;
}

.about-photo img {
  max-height: 760px;
  object-position: center bottom;
}

.final-cta-photo img {
  max-height: 620px;
  object-position: center center;
}

.footer-grid > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid > div:last-child a {
  display: flex;
  margin-bottom: 0.6rem;
}

@media (max-width: 980px) {
  .about-photo img,
  .final-cta-photo img {
    max-height: none;
  }
}

/* v9 targeted fixes */
/* footer stacked links in contact and navigation */
.footer-grid > div:nth-child(2),
.footer-grid > div:nth-child(3) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-grid > div:nth-child(2) a,
.footer-grid > div:nth-child(3) a {
  display: flex;
  width: 100%;
  margin-bottom: 0.7rem;
}

/* FAQ: only middle row should be green */
.faq-item {
  background: rgba(251, 242, 231, 0.95);
}
.faq-item:nth-child(1),
.faq-item:nth-child(2),
.faq-item:nth-child(5),
.faq-item:nth-child(6) {
  background: linear-gradient(180deg, rgba(246, 236, 225, 0.98), rgba(251, 244, 236, 0.98));
}
.faq-item:nth-child(3),
.faq-item:nth-child(4) {
  background: linear-gradient(180deg, rgba(189, 216, 186, 0.98), rgba(231, 241, 226, 0.98));
}

/* areas: only center card green */
.area-card:nth-child(1),
.area-card:nth-child(3) {
  background: linear-gradient(180deg, rgba(246, 236, 225, 0.98), rgba(251, 244, 236, 0.98));
}
.area-card.area-card-green,
.area-card:nth-child(2) {
  background: linear-gradient(180deg, rgba(187, 214, 185, 0.98), rgba(226, 238, 219, 0.98));
}

/* credentials: highlight the requested card in green */
.credential-card.credential-card-green {
  background: linear-gradient(180deg, rgba(189, 216, 186, 0.98), rgba(231, 241, 226, 0.98));
}

/* refreshed image framing with cache-busting new files */
.about-photo,
.final-cta-photo {
  display: grid;
  place-items: center;
  overflow: hidden;
}
.about-photo img,
.final-cta-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.about-photo img {
  max-height: 780px;
  object-position: center center;
}
.final-cta-photo img {
  max-height: 640px;
  object-position: center top;
}

@media (max-width: 980px) {
  .footer-grid > div:nth-child(2) a,
  .footer-grid > div:nth-child(3) a {
    width: auto;
  }
  .about-photo img,
  .final-cta-photo img {
    max-height: none;
  }
}


/* v10 final corrections */
.footer-links {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0.55rem !important;
}
.footer-links a {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  margin: 0 !important;
}
.footer-links-contact a,
.footer-links-nav a {
  white-space: normal !important;
}

.faq-item.faq-neutral {
  background: linear-gradient(180deg, rgba(246, 236, 225, 0.98), rgba(251, 244, 236, 0.98)) !important;
}
.faq-item.faq-highlight {
  background: linear-gradient(180deg, rgba(189, 216, 186, 0.98), rgba(231, 241, 226, 0.98)) !important;
}

.area-card.area-neutral {
  background: linear-gradient(180deg, rgba(246, 236, 225, 0.98), rgba(251, 244, 236, 0.98)) !important;
}
.area-card.area-highlight {
  background: linear-gradient(180deg, rgba(187, 214, 185, 0.98), rgba(226, 238, 219, 0.98)) !important;
}

.credential-card.credential-highlight {
  background: linear-gradient(180deg, rgba(189, 216, 186, 0.98), rgba(231, 241, 226, 0.98)) !important;
}
