/* ==========================================================================
   Colour by Shann, design system
   Quiet-luxury editorial. Warm ivory ground, charcoal ink, seasonal colour
   used as a controlled accent. Cormorant Garamond display, DM Sans body.
   ========================================================================== */

:root {
  /* Ground and ink */
  --ivory: #FAF8F4;
  --white: #FFFFFF;
  --ink: #2C2C2C;
  --grey: #6F6F6C;
  --line: #E5E1D8;

  /* Palette accents (from Shann's working palette) */
  --lacey: #F3E3A2;     /* airy, optimistic */
  --lemonade: #E98A7D;  /* playful, juicy */
  --orchid: #B4A2CD;    /* gentle, dreamy */
  --aura: #C7D5E1;      /* calm, cool */
  --bio: #4F7B66;       /* natural, balanced */

  /* Type */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  /* Rhythm */
  --measure: 62ch;
  --site-max: 1120px;
  --pad: clamp(1.25rem, 5vw, 3rem);
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}

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

/* ==========================================================================
   Scroll progress bar, the site signature
   ========================================================================== */

.progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  background: transparent;
  z-index: 100;
  pointer-events: none;
}

.progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg,
    var(--lacey), var(--lemonade), var(--orchid), var(--aura), var(--bio));
  transition: width 80ms linear;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 1.1rem var(--pad);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
}

.wordmark {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.45rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.wordmark small {
  display: block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 0.1rem;
}

.site-nav { display: flex; gap: 2rem; }

.site-nav a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] { border-color: var(--ink); }

.nav-toggle { display: none; }

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    margin-right: -11px; /* optical alignment: bars end flush with the page edge */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  .nav-toggle__bar {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--ink);
    transition: transform 200ms ease, opacity 200ms ease;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(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) { transform: translateY(-6.5px) rotate(-45deg); }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem var(--pad) 1.25rem;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 0.75rem 0; border-bottom: none; }
}

/* ==========================================================================
   Layout primitives
   ========================================================================== */

.wrap { max-width: var(--site-max); margin: 0 auto; padding: 0 var(--pad); }

.section { padding: clamp(4rem, 10vw, 7.5rem) 0; }
.section--tight { padding: clamp(2.5rem, 6vw, 4rem) 0; }
.section--rule { border-top: 1px solid var(--line); }

.measure { max-width: var(--measure); }
.centered { margin-left: auto; margin-right: auto; text-align: center; }

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
}

h1 { font-size: clamp(2.6rem, 6.5vw, 4.4rem); letter-spacing: 0.005em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.6rem); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1.4rem;
}

.lede {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
}

p + p { margin-top: 1.25em; }
h2 + p, h3 + p { margin-top: 1.25em; }

.muted { color: var(--grey); }

a { color: var(--ink); }

/* ==========================================================================
   Buttons and links
   ========================================================================== */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--ink);
  text-decoration: none;
  border: 1px solid var(--ink);
  padding: 1rem 2.4rem;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease;
}

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

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

.text-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.2rem;
}

/* ==========================================================================
   Signature elements
   ========================================================================== */

/* Thin strip of the five palette accents, used as a deliberate detail */
.palette-strip {
  display: flex;
  height: 6px;
  width: min(220px, 40vw);
}
.palette-strip span { flex: 1; }
.palette-strip span:nth-child(1) { background: var(--lacey); }
.palette-strip span:nth-child(2) { background: var(--lemonade); }
.palette-strip span:nth-child(3) { background: var(--orchid); }
.palette-strip span:nth-child(4) { background: var(--aura); }
.palette-strip span:nth-child(5) { background: var(--bio); }

.palette-strip--center { margin: 2rem auto 0; }

/* Hero */
.hero { padding: clamp(5rem, 14vw, 10rem) 0 clamp(4rem, 10vw, 7rem); }
.hero .lede { margin-top: 2rem; max-width: 34ch; }
.hero .btn { margin-top: 3rem; }

/* Season grid */
.season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 3.5rem;
}

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

.season-grid__cell {
  background: var(--white);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
}

/* Descriptors absorb the height difference so the four lists align */
.season-grid__cell h3 + p { flex: 1; }

.season-grid__cell h3 {
  font-size: 1.3rem;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.season-grid__cell p {
  font-size: 0.85rem;
  color: var(--grey);
  margin-top: 0.6rem;
  line-height: 1.6;
}

.season-grid__cell .dot {
  display: inline-block;
  width: 20px; height: 20px;
  border-radius: 50%;
  flex: none;
}

/* Numbered process */
.process { margin-top: 3.5rem; display: grid; gap: 0; }

.process__step {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.5rem;
  padding: 2.25rem 0;
  border-top: 1px solid var(--line);
}

.process__step:last-child { border-bottom: 1px solid var(--line); }

.process__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.9rem;
  color: var(--grey);
}

.process__step h3 { margin-bottom: 0.4rem; }
.process__step p { max-width: var(--measure); }

/* Two-column editorial */
.duo {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

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

/* Quiet reveal on scroll */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ==========================================================================
   Forms
   ========================================================================== */

.form { max-width: 40rem; }

.form__field { margin-bottom: 1.75rem; }

.form label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.6rem;
}

.form input[type="text"],
.form input[type="email"],
.form select,
.form textarea {
  width: 100%;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 0.9rem 1rem;
  transition: border-color 200ms ease;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid var(--ink);
  outline-offset: 1px;
  border-color: var(--ink);
}

.form textarea { min-height: 10rem; resize: vertical; }

.form__consent {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--grey);
  margin-bottom: 2rem;
}

.form__consent input { margin-top: 0.35rem; }

.form__note { font-size: 0.85rem; color: var(--grey); margin-top: 1.5rem; }

.form__status { margin-top: 1.5rem; font-size: 0.95rem; }
.form__status--ok { color: var(--bio); }
.form__status--error { color: #A04B3F; }

/* Honeypot, hidden from humans */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ==========================================================================
   Legal pages
   ========================================================================== */

.legal { max-width: var(--measure); }
.legal h1 { font-size: clamp(2.1rem, 5vw, 3rem); }
.legal .updated { font-size: 0.85rem; color: var(--grey); margin-top: 1rem; }
.legal h2 { font-size: 1.45rem; margin-top: 3rem; }
.legal h3 { font-size: 1.15rem; margin-top: 2rem; font-family: var(--sans); font-weight: 500; }
.legal ol, .legal ul { margin: 1.25em 0 1.25em 1.5em; }
.legal li { margin-bottom: 0.5em; }
.legal table { width: 100%; border-collapse: collapse; margin: 1.5em 0; font-size: 0.95rem; }
.legal th, .legal td { text-align: left; padding: 0.75em; border: 1px solid var(--line); vertical-align: top; }
.legal th { font-weight: 500; background: var(--white); }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 3.5rem 0 3rem;
  margin-top: clamp(3rem, 8vw, 6rem);
}

.site-footer__inner {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
  align-items: flex-start;
}

.site-footer .wordmark { font-size: 1.2rem; }

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.site-footer__links a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
}

.site-footer__links a:hover { color: var(--ink); }

.site-footer__legal {
  width: 100%;
  font-size: 0.8rem;
  color: var(--grey);
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  line-height: 1.7;
}

/* ==========================================================================
   Brand mark (SVG monogram beside the wordmark)
   ========================================================================== */

.wordmark--brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

/* Keep both lines of the lockup on the same left edge and rhythm */
.wordmark--brand > span { display: block; line-height: 1.15; }
.wordmark--brand small { margin-top: 0.25rem; }

.site-header__inner { align-items: center; }

.brand-mark { height: 44px; width: 44px; flex-shrink: 0; }

@media (max-width: 720px) { .brand-mark { height: 36px; width: 36px; } }

/* On hover, each word of the wordmark takes a colour of its own */
.wordmark--brand .w-colour,
.wordmark--brand .w-by,
.wordmark--brand .w-shann { transition: color 250ms ease; }

.wordmark--brand:hover .w-colour { color: #D6246E; }
.wordmark--brand:hover .w-by { color: #7C4FD0; }
.wordmark--brand:hover .w-shann { color: #1E76B4; }

/* ==========================================================================
   Colour accents. Orchid is the interaction colour; the palette appears
   in small, deliberate details. Restraint is the point.
   ========================================================================== */

/* Text selection: each section highlights in its own palette colour,
   cycling in progress-bar order as you move down the page.
   (Browsers allow one selection colour per element, so a per-letter
   gradient is not possible; this is the closest faithful equivalent.) */
::selection { background: var(--orchid); color: var(--white); }

main section:nth-of-type(5n+1) ::selection,
main section:nth-of-type(5n+1)::selection { background: var(--lacey); color: var(--ink); }
main section:nth-of-type(5n+2) ::selection,
main section:nth-of-type(5n+2)::selection { background: var(--lemonade); color: var(--white); }
main section:nth-of-type(5n+3) ::selection,
main section:nth-of-type(5n+3)::selection { background: var(--orchid); color: var(--white); }
main section:nth-of-type(5n+4) ::selection,
main section:nth-of-type(5n+4)::selection { background: var(--aura); color: var(--ink); }
main section:nth-of-type(5n+5) ::selection,
main section:nth-of-type(5n+5)::selection { background: var(--bio); color: var(--white); }

/* Menu: each link owns one colour drawn from the logo rays, darkened
   for legibility (all pass WCAG AA on ivory). Once hovered, the colour
   stays (JS adds .was-hovered); the current page carries its colour too. */
.site-nav a:nth-of-type(1) { --nav-c: #A67C00; }  /* gold   · Home */
.site-nav a:nth-of-type(2) { --nav-c: #D6246E; }  /* pink   · About */
.site-nav a:nth-of-type(3) { --nav-c: #7C4FD0; }  /* purple · The Experience */
.site-nav a:nth-of-type(4) { --nav-c: #1E76B4; }  /* blue   · FAQ */
.site-nav a:nth-of-type(5) { --nav-c: #177347; }  /* green  · Contact */

.site-nav a {
  transition: border-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.site-nav a:hover,
.site-nav a.was-hovered,
.site-nav a[aria-current="page"] {
  color: var(--nav-c, var(--orchid));
  border-color: var(--nav-c, var(--orchid));
}

/* A quiet response remains after the colour has been kept */
.site-nav a:hover { transform: translateY(-1.5px); }

@media (prefers-reduced-motion: reduce) { .site-nav a:hover { transform: none; } }

.text-link:hover { color: var(--orchid); border-color: var(--orchid); }
.site-footer__links a:hover { color: var(--orchid); }
p a:hover, .legal a:hover, .form__note a:hover { color: var(--orchid); }

.btn:hover { background: transparent; color: var(--ink); border-color: var(--orchid); }
.btn--ghost:hover { background: var(--ink); color: var(--ivory); }

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline-color: var(--orchid);
  border-color: var(--orchid);
}

/* Eyebrows carry a sliver of the palette */
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  margin-right: 0.8rem;
  vertical-align: middle;
  background: linear-gradient(90deg,
    var(--lacey), var(--lemonade), var(--orchid), var(--aura), var(--bio));
}

/* Season cells: family colour surfaces quietly on hover */
.season-grid__cell { border-top: 2px solid transparent; transition: border-color 250ms ease; }
.season-grid__cell:nth-child(1):hover { border-top-color: var(--lacey); }
.season-grid__cell:nth-child(2):hover { border-top-color: var(--lemonade); }
.season-grid__cell:nth-child(3):hover { border-top-color: var(--bio); }
.season-grid__cell:nth-child(4):hover { border-top-color: var(--aura); }

.season-grid__cell ul {
  list-style: none;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 2;
}

.season-grid__cell li { display: flex; align-items: center; gap: 0.6rem; }

.swatch {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Editorial photography */
.photo { border: 1px solid var(--line); }

.photo figcaption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--grey);
  margin-top: 0.9rem;
  line-height: 1.5;
}

/* Contact card: the colourful invitation */
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg,
    var(--lacey), var(--lemonade), var(--orchid), var(--aura), var(--bio)) 1;
  border-image-width: 4px 0 0 0;
  max-width: 46rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.75rem, 5vw, 3.5rem);
  text-align: center;
}

.contact-card h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }

.contact-card p { margin-top: 1.25rem; }

.contact-card .btn { margin-top: 2rem; }

.contact-card__email {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--grey);
}

.contact-card__email a { color: var(--grey); }
.contact-card__email a:hover { color: var(--orchid); }

/* Accessibility: skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--ivory);
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.skip-link:focus { left: 0; }

/* Process numbers: each step tinted with a deepened palette colour */
.process__step:nth-of-type(1) .process__num { color: color-mix(in srgb, var(--lacey), var(--ink) 45%); }
.process__step:nth-of-type(2) .process__num { color: color-mix(in srgb, var(--lemonade), var(--ink) 25%); }
.process__step:nth-of-type(3) .process__num { color: color-mix(in srgb, var(--orchid), var(--ink) 25%); }
.process__step:nth-of-type(4) .process__num { color: color-mix(in srgb, var(--bio), var(--ink) 10%); }
.process__step:nth-of-type(5) .process__num { color: color-mix(in srgb, var(--aura), var(--ink) 45%); }

/* Drape row: fabric drapes as quiet colour, used on The Experience */
.drape-row {
  display: flex;
  gap: clamp(0.5rem, 1.5vw, 1rem);
  height: clamp(110px, 18vw, 170px);
  align-items: flex-start;
}

.drape-row span { flex: 1; height: 100%; }
.drape-row span:nth-child(1) { background: var(--lacey); }
.drape-row span:nth-child(2) { background: var(--lemonade); }
.drape-row span:nth-child(3) { background: var(--orchid); }
.drape-row span:nth-child(4) { background: var(--aura); }
.drape-row span:nth-child(5) { background: var(--bio); }

/* Form panel: the contact form framed in the palette */
.form-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg,
    var(--lacey), var(--lemonade), var(--orchid), var(--aura), var(--bio)) 1;
  border-image-width: 4px 0 0 0;
  max-width: 46rem;
  padding: clamp(2rem, 5vw, 3.25rem);
}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */

.faq { max-width: var(--measure); }

.faq details {
  border-top: 1px solid var(--line);
  padding: 0.25rem 0;
}

.faq details:last-of-type { border-bottom: 1px solid var(--line); }

.faq summary {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  padding: 1.4rem 2.5rem 1.4rem 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color 200ms ease;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: '+';
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--grey);
  transition: transform 250ms ease, color 200ms ease;
}

.faq summary:hover { color: var(--orchid); }
.faq summary:hover::after { color: var(--orchid); }

.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); color: var(--orchid); }

.faq details > div { padding: 0 0 1.75rem 1.5rem; max-width: var(--measure); }
.faq details > div p + p { margin-top: 1em; }

/* Each question carries a palette colour, cycling in progress-bar order */
.faq details:nth-of-type(5n+1) { --faq-c: color-mix(in srgb, var(--lacey), var(--ink) 45%); }
.faq details:nth-of-type(5n+2) { --faq-c: color-mix(in srgb, var(--lemonade), var(--ink) 20%); }
.faq details:nth-of-type(5n+3) { --faq-c: color-mix(in srgb, var(--orchid), var(--ink) 20%); }
.faq details:nth-of-type(5n+4) { --faq-c: color-mix(in srgb, var(--aura), var(--ink) 45%); }
.faq details:nth-of-type(5n+5) { --faq-c: color-mix(in srgb, var(--bio), var(--ink) 5%); }

.faq summary { padding-left: 1.5rem; }

.faq summary::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--faq-c, var(--orchid));
}

.faq summary:hover,
.faq details[open] summary { color: var(--faq-c, var(--orchid)); }

.faq summary:hover::after,
.faq details[open] summary::after { color: var(--faq-c, var(--orchid)); }

/* ==========================================================================
   Mobile and tablet refinements
   ========================================================================== */

@media (max-width: 860px) {
  .process__step { grid-template-columns: 3.25rem 1fr; gap: 1rem; }
  .legal table { display: block; overflow-x: auto; }
}

@media (max-width: 560px) {
  .season-grid { grid-template-columns: 1fr; }
  .season-grid__cell { padding: 1.75rem 1.5rem; }
  .hero { padding-top: clamp(3.5rem, 10vw, 5rem); }
  .faq summary { font-size: 1.15rem; padding-right: 2.25rem; }
  .contact-card { padding: 2.25rem 1.5rem; }
  .form-panel { padding: 1.75rem 1.25rem; }
  .btn { display: block; width: 100%; text-align: center; }
  .contact-card .btn, .form .btn { max-width: 100%; }
  .site-footer__inner { gap: 1.75rem; }
}
