/* ==========================================================================
   byReynoir Rentals — Editorial Gallery
   Shared stylesheet. Static site, no build step.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --cream:    #FBEFE3;
  --gold:     #B5974A;
  --navy:     #1B2436;
  --mustard:  #E8B84B;
  --black:    #000000;
  --white:    #FFFFFF;
  --bg-inset: #F5E6D3;
  --error:    #8E251A;
  --success:  #1A6B3C;

  --navy-08:  rgba(27, 36, 54, 0.08);
  --navy-14:  rgba(27, 36, 54, 0.14);

  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --maxw: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  --ease-out-quint: cubic-bezier(0.16, 1, 0.3, 1);
  --radius-btn: 2px;
  --radius-card: 8px;
  --radius-round: 9999px;

  --widget-shadow: 0 2px 8px rgba(27, 36, 54, 0.08);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; }

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

/* ---------- Utility / layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container-narrow { max-width: 640px; }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--inset { background: var(--bg-inset); }
.section--navy { background: var(--navy); color: var(--cream); }
.stack > * + * { margin-top: 1rem; }
.center { text-align: center; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Editorial section number + label */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.eyebrow .num {
  color: var(--navy);
  font-weight: 600;
}
.eyebrow::before {
  content: "";
  width: 2.25rem; height: 1px;
  background: var(--gold);
  display: inline-block;
}

.label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mono { font-family: var(--font-mono); }

.section-title {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  max-width: 20ch;
}
.lede {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: color-mix(in srgb, var(--navy) 82%, transparent);
  max-width: 60ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  min-height: 48px;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-btn);
  border: 2px solid var(--navy);
  background: var(--navy);
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 200ms var(--ease-out-quint),
              color 200ms var(--ease-out-quint),
              border-color 200ms var(--ease-out-quint),
              transform 200ms var(--ease-out-quint);
}
.btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); text-decoration: none; }
.btn:active { transform: translateY(1px); }

.btn--outline { background: transparent; color: var(--navy); }
.btn--outline:hover { background: var(--navy); border-color: var(--navy); color: var(--cream); }

.btn--mustard { background: var(--mustard); border-color: var(--black); color: var(--navy); }
.btn--mustard:hover { background: var(--navy); border-color: var(--navy); color: var(--cream); }

.btn--ghost { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn--ghost:hover { background: var(--cream); color: var(--navy); border-color: var(--cream); }

.btn--block { width: 100%; }
.btn--lg { min-height: 54px; padding-inline: 2.25rem; font-size: 0.95rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-weight: 600; color: var(--navy);
  letter-spacing: 0.02em;
}
.link-arrow .arw { transition: transform 200ms var(--ease-out-quint); color: var(--gold); }
.link-arrow:hover { text-decoration: none; color: var(--gold); }
.link-arrow:hover .arw { transform: translateX(4px); }

/* ---------- Header (mustard band, all pages) ---------- */
.site-header {
  background: var(--mustard);
  border-bottom: 2px solid var(--black);
  position: sticky; top: 0; z-index: 50;
}
.header-inner {
  max-width: var(--maxw); margin-inline: auto;
  padding: 0.9rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  flex-wrap: wrap;
}
.wordmark {
  display: inline-flex; align-items: baseline; gap: 0.55rem;
  color: var(--navy); font-weight: 800; font-size: 1.3rem; letter-spacing: -0.02em;
}
.wordmark:hover { text-decoration: none; }
.wordmark .wordmark-sub {
  font-family: var(--font-mono);
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--navy);
  border: 1px solid var(--navy); border-radius: var(--radius-round);
  padding: 0.15rem 0.55rem;
}
.site-nav { display: flex; align-items: center; gap: clamp(0.75rem, 2vw, 1.75rem); flex-wrap: wrap; }
.site-nav a {
  color: var(--navy);
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 200ms var(--ease-out-quint), color 200ms var(--ease-out-quint);
}
.site-nav a:hover { text-decoration: none; border-color: var(--navy); }
.site-nav a[aria-current="page"] { border-color: var(--navy); }

/* ---------- Hero (landing) ---------- */
.hero {
  position: relative;
  min-height: min(78vh, 720px);
  display: flex; align-items: flex-end;
  overflow: hidden;
  border-bottom: 2px solid var(--black);
}
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(27,36,54,0.86) 0%, rgba(27,36,54,0.66) 46%, rgba(27,36,54,0.28) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin-inline: auto; width: 100%;
  padding: clamp(2.5rem, 6vw, 5rem) var(--gutter) clamp(2.5rem, 5vw, 4rem);
  color: var(--cream);
}
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mustard);
  display: inline-flex; align-items: center; gap: 0.7rem;
  margin-bottom: 1.25rem;
}
.hero__eyebrow::before { content: ""; width: 2rem; height: 1px; background: var(--mustard); }
.hero h1 {
  font-size: clamp(2.4rem, 6.5vw, 4.75rem);
  max-width: 16ch;
  color: var(--white);
}
.hero h1 .hl { color: var(--mustard); }
.hero__tagline {
  margin-top: 1.5rem;
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  max-width: 46ch;
  color: color-mix(in srgb, var(--cream) 92%, transparent);
}
.hero__cta { margin-top: 2rem; display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* Staggered entrance */
.animate-in { opacity: 0; transform: translateY(18px); animation: riseIn 400ms var(--ease-out-quint) forwards; }
.delay-1 { animation-delay: 60ms; }
.delay-2 { animation-delay: 120ms; }
.delay-3 { animation-delay: 180ms; }
.delay-4 { animation-delay: 240ms; }
@keyframes riseIn { to { opacity: 1; transform: translateY(0); } }

/* Reveal-on-scroll (subtle) — content visible by default, JS enhances with animation */
.reveal { transition: opacity 500ms var(--ease-out-quint), transform 500ms var(--ease-out-quint); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--navy);
  color: var(--cream);
  border-bottom: 2px solid var(--black);
}
.trust-bar__inner {
  max-width: var(--maxw); margin-inline: auto;
  padding: 0.9rem var(--gutter);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.6rem 1.6rem;
}
.trust-bar__item {
  font-family: var(--font-mono);
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: color-mix(in srgb, var(--cream) 88%, transparent);
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.trust-bar__item::before { content: "◆"; color: var(--mustard); font-size: 0.6rem; }

/* ---------- Founder narrative ---------- */
.founder {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.founder__media { position: relative; }
.founder__media img { width: 100%; height: 100%; object-fit: cover; border: 2px solid var(--black); }
.founder__media .tag {
  position: absolute; bottom: 1rem; left: 1rem;
  background: var(--mustard); color: var(--navy); border: 2px solid var(--black);
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.4rem 0.8rem;
}
.founder__body h2 { font-size: clamp(1.8rem, 4vw, 2.75rem); }
.stats-row {
  display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 2rem;
  border-top: 1px solid var(--navy-14); padding-top: 1.5rem;
}
.stat .stat__num { font-family: var(--font-mono); font-size: 1.6rem; font-weight: 600; color: var(--navy); }
.stat .stat__label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }

/* ---------- Product teaser cards (asymmetric) ---------- */
.teasers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.teaser {
  background: var(--white); border: 2px solid var(--black); border-radius: var(--radius-card);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 250ms var(--ease-out-quint);
}
.teaser:hover { transform: translateY(-4px); text-decoration: none; }
.teaser__media { aspect-ratio: 4 / 3; overflow: hidden; border-bottom: 2px solid var(--black); }
.teaser__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms var(--ease-out-quint); }
.teaser:hover .teaser__media img { transform: scale(1.04); }
.teaser__body { padding: 1.4rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.teaser__num { font-family: var(--font-mono); font-size: 0.72rem; color: var(--gold); font-weight: 600; letter-spacing: 0.08em; }
.teaser__name { font-size: 1.5rem; color: var(--navy); }
.teaser__price { font-family: var(--font-mono); font-size: 0.85rem; color: var(--navy); font-weight: 500; }
.teaser__price .from { color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.68rem; }
.teaser__link { margin-top: auto; padding-top: 0.75rem; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.step { border-top: 2px solid var(--navy); padding-top: 1.25rem; }
.step__num { font-family: var(--font-mono); font-size: 2rem; font-weight: 600; color: var(--gold); line-height: 1; }
.step__title { font-size: 1.15rem; margin: 0.75rem 0 0.4rem; }
.step p { color: color-mix(in srgb, var(--navy) 80%, transparent); margin: 0; }

/* ---------- Instagram grid ---------- */
.ig-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
.ig-grid img, .ig-grid .ig-ph {
  aspect-ratio: 1 / 1; object-fit: cover; width: 100%;
  border: 1px solid var(--navy-14);
  transition: transform 350ms var(--ease-out-quint), filter 350ms var(--ease-out-quint);
}
.ig-grid a { display: block; overflow: hidden; }
.ig-grid a:hover img { transform: scale(1.05); filter: saturate(1.1); }

/* ---------- Final CTA ---------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(2rem, 5vw, 3.25rem); color: var(--cream); max-width: 22ch; margin-inline: auto; }
.cta-band p { color: color-mix(in srgb, var(--cream) 82%, transparent); max-width: 52ch; margin-inline: auto; }
.cta-band .btn--mustard { margin-top: 1.75rem; }

/* ---------- Product page: 2-col split ---------- */
.product-layout { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(320px, 1fr); gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
/* Let grid children shrink below content min-width so nothing forces the page wide */
.product-layout > *, .checkout-grid > * { min-width: 0; }
/* Wide content (e.g. add-ons table) scrolls inside its own box instead of overflowing the page */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.product-header { border-bottom: 2px solid var(--navy); padding-bottom: 1.75rem; margin-bottom: 2rem; }
.product-header h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.product-meta { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.25rem; }
.chip {
  font-family: var(--font-mono);
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--navy); background: var(--bg-inset);
  border: 1px solid var(--navy-14); border-radius: var(--radius-round);
  padding: 0.35rem 0.85rem;
}

/* Gallery — 3-col grid, square edges */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
.gallery__tile { overflow: hidden; border-radius: 0; border: 1px solid var(--navy-14); }
.gallery__tile img { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; transition: transform 400ms var(--ease-out-quint); }
.gallery__tile:hover img { transform: scale(1.02); }
.gallery__tile--wide { grid-column: span 2; }
.gallery__tile--wide img { aspect-ratio: 2 / 1; }
.gallery__tile--tall img { aspect-ratio: 1 / 1; }

.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 2.5rem 0 1rem; }
.prose h3 { font-size: 1.2rem; margin: 1.75rem 0 0.5rem; }
.prose p { color: color-mix(in srgb, var(--navy) 84%, transparent); }
.prose ul.ticks { list-style: none; display: grid; gap: 0.55rem; margin: 1rem 0; }
.prose ul.ticks li { padding-left: 1.6rem; position: relative; }
.prose ul.ticks li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* Package cards */
.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.25rem; }
.pkg {
  background: var(--white); border: 2px solid var(--black); border-radius: var(--radius-card);
  padding: 1.4rem; display: flex; flex-direction: column; gap: 0.4rem;
}
.pkg--feature { border-color: var(--gold); box-shadow: inset 0 3px 0 var(--mustard); }
.pkg__badge {
  align-self: flex-start;
  font-family: var(--font-mono); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--mustard); color: var(--navy); border-radius: var(--radius-round);
  padding: 0.2rem 0.7rem; margin-bottom: 0.4rem;
}
.pkg__name { font-size: 1.35rem; color: var(--navy); }
.pkg__price { font-family: var(--font-mono); font-size: 1.5rem; font-weight: 600; color: var(--navy); }
.pkg__price .from { display: block; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.pkg__meta { font-size: 0.85rem; color: color-mix(in srgb, var(--navy) 76%, transparent); }
.pkg__deposit { font-family: var(--font-mono); font-size: 0.72rem; color: var(--gold); letter-spacing: 0.04em; margin-top: 0.25rem; }

/* Add-ons table */
.addons { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.addons th, .addons td { text-align: left; padding: 0.85rem 1rem; border-bottom: 1px solid var(--navy-14); }
.addons th { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.addons td.price { font-family: var(--font-mono); white-space: nowrap; color: var(--navy); font-weight: 500; }

/* ---------- Booking widget (sticky, price-tag styled) ---------- */
.booking-widget {
  position: sticky; top: calc(1rem + 62px);
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: var(--radius-card);
  box-shadow: var(--widget-shadow);
  overflow: hidden;
}
.booking-widget__top { height: 6px; background: var(--mustard); }
.booking-widget__inner { padding: 1.5rem; }
.booking-widget__price { display: flex; align-items: baseline; gap: 0.5rem; }
.booking-widget__price .amt { font-family: var(--font-mono); font-size: 2rem; font-weight: 600; color: var(--navy); }
.booking-widget__price .unit { font-size: 0.8rem; color: color-mix(in srgb, var(--navy) 70%, transparent); }
.booking-widget__sub { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }

.pkg-select { display: grid; gap: 0.6rem; margin: 1.25rem 0; }
.pkg-option {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  border: 2px solid var(--navy-14); border-radius: var(--radius-btn);
  padding: 0.8rem 0.9rem; cursor: pointer;
  transition: border-color 200ms var(--ease-out-quint), background 200ms var(--ease-out-quint);
}
.pkg-option:hover { border-color: var(--gold); }
.pkg-option input { position: absolute; opacity: 0; pointer-events: none; }
.pkg-option__name { font-weight: 600; font-size: 0.92rem; }
.pkg-option__meta { font-family: var(--font-mono); font-size: 0.72rem; color: color-mix(in srgb, var(--navy) 70%, transparent); }
.pkg-option__price { font-family: var(--font-mono); font-weight: 600; color: var(--navy); }
.pkg-option:has(input:checked) { border-color: var(--navy); background: var(--bg-inset); }
.pkg-option:has(input:focus-visible) { outline: 2px solid var(--gold); outline-offset: 2px; }

.deposit-line {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg-inset); border: 1px solid var(--navy-14); border-radius: var(--radius-btn);
  padding: 0.8rem 1rem; margin: 1rem 0;
}
.deposit-line .lbl { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); }
.deposit-line .val { font-family: var(--font-mono); font-weight: 600; font-size: 1.15rem; color: var(--navy); }

.widget-note { font-size: 0.78rem; color: color-mix(in srgb, var(--navy) 70%, transparent); margin-top: 0.9rem; text-align: center; }

/* Calendly / Stripe placeholders */
.embed-ph {
  background: var(--bg-inset);
  border: 2px dashed var(--gold);
  border-radius: var(--radius-card);
  padding: 2.5rem 1.5rem;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
}
.embed-ph .embed-ph__label {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy);
}
.embed-ph .embed-ph__desc { font-size: 0.85rem; color: color-mix(in srgb, var(--navy) 70%, transparent); max-width: 40ch; }
.embed-ph .embed-ph__mark { font-family: var(--font-mono); font-size: 0.66rem; color: var(--gold); letter-spacing: 0.14em; }

/* Generic asset placeholder */
.asset-ph {
  border: 2px dashed var(--gold); background: var(--bg-inset);
  min-height: 300px; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 2rem;
}
.asset-ph span {
  font-family: var(--font-sans); color: var(--navy); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* ---------- Mobile sticky book bar ---------- */
.mobile-book-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: var(--white); border-top: 2px solid var(--black);
  padding: 0.7rem var(--gutter);
  display: none; align-items: center; justify-content: space-between; gap: 1rem;
  box-shadow: 0 -2px 8px rgba(27, 36, 54, 0.08);
  transform: translateY(100%);
  animation: slideUp 400ms var(--ease-out-quint) 300ms forwards;
}
.mobile-book-bar .mbb-price { font-family: var(--font-mono); font-weight: 600; color: var(--navy); }
.mobile-book-bar .mbb-price small { display: block; font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
@keyframes slideUp { to { transform: translateY(0); } }

/* ---------- Forms ---------- */
.form-panel {
  background: var(--bg-inset);
  border: 2px solid var(--black);
  border-radius: var(--radius-card);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.25rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); }
.field label .req { color: var(--error); }
.field input, .field select, .field textarea {
  font-family: var(--font-sans); font-size: 0.95rem; color: var(--navy);
  background: var(--white);
  border: 2px solid var(--black); border-radius: var(--radius-btn);
  padding: 0.7rem 0.85rem; width: 100%;
  transition: border-color 200ms var(--ease-out-quint);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(181, 151, 74, 0.2); }
.field textarea { resize: vertical; min-height: 120px; }
.field .hint { font-size: 0.75rem; color: color-mix(in srgb, var(--navy) 65%, transparent); }
.field .error-msg { font-size: 0.75rem; color: var(--error); font-weight: 600; display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--error); }
.field.has-error .error-msg { display: block; }

.form-note { font-size: 0.82rem; color: color-mix(in srgb, var(--navy) 72%, transparent); margin-top: 1.25rem; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-success {
  display: none;
  border: 2px solid var(--success); border-radius: var(--radius-card);
  background: color-mix(in srgb, var(--success) 8%, var(--white));
  padding: 1.25rem 1.5rem; color: var(--success); font-weight: 600;
}
.form-success.is-visible { display: block; }

/* ---------- FAQ accordion ---------- */
.faq-group { margin-bottom: 2.5rem; }
.faq-group__title { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.faq-group__title .num { color: var(--navy); font-weight: 600; }
.accordion { border-top: 1px solid var(--navy-14); }
.acc-item { border-bottom: 1px solid var(--navy-14); }
.acc-trigger {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 1.15rem 2.5rem 1.15rem 0; position: relative;
  font-size: 1.05rem; font-weight: 600; color: var(--navy); letter-spacing: -0.01em;
  min-height: 44px;
}
.acc-trigger:hover { color: var(--gold); }
.acc-trigger::after {
  content: "+"; position: absolute; right: 0.25rem; top: 50%; transform: translateY(-50%);
  font-family: var(--font-mono); font-size: 1.4rem; font-weight: 400; color: var(--gold);
  transition: transform 250ms var(--ease-out-quint);
}
.acc-trigger[aria-expanded="true"]::after { content: "−"; }
.acc-panel { overflow: hidden; height: 0; opacity: 0; transition: height 250ms var(--ease-out-quint), opacity 250ms var(--ease-out-quint); }
.acc-panel__inner { padding: 0 2.5rem 1.35rem 0; color: color-mix(in srgb, var(--navy) 82%, transparent); }

/* ---------- Checkout / confirmation ---------- */
.summary-card {
  background: var(--white); border: 2px solid var(--black); border-radius: var(--radius-card);
  overflow: hidden;
}
.summary-card__top { height: 6px; background: var(--mustard); }
.summary-card__body { padding: 1.5rem; }
.summary-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.7rem 0; border-bottom: 1px solid var(--navy-14); }
.summary-row:last-child { border-bottom: none; }
.summary-row .k { color: color-mix(in srgb, var(--navy) 72%, transparent); font-size: 0.9rem; }
.summary-row .v { font-family: var(--font-mono); font-weight: 500; color: var(--navy); text-align: right; }
.summary-row--total { border-top: 2px solid var(--navy); margin-top: 0.5rem; padding-top: 1rem; }
.summary-row--total .k { font-weight: 700; color: var(--navy); font-size: 1rem; }
.summary-row--total .v { font-size: 1.3rem; font-weight: 700; }

.checkout-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(300px, 1fr); gap: clamp(2rem, 4vw, 3rem); align-items: start; }

.confirm-hero { text-align: center; max-width: 640px; margin-inline: auto; }
.check-mark {
  width: 80px; height: 80px; border-radius: var(--radius-round);
  background: var(--success); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; margin: 0 auto 1.75rem;
  animation: popCheck 450ms var(--ease-out-quint);
}
@keyframes popCheck { from { transform: scale(0.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.confirm-hero h1 { font-size: clamp(2rem, 5vw, 3rem); }
.next-steps { display: grid; gap: 1rem; margin-top: 2.5rem; text-align: left; }
.next-step { display: flex; gap: 1rem; align-items: flex-start; background: var(--white); border: 1px solid var(--navy-14); border-radius: var(--radius-card); padding: 1.1rem 1.25rem; }
.next-step .n { font-family: var(--font-mono); font-weight: 600; color: var(--gold); flex-shrink: 0; }
.next-step .t strong { display: block; color: var(--navy); }
.next-step .t span { font-size: 0.9rem; color: color-mix(in srgb, var(--navy) 76%, transparent); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: var(--cream); border-top: 2px solid var(--black); }
.footer-inner {
  max-width: var(--maxw); margin-inline: auto; padding: clamp(2.5rem, 5vw, 4rem) var(--gutter) 2rem;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem;
}
.footer-inner .wordmark { color: var(--cream); }
.footer-inner .wordmark .wordmark-sub { color: var(--cream); border-color: var(--cream); }
.footer-col h4 { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mustard); margin-bottom: 1rem; font-weight: 600; }
.footer-col p, .footer-col a { color: color-mix(in srgb, var(--cream) 82%, transparent); font-size: 0.92rem; }
.footer-col a { display: block; margin-bottom: 0.5rem; }
.footer-col a:hover { color: var(--mustard); }
.footer-social { display: flex; gap: 0.6rem; margin-top: 0.75rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: var(--radius-round);
  border: 1px solid color-mix(in srgb, var(--cream) 40%, transparent);
  display: flex; align-items: center; justify-content: center; margin: 0;
  color: var(--cream); transition: background 200ms var(--ease-out-quint), color 200ms var(--ease-out-quint), border-color 200ms;
}
.footer-social a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  max-width: var(--maxw); margin-inline: auto; padding: 1.25rem var(--gutter);
  border-top: 1px solid color-mix(in srgb, var(--cream) 18%, transparent);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.04em;
  color: color-mix(in srgb, var(--cream) 68%, transparent);
}

/* ==========================================================================
   Responsive — 1024 / 900 / 768 / 640
   ========================================================================== */
@media (max-width: 1024px) {
  .product-layout { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .booking-widget { position: static; }
  .mobile-book-bar { display: flex; }
  body.has-mobile-bar { padding-bottom: 76px; }
}
@media (max-width: 900px) {
  .teasers { grid-template-columns: 1fr; }
  .founder { grid-template-columns: 1fr; }
  .founder__media { order: -1; }
  .ig-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; }
  .packages { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero__scrim { background: linear-gradient(180deg, rgba(27,36,54,0.55) 0%, rgba(27,36,54,0.82) 100%); }
  .form-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__tile--wide { grid-column: span 2; }
}
@media (max-width: 640px) {
  .header-inner { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .site-nav { width: 100%; gap: 0.5rem 1.1rem; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .stats-row { gap: 1.25rem; }
  .hero { min-height: 70vh; }
  .addons th, .addons td { padding: 0.65rem 0.6rem; font-size: 0.9rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .animate-in, .reveal { opacity: 1; transform: none; }
  .mobile-book-bar { transform: none; }
}
