/**
 * The Flamingo House — spec demo.
 *
 * Palette is hers, not mine: the navy comes from her own logo files
 * (TheFlamingoHouseFinal-blue.png), the pink from the flamingo mark and the
 * map pins she already uses. The one deliberate change is that pink is now
 * load-bearing — it means "you can act on this" and nothing else. On the live
 * site the Book Now button is the same sand as the bar it sits in, which is
 * the first thing Carter flagged.
 *
 * Type: Fraunces for display (a warm, slightly odd serif that holds up at
 * huge sizes) over a system stack for everything else. Both self-hostable;
 * for the demo Fraunces loads from Google with a system-serif fallback so a
 * blocked font never leaves the page naked.
 */

/* ------------------------------------------------------------------ reset */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; padding: 0; }
ul[class], ol[class] { list-style: none; }
img, picture, svg, video { max-width: 100%; display: block; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; }

/* ----------------------------------------------------------------- tokens */

:root {
  /* Her navy, sampled from the logo. Two steps so text on sand and text on
     navy can both hit contrast without inventing a third brand colour. */
  --ink:        #14314c;
  --ink-soft:   #4a637a;
  --ink-faint:  #8aa0b3;

  /* The flamingo. --pink is for surfaces, --pink-ink for pink text on light
     backgrounds, where the surface pink would fail contrast. */
  --pink:       #ff2d87;
  --pink-deep:  #e01a72;
  --pink-ink:   #c2135f;
  --pink-wash:  #fff0f6;

  /* St John forest, used sparingly — the "open / available" green and the
     map's land fill. Carter offered Amanda green or pink for the CTA; pink
     won, so green stays a supporting colour. */
  --green:      #1f5c45;
  --green-wash: #eaf3ee;

  --sand:       #fbf7f1;
  --sand-deep:  #f2ebe0;
  --paper:      #ffffff;
  --line:       #e6ddd0;

  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --font-body: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto,
               'Helvetica Neue', Arial, sans-serif;

  /* One ratio-based scale. clamp() means no separate mobile type rules. */
  --step--1: clamp(.82rem, .79rem + .13vw, .89rem);
  --step-0:  clamp(1rem, .96rem + .2vw, 1.12rem);
  --step-1:  clamp(1.2rem, 1.12rem + .38vw, 1.45rem);
  --step-2:  clamp(1.45rem, 1.31rem + .68vw, 1.9rem);
  --step-3:  clamp(1.75rem, 1.51rem + 1.15vw, 2.5rem);
  --step-4:  clamp(2.1rem, 1.7rem + 1.95vw, 3.3rem);
  --step-5:  clamp(2.6rem, 1.85rem + 3.4vw, 4.6rem);

  --gutter: clamp(1.15rem, .9rem + 1.3vw, 2.25rem);
  --bleed: min(1240px, 100% - (var(--gutter) * 2));

  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 1px 2px rgba(20,49,76,.05), 0 8px 26px -12px rgba(20,49,76,.22);
  --shadow-lg: 0 2px 4px rgba(20,49,76,.06), 0 26px 60px -22px rgba(20,49,76,.32);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* --------------------------------------------------------------- skeleton */

body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;             /* belt and braces against the mobile scroll
                                     bug that plagues the Squarespace build */
}

.wrap { width: var(--bleed); margin-inline: auto; }
.wrap--narrow { width: min(72ch, 100% - (var(--gutter) * 2)); margin-inline: auto; }

section { padding-block: clamp(3rem, 2rem + 4.5vw, 6.5rem); }
section.tight { padding-block: clamp(2rem, 1.4rem + 3vw, 4rem); }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.018em;
  text-wrap: balance;
}
h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
p { text-wrap: pretty; }
p + p { margin-top: 1em; }

/**
 * Her headings are lowercase throughout ("come perch with us", "the roost").
 * That's her voice, so it's a class rather than a global rule — the room
 * names and proper nouns still capitalise normally.
 */
.lower { text-transform: lowercase; }

.eyebrow {
  font-size: var(--step--1);
  font-weight: 650;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--pink-ink);
  margin-bottom: .9rem;
}
.lede { font-size: var(--step-1); line-height: 1.5; color: var(--ink-soft); }
.muted { color: var(--ink-soft); }
.center { text-align: center; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: .8rem 1.2rem;
  border-radius: 0 0 var(--radius) 0;
}
.skip:focus { left: 0; }

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --------------------------------------------------------------- buttons */

/**
 * The fix for finding #1. The primary action is the only hot-pink object on
 * any given screen, so it can never blend into the bar behind it.
 */
.btn {
  --btn-bg: var(--pink);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  gap: .55rem;
  background: var(--btn-bg); color: var(--btn-fg);
  font-weight: 650; font-size: var(--step--1);
  letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none;
  padding: .95rem 1.7rem;
  border-radius: 999px;
  border: 2px solid transparent;
  box-shadow: 0 2px 0 rgba(0,0,0,.04), 0 10px 24px -12px var(--pink);
  transition: transform .18s var(--ease), background .18s var(--ease),
              box-shadow .18s var(--ease);
  min-height: 46px;              /* comfortable thumb target */
}
.btn:hover { background: var(--pink-deep); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--ink);
  border-color: var(--ink); box-shadow: none;
}
.btn--ghost:hover { background: var(--ink); --btn-fg: #fff; }

.btn--quiet {
  --btn-bg: transparent; --btn-fg: var(--pink-ink);
  box-shadow: none; padding-inline: 0; text-transform: none;
  letter-spacing: 0; font-size: var(--step-0);
  text-decoration: underline; text-underline-offset: 4px;
  text-decoration-thickness: 2px; text-decoration-color: var(--pink);
}
.btn--quiet:hover { background: none; color: var(--pink-deep); transform: none; }

.btn--sm { padding: .6rem 1.1rem; min-height: 38px; }
.btn[aria-disabled='true'] { opacity: .45; pointer-events: none; }

/* ------------------------------------------------------------------ nav */

/**
 * The live site nests seven room pages inside a "Rooms + Rates" dropdown and
 * repeats the whole menu three times in the markup. Here the room list lives
 * on one page and in the layout explorer, so the bar itself only needs five
 * destinations. Fewer places to get lost is the entire brief.
 */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,247,241,.86);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__in {
  width: var(--bleed); margin-inline: auto;
  display: flex; align-items: center; gap: 1.25rem;
  min-height: 68px;
}
.nav__logo { display: flex; align-items: center; text-decoration: none; margin-right: auto; }
.nav__logo img { height: 34px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 1.5rem; }
.nav__links a {
  text-decoration: none; font-size: var(--step--1); font-weight: 550;
  letter-spacing: .04em; text-transform: uppercase; color: var(--ink);
  padding-block: .5rem; position: relative;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--pink); transform: scaleX(0); transform-origin: left;
  transition: transform .2s var(--ease);
}
.nav__links a:hover::after, .nav__links a[aria-current='page']::after { transform: scaleX(1); }

.nav__toggle { display: none; padding: .6rem; margin-right: -.6rem; }
.nav__toggle svg { width: 26px; height: 26px; }

@media (max-width: 860px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed; inset: 68px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--sand); border-bottom: 1px solid var(--line);
    padding: .5rem var(--gutter) 1.5rem;
    box-shadow: var(--shadow-lg);
    display: none;
  }
  .nav__links[data-open='true'] { display: flex; }
  .nav__links a { padding-block: .95rem; border-bottom: 1px solid var(--line); }
  .nav__links a::after { display: none; }
  .nav__links .btn { margin-top: 1rem; }
}

/* ------------------------------------------------------------------ hero */

.hero { position: relative; min-height: min(84svh, 760px); display: grid; }
.hero > * { grid-area: 1 / 1; }
.hero__media { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ''; grid-area: 1 / 1;
  background: linear-gradient(180deg, rgba(20,49,76,.42) 0%, rgba(20,49,76,.12) 42%, rgba(20,49,76,.62) 100%);
}
.hero__body {
  position: relative; z-index: 2; align-self: end;
  width: var(--bleed); margin-inline: auto;
  padding-bottom: clamp(2.5rem, 1.6rem + 4vw, 5rem);
  color: #fff;
}
.hero__body h1 { color: #fff; text-shadow: 0 2px 30px rgba(20,49,76,.4); }
.hero__sub {
  font-size: var(--step-1); letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.9); margin-top: 1rem; font-weight: 500;
}
.hero__cta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .9rem; }
.hero__cta .btn--ghost { border-color: #fff; --btn-fg: #fff; }
.hero__cta .btn--ghost:hover { background: #fff; --btn-fg: var(--ink); }

/* ----------------------------------------------------------------- cards */

.grid { display: grid; gap: clamp(1.1rem, .8rem + 1.2vw, 2rem); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); }

.card {
  background: var(--paper); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand-deep); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card__media img { transform: scale(1.04); }
.card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; gap: .55rem; }
.card__title { font-size: var(--step-2); }
.card__spec {
  font-size: var(--step--1); color: var(--ink-soft);
  font-variant-numeric: tabular-nums; letter-spacing: .01em;
}
.card__foot { margin-top: auto; padding-top: 1rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

.price { font-family: var(--font-display); font-size: var(--step-2); font-weight: 600; line-height: 1; }
.price small { display: block; font-family: var(--font-body); font-size: var(--step--1); font-weight: 500; color: var(--ink-soft); letter-spacing: .02em; margin-top: .3rem; text-transform: none; }

.pill {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .74rem; font-weight: 650; letter-spacing: .1em; text-transform: uppercase;
  padding: .34rem .7rem; border-radius: 999px;
  background: var(--green-wash); color: var(--green);
}
.pill--pink { background: var(--pink-wash); color: var(--pink-ink); }
.pill--flag { background: #fff4e5; color: #93500b; }

/* -------------------------------------------------------- layout explorer */

/**
 * The centrepiece. Amanda's note was "people are always confused by the
 * layout of the property", and her own Floor Plans page offers to email you a
 * video to fix it. This replaces that: a cross-section of the building where
 * every unit is a button, hovering one lights it up, and clicking scrolls to
 * its details. Levels stack top-to-bottom exactly as you'd walk down.
 */
.explorer { display: grid; gap: clamp(1.5rem, 1rem + 2.5vw, 3rem); grid-template-columns: minmax(0, 1fr); }
@media (min-width: 940px) { .explorer { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); align-items: start; } }

.building { display: flex; flex-direction: column; gap: .6rem; }

.floor {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.15rem 1.25rem;
  position: relative; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.floor[data-active='true'] { border-color: var(--pink); box-shadow: 0 0 0 3px var(--pink-wash); }
.floor__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: .85rem; }
.floor__name { font-family: var(--font-display); font-size: var(--step-1); font-weight: 600; }
.floor__count { font-size: var(--step--1); color: var(--ink-faint); }
.floor__blurb { font-size: var(--step--1); color: var(--ink-soft); margin-bottom: .95rem; }

/* The units on a floor, sized by how much of the floor they take up. */
.floor__units { display: flex; gap: .5rem; flex-wrap: wrap; }
.unit-chip {
  flex: 1 1 auto; min-width: 84px;
  border: 2px solid var(--line); border-radius: 10px;
  background: var(--sand); color: var(--ink);
  padding: .7rem .6rem; text-align: center; text-decoration: none;
  transition: all .18s var(--ease);
  display: flex; flex-direction: column; gap: .18rem; align-items: center;
  min-height: 62px; justify-content: center;
}
.unit-chip[data-span='3'] { flex-grow: 3; }
.unit-chip strong { font-size: var(--step--1); letter-spacing: .1em; font-weight: 700; }
.unit-chip span { font-size: .7rem; color: var(--ink-faint); letter-spacing: .04em; }
.unit-chip:hover, .unit-chip[data-active='true'] {
  background: var(--pink); border-color: var(--pink); color: #fff;
  transform: translateY(-2px);
}
.unit-chip:hover span, .unit-chip[data-active='true'] span { color: rgba(255,255,255,.85); }
.unit-chip[data-unbookable='true'] { border-style: dashed; }

.floor__plan { margin-top: 1rem; border-radius: 10px; overflow: hidden; background: var(--sand-deep); }
.floor__plan img { width: 100%; }

/* The detail panel beside the building. */
.unit-detail {
  background: var(--paper); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); overflow: hidden;
  position: sticky; top: 92px;
}
.unit-detail__media { aspect-ratio: 16 / 10; background: var(--sand-deep); }
.unit-detail__media img { width: 100%; height: 100%; object-fit: cover; }
.unit-detail__body { padding: 1.5rem 1.6rem 1.8rem; display: flex; flex-direction: column; gap: .7rem; }
.unit-detail__facts { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .3rem; }
.unit-detail__cta { margin-top: 1rem; display: flex; gap: .75rem; flex-wrap: wrap; }
@media (max-width: 939px) { .unit-detail { position: static; } }

/* --------------------------------------------------------------- gallery */

/**
 * Her gallery is 54 photos in one undifferentiated album called "Common
 * Spaces", which is most of why the photos "don't flow". Here they're
 * filterable by room, and the masonry keeps portrait and landscape shots from
 * being cropped into the same dull rectangle.
 */
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.filter {
  border: 2px solid var(--line); background: var(--paper);
  border-radius: 999px; padding: .5rem 1.05rem;
  font-size: var(--step--1); font-weight: 600; letter-spacing: .04em;
  transition: all .18s var(--ease);
}
.filter:hover { border-color: var(--ink-faint); }
.filter[aria-pressed='true'] { background: var(--ink); border-color: var(--ink); color: #fff; }

.masonry { columns: 1; column-gap: clamp(.7rem, .5rem + .8vw, 1.1rem); }
@media (min-width: 560px) { .masonry { columns: 2; } }
@media (min-width: 900px) { .masonry { columns: 3; } }
@media (min-width: 1300px) { .masonry { columns: 4; } }
.masonry figure {
  break-inside: avoid; margin: 0 0 clamp(.7rem, .5rem + .8vw, 1.1rem);
  border-radius: var(--radius); overflow: hidden; background: var(--sand-deep);
  cursor: zoom-in; position: relative;
}
.masonry img { width: 100%; height: auto; transition: transform .45s var(--ease), filter .25s var(--ease); }
.masonry figure:hover img { transform: scale(1.03); }
.masonry figcaption {
  position: absolute; inset: auto 0 0 0; padding: 1.6rem .9rem .7rem;
  background: linear-gradient(180deg, transparent, rgba(20,49,76,.75));
  color: #fff; font-size: var(--step--1); font-weight: 600;
  opacity: 0; transition: opacity .25s var(--ease);
}
.masonry figure:hover figcaption, .masonry figure:focus-within figcaption { opacity: 1; }

/* lightbox */
.lb { position: fixed; inset: 0; z-index: 200; background: rgba(12,28,44,.94); display: none; place-items: center; }
.lb[data-open='true'] { display: grid; }
.lb img { max-width: 94vw; max-height: 84vh; width: auto; border-radius: 8px; }
.lb__bar { position: absolute; inset: auto 0 0 0; padding: 1rem var(--gutter) 1.6rem; color: #fff; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-size: var(--step--1); }
.lb__btn { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.14); color: #fff; display: grid; place-items: center; font-size: 1.6rem; }
.lb__btn:hover { background: var(--pink); }
.lb__prev { left: clamp(.5rem, 2vw, 2rem); }
.lb__next { right: clamp(.5rem, 2vw, 2rem); }
.lb__close { position: absolute; top: clamp(.6rem, 2vw, 1.5rem); right: clamp(.6rem, 2vw, 1.5rem); width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.14); color: #fff; font-size: 1.4rem; display: grid; place-items: center; }
.lb__close:hover { background: var(--pink); }

/* --------------------------------------------------------------- reviews */

.review {
  background: var(--paper); border-radius: var(--radius-lg);
  padding: 1.7rem 1.8rem; box-shadow: var(--shadow);
  break-inside: avoid; margin-bottom: clamp(1rem, .8rem + 1vw, 1.6rem);
  display: flex; flex-direction: column; gap: 1rem;
}
.review__text { font-size: var(--step-0); line-height: 1.62; }
.review__meta { display: flex; align-items: center; gap: .7rem; font-size: var(--step--1); color: var(--ink-soft); margin-top: auto; }
.review__name { font-weight: 700; color: var(--ink); }
.review__date { color: var(--ink-faint); }
.review__date:empty { display: none; }
.reviews-cols { columns: 1; column-gap: clamp(1rem, .8rem + 1vw, 1.6rem); }
@media (min-width: 720px) { .reviews-cols { columns: 2; } }
@media (min-width: 1120px) { .reviews-cols { columns: 3; } }

/* --------------------------------------------------------------- prose */

.prose { max-width: 68ch; }
.prose h2 { margin-top: 2.4em; margin-bottom: .5em; font-size: var(--step-3); }
.prose h3 { margin-top: 1.8em; margin-bottom: .4em; }
.prose > :first-child { margin-top: 0; }
.prose ul { list-style: none; margin: 1.1em 0; display: grid; gap: .6em; }
.prose ul li { padding-left: 1.7em; position: relative; }
.prose ul li::before {
  content: ''; position: absolute; left: 0; top: .62em;
  width: 8px; height: 8px; border-radius: 50%; background: var(--pink);
}
.prose a { color: var(--pink-ink); text-underline-offset: 3px; }

/* faq */
.faq details {
  border-bottom: 1px solid var(--line); padding: 1.2rem 0;
}
.faq summary {
  cursor: pointer; list-style: none; display: flex; gap: 1rem;
  align-items: flex-start; justify-content: space-between;
  font-family: var(--font-display); font-size: var(--step-1); font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; font-size: 1.5rem; line-height: 1; color: var(--pink);
  transition: transform .2s var(--ease); flex: none;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding-top: .9rem; color: var(--ink-soft); max-width: 68ch; }

/* ---------------------------------------------------------------- footer */

.foot { background: var(--ink); color: rgba(255,255,255,.82); padding-block: clamp(3rem, 2rem + 3vw, 5rem) 2rem; }
.foot a { color: #fff; }
.foot__grid { display: grid; gap: 2.5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.foot__creed { font-family: var(--font-display); font-size: var(--step-2); line-height: 1.25; color: #fff; }
.foot h4 { font-size: var(--step--1); letter-spacing: .16em; text-transform: uppercase; color: var(--pink); margin-bottom: 1rem; font-family: var(--font-body); font-weight: 700; }
.foot ul { display: grid; gap: .55rem; font-size: var(--step--1); }
.foot__bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.14); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: var(--step--1); color: rgba(255,255,255,.6); }

/* The honest label. Every demo here carries one. */
.demo-note {
  background: var(--pink-wash); border-top: 1px solid #ffd0e2;
  color: var(--pink-ink); font-size: var(--step--1);
  padding: .85rem var(--gutter); text-align: center;
}
.demo-note a { color: inherit; font-weight: 700; }

/* ----------------------------------------------------------------- admin */

.admin { background: #f5f7fa; min-height: 100vh; }
.admin__bar { background: var(--ink); color: #fff; padding: .9rem var(--gutter); display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.admin__bar h1 { font-size: var(--step-1); color: #fff; margin-right: auto; }
.admin__tabs { display: flex; gap: .4rem; border-bottom: 1px solid var(--line); background: #fff; padding: 0 var(--gutter); overflow-x: auto; }
.admin__tab { padding: 1rem 1.1rem; font-weight: 600; font-size: var(--step--1); border-bottom: 3px solid transparent; white-space: nowrap; color: var(--ink-soft); }
.admin__tab[aria-selected='true'] { border-bottom-color: var(--pink); color: var(--ink); }
.admin__body { padding: clamp(1.2rem, 1rem + 1.5vw, 2.5rem) var(--gutter); }
.admin__panel[hidden] { display: none; }

.row {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.1rem 1.25rem; margin-bottom: .8rem;
  display: grid; gap: .85rem;
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 780px) { .row--unit { grid-template-columns: 1.4fr .8fr .8fr 1.6fr; align-items: center; } }
@media (min-width: 780px) { .row--review { grid-template-columns: 1fr 200px; align-items: start; } }

.field { display: grid; gap: .3rem; }
.field label { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); }
.field input, .field textarea, .field select {
  border: 1px solid var(--line); border-radius: 8px; padding: .6rem .75rem;
  background: #fff; font-size: var(--step-0); width: 100%;
}
.field input:focus, .field textarea:focus { border-color: var(--pink); outline: none; box-shadow: 0 0 0 3px var(--pink-wash); }
.field textarea { min-height: 120px; resize: vertical; line-height: 1.55; }
.field--dirty input, .field--dirty textarea { border-color: var(--pink); background: var(--pink-wash); }

.admin__save {
  position: sticky; bottom: 0; background: #fff; border-top: 1px solid var(--line);
  padding: 1rem var(--gutter); display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  box-shadow: 0 -8px 24px -18px rgba(20,49,76,.5);
}
.admin__count { font-size: var(--step--1); color: var(--ink-soft); margin-right: auto; }

.toast {
  position: fixed; left: 50%; bottom: 5.5rem; transform: translate(-50%, 12px);
  background: var(--ink); color: #fff; padding: .8rem 1.3rem; border-radius: 999px;
  font-size: var(--step--1); font-weight: 600; opacity: 0; pointer-events: none;
  transition: all .28s var(--ease); z-index: 300;
}
.toast[data-show='true'] { opacity: 1; transform: translate(-50%, 0); }

/* --------------------------------------------------------------- utility */

.callout {
  border-left: 4px solid var(--pink); background: var(--pink-wash);
  padding: 1.1rem 1.3rem; border-radius: 0 var(--radius) var(--radius) 0;
  font-size: var(--step--1);
}
.callout--green { border-color: var(--green); background: var(--green-wash); }
.stack { display: grid; gap: 1.2rem; }
.flow > * + * { margin-top: 1.1rem; }
.sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; } }
