/* ============================================================
   Charity Martin — Somatic Bodywork
   "Contemplative editorial" — sky, paper, ink, dusk-gold.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,300;1,9..144,400&family=Newsreader:ital,opsz,wght@0,6..72,300;0,6..72,400;0,6..72,500;1,6..72,300;1,6..72,400&display=swap');

:root {
  /* palette — drawn from the hillside-sky photo + workshop flyers */
  --sky:        #6ea6c4;   /* the cool blue of the hero sky        */
  --sky-deep:   #3d6c88;   /* deeper toward the horizon            */
  --sky-pale:   #cfe1ea;   /* washed sky / mist                    */
  --gold:       #d8a53c;   /* flyer gold                           */
  --gold-soft:  #e7c987;
  --paper:      #f6f2ea;   /* warm off-white body                  */
  --paper-2:    #efe8db;   /* slightly deeper paper                */
  --ink:        #26302f;   /* deep pine-ink for text               */
  --ink-soft:   #4f5b59;   /* secondary text                       */
  --ink-faint:  #8a938f;   /* captions, meta                       */
  --line:       #d8cfbf;   /* hairlines on paper                   */
  --rust:       #b4653f;   /* the dahlia's warm red, sparingly     */

  --serif-display: 'Fraunces', Georgia, serif;
  --serif-body:    'Newsreader', Georgia, serif;

  --wrap: 1180px;
  --measure: 66ch;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset-ish ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif-body);
  font-size: clamp(1.02rem, 0.62vw + 0.9rem, 1.18rem);
  line-height: 1.72;
  font-weight: 400;
  letter-spacing: 0.003em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

::selection { background: var(--gold-soft); color: var(--ink); }

/* subtle paper grain over the whole page */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ---------- layout helpers ---------- */
.wrap { width: min(var(--wrap), 92vw); margin-inline: auto; }
.narrow { width: min(760px, 92vw); margin-inline: auto; }
section { position: relative; z-index: 2; }

.eyebrow {
  font-family: var(--serif-body);
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 400;
  margin: 0 0 1.4rem;
  display: flex; align-items: center; gap: 0.9rem;
}
.eyebrow::before {
  content: ""; width: 34px; height: 1px; background: var(--gold); flex: none;
}

h1, h2, h3 { font-family: var(--serif-display); font-weight: 400; line-height: 1.08; letter-spacing: -0.012em; }
.italic { font-style: italic; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.15rem clamp(1.2rem, 4vw, 3rem);
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease), padding 0.4s var(--ease);
  color: #fff;
  mix-blend-mode: difference; /* legible over sky, then over paper */
}
.nav.docked {
  mix-blend-mode: normal;
  background: rgba(246,242,234,0.86);
  backdrop-filter: blur(10px) saturate(1.1);
  box-shadow: 0 1px 0 var(--line);
  color: var(--ink);
  padding-block: 0.85rem;
}
.nav__brand {
  font-family: var(--serif-display);
  font-size: 1.16rem; letter-spacing: 0.01em; text-decoration: none;
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
/* Brush-circle mark — hidden over the hero (the nav there is difference-blended,
   which would invert the mark's colors), revealed once the nav docks to paper. */
.nav__brand-mark {
  width: 0; height: auto; opacity: 0; margin-right: 0;
  transition: width 0.4s var(--ease), opacity 0.4s, margin-right 0.4s var(--ease);
}
.nav.docked .nav__brand-mark { width: 34px; opacity: 1; margin-right: 0.6rem; }
.nav__brand small { font-family: var(--serif-body); font-weight: 300; opacity: 0.7; font-size: 0.8em; letter-spacing: 0.06em; }
.nav__links { display: flex; gap: 1.9rem; align-items: center; }
.nav__links a {
  text-decoration: none; font-family: var(--serif-body);
  font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0.9; transition: opacity 0.3s;
}
.nav__links a:hover { opacity: 0.55; }
.nav__cta {
  border: 1px solid currentColor; border-radius: 100px;
  padding: 0.5rem 1.1rem !important; opacity: 1 !important;
}
.nav.docked .nav__cta { border-color: var(--sky-deep); color: var(--sky-deep); }
@media (max-width: 760px) {
  .nav__links a:not(.nav__cta) { display: none; }
  .nav { padding: 0.9rem 1.1rem; }
  .nav__brand small { display: none; }
  .nav__cta { white-space: nowrap; padding: 0.45rem 0.95rem !important; font-size: 0.78rem; }
  .nav.docked .nav__brand-mark { width: 28px; margin-right: 0.5rem; }
}

/* ============================================================
   HERO — sky photo, white serif text floating in the sky
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-start;
  overflow: hidden;
}
.hero__img {
  position: absolute; inset: 0; z-index: 0;
  background: url('img/sky-hero.jpg') center 32% / cover no-repeat;
  transform: scale(1.06);
  animation: heroDrift 26s ease-in-out infinite alternate;
}
@keyframes heroDrift { to { transform: scale(1.13) translateY(-1.5%); } }
/* keep the hillside legible at the bottom, and give text-in-sky contrast */
.hero__img::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(30,54,70,0.30) 0%, rgba(30,54,70,0) 34%),
    linear-gradient(0deg, rgba(30,40,30,0.34) 0%, rgba(30,40,30,0) 40%);
}
.hero__inner {
  position: relative; z-index: 2; width: 100%;
  padding: clamp(6.5rem, 15vh, 11rem) clamp(1.4rem, 6vw, 5rem) 0;
}
.hero__eyebrow {
  color: rgba(255,255,255,0.92);
  font-family: var(--serif-body);
  font-size: 0.8rem; letter-spacing: 0.34em; text-transform: uppercase;
  margin: 0 0 1.5rem; font-weight: 300;
  text-shadow: 0 1px 20px rgba(20,40,60,0.5);
  opacity: 0; animation: rise 1s var(--ease) 0.2s forwards;
}
.hero__title {
  color: #fff;
  font-size: clamp(2.9rem, 8.5vw, 7.4rem);
  line-height: 0.99;
  font-weight: 300;
  letter-spacing: -0.02em;
  max-width: 15ch;
  text-shadow: 0 2px 44px rgba(24,46,66,0.42), 0 1px 4px rgba(24,46,66,0.28);
  margin: 0;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span {
  display: block;
  transform: translateY(112%);
  animation: reveal 1.15s var(--ease) forwards;
}
.hero__title .line:nth-child(1) > span { animation-delay: 0.32s; }
.hero__title .line:nth-child(2) > span { animation-delay: 0.46s; }
.hero__title .line:nth-child(3) > span { animation-delay: 0.60s; }
.hero__title em { font-style: italic; font-weight: 300; color: var(--sky-pale); }
.hero__sub {
  margin: 2rem 0 0; max-width: 40ch;
  color: rgba(255,255,255,0.95);
  font-size: clamp(1.05rem, 1.4vw, 1.32rem);
  font-weight: 300; line-height: 1.55;
  text-shadow: 0 1px 22px rgba(24,46,66,0.45);
  opacity: 0; animation: rise 1s var(--ease) 0.9s forwards;
}
.hero__scroll {
  position: absolute; z-index: 2; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.85); font-family: var(--serif-body);
  font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  opacity: 0; animation: rise 1s var(--ease) 1.3s forwards;
}
.hero__scroll span.bar { width: 1px; height: 40px; background: linear-gradient(rgba(255,255,255,0.7), transparent); animation: scrollBar 2.2s ease-in-out infinite; transform-origin: top; }
@keyframes scrollBar { 0%,100%{ transform: scaleY(0.4); opacity: 0.4;} 50%{ transform: scaleY(1); opacity: 0.9;} }

@keyframes reveal { to { transform: translateY(0); } }
@keyframes rise { from { opacity: 0; transform: translateY(18px);} to { opacity: 1; transform: translateY(0);} }

/* ============================================================
   generic reveal-on-scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__title .line > span { transform: none; }
}

/* ============================================================
   INTRO / statement
   ============================================================ */
.intro { padding: clamp(6rem, 13vh, 10rem) 0 clamp(4rem, 8vh, 7rem); }
.intro__lede {
  font-family: var(--serif-display);
  font-weight: 300;
  font-size: clamp(1.55rem, 3.2vw, 2.75rem);
  line-height: 1.28; letter-spacing: -0.014em;
  color: var(--ink);
  max-width: 22ch;
}
.intro__lede em { font-style: italic; color: var(--sky-deep); }
/* Lede with the brush-circle logo under-lapping the text from the right —
   the wordless mark reads as a watermark; the text stays fully legible above it. */
.intro__lede-row { position: relative; }
.intro__lede-row .intro__lede { position: relative; z-index: 1; max-width: 22ch; margin: 0; }
.intro__mark {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  display: flex; align-items: center;
}
.intro__mark img {
  width: clamp(260px, 30vw, 440px); height: auto; display: block;
  margin-left: clamp(18rem, 36vw, 34rem);
  opacity: 0.55;
}
@media (max-width: 820px) {
  .intro__mark { justify-content: flex-end; }
  .intro__mark img { margin-left: 0; margin-right: -14%; width: 78%; opacity: 0.3; }
}
.intro__grid {
  margin-top: clamp(4rem, 8vh, 6.5rem);
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.intro__body p { max-width: 52ch; color: var(--ink-soft); margin: 0 0 1.3rem; }
.intro__body p:first-child::first-letter {
  font-family: var(--serif-display); float: left; font-size: 3.6em; line-height: 0.72;
  padding: 0.06em 0.12em 0 0; color: var(--sky-deep); font-weight: 400;
}
.intro__meta { border-top: 1px solid var(--line); }
.intro__meta dl { margin: 0; }
.intro__meta div { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.intro__meta dt { color: var(--ink-faint); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; }
.intro__meta dd { margin: 0; text-align: right; font-family: var(--serif-display); font-size: 1.05rem; }
@media (max-width: 820px) { .intro__grid { grid-template-columns: 1fr; } }

/* ============================================================
   THE WORK — three modalities
   ============================================================ */
.work { padding: clamp(4rem, 9vh, 8rem) 0; background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.work__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; margin-bottom: clamp(2.5rem, 5vh, 4rem); flex-wrap: wrap; }
.work__head h2 { font-size: clamp(2rem, 4.6vw, 3.6rem); max-width: 16ch; font-weight: 300; }
.work__head p { color: var(--ink-soft); max-width: 34ch; margin: 0; }

.modality { display: grid; grid-template-columns: 0.34fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); padding: clamp(2.2rem, 4vh, 3.4rem) 0; border-top: 1px solid var(--line); }
.modality:first-of-type { border-top: 1px solid var(--ink); }
.modality__no { font-family: var(--serif-display); font-size: 0.9rem; letter-spacing: 0.1em; color: var(--gold); }
.modality__no b { display: block; font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--sky-deep); font-weight: 400; margin-top: 0.4rem; font-style: italic; }
.modality h3 { font-size: clamp(1.7rem, 3.4vw, 2.7rem); margin: 0 0 0.3rem; font-weight: 400; }
.modality__tag { color: var(--gold); font-style: italic; font-family: var(--serif-display); font-size: 1.05rem; margin: 0 0 1.1rem; }
.modality__desc { color: var(--ink-soft); max-width: 56ch; margin: 0 0 1.4rem; }
.modality__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.modality__list li { display: flex; gap: 0.8rem; align-items: baseline; color: var(--ink); font-size: 0.98rem; }
.modality__list li::before { content: "—"; color: var(--gold); flex: none; }
@media (max-width: 720px) { .modality { grid-template-columns: 1fr; gap: 0.8rem; } .modality__no { display: flex; align-items: baseline; gap: 1rem; } .modality__no b { margin: 0; } }

/* ============================================================
   ABOUT — portrait feel, quote
   ============================================================ */
.about { padding: clamp(5rem, 11vh, 9rem) 0; }
.about__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.about__figure { position: relative; }
.about__figure img { border-radius: 2px; box-shadow: 0 30px 60px -30px rgba(38,48,47,0.5); }
.about__figure figcaption { font-size: 0.76rem; color: var(--ink-faint); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 0.9rem; }
.about__figure .frame { position: absolute; inset: 14px -14px -14px 14px; border: 1px solid var(--gold); z-index: -1; border-radius: 2px; }
.about h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); font-weight: 300; margin: 0 0 1.5rem; }
.about__body p { color: var(--ink-soft); max-width: 52ch; margin: 0 0 1.2rem; }
.about__body strong { font-weight: 500; color: var(--ink); }
.about__lineage { margin-top: 1.8rem; padding-top: 1.6rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 0.6rem; }
.about__lineage span { font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); border: 1px solid var(--line); border-radius: 100px; padding: 0.35rem 0.85rem; }
@media (max-width: 820px) { .about__grid { grid-template-columns: 1fr; } .about__figure { max-width: 420px; } }

/* portrait variant of the about figure */
.about__figure.is-portrait img { aspect-ratio: 1 / 1; object-fit: cover; object-position: center 32%; }
.about__figure.is-portrait { max-width: 460px; }

/* ============================================================
   ATMOSPHERE — full-bleed image bands (the SF/dusk photos)
   ============================================================ */
.band {
  position: relative; height: clamp(52vh, 62vh, 620px);
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.band__img {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04);
  transition: transform 1.4s var(--ease);
}
.band:hover .band__img { transform: scale(1.09); }
.band::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg, rgba(24,34,40,0.72) 0%, rgba(24,34,40,0.12) 46%, rgba(24,34,40,0.28) 100%);
}
.band__caption {
  position: relative; z-index: 2; width: min(var(--wrap), 92vw);
  margin: 0 auto; padding: 0 0 clamp(2rem, 5vh, 3.5rem);
  color: #fff;
}
.band__caption .k { font-family: var(--serif-body); font-size: 0.74rem; letter-spacing: 0.28em; text-transform: uppercase; opacity: 0.82; margin: 0 0 0.7rem; }
.band__caption p {
  font-family: var(--serif-display); font-weight: 300; font-style: italic;
  font-size: clamp(1.5rem, 3.4vw, 2.6rem); line-height: 1.28; margin: 0;
  max-width: 20ch; text-shadow: 0 2px 30px rgba(20,34,44,0.5);
}
.band__caption p em { font-style: normal; color: var(--sky-pale); }

/* a triptych of the SF photos */
.triptych { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; }
.triptych figure { margin: 0; position: relative; overflow: hidden; border-radius: 2px; }
.triptych img { aspect-ratio: 3 / 4; object-fit: cover; width: 100%; transition: transform 1s var(--ease); filter: saturate(0.98); }
.triptych figure:hover img { transform: scale(1.05); }
.triptych figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 1.4rem 1.2rem 1rem; color: #fff;
  font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
  background: linear-gradient(0deg, rgba(24,34,40,0.7), transparent);
}
@media (max-width: 680px) { .triptych { grid-template-columns: 1fr; } .triptych img { aspect-ratio: 16/10; } }

/* ============================================================
   TESTIMONIALS — quiet marquee of real Yelp reviews
   ============================================================ */
.voices {
  padding: clamp(4.5rem, 10vh, 8rem) 0;
  color: var(--paper);
  position: relative;
  /* Layered backgrounds — TOP layer is the veil (unifies with ink palette + keeps text legible), BOTTOM layer is the wheat/sea photo */
  background-image:
    linear-gradient(180deg, rgba(30,54,70,0.5) 0%, rgba(30,54,70,0.28) 40%, rgba(38,48,47,0.5) 100%),
    radial-gradient(120% 80% at 50% -10%, rgba(110,166,196,0.18), transparent 60%),
    url('img/wheat-sea.jpg');
  background-size: auto, auto, cover;
  background-position: center, center, center 55%;
  background-repeat: no-repeat;
  background-attachment: scroll;
}
.voices .eyebrow { color: rgba(246,242,234,0.75); }
.voices .eyebrow::before { background: var(--gold); }
.voices__head { text-align: center; margin-bottom: clamp(2.5rem, 5vh, 4rem); }
.voices__head .eyebrow { justify-content: center; }
.voices__head h2 { font-size: clamp(1.9rem, 4.4vw, 3.4rem); font-weight: 300; color: var(--paper); text-shadow: 0 2px 20px rgba(30,54,70,0.35); }
.voices__head .stars { color: var(--gold-soft); letter-spacing: 0.3em; font-size: 1.1rem; margin-top: 0.8rem; }
.voices__head .stars small { display: block; letter-spacing: 0.12em; font-size: 0.72rem; text-transform: uppercase; color: rgba(246,242,234,0.7); margin-top: 0.5rem; font-family: var(--serif-body); }

.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.4rem;
  align-items: stretch;
}
.quote {
  margin: 0; padding: 1.7rem 1.8rem;
  border: 1px solid rgba(246,242,234,0.28);
  border-radius: 6px;
  background: rgba(30,54,70,0.28);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: 0 20px 40px -22px rgba(20,32,44,0.5), inset 0 1px 0 rgba(246,242,234,0.16);
  transition: border-color 0.4s, transform 0.4s var(--ease), background 0.4s;
  display: flex; flex-direction: column; gap: 1.1rem;
}
/* Fallback for browsers without backdrop-filter (rare on modern) — solid dark tint */
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .quote { background: rgba(20,32,44,0.72); }
}
.quote:hover { border-color: rgba(216,165,60,0.6); transform: translateY(-3px); background: rgba(30,54,70,0.36); }
.quote p { font-family: var(--serif-display); font-weight: 300; font-style: italic; font-size: 1.08rem; line-height: 1.5; color: var(--paper); margin: 0; text-shadow: 0 1px 8px rgba(30,54,70,0.3); }
.quote footer { font-family: var(--serif-body); font-size: 0.8rem; letter-spacing: 0.06em; color: var(--gold-soft); margin-top: auto; }
.quote footer span { color: rgba(246,242,234,0.7); }
@media (max-width: 680px) { .quotes { grid-template-columns: 1fr; } }

/* ============================================================
   GROUPS / offerings CTA band
   ============================================================ */
.offer { padding: clamp(5rem, 11vh, 9rem) 0; }
.offer__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.4rem, 3vw, 2.4rem); }
.offer__card { border: 1px solid var(--line); border-radius: 3px; padding: clamp(1.8rem, 3vw, 2.8rem); background: var(--paper-2); position: relative; overflow: hidden; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); display: flex; flex-direction: column; }
.offer__card:hover { transform: translateY(-4px); box-shadow: 0 30px 50px -34px rgba(38,48,47,0.4); }
.offer__card .kind { font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.offer__card h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 400; margin: 0 0 0.8rem; }
.offer__card p { color: var(--ink-soft); margin: 0 0 1.6rem; flex: 1; }
.offer__card .more { font-family: var(--serif-body); font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sky-deep); text-decoration: none; display: inline-flex; gap: 0.5rem; align-items: center; }
.offer__card .more::after { content: "→"; transition: transform 0.3s; }
.offer__card:hover .more::after { transform: translateX(5px); }
@media (max-width: 720px) { .offer__grid { grid-template-columns: 1fr; } }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: clamp(5rem, 11vh, 9rem) 0 clamp(3rem, 6vh, 5rem); background: var(--paper-2); border-top: 1px solid var(--line); }
.contact__grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(2rem, 5vw, 5rem); align-items: end; }
.contact h2 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 300; line-height: 1.02; margin: 0 0 1.4rem; }
.contact h2 em { font-style: italic; color: var(--sky-deep); }
.contact__intro { color: var(--ink-soft); max-width: 42ch; margin: 0 0 2rem; }
.contact__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.btn { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; font-family: var(--serif-body); letter-spacing: 0.06em; font-size: 0.95rem; padding: 0.95rem 1.7rem; border-radius: 100px; transition: transform 0.3s var(--ease), background 0.3s, color 0.3s; }
.btn--solid { background: var(--sky-deep); color: var(--paper); }
.btn--solid:hover { background: var(--ink); transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--sky-deep); color: var(--sky-deep); }
.btn--ghost:hover { background: var(--sky-deep); color: var(--paper); transform: translateY(-2px); }
.contact__details { display: grid; gap: 1.1rem; }
.contact__details div { border-bottom: 1px solid var(--line); padding-bottom: 0.9rem; }
.contact__details dt { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 0.35rem; }
.contact__details dd { margin: 0; font-family: var(--serif-display); font-size: 1.15rem; }
.contact__details a { text-decoration: none; }
.contact__details a:hover { color: var(--sky-deep); }
@media (max-width: 760px) { .contact__grid { grid-template-columns: 1fr; align-items: start; } }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { padding: 2.5rem 0 3rem; }
.foot__row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; color: var(--ink-faint); font-size: 0.8rem; }
.foot__row a { color: var(--ink-soft); text-decoration: none; }
.foot__row a:hover { color: var(--sky-deep); }
.foot__brand { font-family: var(--serif-display); font-size: 1rem; color: var(--ink); display: inline-flex; align-items: center; gap: 0.6rem; }
.foot__mark { width: 26px; height: auto; mix-blend-mode: multiply; }
.foot__note { max-width: 60ch; margin: 1.6rem auto 0; text-align: center; color: var(--ink-faint); font-size: 0.76rem; line-height: 1.6; border-top: 1px solid var(--line); padding-top: 1.6rem; }

/* ============================================================
   SUBPAGE header (the-work / groups)
   ============================================================ */
.subhero { padding: clamp(8rem, 18vh, 12rem) 0 clamp(3rem, 6vh, 5rem); position: relative; }
.subhero::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 46vh; background: linear-gradient(180deg, var(--sky-pale), var(--paper)); z-index: 0; opacity: 0.5; }
.subhero .wrap { position: relative; z-index: 2; }
.subhero .back { font-family: var(--serif-body); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); text-decoration: none; display: inline-flex; gap: 0.5rem; margin-bottom: 2rem; }
.subhero .back::before { content: "←"; }
.subhero h1 { font-size: clamp(2.6rem, 7vw, 5.6rem); font-weight: 300; letter-spacing: -0.02em; max-width: 15ch; }
.subhero h1 em { font-style: italic; color: var(--sky-deep); }
.subhero__lede { margin-top: 1.6rem; max-width: 54ch; color: var(--ink-soft); font-size: clamp(1.1rem, 1.6vw, 1.35rem); font-weight: 300; }

.prose { max-width: var(--measure); }
.prose h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight: 400; margin: clamp(2.5rem,5vh,4rem) 0 1rem; }
.prose h3 { font-size: 1.35rem; font-weight: 500; margin: 2rem 0 0.6rem; color: var(--sky-deep); font-family: var(--serif-display); }
.prose p { color: var(--ink-soft); margin: 0 0 1.3rem; }
.prose ul { padding-left: 0; list-style: none; margin: 1rem 0 1.6rem; display: grid; gap: 0.6rem; }
.prose ul li { display: flex; gap: 0.8rem; }
.prose ul li::before { content: "◦"; color: var(--gold); }
.prose blockquote { margin: 2rem 0; padding-left: 1.6rem; border-left: 2px solid var(--gold); font-family: var(--serif-display); font-style: italic; font-size: 1.3rem; color: var(--ink); }

.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin: clamp(2.5rem,5vh,4rem) 0; }
.gallery figure { margin: 0; }
.gallery img { border: 1px solid var(--line); border-radius: 2px; box-shadow: 0 20px 40px -28px rgba(38,48,47,0.4); }
.gallery figcaption { font-size: 0.76rem; color: var(--ink-faint); margin-top: 0.7rem; letter-spacing: 0.06em; }
@media (max-width: 640px) { .gallery { grid-template-columns: 1fr; } }
