/* ============================================
   MOVE W MON — Editorial Apothecary
   ============================================ */

/* --- Design Tokens --- */
:root {
  /* Palette — exact brand colors from logo + brief */
  --ink:        #4B382A;        /* dark chocolate brown — from logo bg */
  --ink-logo:   #44312B;        /* exact bg baked into logo-dark.png — keeps the mark seamless */
  --blush-logo: #FAE8E0;        /* exact bg baked into logo-light.png */
  --ink-soft:   #6B5244;
  --ink-muted:  #8C7668;
  --parchment:  #FAF8F4;        /* soft sand — page bg */
  --parchment-2: #EBE1D2;       /* warm cream/linen — from logo mark */
  --parchment-3: #DFD2BE;       /* deeper linen */
  /* Accent: warm blush — high contrast on dark ink, no mustard, no oxblood mud */
  --gold:       #E8A78D;        /* warm blush/rose — primary accent (var name kept) */
  --gold-soft:  #F0BFA8;        /* lighter blush */
  --terracotta: #C4674A;        /* terracotta on light bg */
  --sage:       #A89B89;        /* mushroom */

  /* Typography */
  --font-display: 'Fraunces', 'Times New Roman', Georgia, serif;
  --font-body:    'Instrument Sans', -apple-system, 'Segoe UI', system-ui, sans-serif;

  /* Fluid type scale — editorial */
  --fs-label:   0.6875rem;                        /* 11px small-caps labels */
  --fs-body:    clamp(0.975rem, 0.9rem + 0.25vw, 1.05rem);
  --fs-lead:    clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  --fs-h3:      clamp(1.375rem, 1.2rem + 0.8vw, 1.875rem);
  --fs-h2:      clamp(2rem, 1.5rem + 2vw, 3.25rem);
  --fs-h1:      clamp(2.5rem, 1.6rem + 5vw, 6.5rem);
  --fs-numeral: clamp(3rem, 2rem + 5vw, 7rem);

  /* Spacing — fluid */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: clamp(3rem, 5vw, 5rem);
  --s-9: clamp(3rem, 7vw, 7.5rem);
  --s-10: clamp(4rem, 10vw, 11rem);

  /* Layout */
  --max: 1440px;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);

  /* Rule */
  --rule: 1px solid color-mix(in oklch, var(--ink) 18%, transparent);
  --rule-strong: 1px solid color-mix(in oklch, var(--ink) 35%, transparent);
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--ink);
  background: var(--parchment);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'kern';
  overflow-x: hidden;
}

/* Subtle film grain — single elevation move, very cheap */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

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

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 250ms var(--ease);
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

input, textarea, select { font: inherit; color: inherit; }

/* --- Typography --- */
.display, h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: 'SOFT' 30, 'opsz' 144;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 {
  font-size: var(--fs-h1);
  font-weight: 300;
  letter-spacing: -0.035em;
}

h2 {
  font-size: var(--fs-h2);
  letter-spacing: -0.025em;
  line-height: 1;
}

h3 {
  font-size: var(--fs-h3);
  letter-spacing: -0.015em;
  line-height: 1.1;
}

.lead {
  font-size: var(--fs-lead);
  line-height: 1.45;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 38ch;
}

p { max-width: 62ch; }

em, .italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--ink);
  display: inline-block;
}

.eyebrow--center {
  justify-content: center;
}

.numeral {
  font-family: var(--font-display);
  font-size: var(--fs-numeral);
  font-weight: 200;
  font-style: italic;
  line-height: 0.85;
  color: var(--ink);
}

/* --- Layout --- */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--s-10);
  position: relative;
}

.section--tight { padding-block: var(--s-9); }

/* --- Navigation --- */
.nav {
  /* absolute, not fixed: the nav scrolls away with the hero, so it is only
     ever seen at the top. No scrolled state, and no blanket transition —
     animating backdrop-filter here caused a flicker on the way back up. */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-block: var(--s-5);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
}

.nav__mark {
  display: flex;
  align-items: center;
  position: relative;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  transition: transform 400ms var(--ease);
  isolation: isolate; /* escape nav mix-blend-mode */
}

.nav__mark:hover { transform: rotate(-6deg) scale(1.05); }

/* Desktop already carries the wordmark in the hero banner, so the small
   corner mark is redundant. */
@media (min-width: 960px) {
  .nav__mark { display: none; }
}

.nav__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.nav__logo--light { display: none; }
.nav__logo--dark  { display: block; } /* dark bg version over hero */

.nav.scrolled .nav__logo--light { display: block; } /* light bg version when scrolled */
.nav.scrolled .nav__logo--dark  { display: none; }

.nav__links {
  list-style: none;
  display: none;
  align-items: center;
  gap: var(--s-7);
}

@media (min-width: 820px) {
  .nav__links { display: flex; }
}

.nav__links a {
  font-size: var(--fs-label);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--parchment);
  position: relative;
  padding-block: var(--s-2);
}

.nav.scrolled .nav__links a { color: var(--ink); }

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 400ms var(--ease);
}

.nav__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.nav__cta {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--parchment);
  border: 1px solid currentColor;
  padding: var(--s-3) var(--s-5);
  border-radius: 999px;
  transition: all 300ms var(--ease);
}

.nav.scrolled .nav__cta { color: var(--ink); }

.nav__cta:hover {
  background: var(--parchment);
  color: var(--ink);
}

.nav.scrolled .nav__cta:hover {
  background: var(--ink);
  color: var(--parchment);
}

.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--s-2);
  z-index: 110;
}

@media (min-width: 820px) {
  .nav__burger { display: none; }
}

.nav__burger span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--parchment);
  transition: all 300ms var(--ease);
}

.nav.scrolled .nav__burger span { background: var(--ink); }

.nav__burger.open span { background: var(--ink); }

.nav__burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav__mobile {
  position: fixed;
  inset: 0;
  background: var(--parchment);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s-8) var(--gutter);
  gap: var(--s-6);
  transform: translateX(100%);
  transition: transform 500ms var(--ease-expo);
  z-index: 105;
}

.nav__mobile.open { transform: translateX(0); }

.nav__mobile a {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 10vw, 4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.nav__mobile a .num {
  font-size: 0.6em;
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 500;
  vertical-align: super;
  margin-right: var(--s-3);
  color: var(--ink-muted);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

@media (min-width: 960px) {
  .hero {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
  }
}

/* Chocolate top banner with centred logo — mobile only.
   Sits behind the fixed nav, so its height matches the nav's (56px mark
   + s-5 padding top and bottom) and the burger overlays it. */
.hero__topbar {
  display: none;
}

@media (max-width: 959px) {
  .hero__topbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--s-2);
    flex: 0 0 auto;
    height: calc(56px + var(--s-5) * 2 + var(--s-5));
    background: var(--ink-logo);
    order: 1;
  }
  .hero__topbar-logo {
    width: min(58vw, 230px);
    height: 52px;
  }
  /* The banner already shows the logo — drop the nav's duplicate until scrolled */
  .nav:not(.scrolled) .nav__mark {
    opacity: 0;
    pointer-events: none;
  }
}


.hero__text {
  position: relative;
  z-index: 2;
  padding: var(--s-7) var(--gutter) var(--s-7);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--s-5);
  color: var(--parchment);
  background: var(--ink-logo);
  order: 3;
  align-items: center;
  text-align: center;
}

/* centred column: keep the measure-limited blocks optically centred */
.hero__text h1,
.hero__text .lead { margin-inline: auto; }

@media (max-width: 959px) {
  /* banner, then photo, then text — the photo absorbs whatever height is
     left over so the text always lands above the fold */
  .hero__text {
    order: 3;
    flex: 0 0 auto;
    padding: var(--s-5) var(--gutter) var(--s-6);
    gap: var(--s-4);
    justify-content: flex-start;
  }
  .hero__image {
    order: 2;
    flex: 1 1 auto;
  }
}

@media (min-width: 960px) {
  .hero__text {
    padding: var(--s-10) var(--s-8);
    min-height: 90dvh;
    order: 0;
  }
}

@media (min-width: 960px) {
  .hero__text {
    padding: var(--s-10) var(--s-8);
  }
}

.hero__mark {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: var(--s-3);
  align-self: flex-start;
}

@media (min-width: 820px) {
  .hero__mark { width: 72px; height: 72px; }
}

.hero__text .eyebrow {
  color: var(--parchment);
}

.hero__text .eyebrow::before {
  background: var(--gold);
}

.hero__text h1 {
  color: var(--parchment);
  /* two deliberate lines: the 14ch measure would force a third */
  max-width: none;
  font-size: clamp(1.5rem, 10.4vw, 3.5rem);
}

/* each .line holds together so the break stays where the markup puts it */
.hero__text h1 .line > span { white-space: nowrap; }

@media (min-width: 960px) {
  .hero__text h1 { font-size: clamp(1.75rem, 4.3vw, 4.25rem); }
}

.hero__text h1 em {
  color: var(--gold);
}

.hero__text .lead {
  color: color-mix(in oklch, var(--parchment) 78%, transparent);
  max-width: 36ch;
  font-weight: 300;
}

.hero__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--s-5);
  padding-top: var(--s-6);
  border-top: 1px solid color-mix(in oklch, var(--parchment) 22%, transparent);
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: color-mix(in oklch, var(--parchment) 65%, transparent);
}

.hero__image {
  position: relative;
  min-height: 60vh;
  order: 1;
}

@media (max-width: 959px) {
  .hero__image {
    /* Source is 2560x3840 portrait; at full width it renders 1.5x the width
       tall, and Mon spans ~40-76% of that. 54vw guarantees her whole figure,
       feet included, always fits in the crop. */
    min-height: 54vw;
    height: auto;
    width: 100%;
  }
  /* the marquee strip immediately below repeats this, so reclaim the height
     for the photo and keep the headline and CTAs above the fold */
  .hero__meta { display: none; }
}

/* Short phones (iPhone SE and similar): tighten the type and spacing so the
   banner, photo and both CTAs still clear the fold. */
@media (max-width: 959px) and (max-height: 740px) {
  .hero__topbar { height: calc(48px + var(--s-4) * 2); }
  .hero__topbar-logo { height: 48px; }
  .hero__text {
    padding: var(--s-4) var(--gutter) var(--s-5);
    gap: var(--s-3);
  }
  .hero__text h1 { font-size: 2rem; }
  .hero__text .lead { font-size: 0.95rem; line-height: 1.4; }
}

.hero__image img:not(.hero__image-logo) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

/* Mobile hero crop — must sit after the base rule above to win the cascade.
   Source is 2560x3840 portrait; Mon spans ~40-76% of its height, so 64%
   keeps her whole figure, feet included, inside the short crop. */
@media (max-width: 959px) {
  .hero__image img:not(.hero__image-logo) { object-position: center 64%; }
}


/* Hero carousel — slides cross-fade, 3s each (timing driven by JS) */
.hero__slide {
  opacity: 0;
  z-index: 0;
  /* held-underneath layering means an ease reads smooth without dipping */
  transition: opacity 700ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}

/* The outgoing slide holds full opacity underneath the incoming one, so the
   dark panel never shows through mid-fade. That gap was the blocky flash. */
.hero__slide.is-prev {
  opacity: 1;
  z-index: 1;
  transition: none;
}

.hero__slide.is-active {
  opacity: 1;
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide { transition: none; }
}

.hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, color-mix(in oklch, var(--ink) 30%, transparent));
}

/* --- Buttons (editorial) --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: var(--s-4) var(--s-6);
  border-radius: 999px;
  transition: all 400ms var(--ease);
  border: 1px solid currentColor;
  cursor: pointer;
  text-decoration: none;
  width: fit-content;
}

.btn .arrow {
  display: inline-block;
  transition: transform 400ms var(--ease);
}

.btn:hover .arrow { transform: translateX(4px); }

.btn--gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: transparent;
  color: var(--gold);
}

.btn--ink {
  background: var(--ink);
  color: var(--parchment);
  border-color: var(--ink);
}

.btn--ink:hover {
  background: transparent;
  color: var(--ink);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
}

.btn--ghost:hover {
  background: var(--ink);
  color: var(--parchment);
}

.btn--light {
  background: var(--parchment);
  color: var(--ink);
  border-color: var(--parchment);
}

.btn--light:hover {
  background: transparent;
  color: var(--parchment);
}

/* Link-style button */
.link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding-bottom: var(--s-2);
  border-bottom: 1px solid currentColor;
  transition: color 300ms var(--ease);
}

.link .arrow { transition: transform 400ms var(--ease); }
.link:hover .arrow { transform: translateX(6px); }
.link:hover { color: var(--terracotta); }

/* --- Section Header (editorial) --- */
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  margin-bottom: var(--s-8);
  align-items: end;
}

@media (min-width: 820px) {
  .section-head {
    grid-template-columns: auto 1fr;
    gap: var(--s-8);
  }
}

.section-head__num {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  padding-bottom: var(--s-3);
  border-bottom: var(--rule);
  min-width: 120px;
}

.section-head__title h2 {
  max-width: 18ch;
}

/* --- Intro / About --- */
.intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  align-items: start;
}


@media (min-width: 820px) {
  .intro {
    grid-template-columns: 1.1fr 1fr;
    gap: var(--s-9);
    align-items: stretch;
  }
  .intro__body { justify-content: center; padding-top: 0; }
  .intro__image {
    aspect-ratio: auto;
    align-self: stretch;
    height: 100%;
    min-height: 100%;
    margin-left: auto;
    width: 100%;
    max-height: none;
  }
  .intro__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
  }
  .intro__image { position: relative; }
}

.intro__body {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  padding-top: var(--s-5);
  order: 2;
}

@media (min-width: 820px) {
  .intro__body { order: 1; }
}

.intro__body h2 { margin-bottom: var(--s-2); }

.intro__body p { color: var(--ink-soft); }

.intro__image {
  position: relative;
  aspect-ratio: 1200 / 664;
  overflow: hidden;
  order: 1;
  max-width: 78%;
  max-height: 62vh;
  margin-inline: auto;
}

@media (min-width: 820px) {
  .intro__image {
    order: 2;
    max-width: none;
    max-height: none;
    aspect-ratio: 1200 / 664;
  }
}

/* Single-column: break the photo out of .wrap's gutter, edge to edge.
   Must follow the base rule above, which sets max-width: 78% + auto margins. */
@media (max-width: 819px) {
  .intro__image {
    width: 100vw;
    max-width: 100vw;
    max-height: none;
    aspect-ratio: 1200 / 664;
    margin-inline: calc(50% - 50vw);
  }
}

.intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro__caption {
  position: absolute;
  bottom: var(--s-5);
  right: var(--s-5);
  background: var(--parchment);
  padding: var(--s-3) var(--s-5);
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: var(--s-5);
}

.tag {
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: var(--s-2) var(--s-4);
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
}

/* --- Method — Cycle Phases as editorial list --- */
.method {
  background: var(--parchment-2);
}

.phases {
  display: grid;
  grid-template-columns: 1fr;
}

.phase {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-6);
  align-items: baseline;
  padding: var(--s-7) 0;
  border-top: var(--rule);
  transition: background 500ms var(--ease);
}

.phase:last-child { border-bottom: var(--rule); }

@media (min-width: 820px) {
  .phase {
    grid-template-columns: 80px 1.2fr 2fr auto;
    gap: var(--s-8);
    padding: var(--s-8) 0;
  }
}

.phase:hover { background: color-mix(in oklch, var(--ink) 3%, transparent); }

.phase__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 200;
  font-size: clamp(1.75rem, 1.2rem + 1.5vw, 2.75rem);
  color: var(--ink-muted);
  line-height: 1;
}

.phase__name {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.3rem + 1.5vw, 2.625rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
}

.phase__desc {
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 50ch;
  grid-column: 1 / -1;
}

@media (min-width: 820px) {
  .phase__desc {
    grid-column: auto;
  }
}

.phase__tag {
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  font-variant-numeric: tabular-nums;
  grid-column: 1 / -1;
}

@media (min-width: 820px) {
  .phase__tag { grid-column: auto; text-align: right; }
}

/* --- Services — editorial list --- */
.services-list {
  display: grid;
  grid-template-columns: 1fr;
}

.service {
  border-top: var(--rule-strong);
  position: relative;
}

.service:last-of-type { border-bottom: var(--rule-strong); }

/* Row that toggles the panel open */
.service__toggle {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--s-4);
  width: 100%;
  text-align: left;
  padding: var(--s-6) 0;
  cursor: pointer;
  background: none;
  border: none;
  transition: padding 400ms var(--ease), background 300ms var(--ease);
}

@media (min-width: 820px) {
  .service__toggle {
    grid-template-columns: 80px 1fr auto;
    gap: var(--s-8);
    padding: var(--s-7) var(--s-4);
  }
}

.service__toggle:hover {
  background: color-mix(in oklch, var(--ink) 4%, transparent);
}

@media (min-width: 820px) {
  .service__toggle:hover { padding-inline: var(--s-6); }
}

.service__toggle:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: -3px;
}

.service__toggle:hover .service__title { font-style: italic; }

/* Plus / minus indicator */
.service__icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.service__icon::before,
.service__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  transform: translateY(-50%);
  transition: transform 400ms var(--ease), opacity 300ms var(--ease);
}

.service__icon::after { transform: translateY(-50%) rotate(90deg); }

.service.is-open .service__icon::after {
  transform: translateY(-50%) rotate(0deg);
  opacity: 0;
}

/* Collapsible panel — 0fr to 1fr animates cleanly without fixed heights */
.service__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 500ms var(--ease);
}

.service.is-open .service__panel { grid-template-rows: 1fr; }

.service__panel-inner {
  min-height: 0;
  overflow: hidden;
}

.service__panel .service__desc {
  padding-bottom: var(--s-4);
}

.service__panel .service__cta {
  margin-bottom: var(--s-6);
}

@media (min-width: 820px) {
  .service__panel-inner {
    padding-left: calc(80px + var(--s-8));
    padding-right: var(--s-4);
  }
}

@media (prefers-reduced-motion: reduce) {
  .service__panel { transition: none; }
  .service__icon::before,
  .service__icon::after { transition: none; }
}

.service__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 200;
  font-size: clamp(2rem, 1.2rem + 2vw, 3.25rem);
  color: var(--ink-muted);
  line-height: 0.85;
}

.service__title {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 1.2rem + 1.2vw, 2.25rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  transition: color 300ms var(--ease);
}

.service:hover .service__title {
  font-style: italic;
}

.service__desc {
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 50ch;
}

.service__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-size: var(--fs-label);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink);
  white-space: nowrap;
}

.service__cta .arrow {
  transition: transform 400ms var(--ease);
}

.service:hover .service__cta .arrow {
  transform: translateX(8px);
}

/* --- Full-bleed image divider --- */
.fullbleed {
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  position: relative;
}

.fullbleed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.fullbleed__quote {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gutter);
  background: linear-gradient(180deg,
    color-mix(in oklch, var(--ink) 15%, transparent) 0%,
    color-mix(in oklch, var(--ink) 35%, transparent) 100%);
}
.fullbleed__quote p {
  text-shadow: 0 2px 40px color-mix(in oklch, var(--ink) 60%, transparent);
}

.fullbleed__quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 1rem + 2vw, 2.75rem);
  line-height: 1.2;
  color: var(--parchment);
  text-align: center;
  max-width: 22ch;
  letter-spacing: -0.015em;
}

/* --- Enquire Section --- */
.enquire {
  background: var(--ink);
  color: var(--parchment);
}

.enquire .eyebrow { color: var(--parchment); }
.enquire .eyebrow::before { background: var(--gold); }
.enquire { position: relative; overflow: hidden; }

/* centred, untilted, spanning the panel. Masked from the transparent mark so
   the logo's baked-in background doesn't show as a faint square. */
.enquire__watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(92%, 1100px);
  aspect-ratio: 700 / 211;
  background: var(--parchment);
  -webkit-mask-image: url('../images/logo-mark.png');
          mask-image: url('../images/logo-mark.png');
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.enquire .wrap { position: relative; z-index: 1; }

.enquire h2 { color: var(--parchment); max-width: 14ch; }
.enquire .lead { color: color-mix(in oklch, var(--parchment) 75%, transparent); }
.enquire .section-head__num {
  color: color-mix(in oklch, var(--parchment) 55%, transparent);
  border-bottom-color: color-mix(in oklch, var(--parchment) 20%, transparent);
}

.enquire__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-8);
  align-items: start;
}

@media (min-width: 960px) {
  .enquire__layout {
    grid-template-columns: 1fr 1.2fr;
    gap: var(--s-9);
  }
}

.enquire__intro { display: flex; flex-direction: column; gap: var(--s-5); }

.form {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
}

.field {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  position: relative;
}

.field label {
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: color-mix(in oklch, var(--parchment) 60%, transparent);
  font-weight: 500;
}

.field input,
.field textarea,
.field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid color-mix(in oklch, var(--parchment) 35%, transparent);
  padding: var(--s-3) 0 var(--s-4);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1rem + 0.8vw, 1.625rem);
  font-weight: 300;
  color: var(--parchment);
  outline: none;
  transition: border-color 300ms var(--ease);
  width: 100%;
}

.field input::placeholder,
.field textarea::placeholder {
  color: color-mix(in oklch, var(--parchment) 30%, transparent);
  font-style: italic;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-bottom-color: var(--gold);
}

.field textarea { resize: vertical; min-height: 60px; font-family: var(--font-body); font-size: var(--fs-body); line-height: 1.55; padding-top: var(--s-2); }

.field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23F5EFE2' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--s-1) center;
  padding-right: var(--s-7);
  font-style: italic;
}

.field select option {
  background: var(--ink);
  color: var(--parchment);
  font-family: var(--font-body);
  font-style: normal;
}

.form__submit {
  display: flex;
  justify-content: flex-start;
  margin-top: var(--s-4);
}

.enquire__success {
  display: none;
  padding: var(--s-6) 0;
}

.enquire__success.show { display: block; }

.enquire__success h3 {
  color: var(--parchment);
  font-size: var(--fs-h3);
}

.enquire__success p {
  color: color-mix(in oklch, var(--parchment) 70%, transparent);
  margin-top: var(--s-4);
}

/* --- Testimonial — big pull quote --- */
.pull-quote {
  background: var(--parchment-2);
  padding-block: var(--s-10);
  text-align: center;
}

.pull-quote blockquote {
  max-width: 24ch;
  margin: 0 auto;
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.pull-quote cite {
  display: block;
  margin-top: var(--s-7);
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-muted);
}

.pull-quote__dots {
  display: inline-flex;
  gap: var(--s-3);
  margin-top: var(--s-7);
  justify-content: center;
}

.pull-quote__dots button {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: color-mix(in oklch, var(--ink) 20%, transparent);
  transition: background 300ms var(--ease);
}

.pull-quote__dots button.active {
  background: var(--ink);
}

/* --- Worked with — events & collaborations --- */
.worked {
  background: var(--parchment-2);
  padding-block: var(--s-10);
}

.worked__heading {
  text-align: center;
  max-width: 20ch;
  margin: 0 auto var(--s-9);
}

.worked__list {
  list-style: none;
  max-width: 900px;
  margin: 0 auto;
  border-top: var(--rule-strong);
}

.worked__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-2);
  padding: var(--s-6) 0;
  border-bottom: var(--rule-strong);
}

@media (min-width: 820px) {
  .worked__item {
    grid-template-columns: 0.8fr 1fr 1.4fr 0.9fr;
    gap: var(--s-6);
    align-items: center;
    padding: var(--s-7) var(--s-2);
  }
  /* entries without a photo still line their text up with the rest */
  .worked__item:not(:has(.worked__gallery)) .worked__detail { grid-column: 3 / -1; }
}

/* Rotating photo(s) of the work itself */
.worked__gallery {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-top: var(--s-4);
}

@media (min-width: 820px) {
  .worked__gallery { margin-top: 0; }
}

.worked__shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 0;
  transition: opacity 700ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* outgoing frame holds underneath so the panel never shows through mid-fade */
.worked__shot.is-prev { opacity: 1; z-index: 1; transition: none; }
.worked__shot.is-active { opacity: 1; z-index: 2; }

@media (prefers-reduced-motion: reduce) {
  .worked__shot { transition: none; }
}

.worked__place {
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
}

.worked__brand {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 1.1rem + 1vw, 1.875rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.worked__detail {
  color: var(--ink-soft);
  line-height: 1.55;
}

/* --- Instagram strip --- */
.insta {
  padding-block: var(--s-9) var(--s-8);
}

.insta__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--s-5);
  flex-wrap: wrap;
  margin-bottom: var(--s-7);
}

.insta__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3);
}

@media (min-width: 640px) {
  .insta__grid { grid-template-columns: repeat(4, 1fr); }
}

.insta__item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.insta__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}

.insta__item:hover img { transform: scale(1.05); }

.insta__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: color-mix(in oklch, var(--ink) 0%, transparent);
  transition: background 400ms var(--ease);
}

.insta__item:hover::after {
  background: color-mix(in oklch, var(--ink) 12%, transparent);
}

/* --- Footer --- */
.footer {
  background: var(--ink);
  color: var(--parchment);
  padding-block: var(--s-9) var(--s-6);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  margin-bottom: var(--s-8);
  flex-wrap: wrap;
}

/* the mark itself, painted parchment for the dark footer */
.footer__logo {
  width: min(78vw, 460px);
  aspect-ratio: 700 / 211;
  background: var(--parchment);
  -webkit-mask-image: url('../images/logo-mark.png');
          mask-image: url('../images/logo-mark.png');
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: left center;
          mask-position: left center;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  padding-top: var(--s-7);
  border-top: 1px solid color-mix(in oklch, var(--parchment) 18%, transparent);
}

@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
  color: color-mix(in oklch, var(--parchment) 55%, transparent);
  margin-bottom: var(--s-4);
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.footer__col a {
  font-size: var(--fs-body);
  color: color-mix(in oklch, var(--parchment) 85%, transparent);
}

.footer__col a:hover { color: var(--gold); }

.footer__about p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.4;
  color: color-mix(in oklch, var(--parchment) 75%, transparent);
  font-weight: 300;
  max-width: 32ch;
}

.footer__legal {
  margin-top: var(--s-7);
  padding-top: var(--s-5);
  border-top: 1px solid color-mix(in oklch, var(--parchment) 12%, transparent);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-4);
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: color-mix(in oklch, var(--parchment) 45%, transparent);
}

/* --- Reveal animations --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

.reveal.visible { opacity: 1; transform: none; }

.reveal-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

.reveal-children.visible > * { opacity: 1; transform: none; }
.reveal-children.visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-children.visible > *:nth-child(2) { transition-delay: 120ms; }
.reveal-children.visible > *:nth-child(3) { transition-delay: 240ms; }
.reveal-children.visible > *:nth-child(4) { transition-delay: 360ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .reveal-children > * { opacity: 1; transform: none; }
}

/* ============================================
   ELEVATION PASS — animate · delight · polish · adapt · audit
   ============================================ */

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--parchment);
  padding: var(--s-4) var(--s-5);
  font-size: var(--fs-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 999;
}
.skip-link:focus { left: var(--s-4); top: var(--s-4); outline: 2px solid var(--gold); }

/* Focus-visible across the board */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 1px;
}
.btn:focus-visible, .nav__cta:focus-visible {
  outline-offset: 4px;
}

/* Scroll progress bar — single oxblood hairline */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--gold);
  z-index: 300;
  transition: width 80ms linear;
  pointer-events: none;
}

/* Hero headline line-reveal on load */
.hero__text h1 .line {
  display: block;
  overflow: visible;
  padding-bottom: 0.08em;
}
.hero__text h1 .line > span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 1100ms var(--ease-expo), opacity 700ms var(--ease);
  will-change: transform;
}
.hero.loaded .hero__text h1 .line > span { transform: none; opacity: 1; }
.hero.loaded .hero__text h1 .line:nth-child(2) > span { transition-delay: 120ms; }
.hero.loaded .hero__text h1 .line:nth-child(3) > span { transition-delay: 240ms; }
.hero__text .eyebrow,
.hero__text .lead,
.hero__text > div:not(.hero__meta),
.hero__text .hero__meta {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 800ms var(--ease) 500ms, transform 800ms var(--ease) 500ms;
}
.hero__text .lead { transition-delay: 620ms; }
.hero__text > div:not(.hero__meta) { transition-delay: 740ms; }
/* banner leads the sequence rather than trailing the headline */
.hero__text > .hero__banner { transition-delay: 0ms; }
.hero__text .hero__meta { transition-delay: 860ms; }
.hero.loaded .hero__text .eyebrow,
.hero.loaded .hero__text .lead,
.hero.loaded .hero__text > div:not(.hero__meta),
.hero.loaded .hero__text .hero__meta { opacity: 1; transform: none; }

/* Hero image subtle scale on load */
.hero__image img:not(.hero__image-logo) {
  transform: scale(1.06);
  transform-origin: center top;
  /* opacity must be declared here too: this selector outranks .hero__slide,
     so a transform-only transition would drop the cross-fade entirely */
  transition: transform 1800ms var(--ease-expo),
              opacity 700ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}
.hero.loaded .hero__image img:not(.hero__image-logo) { transform: scale(1); }

/* Marquee strip — credentials/locations */
.marquee {
  background: var(--parchment-2);
  border-block: var(--rule);
  overflow: hidden;
  padding-block: var(--s-5);
}
.marquee__track {
  display: flex;
  gap: var(--s-8);
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee__item {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 1rem + 1.5vw, 2.25rem);
  color: var(--ink);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: var(--s-8);
  letter-spacing: -0.01em;
}
.marquee__item::after {
  content: '✦';
  font-style: normal;
  font-size: 0.6em;
  color: var(--gold);
  display: inline-block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* Phase row — left indicator on hover */
.phase {
  position: relative;
  --indicator: 0;
}
.phase::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  height: 1px;
  width: 0;
  background: var(--gold);
  transform: translateY(-50%);
  transition: width 600ms var(--ease-expo);
}
.phase:hover::before { width: 32px; }
@media (min-width: 820px) {
  .phase { padding-left: var(--s-5); transition: padding 500ms var(--ease); }
  .phase:hover { padding-left: calc(var(--s-5) + 48px); }
  .phase:hover::before { width: 32px; left: var(--s-5); }
}
.phase:hover .phase__name { color: var(--gold); }
.phase__name { transition: color 400ms var(--ease); }

/* Service row — slide on hover, big oxblood underline reveal */
.service {
  --u: 0;
}
.service::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(var(--u));
  transform-origin: left center;
  transition: transform 700ms var(--ease-expo);
}
.service:hover { --u: 1; }
.service:hover .service__title { color: var(--gold); }
.service__title { transition: color 400ms var(--ease), transform 600ms var(--ease-expo); }
@media (min-width: 820px) {
  .service:hover .service__title { transform: translateX(8px); }
}

/* Burger — hairlines, not slabs */
.nav__burger span { height: 1px; width: 28px; }

/* Pull-quote dots — bigger, oxblood active */
.pull-quote__dots button {
  width: 8px;
  height: 8px;
  background: color-mix(in oklch, var(--ink) 18%, transparent);
}
.pull-quote__dots button.active { background: var(--gold); }
.pull-quote__dots button:focus-visible { outline-offset: 6px; }

/* Footer wordmark dot — oxblood reads dark on dark; switch to clay */
.footer__col a { transition: color 300ms var(--ease); }
.footer__col a:hover { color: var(--gold-soft); }

/* Insta items: subtle scale + grayscale lift */
.insta__item img { filter: saturate(0.92); transition: transform 900ms var(--ease), filter 600ms var(--ease); }
.insta__item:hover img { filter: saturate(1.05); }

/* Fullbleed parallax target */
.fullbleed img {
  transform: scale(1.05);
  transition: transform 60ms linear;
  will-change: transform;
}

/* Custom dot cursor — desktop fine pointer only */
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--ink);
    pointer-events: none;
    z-index: 400;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    transition: width 250ms var(--ease), height 250ms var(--ease), background 250ms var(--ease);
  }
  .cursor-dot.hover {
    width: 36px; height: 36px;
    background: var(--gold);
  }
  body { cursor: none; }
  a, button, input, textarea, select, label { cursor: none; }
}
@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cursor-dot { display: none !important; }
}

/* Mobile spacing tightening for service / phase */
@media (max-width: 819px) {
  .phase { padding: var(--s-6) 0; gap: var(--s-3); }
  .phase__num { font-size: 1.5rem; }
  .phase__name { font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); }
  .phase__desc { margin-top: var(--s-2); }
  .phase__tag { margin-top: var(--s-2); }

  .service { padding: var(--s-6) 0; gap: var(--s-3); }
  .service__num { font-size: 1.75rem; }
  .service__title { font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); }
  .service__cta { margin-top: var(--s-3); }

  .pull-quote { padding-block: var(--s-9); }
  .insta__head h3 { font-size: 1.5rem; }

  .nav { padding-block: var(--s-3); }
  .nav__mark { width: 44px; height: 44px; }
}

/* Tags — softer, less templated */
.tag {
  background: transparent;
  border: 1px solid color-mix(in oklch, var(--ink) 25%, transparent);
  color: var(--ink-soft);
  font-weight: 500;
  padding: var(--s-2) var(--s-4);
}

/* Mobile: tighten the chips so they sit two-up instead of one per row */
@media (max-width: 819px) {
  .tag {
    padding: var(--s-2) var(--s-3);
    letter-spacing: 0.1em;
  }
  .tags { gap: var(--s-1) var(--s-2); }
}

/* Lead-ins for mobile rhythm */
@media (max-width: 819px) {
  .section { padding-block: var(--s-9); }
}

/* Logo crop utility.
   The source PNG is a 1563px square: the mark spans only ~53% of its width
   and sits at ~54% of its height. This crops that dead padding away so the
   mark can be sized on its own terms. */
.logo-crop {
  position: relative;
  overflow: hidden;
}

.logo-crop img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 175%;
  height: auto;
  /* -50% centres horizontally; -54.2% lifts the mark's own centre to the middle */
  transform: translate(-50%, -54.2%);
}

/* Tagline sitting above the headline */
.hero__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.5rem);
  color: var(--gold);
  margin: 0;
  max-width: none;
}

/* Section mark — the top banner's twin, in the neutral colourway */
.section-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
  padding-block: 0 var(--s-2);
  margin-bottom: var(--s-3);
}

/* logo-mark.png is a transparent cut-out of the mark, so it works as a plain
   alpha mask: the background colour becomes the mark, with no baked-in panel. */
.section-mark__logo {
  width: min(72vw, 340px);
  aspect-ratio: 700 / 211;
  background: var(--ink);
  -webkit-mask-image: url('../images/logo-mark.png');
          mask-image: url('../images/logo-mark.png');
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  transform: scale(0.94);
  opacity: 0;
  transition: transform 1100ms var(--ease-expo), opacity 800ms var(--ease);
}

.section-mark.is-visible .section-mark__logo,
.section-mark.visible .section-mark__logo {
  transform: none;
  opacity: 1;
}

/* wordmark flanked by hairlines that draw outward */
.section-mark__wordmark {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--ink-soft);
  margin: 0;
  max-width: none;
  text-indent: 0.32em;
}

.section-mark__wordmark::before,
.section-mark__wordmark::after {
  content: '';
  height: 1px;
  width: clamp(24px, 12vw, 72px);
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 900ms var(--ease) 260ms;
}

.section-mark__wordmark::before { transform-origin: right center; }
.section-mark__wordmark::after  { transform-origin: left center; }

.section-mark.is-visible .section-mark__wordmark::before,
.section-mark.is-visible .section-mark__wordmark::after,
.section-mark.visible .section-mark__wordmark::before,
.section-mark.visible .section-mark__wordmark::after {
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  .section-mark__logo,
  .section-mark__wordmark::before,
  .section-mark__wordmark::after { transition: none; }
}

/* Wordmark sitting under the logo mark */
.hero__wordmark {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: color-mix(in oklch, var(--parchment) 85%, transparent);
  text-align: center;
  margin: 0;
  /* trailing letter-space would otherwise push it off-centre */
  text-indent: 0.28em;
}

.hero__wordmark--banner {
  margin-top: calc(var(--s-4) * -1);
  margin-bottom: var(--s-5);
}

@media (max-width: 959px) {
  .hero__wordmark--banner { display: none; }
}

/* Desktop: wide banner strip at the top of the text column */
.hero__banner {
  width: 100%;
  height: clamp(90px, 14vh, 150px);
  margin-bottom: var(--s-5);
}

/* Mobile: the chocolate top banner carries the logo instead */
@media (max-width: 959px) {
  .hero__banner { display: none; }
}

/* Logo overlaid on hero image (mobile only) */
.hero__image-logo {
  display: none;
  position: absolute;
  bottom: var(--s-7);
  left: 50%;
  transform: translateX(-50%);
  width: clamp(140px, 48vw, 220px);
  height: auto;
  object-fit: contain;
  z-index: 3;
  opacity: 0.95;
}

@media (max-width: 959px) {
  .hero__image-logo { display: block; }
}


/* Enquiry form error message */
.form__error {
  display: none;
  margin-top: var(--s-4);
  color: var(--gold-soft);
  font-size: var(--fs-body);
  max-width: 46ch;
}
.form__error.show { display: block; }


/* Per-slide framing: each photo sits differently in the short wide crop */
.hero__image .hero__slide[src*="hero-2"] { object-position: center 55%; }
.hero__image .hero__slide[src*="hero-3"] { object-position: center 58%; }
.hero__image .hero__slide[src*="hero-4"] { object-position: center 60%; }
.hero__image .hero__slide[src*="hero-5"] { object-position: center 58%; }

/* the phone/tripod sits low in frame */
.worked__shot[src*="humblebrags"] { object-position: center 60%; }


/* Intro greeting — the line that opens the Hello section */
.intro__greeting {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.75rem, 1.8rem + 4.5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--ink);
  max-width: none;
  margin-bottom: var(--s-2);
}




/* Hello section runs tighter: the mark sits close to the top of the section
   and the "01. Hello" rule follows straight on from it. */
#about { padding-top: var(--s-8); }
#about .section-head { margin-bottom: var(--s-5); }

/* No section head in Hello any more, so close the gap to the intro copy */
#about .section-mark { margin-bottom: var(--s-6); }
