/* ==========================================================================
   Retrouvaille Phoenix
   Aesthetic: warm editorial calm. Morning light on paper. Ink and gold.
   Bright neutral ground throughout, gold as the single accent.
   Type: Fraunces (display serif) + Karla (body grotesque)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
  /* Core palette */
  --ink:            #17222c;
  --ink-soft:       #3d4c58;
  --ink-faint:      #596773;

  --paper:          #fdfaf5;
  --paper-warm:     #f6f0e6;
  --paper-deep:     #efe7da;
  --paper-sand:     #e9dfcd;

  --blue-abyss:     #0e2233;
  --blue-deep:      #16354f;
  --blue:           #235273;
  --blue-mid:       #4a7f9e;
  --blue-soft:      #a8c6d6;
  --blue-mist:      #dceaf1;

  --gold:           #b3862f;   /* decorative: rules, icons, large text */
  --gold-deep:      #7a5a1c;   /* text on light ground, clears 4.5:1 */
  --gold-bright:    #d8a949;
  --gold-pale:      #f0dcae;

  --white:          #ffffff;

  /* Semantic */
  --bg:             var(--paper);
  --text:           var(--ink);
  --text-muted:     var(--ink-soft);
  --rule:           rgba(23, 34, 44, 0.12);
  --rule-gold:      rgba(179, 134, 47, 0.38);

  /* Feature surfaces. Bright neutrals that used to be deep blue. */
  --surface-1:      var(--paper-warm);   /* section--blue */
  --surface-2:      var(--paper-deep);   /* section--deep */
  --surface-3:      var(--paper-sand);   /* footer */

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body:    "Karla", "Avenir Next", "Segoe UI", sans-serif;

  --fs-micro:  0.735rem;
  --fs-small:  0.875rem;
  --fs-body:   1.0625rem;
  --fs-lead:   clamp(1.125rem, 0.95rem + 0.75vw, 1.375rem);
  --fs-h4:     clamp(1.05rem, 0.98rem + 0.35vw, 1.2rem);
  --fs-h3:     clamp(1.3rem, 1.1rem + 0.85vw, 1.75rem);
  --fs-h2:     clamp(1.75rem, 1.35rem + 1.9vw, 2.9rem);
  --fs-h1:     clamp(2.4rem, 1.6rem + 3.6vw, 4.5rem);

  /* Space */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  --section-y: clamp(3.5rem, 2rem + 7vw, 7.5rem);
  --gutter:    clamp(1.25rem, 0.6rem + 2.6vw, 3rem);
  --measure:   68ch;
  --wide:      1240px;
  --mid:       960px;
  --narrow:    720px;

  /* Depth */
  --shadow-sm: 0 1px 2px rgba(14, 34, 51, 0.05),
               0 2px 8px rgba(14, 34, 51, 0.045);
  --shadow-md: 0 2px 4px rgba(14, 34, 51, 0.05),
               0 12px 32px -8px rgba(14, 34, 51, 0.14);
  --shadow-lg: 0 4px 8px rgba(14, 34, 51, 0.06),
               0 28px 64px -16px rgba(14, 34, 51, 0.22);

  --radius-sm: 3px;
  --radius:    6px;
  --radius-lg: 14px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --header-h: 74px;
}

/* --------------------------------------------------------------------------
   2. Reset and base
   -------------------------------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1.5rem);
}

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.68;
  font-variant-numeric: oldstyle-nums;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Paper grain. Subtle, gives the warm white some tooth. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.16'/%3E%3C/svg%3E");
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "SOFT" 24, "WONK" 1, "opsz" 40;
  line-height: 1.11;
  letter-spacing: -0.018em;
  color: var(--blue-abyss);
  margin: 0 0 var(--sp-4);
  text-wrap: balance;
}

h1 { font-size: var(--fs-h1); letter-spacing: -0.03em; }
h2 { font-size: var(--fs-h2); letter-spacing: -0.024em; }
h3 { font-size: var(--fs-h3); line-height: 1.2; }
h4 { font-size: var(--fs-h4); line-height: 1.32; letter-spacing: -0.01em; }

p { margin: 0 0 var(--sp-4); max-width: var(--measure); text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue); text-decoration-thickness: 1px; text-underline-offset: 0.19em; }
a:hover { color: var(--gold-deep); }

strong, b { font-weight: 700; color: var(--blue-abyss); }

ul, ol { margin: 0 0 var(--sp-4); padding-left: 1.15em; max-width: var(--measure); }
li { margin-bottom: var(--sp-2); }
li::marker { color: var(--gold); }

hr {
  border: 0;
  height: 1px;
  background: var(--rule);
  margin: var(--sp-7) 0;
}

::selection { background: var(--gold-pale); color: var(--blue-abyss); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: var(--sp-4);
  top: -100px;
  z-index: 10000;
  background: var(--blue-abyss);
  color: var(--paper);
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: var(--sp-4); color: var(--paper); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */

.wrap { width: 100%; max-width: var(--wide); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--mid { max-width: var(--mid); }
.wrap--narrow { max-width: var(--narrow); }

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem); }

.section--paper   { background: var(--paper-warm); }
.section--deep    { background: var(--surface-2); color: var(--text); }
.section--blue    { background: var(--surface-1); color: var(--text); }

.section--deep h1,
.section--deep h2,
.section--deep h3,
.section--deep h4,
.section--blue h1,
.section--blue h2,
.section--blue h3,
.section--blue h4,
.callband h1,
.callband h2,
.callband h3,
.callband h4 {
  color: var(--blue-abyss);
}
.section--deep strong,
.section--deep b,
.section--blue strong,
.section--blue b,
.callband strong,
.callband b,
.hero strong,
.hero b,
.pagehead strong,
.pagehead b {
  color: var(--blue-abyss);
}
.section--deep a strong,
.section--blue a strong,
.callband a strong,
.hero a strong,
.pagehead a strong,
.datecard a strong {
  color: inherit;
}
.section--deep p,
.section--blue p,
.callband p { color: var(--text-muted); }
.section--deep a:not(.btn),
.section--blue a:not(.btn),
.callband a:not(.btn) { color: var(--gold-deep); }
.section--deep a:not(.btn):hover,
.section--blue a:not(.btn):hover,
.callband a:not(.btn):hover { color: var(--blue); }

.grid { display: grid; gap: var(--sp-6); }
.grid--2 { grid-template-columns: minmax(0, 1fr); }
.grid--3 { grid-template-columns: minmax(0, 1fr); }

@media (min-width: 720px) {
  .grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1000px) {
  .grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.grid--split { grid-template-columns: 1fr; gap: clamp(2rem, 1rem + 4vw, 4.5rem); }

@media (min-width: 900px) {
  .grid--split { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); align-items: start; }
  .grid--split.is-reversed { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); }
}

.stack > * + * { margin-top: var(--sp-4); }
.center { text-align: center; }
.center p,
.center .lead { margin-inline: auto; }

/* --------------------------------------------------------------------------
   4. Type utilities
   -------------------------------------------------------------------------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 var(--sp-4);
  font-variant-numeric: lining-nums;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--rule-gold);
  flex: 0 0 auto;
}
.section--deep .eyebrow,
.section--blue .eyebrow,
.callband .eyebrow { color: var(--gold-deep); }
.section--deep .eyebrow::before,
.section--blue .eyebrow::before,
.callband .eyebrow::before { background: var(--rule-gold); }
.eyebrow--center { justify-content: center; }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 60ch;
}
.section--deep .lead,
.section--blue .lead,
.callband .lead { color: var(--text-muted); }

.small { font-size: var(--fs-small); line-height: 1.6; }
.muted { color: var(--ink-faint); }
.nums { font-variant-numeric: lining-nums tabular-nums; }

.serif-note {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 40, "WONK" 1, "opsz" 20;
  font-style: italic;
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--blue);
}

/* Gold cross divider */
.divider {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-block: var(--sp-7);
  color: var(--rule-gold);
}
.divider::before,
.divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--rule-gold), transparent);
}
.divider svg { width: 15px; height: 15px; opacity: 0.75; flex: 0 0 auto; }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95em 1.85em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background-color 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease);
  font-variant-numeric: lining-nums;
  line-height: 1.15;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--gold);
  color: #1a1204;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--gold-bright); color: #1a1204; box-shadow: var(--shadow-md); }

.btn--deep {
  background: var(--blue-deep);
  color: var(--paper);
  box-shadow: var(--shadow-sm);
}
.btn--deep:hover { background: var(--blue); color: var(--white); box-shadow: var(--shadow-md); }

.btn--ghost {
  background: transparent;
  color: var(--blue-deep);
  border-color: rgba(22, 53, 79, 0.28);
}
.btn--ghost:hover { background: rgba(22, 53, 79, 0.05); color: var(--blue-deep); border-color: var(--blue); }

.section--deep .btn--ghost,
.section--blue .btn--ghost,
.callband .btn--ghost,
.hero .btn--ghost,
.pagehead .btn--ghost {
  color: var(--blue-deep);
  border-color: rgba(22, 53, 79, 0.3);
}
.section--deep .btn--ghost:hover,
.section--blue .btn--ghost:hover,
.callband .btn--ghost:hover,
.hero .btn--ghost:hover,
.pagehead .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.6);
  color: var(--blue-abyss);
  border-color: var(--blue);
}

.btn--lg { font-size: 0.95rem; padding: 1.1em 2.3em; }
.btn--block { display: flex; width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}
.btn-row--center { justify-content: center; }

/* Text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-weight: 700;
  font-size: var(--fs-small);
  letter-spacing: 0.045em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--blue);
  border-bottom: 1px solid var(--rule-gold);
  padding-bottom: 0.25em;
  transition: gap 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.link-arrow::after { content: "\2192"; transition: transform 0.25s var(--ease); }
.link-arrow:hover { gap: 0.8em; color: var(--gold-deep); border-color: var(--gold-deep); }

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */

.header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(253, 250, 245, 0.93);
  backdrop-filter: saturate(1.6) blur(14px);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow 0.3s var(--ease), background-color 0.3s var(--ease);
}
.header.is-stuck { box-shadow: 0 6px 24px -12px rgba(14, 34, 51, 0.3); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--blue-abyss);
  flex: 0 0 auto;
}
.brand__mark { width: 36px; height: 36px; flex: 0 0 auto; transition: transform 0.4s var(--ease-out); }
.brand:hover .brand__mark { transform: rotate(-4deg) scale(1.05); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 30, "WONK" 1, "opsz" 24;
  font-size: 1.24rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--blue-abyss);
}
.brand__place {
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 0.32em;
}

.nav { display: none; }

@media (min-width: 1060px) {
  .nav {
    display: flex;
    align-items: center;
    gap: clamp(0.9rem, 0.3rem + 1vw, 1.6rem);
  }
  .nav__link {
    font-size: 0.795rem;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ink-soft);
    padding: 0.4rem 0;
    position: relative;
    white-space: nowrap;
    transition: color 0.2s var(--ease);
  }
  .nav__link::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1.5px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.32s var(--ease-out);
  }
  .nav__link:hover { color: var(--blue-abyss); }
  .nav__link:hover::after,
  .nav__link[aria-current="page"]::after { transform: scaleX(1); }
  .nav__link[aria-current="page"] { color: var(--blue-abyss); }
}

.header__actions { display: flex; align-items: center; gap: var(--sp-3); flex: 0 0 auto; }

.header__phone {
  display: none;
  align-items: center;
  gap: 0.45em;
  text-decoration: none;
  color: var(--blue-deep);
  font-weight: 700;
  font-size: 0.94rem;
  font-variant-numeric: lining-nums;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 0.2s var(--ease);
}
.header__phone svg { width: 15px; height: 15px; color: var(--gold); }
.header__phone:hover { color: var(--gold-deep); }
@media (min-width: 700px) { .header__phone { display: inline-flex; } }

.header .btn { padding: 0.8em 1.35em; font-size: 0.76rem; }
@media (max-width: 699px) { .header .btn--primary { display: none; } }

/* Hamburger */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 9px;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  cursor: pointer;
}
@media (min-width: 1060px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--blue-abyss);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 400;
  background: var(--paper);
  padding: var(--sp-6) var(--gutter) var(--sp-9);
  overflow-y: auto;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), transform 0.35s var(--ease-out), visibility 0.3s;
}
.mobile-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
@media (min-width: 1060px) { .mobile-nav { display: none; } }

.mobile-nav__link {
  display: block;
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 30, "WONK" 1, "opsz" 30;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--blue-abyss);
  text-decoration: none;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--rule);
}
.mobile-nav__link[aria-current="page"] { color: var(--gold); }
.mobile-nav__actions { margin-top: var(--sp-6); display: grid; gap: var(--sp-3); }

body.nav-open { overflow: hidden; }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  background: var(--paper-warm);
  color: var(--text);
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--rule-gold);
}

/* Morning light: warm sand rising into a bright wash, gold low on the horizon */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(120% 78% at 78% 108%, rgba(216, 169, 73, 0.24) 0%, rgba(216, 169, 73, 0) 60%),
    radial-gradient(95% 72% at 12% -12%, rgba(168, 198, 214, 0.28) 0%, rgba(168, 198, 214, 0) 64%),
    linear-gradient(168deg, #fdfaf5 0%, #f7f1e6 46%, #f0e7d8 100%);
}

/* Faint horizon line, like water meeting sky */
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 26%;
  height: 1px;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(179, 134, 47, 0.34) 30%, rgba(179, 134, 47, 0.34) 70%, transparent);
}

.hero__inner {
  position: relative;
  padding-block: clamp(3.5rem, 2rem + 9vw, 8rem);
  display: grid;
  gap: clamp(2.5rem, 1rem + 5vw, 4.5rem);
}
@media (min-width: 980px) {
  .hero__inner { grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr); align-items: center; }
}

.hero h1 {
  color: var(--blue-abyss);
  font-variation-settings: "SOFT" 30, "WONK" 1, "opsz" 90;
  margin-bottom: var(--sp-5);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-deep);
  font-variation-settings: "SOFT" 60, "WONK" 1, "opsz" 90;
}

.hero__lead {
  font-size: clamp(1.1rem, 0.95rem + 0.7vw, 1.4rem);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 34ch;
}

.hero .eyebrow { color: var(--gold-deep); }
.hero .eyebrow::before { background: var(--rule-gold); }

.hero__reassure {
  margin-top: var(--sp-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-5);
  font-size: var(--fs-small);
  color: var(--ink-faint);
}
.hero__reassure span { display: inline-flex; align-items: center; gap: 0.45em; }
.hero__reassure span::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex: 0 0 auto;
}

/* Next weekend card */
.datecard {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--rule-gold);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 1.1rem + 1.6vw, 2.4rem);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-md);
  position: relative;
}
.datecard::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(179, 134, 47, 0.16);
  border-radius: calc(var(--radius-lg) - 4px);
  pointer-events: none;
}
.datecard__label {
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: var(--sp-4);
}
.datecard__date {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 30, "WONK" 1, "opsz" 60;
  font-size: clamp(1.9rem, 1.3rem + 2.2vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.028em;
  color: var(--blue-abyss);
  margin-bottom: var(--sp-2);
  font-variant-numeric: lining-nums;
}
.datecard__place {
  font-size: var(--fs-small);
  color: var(--ink-faint);
  margin-bottom: var(--sp-5);
}
.datecard__meta {
  border-top: 1px solid var(--rule-gold);
  padding-top: var(--sp-4);
  margin-top: var(--sp-5);
  font-size: var(--fs-small);
  color: var(--ink-faint);
}
.datecard__meta a { color: var(--gold-deep); }

/* Page header for interior pages */
.pagehead {
  position: relative;
  background: var(--paper-warm);
  color: var(--text);
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(3rem, 2rem + 6vw, 6rem);
  border-bottom: 1px solid var(--rule-gold);
}
.pagehead::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(90% 100% at 88% 118%, rgba(216, 169, 73, 0.2) 0%, rgba(216, 169, 73, 0) 62%),
    radial-gradient(80% 90% at 6% -20%, rgba(168, 198, 214, 0.26) 0%, rgba(168, 198, 214, 0) 64%),
    linear-gradient(160deg, #fdfaf5 0%, #f2eadd 100%);
}
.pagehead h1 { color: var(--blue-abyss); font-variation-settings: "SOFT" 30, "WONK" 1, "opsz" 72; max-width: 20ch; }
.pagehead .lead { color: var(--text-muted); max-width: 56ch; margin-top: var(--sp-5); }
.pagehead .eyebrow { color: var(--gold-deep); }
.pagehead .eyebrow::before { background: var(--rule-gold); }

/* --------------------------------------------------------------------------
   8. Cards
   -------------------------------------------------------------------------- */

.card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1.1rem + 1.3vw, 2.25rem);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
              border-color 0.35s var(--ease);
  position: relative;
  height: 100%;
}
.card--lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--rule-gold);
}
.card h3 { margin-bottom: var(--sp-3); }
.card p { color: var(--text-muted); }
.card p:last-child { margin-bottom: 0; }

.section--paper .card { background: var(--white); }
.section--deep .card,
.section--blue .card {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(179, 134, 47, 0.24);
  box-shadow: var(--shadow-sm);
}

/* Phase cards, numbered */
.phase {
  position: relative;
  padding-top: clamp(1.9rem, 1.4rem + 1.6vw, 2.7rem);
}
.phase__num {
  position: absolute;
  top: clamp(1.3rem, 1rem + 1vw, 1.9rem);
  right: clamp(1.4rem, 1.1rem + 1.2vw, 2.1rem);
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 20, "WONK" 0, "opsz" 60;
  font-size: clamp(2.6rem, 2rem + 2.4vw, 4rem);
  line-height: 0.8;
  color: var(--paper-sand);
  font-variant-numeric: lining-nums;
  user-select: none;
  pointer-events: none;
  transition: color 0.35s var(--ease);
}
.card--lift:hover .phase__num { color: var(--gold-pale); }
.phase__tag {
  display: inline-block;
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: var(--sp-3);
}
.phase__when {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--rule);
  width: 100%;
  font-size: var(--fs-small);
  color: var(--ink-faint);
  font-variant-numeric: lining-nums;
}

/* Stat block */
.stats {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}
.stat { padding: var(--sp-2) 0; }
.stat__fig {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 20, "WONK" 1, "opsz" 60;
  font-size: clamp(2.6rem, 1.9rem + 2.8vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--gold-deep);
  font-variant-numeric: lining-nums;
  display: block;
  margin-bottom: var(--sp-3);
}
.stat__label { font-size: var(--fs-small); line-height: 1.5; color: var(--text-muted); max-width: 26ch; }
.section--paper .stat__fig,
.stat--light .stat__fig { color: var(--blue); }
.section--paper .stat__label,
.stat--light .stat__label { color: var(--text-muted); }

/* Headline proof band: one number, given the whole width to land */
.proofband {
  position: relative;
  background: var(--paper-deep);
  border-top: 1px solid var(--rule-gold);
  border-bottom: 1px solid var(--rule-gold);
  padding-block: clamp(2.75rem, 1.6rem + 4.5vw, 5rem);
  overflow: hidden;
}
.proofband::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(80% 130% at 6% 50%, rgba(216, 169, 73, 0.26) 0%, rgba(216, 169, 73, 0) 62%),
    radial-gradient(70% 120% at 96% 8%, rgba(168, 198, 214, 0.24) 0%, rgba(168, 198, 214, 0) 60%);
}
.proofband__inner {
  position: relative;
  display: grid;
  gap: clamp(1.25rem, 0.4rem + 2.6vw, 3.25rem);
  align-items: center;
}
@media (min-width: 800px) {
  .proofband__inner { grid-template-columns: auto minmax(0, 1fr); }
  .proofband__body {
    border-left: 1px solid var(--rule-gold);
    padding-left: clamp(1.5rem, 0.4rem + 2.6vw, 3.25rem);
  }
}
.proofband__fig {
  display: block;
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 40, "WONK" 1, "opsz" 144;
  font-size: clamp(4.75rem, 2.4rem + 9.5vw, 10rem);
  line-height: 0.8;
  letter-spacing: -0.05em;
  color: var(--gold-deep);
  font-variant-numeric: lining-nums;
}
.proofband__body { max-width: 48ch; }
.proofband__claim {
  margin: 0;
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 30, "WONK" 1, "opsz" 60;
  font-size: clamp(1.2rem, 0.95rem + 1.1vw, 1.85rem);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--blue-abyss);
}
.proofband__claim em {
  font-style: italic;
  color: var(--gold-deep);
}
.proofband__source {
  margin: var(--sp-4) 0 0;
  font-size: var(--fs-small);
  line-height: 1.55;
  color: var(--ink-faint);
  max-width: 44ch;
}
.proofband .eyebrow { margin-bottom: var(--sp-3); }

/* --------------------------------------------------------------------------
   9. Quotes and testimonials
   -------------------------------------------------------------------------- */

.quote {
  position: relative;
  padding-left: clamp(1.5rem, 1rem + 1.6vw, 2.4rem);
  border-left: 2px solid var(--rule-gold);
}
.quote p {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 50, "WONK" 1, "opsz" 32;
  font-style: italic;
  font-size: clamp(1.15rem, 1rem + 0.75vw, 1.5rem);
  line-height: 1.48;
  letter-spacing: -0.012em;
  color: var(--blue-deep);
}
.quote cite {
  display: block;
  margin-top: var(--sp-4);
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.section--deep .quote,
.section--blue .quote { border-left-color: var(--gold); }
.section--deep .quote p,
.section--blue .quote p { color: var(--blue-deep); }
.section--deep .quote cite,
.section--blue .quote cite { color: var(--gold-deep); }

/* Testimonial carousel */
.carousel { position: relative; }
.carousel__track { position: relative; min-height: 1px; }
.carousel__slide {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  inset: 0;
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease-out);
  transform: translateY(10px);
}
.carousel__slide.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
  transform: translateY(0);
}
.carousel__controls {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-7);
}
.carousel__btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--rule-gold);
  background: transparent;
  color: var(--gold-deep);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s var(--ease), transform 0.25s var(--ease), color 0.25s var(--ease);
}
.carousel__btn:hover { background: rgba(216, 169, 73, 0.14); transform: scale(1.06); }
.carousel__btn svg { width: 16px; height: 16px; }
.carousel__dots { display: flex; gap: 8px; margin-left: auto; }
.carousel__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(179, 134, 47, 0.32);
  cursor: pointer;
  transition: background-color 0.25s var(--ease), width 0.3s var(--ease-out);
}
.carousel__dot.is-active { background: var(--gold); width: 22px; border-radius: 4px; }

/* Testimonial grid card */
.testimonial {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 1.2rem + 1.3vw, 2.3rem);
  box-shadow: var(--shadow-sm);
  break-inside: avoid;
  margin-bottom: var(--sp-5);
  position: relative;
  transition: box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease);
}
.testimonial:hover { box-shadow: var(--shadow-md); border-color: var(--rule-gold); }
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 0.12em;
  left: 0.36em;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold-pale);
  opacity: 0.55;
  pointer-events: none;
}
.testimonial p {
  position: relative;
  font-size: 1.04rem;
  line-height: 1.62;
  color: var(--ink-soft);
}
.testimonial p + p { margin-top: var(--sp-3); }
.testimonial cite {
  display: block;
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--rule);
  font-style: normal;
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.masonry { columns: 1; column-gap: var(--sp-5); }
@media (min-width: 760px) { .masonry { columns: 2; } }
@media (min-width: 1120px) { .masonry { columns: 3; } }

/* --------------------------------------------------------------------------
   10. Accordion (FAQ)
   -------------------------------------------------------------------------- */

.accordion { border-top: 1px solid var(--rule); max-width: var(--narrow); }
.accordion--wide { max-width: none; }

.acc {
  border-bottom: 1px solid var(--rule);
}
.acc__btn {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-4);
  width: 100%;
  padding: var(--sp-5) 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 26, "WONK" 1, "opsz" 28;
  font-size: clamp(1.08rem, 0.98rem + 0.5vw, 1.3rem);
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: -0.014em;
  color: var(--blue-abyss);
  transition: color 0.2s var(--ease);
}
.acc__btn:hover { color: var(--gold-deep); }
.acc__icon {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  margin-top: 0.28em;
  position: relative;
  color: var(--gold);
}
.acc__icon::before,
.acc__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 0.35s var(--ease-out), opacity 0.25s var(--ease);
}
.acc__icon::before { top: 50%; left: 2px; right: 2px; height: 1.5px; transform: translateY(-50%); }
.acc__icon::after { left: 50%; top: 2px; bottom: 2px; width: 1.5px; transform: translateX(-50%); }
.acc__btn[aria-expanded="true"] .acc__icon::after { transform: translateX(-50%) scaleY(0); opacity: 0; }

.acc__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease-out);
}
.acc__panel > div { overflow: hidden; }
.acc__panel.is-open { grid-template-rows: 1fr; }
.acc__body { padding: 0 0 var(--sp-5); max-width: var(--measure); }
.acc__body p { color: var(--text-muted); }
.acc__body p:first-child { margin-top: 0; }

/* --------------------------------------------------------------------------
   11. Weekend dates list
   -------------------------------------------------------------------------- */

.weekend-list { display: grid; gap: var(--sp-4); }

.weekend {
  display: grid;
  gap: var(--sp-4);
  align-items: center;
  background: var(--white);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 1rem + 1vw, 1.9rem);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.weekend:hover { box-shadow: var(--shadow-md); transform: translateX(3px); }
@media (min-width: 800px) {
  .weekend { grid-template-columns: minmax(0, 1fr) auto; gap: var(--sp-6); }
}
.weekend--next { border-left-color: var(--gold-bright); background: linear-gradient(100deg, #fffdf8, var(--white) 55%); }

.weekend__date {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 28, "WONK" 1, "opsz" 40;
  font-size: clamp(1.3rem, 1.1rem + 0.9vw, 1.75rem);
  line-height: 1.15;
  letter-spacing: -0.024em;
  color: var(--blue-abyss);
  font-variant-numeric: lining-nums;
  margin-bottom: var(--sp-2);
}
.weekend__meta { font-size: var(--fs-small); color: var(--ink-faint); }
.weekend__badge {
  display: inline-block;
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #1a1204;
  background: var(--gold-pale);
  padding: 0.3em 0.75em;
  border-radius: 100px;
  margin-bottom: var(--sp-3);
}

/* --------------------------------------------------------------------------
   12. Steps / process rail
   -------------------------------------------------------------------------- */

.rail { display: grid; gap: 0; counter-reset: step; }
.rail__item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: var(--sp-5);
  padding-bottom: var(--sp-6);
  position: relative;
}
.rail__item::before {
  content: "";
  position: absolute;
  left: 21.5px;
  top: 44px;
  bottom: 0;
  width: 1px;
  background: var(--rule-gold);
}
.rail__item:last-child { padding-bottom: 0; }
.rail__item:last-child::before { display: none; }
.rail__dot {
  counter-increment: step;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--rule-gold);
  background: var(--paper);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 20, "WONK" 0, "opsz" 24;
  font-size: 1.05rem;
  color: var(--gold);
  font-variant-numeric: lining-nums;
  flex: 0 0 auto;
  z-index: 1;
}
.rail__dot::before { content: counter(step); }
.rail__body h4 { margin-bottom: var(--sp-2); }
.rail__body p { color: var(--text-muted); margin-bottom: 0; }
.section--paper .rail__dot { background: var(--paper-warm); }
.section--blue .rail__dot { background: var(--surface-1); }
.section--deep .rail__dot { background: var(--surface-2); }
.section--deep .rail__body p,
.section--blue .rail__body p { color: var(--text-muted); }

/* --------------------------------------------------------------------------
   13. Contact / forms
   -------------------------------------------------------------------------- */

.form { display: grid; gap: var(--sp-4); }
.field { display: grid; gap: 0.45rem; }
.field label {
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(23, 34, 44, 0.2);
  border-radius: var(--radius);
  padding: 0.85em 1em;
  width: 100%;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { min-height: 148px; resize: vertical; line-height: 1.6; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(216, 169, 73, 0.18);
}
.field input::placeholder,
.field textarea::placeholder { color: #9aa7b1; }
.field--half { display: grid; gap: var(--sp-4); }
@media (min-width: 620px) { .field--half { grid-template-columns: 1fr 1fr; } }

.form__note { font-size: var(--fs-small); color: var(--ink-faint); }
.form__status { font-size: var(--fs-small); font-weight: 700; color: var(--blue); min-height: 1.4em; }

.contact-panel {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 1.2rem + 1.6vw, 2.6rem);
  box-shadow: var(--shadow-sm);
}

.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-5); }
.contact-list li { display: grid; grid-template-columns: 38px 1fr; gap: var(--sp-4); margin: 0; align-items: start; }
.contact-list__icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--rule-gold);
  display: grid;
  place-items: center;
  color: var(--gold);
}
.contact-list__icon svg { width: 16px; height: 16px; }
.contact-list dt,
.contact-list__label {
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.2em;
}
.contact-list__value {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 28, "WONK" 1, "opsz" 30;
  font-size: 1.32rem;
  letter-spacing: -0.018em;
  color: var(--blue-abyss);
  text-decoration: none;
  font-variant-numeric: lining-nums;
  word-break: break-word;
}
a.contact-list__value:hover { color: var(--gold-deep); }
.section--deep .contact-list__value,
.section--blue .contact-list__value { color: var(--blue-abyss); }

/* Big phone call-to-action band */
.callband {
  background: var(--paper-deep);
  color: var(--text);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-block: 1px solid var(--rule-gold);
}
.callband::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(85% 130% at 82% 120%, rgba(216, 169, 73, 0.28) 0%, rgba(216, 169, 73, 0) 62%),
    linear-gradient(150deg, #fbf6ed, #f0e7d8);
}
.callband__phone {
  display: inline-block;
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 26, "WONK" 1, "opsz" 80;
  font-size: clamp(2.1rem, 1.3rem + 3.4vw, 3.9rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--gold-deep);
  text-decoration: none;
  font-variant-numeric: lining-nums;
  transition: color 0.25s var(--ease), letter-spacing 0.35s var(--ease-out);
}
.callband__phone:hover { color: var(--blue-deep); letter-spacing: -0.025em; }

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */

.footer {
  background: var(--surface-3);
  color: var(--ink-soft);
  padding-block: var(--sp-8) var(--sp-6);
  font-size: var(--fs-small);
  border-top: 1px solid var(--rule-gold);
}
.footer__grid {
  display: grid;
  gap: var(--sp-7);
  grid-template-columns: 1fr;
  padding-bottom: var(--sp-7);
  border-bottom: 1px solid rgba(179, 134, 47, 0.28);
}
@media (min-width: 720px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 1.7fr 1fr 1fr 1.2fr; } }

.footer h4 {
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: var(--sp-4);
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: var(--sp-3); }
.footer a { color: var(--ink-soft); text-decoration: none; transition: color 0.2s var(--ease); }
.footer a:hover { color: var(--gold-deep); }
.footer p { color: var(--ink-faint); }

.footer__brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; margin-bottom: var(--sp-4); }
.footer__brand .brand__name { color: var(--blue-abyss); }
.footer__brand .brand__place { color: var(--gold-deep); }
.footer__brand img { width: 34px; height: 34px; }

.footer__bottom {
  padding-top: var(--sp-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3) var(--sp-5);
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-micro);
  letter-spacing: 0.02em;
  color: var(--ink-faint);
}
.footer__bottom p { color: inherit; margin: 0; }

.footer__cities {
  font-size: var(--fs-micro);
  line-height: 1.7;
  color: var(--ink-faint);
  max-width: none;
}

/* --------------------------------------------------------------------------
   15. Mobile action bar
   -------------------------------------------------------------------------- */

.actionbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 450;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(253, 250, 245, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--rule-gold);
  box-shadow: 0 -6px 24px -14px rgba(14, 34, 51, 0.28);
  padding-bottom: env(safe-area-inset-bottom);
}
@media (min-width: 700px) { .actionbar { display: none; } }
@media (max-width: 699px) { body { padding-bottom: 66px; } }

.actionbar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 1.1rem 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--blue-deep);
  font-variant-numeric: lining-nums;
}
.actionbar a svg { width: 15px; height: 15px; }
.actionbar a + a { border-left: 1px solid var(--rule-gold); color: var(--gold-deep); }

/* --------------------------------------------------------------------------
   16. Motion
   -------------------------------------------------------------------------- */

/* Content is visible by default. The hidden state only applies once the inline
   head script has confirmed JavaScript is running, so a blocked or failed
   script can never leave a couple staring at a blank page. */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
  transition-delay: var(--delay, 0ms);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@keyframes riseIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
.hero .anim {
  opacity: 0;
  animation: riseIn 0.95s var(--ease-out) forwards;
  animation-delay: var(--delay, 0ms);
}

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

/* --------------------------------------------------------------------------
   17. Print
   -------------------------------------------------------------------------- */

@media print {
  .header,
  .mobile-nav,
  .actionbar,
  .nav-toggle,
  body::before { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; padding: 0; }
  .hero,
  .pagehead,
  .callband,
  .section--deep,
  .section--blue,
  .proofband,
  .footer {
    background: #fff !important; color: #000 !important;
  }
  .proofband::before { display: none !important; }
  .hero h1,
  .pagehead h1,
  .section--deep h2,
  .section--blue h2 { color: #000 !important; }
  a { color: #000; text-decoration: underline; }
  .acc__panel { grid-template-rows: 1fr !important; }
  .card,
  .testimonial,
  .weekend,
  .contact-panel { box-shadow: none; border: 1px solid #ccc; }
}
