/* =========================================================================
   Ascend Dance Studios
   Palette and forms taken from the studio's printed flyer and logo card:
   cream ground, butter-yellow ring, blush outlines, sky-blue wash.
   ========================================================================= */

:root {
  /* Brand */
  --cream:      #fbf4eb;
  --cream-deep: #f6ece0;
  --paper:      #fffdfa;
  --butter:     #f8efa9;
  --butter-dim: #f3e58c;
  --blush:      #e89bb2;
  --blush-deep: #d0708c;
  --sky:        #cfe3f0;
  --ink:        #1a1a1a;
  --ink-soft:   #4a4442;
  --ink-faint:  #8a807b;

  /* Type */
  --serif:   'Playfair Display', Georgia, 'Times New Roman', serif;
  --display: 'Cormorant Garamond', Georgia, serif;
  --sans:    'Jost', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --shell:  1140px;
  --gap:    clamp(1.5rem, 4vw, 3rem);
  --section-y: clamp(4.5rem, 9vw, 8rem);
  --radius: 12px;
  --border: 2.5px;

  --shadow-sm: 0 2px 10px rgba(80, 55, 45, .05);
  --shadow-md: 0 14px 40px rgba(120, 85, 70, .10);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ── Base ───────────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--blush-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

:focus-visible {
  outline: 2.5px solid var(--blush-deep);
  outline-offset: 3px;
  border-radius: 3px;
}

.shell {
  width: min(100% - 2.5rem, var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: .5rem;
  z-index: 200;
  background: var(--ink);
  color: var(--cream);
  padding: .65rem 1.1rem;
  border-radius: 6px;
  text-decoration: none;
}
.skip-link:focus { left: .75rem; }

/* ── Wordmark ───────────────────────────────────────────────────────────── */
/* Rebuilt in live type rather than traced, so it stays crisp at any size.
   As on the studio logo (assets/biglogo.jpg), the "c" and "e" each sit over a
   pink copy of themselves nudged slightly left — it reads as a crescent down
   the left of the "c" and as a pink arc inside the counter of the "e". */

.wordmark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  line-height: 1;
  letter-spacing: .01em;
  color: var(--ink);
  display: inline-block;
  white-space: nowrap;
  /* Establishes a stacking context so the pink echo (z-index: -1) sits behind
     the letterforms but still in front of whatever the wordmark sits on. */
  position: relative;
  z-index: 0;
}

.wordmark__c,
.wordmark__e {
  position: relative;
  display: inline-block;
}
.wordmark__c::before,
.wordmark__e::before {
  position: absolute;
  left: -.055em;
  top: .012em;
  color: var(--blush);
  z-index: -1;
  pointer-events: none;
}
.wordmark__c::before { content: "c"; }
.wordmark__e::before { content: "e"; }

.wordmark--sm { font-size: 1.6rem; }

/* Header logo only — the footer reuses .wordmark--sm and should stay as-is. */
.header-inner .wordmark--sm { font-size: clamp(1.9rem, 4vw, 2.35rem); }
.header-inner .brand__sub { font-size: .64rem; }

.brand__sub,
.medallion__sub {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: var(--ink);
}

.brand__sub { font-size: .58rem; margin-top: .1rem; padding-left: .15em; }

/* ── Header ─────────────────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 244, 235, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: rgba(232, 155, 178, .35);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: .9rem;
}

.brand { text-decoration: none; line-height: 1; }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.2rem);
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Scoped to the list links on purpose: the "Book a place" CTA is a sibling of
   the <ul>, and a bare `.site-nav a` outranks `.btn--primary` on specificity,
   which painted the button's label in --ink on an --ink background. */
.site-nav ul a {
  font-size: .74rem;
  font-weight: 400;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding-block: .35rem;
  position: relative;
}
.site-nav ul a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--blush);
  scale: 0 1;
  transform-origin: left;
  transition: scale .32s var(--ease);
}
.site-nav ul a:hover::after,
.site-nav ul a:focus-visible::after { scale: 1 1; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-toggle__bar {
  height: 1.5px;
  background: var(--ink);
  transition: translate .3s var(--ease), rotate .3s var(--ease), opacity .2s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { translate: 0 6.5px; rotate: 45deg; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { translate: 0 -6.5px; rotate: -45deg; }

/* ── Buttons ────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.9rem;
  border: var(--border) solid transparent;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .28s var(--ease), color .28s var(--ease),
              border-color .28s var(--ease), translate .28s var(--ease),
              box-shadow .28s var(--ease);
}

.btn--primary {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--blush-deep);
  border-color: var(--blush-deep);
  color: #fff;
  translate: 0 -2px;
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  border-color: var(--blush);
  color: var(--ink);
}
.btn--ghost:hover {
  background: var(--blush);
  border-color: var(--blush);
  color: var(--ink);
  translate: 0 -2px;
}

.btn--sm { padding: .6rem 1.3rem; font-size: .7rem; }
.btn--block { width: 100%; margin-top: .5rem; }

/* ── Hero ───────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  padding-top: clamp(3rem, 7vw, 5.5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  text-align: center;
  overflow: hidden;
}

.hero__wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .5;
}
.blob--blush {
  width: 40vw; height: 40vw;
  min-width: 300px; min-height: 300px;
  background: var(--blush);
  top: -8%; right: -8%;
  opacity: .32;
}
.blob--sky {
  width: 34vw; height: 34vw;
  min-width: 260px; min-height: 260px;
  background: var(--sky);
  bottom: 6%; left: -10%;
  opacity: .5;
}

/* Dancer silhouettes.
   These sit ABOVE the hero content, not behind it: z-index 4 clears both
   .hero__inner and .glance, which are position:relative with auto z-index.
   They stay below the sticky header (z-index 100) so they can never cover the
   nav. pointer-events:none means they are invisible to the mouse despite being
   on top. Colour is baked into the PNG — nothing here depends on mask support. */

.dancer {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  bottom: 17%;
  height: clamp(260px, 31vw, 440px);
  width: auto;
  opacity: .5;
}
.dancer--left {
  left: 2.5%;
  animation: dancer-float 9s ease-in-out infinite;
}
/* dance3's open pose, not dance1's: in dance1 her upper arm crosses her torso,
   and a flat silhouette cannot separate the two — the forearm ends up reading
   as a stick poking out of her chest. Here both arms clear the body. */
.dancer--right {
  right: 1.5%;
  bottom: 20%;
  animation: dancer-float 11s ease-in-out -3s infinite;
}

@keyframes dancer-float {
  from, to { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* As the window narrows the centred copy runs into the figures. Rather than
   drop them, shrink them and let them tuck off the edges — a dancer cropped by
   the viewport still reads as a dancer. */
@media (max-width: 1250px) {
  /* Lighter here only because the figures now overlap the centred copy, and
     the text has to stay readable through them. */
  .dancer  { height: clamp(200px, 27vw, 330px); opacity: .28; }
  /* The reach pose is narrow and side-on, so cropping her trailing edge costs
     nothing. The open pose must stay fully in frame — clipping it lops off a
     hand, which is precisely what makes a silhouette look broken. */
  .dancer--left  { left: -4%; }
  .dancer--right { right: 2%; }
}

/* Phones. There are no side margins left to sit in, so the figures bleed well
   off both edges and only the outer half of each shows — enough to read as a
   dancer without boxing in the centred copy. Lower opacity because here they
   genuinely do sit over the text. */
@media (max-width: 780px) {
  .dancer {
    height: clamp(175px, 50vw, 235px);
    opacity: .26;
    bottom: 34%;
  }
  .dancer--left  { left: -13%; }
  .dancer--right { right: -11%; bottom: 38%; }
}

@media (prefers-reduced-motion: reduce) {
  .dancer { animation: none; }
}

.hero__inner { position: relative; }

.hero__medallion { display: flex; justify-content: center; margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }

.medallion {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  width: clamp(230px, 38vw, 340px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 0 0 9px var(--butter), 0 18px 50px rgba(150, 115, 95, .13);
}
.medallion .wordmark { font-size: clamp(2.4rem, 6.4vw, 3.6rem); }
.medallion__sub { font-size: clamp(.6rem, 1.3vw, .78rem); }

.eyebrow {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 1rem;
}

.hero__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.35rem, 6.2vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: .005em;
  margin: 0 0 1.35rem;
}

.hero__lede {
  max-width: 46ch;
  margin: 0 auto 2.25rem;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  justify-content: center;
}

/* Glance strip */

.glance {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(3rem, 7vw, 5rem);
  padding: 0;
  list-style: none;
  border-block: 1px solid rgba(232, 155, 178, .4);
}
.glance__item {
  padding: 1.6rem .75rem;
  text-align: center;
}
.glance__item + .glance__item { border-left: 1px solid rgba(232, 155, 178, .3); }

.glance__figure {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  line-height: 1.1;
}
.glance__label {
  display: block;
  margin-top: .35rem;
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ── Sections ───────────────────────────────────────────────────────────── */

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

.section--tint { background: var(--cream-deep); }

.section--panel {
  background:
    linear-gradient(135deg, rgba(207, 227, 240, .55) 0%, rgba(251, 244, 235, .3) 45%, rgba(232, 155, 178, .3) 100%),
    var(--cream);
}

.section__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.95rem, 4.4vw, 3.1rem);
  line-height: 1.15;
  margin: 0 0 1.1rem;
  max-width: 22ch;
}

.section__lede {
  max-width: 58ch;
  margin: 0 0 1.1rem;
  color: var(--ink-soft);
}

.note {
  margin-top: 2.25rem;
  font-size: .95rem;
  color: var(--ink-soft);
}

/* ── Cards ──────────────────────────────────────────────────────────────── */

.cards {
  display: grid;
  gap: clamp(1.25rem, 2.6vw, 2rem);
  margin-top: clamp(2.25rem, 4vw, 3.25rem);
}
.cards--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.cards--3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

.card {
  background: var(--paper);
  border: var(--border) solid var(--blush);
  border-radius: var(--radius);
  padding: clamp(1.65rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-sm);
  transition: translate .35s var(--ease), box-shadow .35s var(--ease);
}
.cards .card:hover { translate: 0 -4px; box-shadow: var(--shadow-md); }

.card--plain { border-color: rgba(232, 155, 178, .5); }
.card--tight { padding: clamp(1.5rem, 2.4vw, 1.9rem); }

.card__kicker {
  margin: 0 0 .5rem;
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blush-deep);
}

.card__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1.15;
  margin: 0 0 .8rem;
}
.card__title--sm { font-size: 1.35rem; }

.card__body { margin: 0; color: var(--ink-soft); }

.card__icon {
  width: 46px;
  height: 46px;
  margin-bottom: 1.1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--butter);
  color: var(--ink);
}
.card__icon svg { width: 24px; height: 24px; }

/* Tick lists */

.ticks {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  font-size: .92rem;
  color: var(--ink-soft);
}
.ticks li {
  position: relative;
  padding-left: 1.55rem;
  margin-bottom: .5rem;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blush);
}
.ticks--roomy li { margin-bottom: .85rem; }
.ticks li:last-child { margin-bottom: 0; }

.payline {
  margin-top: clamp(2rem, 3.5vw, 2.75rem);
  padding: 1.15rem 1.6rem;
  background: var(--butter);
  border-radius: var(--radius);
  text-align: center;
}
.payline p { margin: 0; font-size: .98rem; }

/* ── Split layout ───────────────────────────────────────────────────────── */

.split {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.split--form { grid-template-columns: .9fr 1.1fr; }

@media (max-width: 860px) {
  .split, .split--form { grid-template-columns: 1fr; }
}

/* ── Tutors ─────────────────────────────────────────────────────────────── */

/* Alternating full-bleed rows. The two photos are different shapes — one
   landscape, one full-length portrait — so each keeps its own aspect ratio
   rather than being cropped into a shared frame. */

.tutors {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  margin-top: clamp(2.25rem, 4vw, 3.25rem);
}

.tutor {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.tutor--flip .tutor__frame { order: 2; }
/* Emie's photo is a full-length portrait, so at an equal column width it
   towers over the row. A narrower column keeps the whole frame — no crop —
   at a height that sits comfortably beside the text. */
.tutor--flip { grid-template-columns: minmax(0, 1fr) minmax(0, .72fr); }

.tutor__frame {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-deep);
  box-shadow: var(--shadow-md);
  /* The butter ring from the old circular crop, kept as a hairline so the
     photos still feel part of the same family. */
  outline: var(--border) solid var(--blush);
  outline-offset: 0;
}
.tutor__frame img {
  display: block;
  width: 100%;
  height: auto;
}

.tutor__name {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0 0 .3rem;
}

.tutor__role {
  margin: 0 0 1rem;
  font-size: .64rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--blush-deep);
}

.tutor__bio {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.72;
}

@media (max-width: 760px) {
  .tutor, .tutor--flip { grid-template-columns: 1fr; gap: 1.25rem; }
  /* Photo always first on a phone, regardless of the desktop alternation.
     No max-height here on purpose — capping it would crop the full-length
     portrait, and showing these photos whole is the point. */
  .tutor--flip .tutor__frame { order: 0; }
}

/* ── Schedule (open classes) ────────────────────────────────────────────── */

.schedule {
  margin-top: clamp(2.25rem, 4vw, 3.25rem);
  padding: clamp(1.6rem, 3.2vw, 2.5rem);
  border: var(--border) solid var(--blush);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(248, 239, 169, .34), rgba(255, 253, 249, 0) 70%), var(--paper);
}
.schedule__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.35rem, 2.6vw, 1.8rem);
  margin: 0 0 .6rem;
}
.schedule__lede {
  margin: 0 0 1.6rem;
  color: var(--ink-soft);
  max-width: 58ch;
}
.schedule__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1rem, 2.4vw, 1.75rem);
}
.schedule__item p { margin: 0; color: var(--ink-soft); font-size: .95rem; }
.schedule__when {
  display: block;
  margin-bottom: .35rem;
  font-size: .64rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blush-deep);
}

/* ── FAQs ───────────────────────────────────────────────────────────────── */

.faqs {
  margin-top: clamp(2.25rem, 4vw, 3.25rem);
  border-top: 1px solid rgba(232, 155, 178, .4);
  max-width: 62rem;
}

.faq {
  border-bottom: 1px solid rgba(232, 155, 178, .4);
}
.faq summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem .25rem;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--ink);
  list-style: none;
  transition: color var(--dur) var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--blush-deep); }

/* Marker drawn as a rotating plus so it works without the native triangle. */
.faq summary::after {
  content: "";
  flex: 0 0 auto;
  margin-left: auto;
  width: 13px;
  height: 13px;
  background:
    linear-gradient(var(--blush-deep), var(--blush-deep)) center / 100% 1.5px no-repeat,
    linear-gradient(var(--blush-deep), var(--blush-deep)) center / 1.5px 100% no-repeat;
  transition: rotate .3s var(--ease);
}
.faq[open] summary::after { rotate: 135deg; }

.faq__body {
  padding: 0 .25rem 1.4rem;
  max-width: 62ch;
}
.faq__body p {
  margin: 0 0 .8rem;
  color: var(--ink-soft);
  font-size: .97rem;
}
.faq__body p:last-child { margin-bottom: 0; }

/* ── Social cards ───────────────────────────────────────────────────────── */

.social {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: var(--paper);
  border: var(--border) solid var(--blush);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: translate .3s var(--ease), box-shadow .3s var(--ease), background-color .3s var(--ease);
}
.social:hover {
  translate: 0 -4px;
  box-shadow: var(--shadow-md);
  background: var(--butter);
  color: var(--ink);
}

.social__icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--butter);
  color: var(--ink);
  transition: background-color .3s var(--ease);
}
.social:hover .social__icon { background: var(--paper); }
.social__icon svg { width: 24px; height: 24px; }

.social__text { display: flex; flex-direction: column; line-height: 1.35; }
.social__label {
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.social__handle { font-size: 1.05rem; }
.social__arrow { margin-left: auto; font-size: 1.2rem; color: var(--blush-deep); }

/* ── Contact list ───────────────────────────────────────────────────────── */

.contact-list {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}
.contact-list li {
  padding: .85rem 0;
  border-top: 1px solid rgba(232, 155, 178, .4);
}
.contact-list li:last-child { border-bottom: 1px solid rgba(232, 155, 178, .4); }

.contact-list__label {
  display: block;
  font-size: .64rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: .1rem;
}
.contact-list a { color: var(--ink); text-decoration: none; }
.contact-list a:hover { color: var(--blush-deep); text-decoration: underline; }

/* ── Form ───────────────────────────────────────────────────────────────── */

.form { margin-top: 0; }

.field { margin-bottom: 1.15rem; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }

.field label {
  display: block;
  margin-bottom: .4rem;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field__optional { text-transform: none; letter-spacing: .02em; color: var(--ink-faint); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .8rem .95rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid rgba(232, 155, 178, .55);
  border-radius: 8px;
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--paper);
  border-color: var(--blush-deep);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"] { border-color: #c0392b; }

.field__error {
  display: block;
  margin-top: .35rem;
  font-size: .8rem;
  color: #a5301f;
}

.form__note {
  margin: 1rem 0 0;
  font-size: .82rem;
  color: var(--ink-faint);
  text-align: center;
}
.form__note.is-success { color: #2c7a4b; }

/* ── Footer ─────────────────────────────────────────────────────────────── */

.site-footer { background: var(--cream-deep); margin-top: 0; }

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
@media (max-width: 760px) { .footer-inner { grid-template-columns: 1fr; } }

.footer-brand__line {
  margin: 1rem 0 0;
  max-width: 30ch;
  font-size: .92rem;
  color: var(--ink-soft);
}

.footer-nav ul { margin: 0; padding: 0; list-style: none; }
.footer-nav li { margin-bottom: .55rem; }
.footer-nav a,
.footer-contact a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: .92rem;
}
.footer-nav a:hover,
.footer-contact a:hover { color: var(--blush-deep); text-decoration: underline; }

.footer-contact { display: flex; flex-direction: column; gap: .55rem; }

.footer-band {
  background: var(--butter);
  padding-block: .95rem;
  text-align: center;
}
.footer-band p {
  margin: 0;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ── Reveal on scroll ───────────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  translate: 0 18px;
  transition: opacity .7s var(--ease), translate .7s var(--ease);
}
.reveal.is-visible { opacity: 1; translate: 0 0; }

/* ── Mobile nav ─────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: absolute;
    inset: 100% 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.25rem 1.75rem;
    background: var(--cream);
    border-bottom: var(--border) solid var(--blush);
    box-shadow: var(--shadow-md);

    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    visibility: hidden;
    transition: grid-template-rows .35s var(--ease), opacity .25s var(--ease), visibility .35s;
  }
  .site-nav > * { overflow: hidden; min-height: 0; }

  .site-nav.is-open {
    grid-template-rows: 1fr auto;
    opacity: 1;
    visibility: visible;
  }

  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav ul li { border-bottom: 1px solid rgba(232, 155, 178, .3); }
  .site-nav ul a { display: block; padding: .95rem .25rem; font-size: .8rem; }
  .site-nav ul a::after { display: none; }

  .nav-cta { margin-top: 1.25rem; align-self: start; }
}

@media (max-width: 620px) {
  .glance { grid-template-columns: 1fr 1fr; }
  .glance__item:nth-child(3) { border-left: 0; }
  .glance__item:nth-child(n+3) { border-top: 1px solid rgba(232, 155, 178, .3); }
}

/* ── Motion preferences ─────────────────────────────────────────────────── */

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

/* ── Print ──────────────────────────────────────────────────────────────── */

@media print {
  .site-header, .nav-toggle, .hero__wash, .btn, .form { display: none !important; }
  body { background: #fff; }
  .reveal { opacity: 1; translate: none; }
}
