/* ==========================================================================
   byReynoir Rentals — real brand language
   Yellow header · white body · grey footer · ink text · gold decorative
   Rubik everywhere · one styled button (the yellow "Book")
   Static site, no build step.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --yellow:   #F5DE4D;   /* header band, book button, sticky bar */
  --grey:     #929496;   /* footer ground only */
  --ink:      #1D1D1D;   /* body text base, dark bands */
  --black:    #000000;   /* nav links, borders */
  --gold:     #CBAD69;   /* decorative accent only */
  --white:    #FFFFFF;   /* body + surfaces */
  --error:    #8E251A;
  --success:  #1A6B3C;

  --ink-70: rgba(29, 29, 29, 0.7);
  --ink-50: rgba(29, 29, 29, 0.5);
  --border-faint: rgba(0, 0, 0, 0.12);
  --bg-inset: rgba(0, 0, 0, 0.04);

  /* One family for everything. --font-mono kept as an alias so the
     tracked/uppercase editorial labels keep rendering — in Rubik. */
  --font-sans: "Rubik", system-ui, -apple-system, sans-serif;
  --font-mono: var(--font-sans);

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

  --ease-out-quint: cubic-bezier(0.16, 1, 0.3, 1);
  --radius-btn: 4px;              /* the only rounded element (plus round dots) */
  --radius-card: 0;
  --radius-round: 9999px;

  --widget-shadow: none;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink-70);
  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(--ink); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; line-height: 1.15; letter-spacing: 0.01em; color: var(--ink); }
h1 { font-weight: 300; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; }

::selection { background: var(--yellow); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--ink);
  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--ink { background: var(--ink); color: rgba(255, 255, 255, 0.8); }
.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-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-70);
  margin-bottom: 1.25rem;
}
.eyebrow .num {
  color: var(--ink);
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 2.25rem; height: 1px;
  background: var(--gold);          /* decorative gold rule */
  display: inline-block;
}

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

.section-title {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  max-width: 20ch;
}
.lede {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--ink-70);
  max-width: 60ch;
}

/* ==========================================================================
   Buttons — the ONE styled element is the yellow "Book" button.
   .btn / .btn--mustard        = the book button (yellow, ink text).
   .btn--outline / .btn--ghost = plain text links (no bg/border).
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  min-height: 48px;
  padding: 0.875rem 2rem;
  border: 0;
  border-radius: var(--radius-btn);
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 200ms var(--ease-out-quint), color 200ms var(--ease-out-quint);
}
.btn:hover { background: var(--ink); color: var(--yellow); text-decoration: none; }
.btn:active { transform: translateY(1px); }

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

/* Text-link variants — the default for everything that isn't the book button */
.btn--outline,
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 0;
  border-radius: 0;
  padding: 0.65rem 0;
}
.btn--outline:hover,
.btn--ghost:hover {
  background: transparent;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}
/* text links sitting on the dark hero stay white */
.hero .btn--ghost, .hero .btn--ghost:hover { color: var(--white); }

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

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

/* ---------- Header (yellow band, all pages) ---------- */
.site-header {
  background: var(--yellow);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  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;
}
.wordmark {
  display: inline-flex; align-items: center; gap: 0.65rem;
  color: var(--ink); font-weight: 700; font-size: 1.3rem; letter-spacing: 0.01em;
  flex-shrink: 0;
}
.wordmark:hover { text-decoration: none; }
.brand-logo { height: 46px; width: auto; }
.wordmark .wordmark-sub {
  font-family: var(--font-sans);
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--ink);
  border: 1px solid var(--ink); border-radius: var(--radius-round);
  padding: 0.15rem 0.55rem;
}
.site-nav { display: flex; align-items: center; gap: clamp(0.75rem, 2vw, 1.75rem); }
.site-nav a {
  color: var(--black);
  font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.4rem 0;
  transition: opacity 200ms var(--ease-out-quint);
}
.site-nav a:hover { text-decoration: none; opacity: 0.65; }
.site-nav a[aria-current="page"] { text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 1px; }

/* CSS-only hamburger (mobile) */
.nav-toggle {
  position: absolute;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 8px;
  cursor: pointer;
  z-index: 60;
}
.nav-burger span {
  display: block;
  height: 2px;
  width: 26px;
  background: var(--ink);
  transition: transform 0.25s var(--ease-out-quint), opacity 0.2s var(--ease-out-quint);
}
.nav-toggle:focus-visible ~ .nav-burger { outline: 2px solid var(--ink); outline-offset: 2px; }

/* ---------- Hero (landing) ---------- */
.hero {
  position: relative;
  min-height: min(78vh, 720px);
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,20,20,0.82) 0%, rgba(20,20,20,0.55) 46%, rgba(20,20,20,0.18) 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(--white);
}
.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--yellow);
  display: inline-flex; align-items: center; gap: 0.7rem;
  margin-bottom: 1.25rem;
}
.hero__eyebrow::before { content: ""; width: 2rem; height: 1px; background: var(--yellow); }
.hero h1 {
  font-size: clamp(2.4rem, 6.5vw, 4.75rem);
  max-width: 16ch;
  color: var(--white);
}
.hero h1 .hl { color: var(--yellow); }
.hero__tagline {
  margin-top: 1.5rem;
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.92);
}
.hero__cta { margin-top: 2rem; display: flex; gap: 0.9rem; flex-wrap: wrap; align-items: center; }

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--white);
  color: var(--ink-70);
  border-bottom: 1px solid var(--border-faint);
}
.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-sans);
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-70);
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.trust-bar__item::before { content: "◆"; color: var(--gold); 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: 1px solid var(--border-faint); }
.founder__media .tag {
  position: absolute; bottom: 1rem; left: 1rem;
  background: var(--yellow); color: var(--ink); border: 1px solid rgba(0, 0, 0, 0.2);
  font-family: var(--font-sans); font-size: 0.68rem; font-weight: 500; 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(--border-faint); padding-top: 1.5rem;
}
.stat .stat__num { font-family: var(--font-sans); font-size: 1.6rem; font-weight: 500; color: var(--ink); }
.stat .stat__label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-70); }

/* ---------- Product teaser cards ---------- */
.teasers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.teaser {
  background: var(--white); border: 1px solid var(--border-faint); border-radius: var(--radius-card);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 250ms var(--ease-out-quint), border-color 250ms var(--ease-out-quint);
}
.teaser:hover { transform: translateY(-4px); border-color: var(--black); text-decoration: none; }
.teaser__media { aspect-ratio: 4 / 3; overflow: hidden; border-bottom: 1px solid var(--border-faint); }
.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-sans); font-size: 0.72rem; color: var(--ink-50); font-weight: 500; letter-spacing: 0.08em; }
.teaser__name { font-size: 1.5rem; font-weight: 500; color: var(--ink); }
.teaser__price { font-family: var(--font-sans); font-size: 0.85rem; color: var(--ink); font-weight: 500; }
.teaser__price .from { color: var(--ink-50); 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: 1px solid var(--ink); padding-top: 1.25rem; }
.step__num { font-family: var(--font-sans); font-size: 2rem; font-weight: 500; color: var(--gold); line-height: 1; }
.step__title { font-size: 1.15rem; margin: 0.75rem 0 0.4rem; }
.step p { color: var(--ink-70); 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(--border-faint);
  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 (ink band) ---------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(2rem, 5vw, 3.25rem); color: var(--white); max-width: 22ch; margin-inline: auto; }
.cta-band p { color: rgba(255, 255, 255, 0.75); max-width: 52ch; margin-inline: auto; }
.cta-band .btn--mustard { margin-top: 1.75rem; }
.section--ink .eyebrow, .section--ink .eyebrow .num { color: var(--yellow); }

/* ---------- 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; }
.product-layout > *, .checkout-grid > * { min-width: 0; }
.product-header { border-bottom: 1px solid var(--ink); 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-sans);
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink); background: var(--bg-inset);
  border: 1px solid var(--border-faint); 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(--border-faint); }
.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: var(--ink-70); }
.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: 1px solid var(--border-faint); border-radius: var(--radius-card);
  padding: 1.4rem; display: flex; flex-direction: column; gap: 0.4rem;
}
.pkg--feature { border-color: var(--black); box-shadow: inset 0 3px 0 var(--yellow); }
.pkg__badge {
  align-self: flex-start;
  font-family: var(--font-sans); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--yellow); color: var(--ink); border-radius: var(--radius-round);
  padding: 0.2rem 0.7rem; margin-bottom: 0.4rem;
}
.pkg__name { font-size: 1.35rem; font-weight: 500; color: var(--ink); }
.pkg__price { font-family: var(--font-sans); font-size: 1.5rem; font-weight: 500; color: var(--ink); }
.pkg__price .from { display: block; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-50); font-weight: 500; }
.pkg__meta { font-size: 0.85rem; color: var(--ink-70); }
.pkg__deposit { font-family: var(--font-sans); font-size: 0.72rem; color: var(--ink-50); letter-spacing: 0.04em; margin-top: 0.25rem; }

/* ---------- Add-ons (checkbox cards) ---------- */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 1rem;
}
.addon-card {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border-faint);
  border-radius: 0;
  padding: 16px 20px;
  cursor: pointer;
  transition: border-color 0.15s var(--ease-out-quint), background 0.15s var(--ease-out-quint);
}
.addon-card:hover { border-color: var(--black); }
.addon-card:has(.addon-check:checked) {
  border-color: var(--black);
  border-width: 2px;
  background: var(--yellow);
}
.addon-check { position: absolute; opacity: 0; width: 0; height: 0; }
.addon-card:has(.addon-check:checked) .addon-price::before {
  content: "✓ ";
  color: var(--ink);
  font-weight: 700;
}
.addon-card .addon-name { font-weight: 500; font-size: 1rem; color: var(--ink); }
.addon-card .addon-desc { font-size: 0.8125rem; color: var(--ink-70); margin-top: 2px; }
.addon-card .addon-price { white-space: nowrap; color: var(--ink); font-weight: 500; font-size: 0.9rem; }

/* ---------- Booking widget (sticky) ---------- */
.booking-widget {
  position: sticky; top: calc(1rem + 78px);
  background: var(--white);
  border: 1px solid var(--black);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.booking-widget__top { height: 6px; background: var(--yellow); }
.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-sans); font-size: 2rem; font-weight: 500; color: var(--ink); }
.booking-widget__price .unit { font-size: 0.8rem; color: var(--ink-70); }
.booking-widget__sub { font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-70); font-weight: 500; }

.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: 1px solid var(--border-faint); border-radius: 0;
  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(--black); }
.pkg-option input { position: absolute; opacity: 0; pointer-events: none; }
.pkg-option__name { font-weight: 500; font-size: 0.92rem; color: var(--ink); }
.pkg-option__meta { font-family: var(--font-sans); font-size: 0.72rem; color: var(--ink-70); }
.pkg-option__price { font-family: var(--font-sans); font-weight: 500; color: var(--ink); }
.pkg-option:has(input:checked) { border-color: var(--black); background: var(--yellow); }
.pkg-option:has(input:focus-visible) { outline: 2px solid var(--ink); outline-offset: 2px; }

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

.widget-note { font-size: 0.78rem; color: var(--ink-70); margin-top: 0.9rem; text-align: center; }

/* Calendly / Stripe placeholders */
.embed-ph {
  background: var(--bg-inset);
  border: 2px dashed var(--gold);
  border-radius: 0;
  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-sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink);
}
.embed-ph .embed-ph__desc { font-size: 0.85rem; color: var(--ink-70); max-width: 40ch; }
.embed-ph .embed-ph__mark { font-family: var(--font-sans); font-size: 0.66rem; color: var(--ink-50); 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(--ink); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* ---------- Mobile sticky book bar (yellow) ---------- */
.mobile-book-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: var(--yellow); border-top: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0.7rem var(--gutter);
  display: none; align-items: center; justify-content: space-between; gap: 1rem;
}
.mobile-book-bar .mbb-price { font-family: var(--font-sans); font-weight: 500; color: var(--ink); }
.mobile-book-bar .mbb-price small { display: block; font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-70); }
/* the CTA on the yellow bar inverts so it stays visible */
.mobile-book-bar .btn { background: var(--ink); color: var(--yellow); }
.mobile-book-bar .btn:hover { background: var(--white); color: var(--ink); }

/* ---------- Forms ---------- */
.form-panel {
  background: var(--white);
  border: 1px 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: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); }
.field label .req { color: var(--error); }
.field input, .field select, .field textarea {
  font-family: var(--font-sans); font-size: 0.95rem; color: var(--ink);
  background: var(--white);
  border: 1px solid var(--ink-50); 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(--ink); box-shadow: 0 0 0 3px rgba(29, 29, 29, 0.08); }
.field textarea { resize: vertical; min-height: 120px; }
.field .hint { font-size: 0.75rem; color: var(--ink-50); }
.field .error-msg { font-size: 0.75rem; color: var(--error); font-weight: 500; 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: var(--ink-70); 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: 0;
  background: color-mix(in srgb, var(--success) 8%, var(--white));
  padding: 1.25rem 1.5rem; color: var(--success); font-weight: 500;
}
.form-success.is-visible { display: block; }

/* ---------- FAQ accordion ---------- */
.faq-group { margin-bottom: 2.5rem; }
.faq-group__title { font-family: var(--font-sans); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-70); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.faq-group__title .num { color: var(--ink); font-weight: 500; }
.accordion { border-top: 1px solid var(--border-faint); }
.acc-item { border-bottom: 1px solid var(--border-faint); }
.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: 500; color: var(--ink); letter-spacing: 0;
  min-height: 44px;
}
.acc-trigger:hover { text-decoration: underline; text-underline-offset: 4px; }
.acc-trigger::after {
  content: "+"; position: absolute; right: 0.25rem; top: 50%; transform: translateY(-50%);
  font-family: var(--font-sans); 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; transition: height 250ms var(--ease-out-quint); }
.acc-panel__inner { padding: 0 2.5rem 1.35rem 0; color: var(--ink-70); }

/* ---------- Checkout / confirmation ---------- */
.summary-card {
  background: var(--white); border: 1px solid var(--black); border-radius: var(--radius-card);
  overflow: hidden;
}
.summary-card__top { height: 6px; background: var(--yellow); }
.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(--border-faint); }
.summary-row:last-child { border-bottom: none; }
.summary-row .k { color: var(--ink-70); font-size: 0.9rem; }
.summary-row .v { font-family: var(--font-sans); font-weight: 500; color: var(--ink); text-align: right; }
.summary-row--total { border-top: 2px solid var(--ink); margin-top: 0.5rem; padding-top: 1rem; }
.summary-row--total .k { font-weight: 700; color: var(--ink); 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;
}
.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(--border-faint); border-radius: 0; padding: 1.1rem 1.25rem; }
.next-step .n { font-family: var(--font-sans); font-weight: 500; color: var(--gold); flex-shrink: 0; }
.next-step .t strong { display: block; color: var(--ink); }
.next-step .t span { font-size: 0.9rem; color: var(--ink-70); }

/* ---------- Footer (grey ground) ---------- */
.site-footer { background: var(--grey); color: var(--ink-70); border-top: 1px solid var(--border-faint); }
.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(--ink); }
.footer-inner .wordmark .wordmark-sub { color: var(--ink); border-color: var(--ink); }
.footer-col h4 { font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); margin-bottom: 1rem; font-weight: 500; }
.footer-col p, .footer-col a { color: var(--ink-70); font-size: 0.92rem; }
.footer-col a { display: block; margin-bottom: 0.5rem; }
.footer-col a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.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 var(--ink-50);
  display: flex; align-items: center; justify-content: center; margin: 0;
  color: var(--ink); transition: background 200ms var(--ease-out-quint), color 200ms var(--ease-out-quint);
}
.footer-social a:hover { background: var(--ink); color: var(--yellow); }
.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 rgba(0, 0, 0, 0.18);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem;
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-70);
}

/* ==========================================================================
   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; }
  .addon-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero__scrim { background: linear-gradient(180deg, rgba(20,20,20,0.5) 0%, rgba(20,20,20,0.8) 100%); }
  .form-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__tile--wide { grid-column: span 2; }
  .site-nav a { letter-spacing: 0.1em; font-size: 0.78rem; }
}

/* ---------- Mobile nav: hamburger + full-screen overlay (≤640px) ---------- */
@media (max-width: 640px) {
  .nav-burger { display: flex; }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 55;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--yellow);
    transform: translateX(100%);
    transition: transform 0.28s var(--ease-out-quint);
    visibility: hidden;
  }
  .nav-toggle:checked ~ .site-nav {
    transform: translateX(0);
    visibility: visible;
  }
  .site-nav a {
    font-size: 1.5rem;
    letter-spacing: 0.18em;
    padding: 12px 20px;
  }
  .site-nav a[aria-current="page"] { text-underline-offset: 8px; }

  /* burger morphs to an X when open */
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .brand-logo { height: 40px; }
  .wordmark { font-size: 1.125rem; }

  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .stats-row { gap: 1.25rem; }
  .hero { min-height: 70vh; }
}

/* ---------- 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; }
}
