/* =========================================================================
   Ana Belen Mendez. Warm cream + copper palette (no greens, no blacks).
   Token names kept (sh-*) to preserve selectors.
   ========================================================================= */

:root {
  /* Warm cream + copper palette */
  --sh-black:       #3D3228;     /* deep warm brown (was near-black) */
  --sh-dark-gray:   #5A4A3C;     /* warm taupe (was dark gray) */
  --sh-brown:       #6E5840;     /* warm taupe */
  --sh-metal:       #B5AC9F;
  --sh-gray:        #C2BAAA;
  --sh-slate:       #C2BAAA;     /* unified to warm gray (was sage-tinted) */
  --sh-teal:        #E2DCC9;     /* unified to tan (was green-grey) */
  --sh-sky:         #E2DCC9;     /* unified to tan (was muted cyan) */
  --sh-mint:        #E8D5C4;     /* warm peach-cream (was mint green) */
  --sh-orange:      #A86F3D;     /* COPPER. primary accent */
  --sh-cyan:        #F4ECE0;     /* unified to cream */
  --sh-tan:         #E2DCC9;
  --sh-cream:       #F4ECE0;     /* warm cream */
  --sh-yellow:      #F4ECE0;     /* unified with cream */
  --sh-paper:       #F8F5EE;
  --sh-white:       #FFFFFF;

  /* Forest tokens neutralised to warm browns */
  --sh-forest:      #3D3228;     /* deep warm brown (was forest green) */
  --sh-forest-soft: #6E5840;     /* warm taupe (was forest soft) */

  /* Functional tokens */
  --ink:          var(--sh-black);
  --ink-soft:     var(--sh-brown);
  --ink-muted:    var(--sh-metal);
  --line:         #bbbbbb40;
  --bg:           var(--sh-white);
  --bg-warm:      var(--sh-cream);
  --bg-paper:     var(--sh-paper);
  --bg-tint:      var(--sh-tan);

  /* Type */
  --sans:  "Manrope", "Helvetica Neue", system-ui, -apple-system, Arial, sans-serif;
  --serif: "Newsreader", "Source Serif 4", Georgia, "Times New Roman", serif;

  /* Layout */
  --pad-x: clamp(20px, 5vw, 88px);
  --maxw: 1440px;
  --gut: clamp(20px, 4vw, 56px);

  /* Motion */
  --ease: cubic-bezier(.2,.6,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  /* Signature warm cream wash */
  background: linear-gradient(to bottom, var(--sh-cream), rgba(248, 245, 238, 0.7));
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--sh-orange); color: var(--sh-cream); }

/* Skip link */
.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--ink); color: var(--sh-cream);
  padding: 10px 16px; border-radius: 999px;
  z-index: 200; font-size: 13px; font-weight: 500;
}
.skip-link:focus { top: 12px; }

/* =========================================================================
   TYPOGRAPHY ATOMS
   ========================================================================= */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.eyebrow--light { color: rgba(255,255,255,0.85); }

.section-num {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sh-orange);
  margin-bottom: 20px;
  display: inline-block;
}

.display-serif {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(44px, 7.5vw, 110px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.display-serif em {
  font-style: italic;
  font-weight: 400;
}

.h-serif {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 68px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.h-serif em {
  font-style: italic;
  font-weight: 400;
}
.h-serif--light { color: var(--sh-yellow); }

p { color: var(--ink); max-width: 60ch; }

/* =========================================================================
   PILL BUTTONS (Sollis CTA)
   ========================================================================= */
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
}
/* Serendy-style dot signature on dark pills */
.pill--dark::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--sh-orange);
  display: inline-block;
  flex: 0 0 auto;
  transition: background .3s var(--ease);
}
.pill--dark:hover::before { background: var(--sh-yellow); }
.pill--dark {
  background: var(--ink);
  color: var(--sh-cream);
}
.pill--dark:hover {
  background: var(--ink-soft);
  color: var(--sh-yellow);
}
.pill--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink-soft);
}
.pill--ghost:hover {
  background: var(--ink);
  color: var(--sh-cream);
  border-color: var(--ink);
}
.pill--lg {
  padding: 18px 36px;
  font-size: 15px;
}

/* =========================================================================
   HEADER (Serendy-style: fixed, magnetic CTA, drawer panel)
   ========================================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  /* brand · spacer · nav · lang · cta · burger */
  grid-template-columns: auto 1fr auto auto auto auto;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  padding: 18px clamp(20px, 5vw, 88px);
  background: rgba(244, 236, 224, 0.55);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  border-bottom: 1px solid rgba(110, 88, 64, 0.06);
  transition: background 320ms ease, border-bottom-color 320ms ease, padding 320ms ease, box-shadow 320ms ease;
}
.site-header.is-scrolled {
  background: rgba(244, 236, 224, 0.78);
  backdrop-filter: saturate(160%) blur(22px);
  -webkit-backdrop-filter: saturate(160%) blur(22px);
  border-bottom-color: rgba(110, 88, 64, 0.12);
  padding-top: 12px;
  padding-bottom: 12px;
  box-shadow: 0 8px 24px -16px rgba(61, 50, 40, 0.18);
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}
.brand-logo {
  height: 32px;
  width: auto;
  display: block;
  transform-origin: center;
  transition: transform 360ms cubic-bezier(.16,1,.3,1), filter 360ms ease;
  will-change: transform;
}
.brand:hover .brand-logo {
  transform: scale(1.18) rotate(-2deg);
  filter: drop-shadow(0 4px 10px rgba(168, 111, 61, 0.18));
}
.brand-word {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--sh-black);
  transition: color .2s var(--ease);
}
.brand:hover .brand-word { color: var(--ink-soft); }

/* Nav (desktop only). Placed to the right next to lang/CTA */
.site-nav {
  display: none;
  justify-self: end;
  gap: 1.75rem;
}
.site-nav a {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  color: var(--sh-brown);
  transition: color .2s var(--ease);
}
.site-nav a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--sh-orange);
  transition: width 320ms cubic-bezier(.16,1,.3,1);
}
.site-nav a:hover { color: var(--sh-black); }
.site-nav a:hover::after { width: 100%; }
@media (min-width: 800px) {
  .site-nav { display: inline-flex; }
}

/* Language switcher (kept inline) */
.lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.lang button {
  padding: 4px 2px;
  color: var(--ink-muted);
  transition: color .2s var(--ease);
}
.lang button[aria-pressed="true"] {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.lang button:hover { color: var(--ink); }
.lang__sep { color: var(--ink-muted); }

/* Site CTA pill (magnetic) */
.site-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 10px 18px;
  background: var(--sh-black);
  color: var(--sh-cream);
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 240ms ease, color 240ms ease;
  white-space: nowrap;
}
.site-cta:hover {
  background: var(--sh-brown);
  color: var(--sh-yellow);
}
.site-cta .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--sh-orange);
  display: inline-block;
}

/* Burger (mobile only) */
.burger {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--sh-black);
  border-radius: 999px;
  position: relative;
  background: transparent;
  cursor: pointer;
  transition: background .2s var(--ease);
}
.burger:hover { background: rgba(35, 31, 32, 0.06); }
.burger span {
  display: block;
  width: 16px;
  height: 1px;
  background: var(--sh-black);
  transition: transform 220ms ease, opacity 220ms ease;
}
.burger span + span { margin-top: 4px; }
.burger.is-open span:first-child { transform: translateY(2.5px) rotate(45deg); }
.burger.is-open span:last-child  { transform: translateY(-2.5px) rotate(-45deg); }
@media (min-width: 800px) {
  .burger { display: none; }
}

/* Drawer panel (mobile fullscreen) */
.panel {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--sh-yellow);
  padding: 6rem clamp(20px, 5vw, 88px) clamp(20px, 5vw, 88px);
  transform: translateY(-100%);
  transition: transform 480ms cubic-bezier(.22,1,.36,1);
  pointer-events: none;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.panel.is-open {
  transform: translateY(0);
  pointer-events: auto;
}
.panel-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.5rem, 11vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.panel-nav a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(35, 31, 32, 0.12);
  color: var(--sh-black);
  text-decoration: none;
  transition: color 200ms ease, padding-left 320ms cubic-bezier(.16,1,.3,1);
}
.panel-nav a:hover {
  color: var(--ink-soft);
  padding-left: 0.5rem;
}
.panel-cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 14px 24px;
  background: var(--sh-black);
  color: var(--sh-cream);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 200ms ease;
}
.panel-cta:hover { background: var(--sh-brown); color: var(--sh-yellow); }

/* Spacing for fixed header (push content) */
body { padding-top: 76px; }
@media (max-width: 799px) {
  body { padding-top: 70px; }
  /* hide language switcher and CTA on small screens to keep header compact */
  .site-header { gap: 12px; }
}
@media (max-width: 480px) {
  .site-header .lang { display: none; }
  .site-header .site-cta { display: none; }
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  padding: clamp(40px, 8vw, 96px) var(--pad-x) clamp(60px, 10vw, 120px);
  max-width: var(--maxw);
  margin: 0 auto;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--gut);
  align-items: center;
}
.hero__copy { padding-right: 8px; }
.hero__copy .display-serif { margin-bottom: 28px; }
.hero__lede {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 50ch;
  margin-bottom: 36px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__portrait {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-tint);
}
.hero__portrait picture,
.hero__portrait img {
  width: 100%;
  height: 100%;
  display: block;
}
.hero__portrait img {
  object-fit: cover;
  object-position: 35% 25%;
}
/* Anabelen portrait inside about block (sobre-mi page): keep her hair fully visible. */
.block-about__media img[src*="anabelen"] {
  object-position: 35% 25%;
}

/* =========================================================================
   MANIFESTO
   ========================================================================= */
.manifesto {
  padding: clamp(60px, 10vw, 140px) var(--pad-x);
  background: transparent;
}
.manifesto__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.manifesto__line {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5.5vw, 78px);
  line-height: 1.12;
  letter-spacing: -0.018em;
  color: var(--ink);
  max-width: 22ch;
  margin: 0 auto 40px;
  text-wrap: balance;
}
.manifesto__line em {
  font-style: italic;
  color: var(--sh-orange);
}
.manifesto__sig {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: inline-block;
  position: relative;
  padding-top: 24px;
}
.manifesto__sig::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--sh-orange);
}

/* =========================================================================
   ABOUT BLOCK (asymmetric grid, image + copy)
   ========================================================================= */
.block-about {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(60px, 9vw, 120px) var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gut);
  align-items: stretch;
}
.block-about__media {
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-tint);
  min-height: 100%;
  align-self: stretch;
  position: relative;
}
.block-about__media picture,
.block-about__media img,
.block-about__media video {
  width: 100%;
  height: 100%;
  display: block;
}
.block-about__media img,
.block-about__media video {
  object-fit: cover;
}
.block-about__copy h2 { margin-bottom: 36px; }
.block-about__copy p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 18px;
  max-width: 52ch;
}
.dropcap::first-letter {
  float: left;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 5.4em;
  line-height: 0.85;
  padding: 6px 12px 0 0;
  color: var(--sh-orange);
}
.dropcap {
  font-size: 19px;
  line-height: 1.65;
}
/* Stats display row above facts */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 32px);
  margin: 32px 0 8px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-stat__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.about-stat__label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 12px;
  line-height: 1.4;
}
@media (max-width: 600px) {
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
.facts {
  margin-top: 32px;
  border-top: 1px solid var(--line);
}
.facts__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.facts__row dt {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-top: 2px;
}
.facts__row dd {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
}

/* =========================================================================
   FULL-BLEED EXPERIENCE
   ========================================================================= */
.full-bleed {
  position: relative;
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: clamp(80px, 12vw, 160px) var(--pad-x);
  overflow: hidden;
  margin: clamp(40px, 6vw, 80px) 0;
}
.full-bleed__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.full-bleed__bg img,
.full-bleed__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.full-bleed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(35,31,32,0.35) 0%, rgba(35,31,32,0.55) 100%);
  z-index: 1;
}
.full-bleed__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  color: var(--sh-yellow);
}
.full-bleed__content h2 { margin-bottom: 24px; }
.full-bleed__lede {
  font-family: var(--sans);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: rgba(255,240,222,0.92);
  max-width: 60ch;
  margin: 0 auto;
}

/* =========================================================================
   SERVICES GRID
   ========================================================================= */
.services {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(60px, 9vw, 120px) var(--pad-x);
}
.services__head {
  margin-bottom: 56px;
  max-width: 800px;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gut);
}
.svc {
  display: flex;
  flex-direction: column;
}
.svc__media {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-tint);
  margin-bottom: 20px;
  transition: transform .5s var(--ease);
}
.svc:hover .svc__media { transform: translateY(-4px); }
.svc__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.svc:hover .svc__media img { transform: scale(1.04); }
.svc__name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 10px;
}
.svc__copy {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 38ch;
}

/* =========================================================================
   PROGRAMME — cream background block
   ========================================================================= */
.program {
  background: var(--bg-warm);
  border-radius: 8px;
  margin: clamp(20px, 4vw, 60px) var(--pad-x);
}
.program__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(60px, 9vw, 120px) clamp(20px, 5vw, 80px);
}
.program__inner .h-serif { margin-bottom: 24px; }
.program__lede {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 60ch;
  margin-bottom: 48px;
}
.program__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 56px;
  border-top: 1px solid var(--line);
  margin-bottom: 32px;
}
.program__item {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.program__item dt {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}
.program__item dd {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink);
  max-width: 38ch;
}
.program__price {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

/* =========================================================================
   VOICES (testimonials) — editorial dramatic
   ========================================================================= */
.voices {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(60px, 9vw, 120px) var(--pad-x);
  background: var(--sh-cream);
  border-radius: 8px;
  margin-top: clamp(20px, 4vw, 60px);
  margin-bottom: clamp(20px, 4vw, 60px);
}

/* Hero quote — 80vh poetic statement */
.voices__hero {
  position: relative;
  min-height: 80vh;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(60px, 8vw, 120px) clamp(20px, 4vw, 60px) clamp(40px, 6vw, 80px);
  text-align: center;
}
.voices__quote-mark {
  position: absolute;
  top: clamp(-20px, -1vw, 10px);
  left: clamp(0px, 4vw, 80px);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(120px, 18vw, 200px);
  line-height: 1;
  color: var(--sh-orange);
  opacity: 0.45;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  transition: opacity .8s var(--ease);
}
.voices__hero-quote {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--sh-forest);
  max-width: 22ch;
  margin: 0 auto 36px;
}
.voices__hero-cite {
  position: relative;
  z-index: 1;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--sh-brown);
}

/* Mini cards — supporting evidence */
.voices__mini {
  max-width: 1100px;
  margin: clamp(40px, 6vw, 80px) auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.voices__mini-card {
  position: relative;
  background: var(--sh-paper);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.voices__mini-mark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 64px;
  line-height: 0.7;
  color: var(--sh-orange);
  margin-bottom: 6px;
  opacity: 0.55;
  user-select: none;
}
.voices__mini-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--sh-forest);
  margin-bottom: 20px;
  flex-grow: 1;
}
.voices__mini-cite {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--sh-brown);
}

/* a11y helper */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* =========================================================================
   VISIT
   ========================================================================= */
.visit {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(60px, 9vw, 120px) var(--pad-x);
}
.visit__head {
  max-width: 800px;
  margin-bottom: 56px;
}
.visit__head h2 { margin-bottom: 20px; }
.visit__lede {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
}
.visit__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink-soft);
}
.visit__card {
  padding: 32px 28px 32px 0;
  border-bottom: 1px solid var(--line);
}
.visit__card + .visit__card {
  border-left: 1px solid var(--line);
  padding-left: 28px;
}
.visit__label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.visit__value {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink);
}
.visit__value a {
  color: var(--ink);
  text-decoration: none;
  transition: color .2s var(--ease);
  border-bottom: 1px solid transparent;
}
.visit__value a:hover { color: var(--sh-orange); }

/* =========================================================================
   FINAL CTA
   ========================================================================= */
.final-cta {
  padding: clamp(80px, 12vw, 160px) var(--pad-x);
  text-align: center;
}
.final-cta__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.final-cta .display-serif {
  margin-bottom: 24px;
  font-size: clamp(48px, 8vw, 120px);
}
.final-cta__lede {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0 auto 40px;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.foot {
  background: var(--sh-forest);
  color: var(--sh-cream);
  padding: clamp(60px, 9vw, 120px) var(--pad-x) 28px;
  margin-top: 60px;
}
.foot__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(244, 236, 224, 0.20);
}
.foot__signature {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 80px 0 60px;
  text-align: left;
}
.foot__signature span {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(80px, 18vw, 240px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--sh-cream);
  display: block;
}

.foot__brandblock { padding-right: 24px; }
.foot__name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--sh-cream);
  margin-bottom: 16px;
}
.foot__tag {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(241, 230, 214, 0.65);
  max-width: 30ch;
}
.foot__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.foot__h {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(241, 230, 214, 0.55);
  margin-bottom: 16px;
}
.foot__col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.foot__col a {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--sh-cream);
  transition: color .2s var(--ease);
}
.foot__col a:hover { color: var(--sh-orange); }

.foot__bar {
  max-width: var(--maxw);
  margin: 28px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(244, 236, 224, 0.20);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.foot__bar p, .foot__bar a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(241, 230, 214, 0.55);
}
.foot__bar a:hover { color: var(--sh-orange); }

/* =========================================================================
   REVEAL animation (subtle)
   ========================================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1100px) {
  .site-nav { gap: 1.25rem; }
  .site-nav a { font-size: 10px; letter-spacing: 0.12em; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 36px;
  }
  .hero__portrait { aspect-ratio: 4 / 5; max-height: 70vh; }

  .block-about { grid-template-columns: 1fr; gap: 32px; }

  .services__grid { grid-template-columns: 1fr; gap: 36px; }

  .program { margin: 0; border-radius: 0; }
  .program__list { grid-template-columns: 1fr; gap: 0; }

  .visit__cards { grid-template-columns: 1fr; }
  .visit__card { padding: 24px 0; }
  .visit__card + .visit__card { border-left: 0; padding-left: 0; }

  .voices__hero { min-height: auto; padding: 80px 24px 60px; }
  .voices__mini { grid-template-columns: 1fr; gap: 20px; }

  .foot__inner { grid-template-columns: 1fr; gap: 40px; }
  .foot__cols { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .foot__bar { justify-content: flex-start; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero { padding-top: 24px; padding-bottom: 60px; }
  .hero__lede { font-size: 16px; }
  .manifesto__line { font-size: 22px; }
  .voices__hero-quote { font-size: 36px; line-height: 1.15; }
  .voices__quote-mark { font-size: 120px; left: 12px; top: -10px; }
  .voices__mini-quote { font-size: 18px; }
  .foot__cols { grid-template-columns: 1fr; gap: 24px; }
  .full-bleed { min-height: 60vh; }
  .visit__value { font-size: 19px; }
}

/* =========================================================================
   PAGE TRANSITIONS (opacity-only, never transform on body to keep
   position:fixed header working correctly).
   ========================================================================= */
@media (prefers-reduced-motion: no-preference) {
  @view-transition { navigation: auto; }

  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation-duration: 420ms;
    animation-timing-function: cubic-bezier(.16, 1, .3, 1);
  }
  ::view-transition-old(root) { animation-name: fade-out; }
  ::view-transition-new(root) { animation-name: fade-in; }

  @keyframes fade-out { to { opacity: 0; } }
  @keyframes fade-in  { from { opacity: 0; } to { opacity: 1; } }

  /* Fallback fade-in on load. Applied to #main so body stays untransformed
     and the fixed header keeps following the scroll. */
  #main {
    animation: page-enter 540ms cubic-bezier(.16, 1, .3, 1) both;
  }
  @keyframes page-enter {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
}
