/* =========================================================
   Hypnotherapy for Anxiety in Mumbai
   Spatial Minimalism — Quiet, Spacious, Calm
   ========================================================= */

:root {
  --white: #FFFFFF;
  --sand: #F7F5F2;
  --grey: #8A97A6;
  --slate: #2F3640;
  --green: #9BC1BC;
  --line: rgba(47, 54, 64, 0.08);
  --line-strong: rgba(47, 54, 64, 0.16);

  --serif: 'Playfair Display', 'Libre Baskerville', Georgia, serif;
  --sans: 'Inter', 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;

  --max: 1240px;
  --gutter: clamp(20px, 4vw, 48px);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--slate);
  background: var(--white);
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--slate);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.6rem); font-weight: 300; }
h2 { font-size: clamp(1.8rem, 3.6vw, 3rem); font-weight: 300; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-weight: 400; }
h4 { font-size: 1.1rem; font-weight: 500; }

p { font-weight: 300; color: #4a525c; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--grey);
  display: inline-block;
}

/* Layout */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 var(--gutter); }
.wrap-wide  { max-width: 1480px; margin: 0 auto; padding: 0 var(--gutter); }

section { padding: clamp(80px, 12vw, 160px) 0; }

.divider { height: 1px; background: var(--line); border: none; }

/* ============== NAVIGATION ============== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease), background .3s var(--ease);
}
.nav.scrolled { border-bottom: 1px solid var(--line); }
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-brand .mark {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--slate);
}
.nav-brand .sub {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 4px;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--slate);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--green);
  transition: width .35s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--slate); }

.nav-toggle {
  display: none;
  width: 32px; height: 32px;
  position: relative;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1px;
  background: var(--slate);
  margin: 6px auto;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    transform: translateY(-100%);
    transition: transform .5s var(--ease);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 1.1rem; }
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  background: transparent;
  border: 1px solid var(--slate);
  border-radius: 0;
  transition: all .35s var(--ease);
}
.btn:hover {
  background: var(--slate);
  color: var(--white);
  letter-spacing: 0.28em;
}
.btn-light {
  border-color: var(--white);
  color: var(--white);
}
.btn-light:hover { background: var(--white); color: var(--slate); }

.btn .arrow { display: inline-block; transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  border-bottom: 1px solid var(--slate);
  padding-bottom: 4px;
}
.btn-text:hover { color: var(--green); border-color: var(--green); }

/* ============== HERO ============== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  background: var(--white);
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.hero-text .eyebrow { margin-bottom: 28px; }
.hero-text h1 { margin-bottom: 28px; }
.hero-text h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--green);
}
.hero-text p {
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 44px;
  line-height: 1.8;
}
.hero-meta {
  display: flex;
  gap: 32px;
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-meta div { flex: 1; }
.hero-meta .num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--slate);
  display: block;
  line-height: 1;
}
.hero-meta .lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 8px;
  display: block;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.9) contrast(0.95);
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(247,245,242,0.3) 100%);
  pointer-events: none;
}

@media (max-width: 880px) {
  .hero { min-height: auto; padding: 120px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-meta { flex-wrap: wrap; gap: 24px; }
  .hero-meta div { flex: 1 1 40%; }
}

/* ============== PAGE HEADER (inner pages) ============== */
.page-header {
  padding: 200px 0 100px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.page-header .eyebrow { margin-bottom: 24px; }
.page-header h1 { max-width: 780px; }
.page-header p {
  margin-top: 32px;
  max-width: 620px;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ============== SECTIONS ============== */
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 100px);
  margin-bottom: clamp(60px, 8vw, 100px);
  align-items: end;
}
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { max-width: 720px; }
.section-head p {
  margin-top: 24px;
  max-width: 580px;
  line-height: 1.8;
}
@media (max-width: 880px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}

.bg-sand { background: var(--sand); }
.bg-slate { background: var(--slate); color: var(--sand); }
.bg-slate h1, .bg-slate h2, .bg-slate h3, .bg-slate h4 { color: var(--white); }
.bg-slate p { color: rgba(247,245,242,0.7); }
.bg-slate .eyebrow { color: var(--green); }

/* ============== FEELS / SYMPTOMS GRID ============== */
.symptoms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.symptom {
  padding: 56px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: background .4s var(--ease);
}
.symptom:hover { background: var(--sand); }
.symptom .num {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--green);
  letter-spacing: 0.1em;
}
.symptom h3 {
  margin: 32px 0 16px;
  font-size: 1.4rem;
  font-weight: 400;
}
.symptom p {
  font-size: 0.92rem;
  line-height: 1.75;
}
@media (max-width: 980px) {
  .symptoms { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .symptoms { grid-template-columns: 1fr; }
}

/* ============== TWO COLUMN ============== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.two-col .visual {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.two-col .visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9);
}
.two-col h2 { margin-bottom: 28px; }
.two-col p { margin-bottom: 18px; line-height: 1.85; }
.two-col .btn-text { margin-top: 24px; }
@media (max-width: 880px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse > :first-child { order: 2; }
}

/* ============== PROCESS / STEPS ============== */
.steps {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.step {
  display: grid;
  grid-template-columns: 100px 1fr 2fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: padding .4s var(--ease);
}
.step:hover { padding-left: 12px; }
.step .step-num {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--green);
  letter-spacing: 0.05em;
}
.step h3 { font-size: 1.4rem; font-weight: 400; }
.step p { font-size: 0.98rem; line-height: 1.8; max-width: 520px; }
@media (max-width: 720px) {
  .step { grid-template-columns: 1fr; gap: 12px; padding: 32px 0; }
}

/* ============== TESTIMONIALS ============== */
.quote {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.quote .mark {
  font-family: var(--serif);
  font-size: 4rem;
  font-style: italic;
  color: var(--green);
  line-height: 0.5;
  display: block;
  margin-bottom: 32px;
}
.quote p {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--slate);
  margin-bottom: 36px;
}
.quote cite {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ============== TESTIMONIAL GRID ============== */
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.t-card {
  background: var(--white);
  padding: 48px 36px;
}
.t-card .stars {
  color: var(--green);
  font-size: 12px;
  letter-spacing: 0.4em;
  margin-bottom: 24px;
}
.t-card p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 28px;
  color: var(--slate);
}
.t-card cite {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
  display: block;
}
@media (max-width: 900px) { .t-grid { grid-template-columns: 1fr; } }

/* ============== CTA BLOCK ============== */
.cta {
  text-align: center;
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--slate);
  color: var(--white);
}
.cta h2 {
  color: var(--white);
  max-width: 780px;
  margin: 0 auto 36px;
}
.cta h2 em { color: var(--green); font-style: italic; }
.cta p {
  color: rgba(247,245,242,0.7);
  max-width: 560px;
  margin: 0 auto 44px;
}

/* ============== CONDITIONS GRID ============== */
.cond-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.cond {
  background: var(--white);
  padding: 56px 36px;
  transition: background .4s var(--ease);
}
.cond:hover { background: var(--sand); }
.cond .icon {
  width: 40px; height: 40px;
  border: 1px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  color: var(--green);
  margin-bottom: 32px;
  font-size: 14px;
}
.cond h3 { font-size: 1.3rem; margin-bottom: 16px; }
.cond p { font-size: 0.92rem; line-height: 1.75; }
@media (max-width: 900px) { .cond-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .cond-grid { grid-template-columns: 1fr; } }

/* ============== TRANSFORMATION ============== */
.transform {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  align-items: stretch;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.transform .col {
  padding: 64px 48px;
}
.transform .col.before { background: var(--sand); }
.transform .col.after { background: var(--white); }
.transform .arrow-col {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  font-family: var(--serif);
  color: var(--green);
  font-size: 1.6rem;
}
.transform .lbl {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 24px;
}
.transform ul {
  list-style: none;
}
.transform ul li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  color: var(--slate);
  font-weight: 300;
}
.transform ul li:last-child { border-bottom: none; }

@media (max-width: 720px) {
  .transform { grid-template-columns: 1fr; }
  .transform .arrow-col { padding: 16px 0; border: none; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); transform: rotate(90deg); }
}

/* ============== ARTICLES / INSIGHTS ============== */
.articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
}
.article {
  display: block;
  cursor: pointer;
}
.article .visual {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 24px;
}
.article .visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
  filter: saturate(0.9);
}
.article:hover .visual img { transform: scale(1.04); }
.article .meta {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 14px;
}
.article h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  line-height: 1.3;
}
.article p {
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 18px;
}
.article .read {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  border-bottom: 1px solid var(--slate);
  padding-bottom: 2px;
  display: inline-block;
}
@media (max-width: 900px) { .articles { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .articles { grid-template-columns: 1fr; } }

/* ============== GALLERY (MASONRY — no face cropping) ============== */
.gallery {
  column-count: 3;
  column-gap: 16px;
}
.g-item {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  margin: 0 0 16px 0;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--sand);
  display: block;
}
.g-item img,
.g-item video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 1.6s var(--ease);
}
.g-item:hover img,
.g-item:hover video { transform: scale(1.03); }
.g-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(47,54,64,0.18) 100%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.g-item:hover::after { opacity: 1; }

@media (max-width: 900px) {
  .gallery { column-count: 2; column-gap: 14px; }
  .g-item { margin-bottom: 14px; }
}
@media (max-width: 540px) {
  .gallery { column-count: 1; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(47,54,64,0.95);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img,
.lightbox video {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}
.lightbox .close {
  position: absolute;
  top: 30px; right: 40px;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
}

/* ============== CONTACT ============== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.contact-info h3 { margin-bottom: 28px; font-size: 1.2rem; }
.contact-info .row {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info .row:first-of-type { border-top: 1px solid var(--line); }
.contact-info .lbl {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
  display: block;
  margin-bottom: 6px;
}
.contact-info .val {
  font-size: 1rem;
  color: var(--slate);
  font-weight: 400;
}
.contact-info .val:hover { color: var(--green); }

.form { display: grid; gap: 24px; }
.form .field { display: flex; flex-direction: column; }
.form label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 10px;
}
.form input,
.form select,
.form textarea {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--slate);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  padding: 12px 0;
  outline: none;
  transition: border-color .3s var(--ease);
}
.form input:focus,
.form select:focus,
.form textarea:focus { border-bottom-color: var(--slate); }
.form textarea { resize: vertical; min-height: 100px; }
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form .submit { margin-top: 12px; }
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form .row2 { grid-template-columns: 1fr; }
}

/* ============== FOOTER ============== */
.footer {
  background: var(--slate);
  color: rgba(247,245,242,0.7);
  padding: 80px 0 40px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer h4 {
  color: var(--white);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
}
.footer .brand {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.2;
}
.footer p { color: rgba(247,245,242,0.6); line-height: 1.8; font-size: 0.92rem; max-width: 360px; }
.footer ul { list-style: none; display: grid; gap: 12px; }
.footer ul a {
  color: rgba(247,245,242,0.7);
  font-size: 0.92rem;
}
.footer ul a:hover { color: var(--green); }
.footer .contact-line {
  font-size: 0.92rem;
  line-height: 1.9;
  color: rgba(247,245,242,0.7);
}
.footer .contact-line a:hover { color: var(--green); }
.footer-bottom {
  padding-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(247,245,242,0.5);
}
.footer-bottom a:hover { color: var(--green); }
.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(247,245,242,0.6);
  transition: all .3s var(--ease);
}
.footer-social a:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--slate);
}
.footer-social svg { width: 14px; height: 14px; fill: currentColor; }
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============== ANIMATIONS ============== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Stat strip */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 56px 36px;
  text-align: left;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat .num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--slate);
  line-height: 1;
  display: block;
}
.stat .lbl {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 16px;
  display: block;
}
@media (max-width: 720px) {
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* List with dividers */
.list-divided {
  list-style: none;
  border-top: 1px solid var(--line);
}
.list-divided li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.list-divided .num {
  font-family: var(--serif);
  color: var(--green);
  font-size: 1rem;
}
.list-divided h4 { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; margin-bottom: 6px; }
.list-divided p { font-size: 0.94rem; line-height: 1.75; }

/* About-specific layout */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  padding: 200px 0 100px;
}
.about-hero .visual {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.about-hero .visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
@media (max-width: 880px) {
  .about-hero { grid-template-columns: 1fr; padding: 140px 0 60px; }
}

/* Quote block large */
.pull-quote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--slate);
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.pull-quote em { color: var(--green); font-style: italic; }

/* Featured / large card */
.feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--sand);
  align-items: stretch;
}
.feature-card .visual {
  aspect-ratio: auto;
  min-height: 480px;
  overflow: hidden;
}
.feature-card .visual img,
.feature-card .visual video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.feature-card .body {
  padding: clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-card h2 { margin-bottom: 24px; }
.feature-card p { margin-bottom: 32px; line-height: 1.85; }
@media (max-width: 880px) {
  .feature-card { grid-template-columns: 1fr; }
  .feature-card .visual { min-height: 320px; }
}

/* Skip-to-content for accessibility */
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 20px; top: 20px; background: var(--slate); color: var(--white); padding: 12px 20px; z-index: 999; }
