/* ============================================================
   byReynoir Rentals — real brand language (extends byreynoir.com)
   Yellow header · white ground · ink text · gold decorative only
   Rubik everywhere · ONE styled button (the yellow "Book")
   ============================================================ */

/* ---------- 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 ground, cards, forms, widgets */

  --ink-70: rgba(29, 29, 29, 0.7);
  --ink-50: rgba(29, 29, 29, 0.5);

  --surface-variant: rgba(255, 255, 255, 0.6);
  --border-faint: rgba(0, 0, 0, 0.12);
  --error: #8E251A;
  --success: #1A6B3C;

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

  --ease: cubic-bezier(0.2, 0, 0, 1);

  --container: 1200px;
  --pad: 24px;
  --header-h: 90px;
}

@property --beam-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.25rem, 5.5vw, 3.75rem); font-weight: 300; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

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

ul { margin: 0; padding: 0; }

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

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

/* ---------- Type utilities ---------- */
.mono {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-70);
}

.muted { color: var(--ink-70); }

.body-lg { font-size: 1.125rem; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.container-narrow { max-width: 688px; margin-inline: auto; padding-inline: var(--pad); }
.container-mid { max-width: 920px; margin-inline: auto; padding-inline: var(--pad); }

.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }

.hairline-top { border-top: 1px solid var(--border-faint); }

/* Section header: number + rule + label, then title */
.section-head { margin-bottom: 48px; }

.section-head .kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.sec-num {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--ink);
  border: 1px solid var(--border-faint);
  padding: 4px 9px;
  background: var(--white);
}

.sec-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-70);
}

.kicker .rule {
  flex: 1;
  height: 1px;
  background: var(--border-faint);
}

.section-head h2 { max-width: 640px; margin-bottom: 0.35em; }
.section-head .lede { max-width: 560px; }

/* ---------- Corner marks (the one decorative gold moment) ---------- */
.corner-marks { position: relative; }

.corner-marks::before,
.corner-marks::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 0 solid var(--gold);
  pointer-events: none;
  z-index: 2;
}

.corner-marks::before { top: -2px; left: -2px; border-top-width: 2px; border-left-width: 2px; }
.corner-marks::after { bottom: -2px; right: -2px; border-bottom-width: 2px; border-right-width: 2px; }

/* ============================================================
   Buttons — the ONE styled element is the yellow "Book" button.
   .btn / .btn-primary / .btn-mustard  = the book button.
   .btn-outline                        = a text link (no bg/border).
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  min-height: 44px;
  padding: 0.875rem 2rem;
  border: 0;
  border-radius: 4px;                 /* the only rounded element */
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  background: var(--yellow);
  color: var(--ink);
  transition: background-color 0.15s var(--ease), color 0.15s var(--ease);
}

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

.btn:active { transform: translateY(1px); }

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

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

.btn-block { width: 100%; }
.btn-outline.btn-block { justify-content: center; }

.btn-lg { min-height: 56px; padding: 1.05rem 2.5rem; font-size: 1rem; }
.btn-outline.btn-lg { padding: 0.85rem 0; }

/* ============================================================
   Header — the signature yellow band
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--yellow);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
  padding-block: 12px;
}

/* Brand: illustrative logo mark + wordmark text */
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}

.brand-logo { height: 52px; width: auto; }

.brand-word {
  font-weight: 700;
  font-size: 1.375rem;
  letter-spacing: 0.01em;
  color: var(--ink);
  line-height: 1;
}

.brand-tag { font-weight: 400; }

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 0.7rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.18em;          /* the byReynoir nav signature */
  text-transform: uppercase;
  text-decoration: none;
  color: var(--black);
  transition: opacity 0.15s var(--ease);
}

.site-nav a:hover { 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), opacity 0.2s var(--ease);
}
.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;
  isolation: isolate;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 20, 20, 0.82) 0%, rgba(20, 20, 20, 0.35) 55%, rgba(20, 20, 20, 0.12) 100%);
}

.hero-content {
  width: 100%;
  padding-block: 72px 64px;
  color: var(--white);
}

.hero-content .eyebrow { color: var(--yellow); margin-bottom: 18px; }

.hero-content h1 {
  color: var(--white);
  font-weight: 300;
  max-width: 820px;
  margin-bottom: 0.4em;
}

.hero-sub {
  font-size: 1.125rem;
  max-width: 540px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
}

.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }

/* text links on the dark hero / cta band go light */
.hero-content .btn-outline,
.cta-band .btn-outline { color: var(--white); }
.hero-content .btn-outline:hover,
.cta-band .btn-outline:hover { color: var(--white); }

.hero-meta {
  margin-top: 32px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

/* ---------- Trust bar ---------- */
.trust-bar {
  border-top: 1px solid var(--border-faint);
  border-bottom: 1px solid var(--border-faint);
  background: var(--white);
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 12px;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ink);
}

.trust-item + .trust-item { border-left: 1px solid var(--border-faint); }

.trust-item .tick { color: var(--ink); font-weight: 700; }

/* ---------- Founder ---------- */
.founder-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 56px;
  align-items: center;
}

.founder-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }

.founder-tagline {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--border-faint);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-70);
}

/* ---------- Product cards (landing) ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border-faint);
  border-radius: 0;                    /* square */
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.2s var(--ease);
}

.product-card:hover { border-color: var(--ink); }

.product-card .card-media { aspect-ratio: 4 / 3; overflow: hidden; }
.product-card .card-media img { width: 100%; height: 100%; object-fit: cover; }

.card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 9999px;
  padding: 4px 12px;
  background: var(--ink);
  color: var(--yellow);
}

.badge-mustard { background: var(--ink); color: var(--yellow); }
.badge-navy { background: var(--ink); color: var(--yellow); }
.badge-line { background: transparent; border: 1px solid var(--border-faint); color: var(--ink); }

.price-mono {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  white-space: nowrap;
}

.price-mono .from { color: var(--ink-70); font-size: 0.625rem; letter-spacing: 0.12em; margin-right: 4px; }

.card-body h3 { margin-bottom: 0; }
.card-body .card-blurb { color: var(--ink-70); font-size: 0.9375rem; flex: 1; }

.card-link {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.product-card:hover .card-link { text-decoration: underline; text-underline-offset: 4px; }

/* ---------- Combo card ---------- */
.combo-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  border-radius: 0;
  overflow: hidden;
  margin-top: 24px;
}

.combo-media { min-height: 300px; }
.combo-media img { width: 100%; height: 100%; object-fit: cover; }

.combo-body { padding: 40px 44px; display: flex; flex-direction: column; justify-content: center; gap: 14px; }

.combo-body .eyebrow { color: var(--yellow); }

.combo-body h3 { color: var(--white); font-size: 1.75rem; margin: 0; }

.combo-body p { color: rgba(255, 255, 255, 0.85); max-width: 46ch; }

.combo-pricing {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
}

.combo-actions { margin-top: 8px; }

/* ---------- How it works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border-faint);
  border-radius: 0;
  padding: 28px 26px;
}

.step-num {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--ink);
  display: block;
  margin-bottom: 16px;
}

.step-card h3 { font-size: 1.125rem; }
.step-card p { font-size: 0.9375rem; color: var(--ink-70); }

/* ---------- Instagram grid ---------- */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.insta-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
}

.insta-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.insta-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0);
  transition: background 0.2s var(--ease);
}

.insta-tile:hover img { transform: scale(1.04); }
.insta-tile:hover::after { background: rgba(20, 20, 20, 0.2); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.cta-band .live-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}

.cta-band h2 { color: var(--white); max-width: 620px; margin-inline: auto; }
.cta-band p { color: rgba(255, 255, 255, 0.8); max-width: 480px; margin-inline: auto; margin-bottom: 28px; }

/* ---------- Pulse dot ---------- */
.pulse-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: var(--success);
  color: var(--success);
  flex-shrink: 0;
}

.cta-band .pulse-dot { background: var(--yellow); color: var(--yellow); }

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 9999px;
  border: 2px solid currentColor;
  opacity: 0;
  animation: pulse-ring 2.2s var(--ease) infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.4); opacity: 0.8; }
  70% { transform: scale(1.1); opacity: 0; }
  100% { transform: scale(1.1); opacity: 0; }
}

/* ---------- Product page: hero ---------- */
.product-hero {
  position: relative;
  min-height: min(56vh, 520px);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
}

.product-hero .hero-media::after {
  background: linear-gradient(to top, rgba(20, 20, 20, 0.78) 0%, rgba(20, 20, 20, 0.25) 60%, rgba(20, 20, 20, 0.1) 100%);
}

.product-hero .hero-content { padding-block: 56px 48px; }
.product-hero h1 { max-width: 640px; }

/* ---------- Product page: split layout ---------- */
.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 384px;
  gap: 56px;
  align-items: start;
  padding-block: 64px 88px;
}

.product-main > .block + .block { margin-top: 64px; }

.block-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.block-head .sec-num { flex-shrink: 0; }
.block-head h2 { font-size: 1.5rem; margin: 0; }
.block-head .rule { flex: 1; height: 1px; background: var(--border-faint); }

/* ---------- Specs ---------- */
.specs { margin: 0; border-bottom: 1px solid var(--border-faint); }

.spec-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--border-faint);
}

.spec-row dt {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  padding-top: 2px;
}

.spec-row dd { margin: 0; font-size: 0.9375rem; color: var(--ink-70); }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.gallery-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.gallery-grid figure { margin: 0; }

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-grid figcaption {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-50);
  padding-top: 8px;
}

/* ---------- Package cards ---------- */
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.package-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-faint);
  border-radius: 0;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s var(--ease);
}

.package-card:hover { border-color: var(--ink); }

.package-card .pkg-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 24px;
}

.pkg-num {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--ink-70);
}

.package-card h3 { margin: 0; font-size: 1.1875rem; }

.pkg-price {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.375rem;
  letter-spacing: 0.02em;
  margin: 0;
  color: var(--ink);
}

.pkg-price .from {
  display: block;
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  color: var(--ink-70);
  margin-bottom: 2px;
}

.package-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--ink-70);
  padding-top: 12px;
  border-top: 1px solid var(--border-faint);
  flex: 1;
}

.package-card ul li { padding-left: 18px; position: relative; }
.package-card ul li::before { content: "—"; position: absolute; left: 0; color: var(--ink-50); }

.pkg-deposit {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-70);
}

/* ---------- Add-ons (checkbox cards) ---------- */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.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), background 0.15s var(--ease);
}
.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) .price-mono::before {
  content: "✓ ";
  color: var(--ink);
  font-weight: 700;
}

.addon-card .addon-name { font-weight: 500; font-size: 0.9375rem; color: var(--ink); }
.addon-card .addon-desc { font-size: 0.8125rem; color: var(--ink-70); margin-top: 2px; }

/* ---------- Booking widget ---------- */
.booking-col {
  position: sticky;
  top: calc(var(--header-h) + 16px);
}

.booking-widget {
  position: relative;
  background: var(--white);
  border: 1px solid var(--black);
  border-radius: 0;
  padding: 26px 24px;
  isolation: isolate;
  scroll-margin-top: calc(var(--header-h) + 16px);
}

/* Border beam: rotating conic glow masked to a 2px edge ring */
.border-beam::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 2px;
  padding: 2px;
  background: conic-gradient(
    from var(--beam-angle),
    rgba(203, 173, 105, 0) 0deg,
    rgba(245, 222, 77, 0.9) 40deg,
    var(--gold) 70deg,
    rgba(203, 173, 105, 0) 120deg
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: beam-rotate 7s linear infinite;
}

@keyframes beam-rotate {
  to { --beam-angle: 360deg; }
}

.widget-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border-faint);
}

.widget-status .status-text {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--success);
}

.widget-status .status-sub {
  font-family: var(--font-body);
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-left: auto;
}

.widget-label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-70);
  display: block;
  margin-bottom: 10px;
}

.package-select { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }

.pkg-option { position: relative; display: block; cursor: pointer; }

.pkg-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pkg-option .opt-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--border-faint);
  border-radius: 0;
  padding: 11px 14px;
  transition: border-color 0.15s var(--ease), background-color 0.15s var(--ease);
}

.pkg-option:hover .opt-body { border-color: var(--ink); }

.pkg-option input:checked + .opt-body {
  border-color: var(--ink);
  background: var(--surface-variant);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.pkg-option input:focus-visible + .opt-body {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.opt-name { font-weight: 500; font-size: 0.875rem; color: var(--ink); }
.opt-meta {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  color: var(--ink-70);
}
.opt-price { font-family: var(--font-body); font-size: 0.8125rem; font-weight: 500; color: var(--ink); white-space: nowrap; }

.widget-calendly { margin-bottom: 18px; }

.embed-placeholder {
  border: 2px dashed var(--gold);
  background: var(--surface-variant);
  border-radius: 0;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
}

.embed-placeholder span {
  font-family: var(--font-body);
  color: var(--ink-70);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.7;
  max-width: 34ch;
}

.embed-placeholder.tall { min-height: 320px; }

.widget-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 0;
  border-top: 1px solid var(--border-faint);
  margin-bottom: 18px;
}

.sum-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 0.875rem;
}

.sum-row .sum-label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-70);
}

.sum-row .sum-value { font-family: var(--font-body); font-size: 0.875rem; font-weight: 500; color: var(--ink); }
.sum-row.emph .sum-value { font-size: 1.125rem; }

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

/* ---------- Price panel (bloom) ---------- */
.price-panel {
  background: var(--white);
  border: 1px solid var(--border-faint);
  border-radius: 0;
  padding: 28px 26px;
  margin-bottom: 24px;
}

.price-panel .big-price {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin: 4px 0 14px;
  color: var(--ink);
}

.price-panel .big-price .from {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  color: var(--ink-70);
  text-transform: uppercase;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9063rem;
  color: var(--ink-70);
  padding-top: 16px;
  border-top: 1px solid var(--border-faint);
}

.feature-list li { padding-left: 20px; position: relative; }
.feature-list li::before { content: "—"; position: absolute; left: 0; color: var(--ink-50); }

/* ---------- Forms ---------- */
.form-panel {
  position: relative;
  background: var(--white);
  border: 1px solid var(--black);
  border-radius: 0;
  padding: 26px 24px;
  isolation: isolate;
}

.form-head { margin-bottom: 20px; }
.form-head h3 { margin-bottom: 4px; }
.form-head p { font-size: 0.875rem; color: var(--ink-70); }

.field { margin-bottom: 16px; }

.field label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 6px;
}

.field label .req { color: var(--ink-50); }

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border-faint);
  border-radius: 0;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.field input::placeholder,
.field textarea::placeholder { color: var(--ink-50); }

.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }

.field textarea { min-height: 110px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--black);
  box-shadow: 0 0 0 1px var(--black);
}

.field.invalid input,
.field.invalid select,
.field.invalid textarea { border-color: var(--error); box-shadow: 0 0 0 1px var(--error); }

.field-error {
  display: block;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--error);
  margin-top: 5px;
}

/* display:block above would defeat the hidden attribute — restore it */
.field-error[hidden] { display: none; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-footnote {
  font-size: 0.8125rem;
  color: var(--ink-70);
  text-align: center;
  margin-top: 14px;
}

/* ---------- FAQ accordion ---------- */
.faq-group + .faq-group { margin-top: 64px; }

.faq-list { border-top: 1px solid var(--border-faint); }

.faq-item { border-bottom: 1px solid var(--border-faint); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  min-height: 44px;
  padding: 18px 4px;
  background: none;
  border: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 500;
  text-align: left;
  color: var(--ink);
  cursor: pointer;
  transition: opacity 0.15s var(--ease);
}

.faq-q:hover { opacity: 0.7; }

.faq-q .faq-marker {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}

.faq-item.open .faq-q .faq-marker { transform: rotate(45deg); }

.faq-a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s var(--ease);
}

.faq-item.open .faq-a-wrap { grid-template-rows: 1fr; }

.faq-a {
  overflow: hidden;
  min-height: 0;
}

.faq-a-inner {
  padding: 0 4px 22px;
  font-size: 0.9375rem;
  color: var(--ink-70);
  max-width: 68ch;
}

/* ---------- Checkout / status pages ---------- */
.flow-progress {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}

.flow-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-50);
}

.flow-step.active { color: var(--ink); }
.flow-step.done { color: var(--success); }

.flow-step .dot {
  width: 22px;
  height: 22px;
  border-radius: 9999px;
  border: 1px solid var(--border-faint);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  background: var(--white);
}

.flow-step.active .dot { background: var(--ink); border-color: var(--ink); color: var(--yellow); }
.flow-step.done .dot { background: var(--success); border-color: var(--success); color: var(--white); }

.flow-progress .rule { flex: 0 0 40px; height: 1px; background: var(--border-faint); }

.summary-card {
  background: var(--white);
  border: 1px solid var(--border-faint);
  border-radius: 0;
  padding: 26px 26px;
  margin-bottom: 24px;
}

.summary-card .sum-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-faint);
}

.summary-card .sum-head h2,
.summary-card .sum-head h3 { margin: 0; font-size: 1.25rem; }

.summary-rows { display: flex; flex-direction: column; }

.summary-rows .sum-row {
  padding: 11px 0;
  border-bottom: 1px solid var(--border-faint);
}

.summary-rows .sum-row:last-child { border-bottom: 0; }

.checkout-block { margin-bottom: 24px; }

.checkout-block .widget-label { margin-bottom: 12px; }

.confirm-icon {
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  background: var(--success);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 24px;
}

.status-page { padding: 88px 0 104px; }
.status-page .lede { max-width: 52ch; }

.next-steps { border-top: 1px solid var(--border-faint); margin-top: 40px; }

.next-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-faint);
}

.next-step .step-num { margin: 0; padding-top: 3px; }
.next-step h3 { font-size: 1.0625rem; margin-bottom: 4px; }
.next-step p { font-size: 0.9375rem; color: var(--ink-70); }

/* ---------- Footer (grey ground) ---------- */
.site-footer {
  background: var(--grey);
  color: var(--ink-70);
  border-top: 1px solid var(--border-faint);
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-block: 48px 40px;
}

.footer-wordmark {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-70);
  margin-top: 12px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
}

.footer-col a { color: var(--ink-70); text-decoration: none; }
.footer-col a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

.footer-col p, .footer-col li { font-size: 0.9375rem; color: var(--ink-70); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.social-row { display: flex; gap: 10px; margin-top: 18px; }

.social-dot {
  width: 40px;
  height: 40px;
  min-height: 40px;
  border-radius: 9999px;
  border: 1px solid var(--ink-50);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background-color 0.15s var(--ease), color 0.15s var(--ease);
}

.social-dot:hover { background: var(--ink); color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid var(--border-faint);
  padding-block: 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-50);
}

/* ---------- Mobile book bar (yellow) ---------- */
.mobile-book-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: var(--yellow);
  color: var(--ink);
  padding: 12px var(--pad);
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.mobile-book-bar .mb-price { font-family: var(--font-body); font-size: 0.875rem; font-weight: 500; letter-spacing: 0.04em; color: var(--ink); }
.mobile-book-bar .mb-price .from { color: var(--ink-70); font-size: 0.625rem; letter-spacing: 0.12em; text-transform: uppercase; display: block; }

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

/* Content is ALWAYS visible: no scroll-reveal, no opacity-hidden states. */

/* ---------- Breakpoints ---------- */
@media (max-width: 1024px) {
  .product-layout { grid-template-columns: minmax(0, 1fr) 340px; gap: 36px; }
  .founder-grid { gap: 40px; grid-template-columns: 340px 1fr; }
}

@media (max-width: 960px) {
  .site-nav a { font-size: 0.9375rem; padding: 0 0.55rem; letter-spacing: 0.14em; }
}

@media (max-width: 900px) {
  .product-layout { grid-template-columns: 1fr; }
  .booking-col { position: static; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-photo { max-width: 440px; }
  .combo-card { grid-template-columns: 1fr; }
  .combo-media { min-height: 240px; }
  .mobile-book-bar.enabled { display: flex; }
  body.has-book-bar { padding-bottom: 76px; }
  .package-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .trust-bar-inner { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(3) { border-left: 0; }
  .trust-item:nth-child(n+3) { border-top: 1px solid var(--border-faint); }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-block: 40px 32px; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .addon-grid { grid-template-columns: 1fr; }
  .combo-body { padding: 32px 26px; }
  .brand-word { display: none; }   /* logo mark only on tablet, so nav fits */
  .site-nav a { font-size: 0.8125rem; letter-spacing: 0.08em; padding: 0 0.45rem; }
}

/* ---------- 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);
    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;
    min-height: 0;
  }
  .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: 42px; }
  .brand-word { display: inline; font-size: 1.125rem; }
  .header-inner { min-height: 68px; }

  .product-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid.cols-3 { grid-template-columns: 1fr; }
  .spec-row { grid-template-columns: 1fr; gap: 4px; padding: 12px 0; }
  .hero { min-height: 68vh; }
  .hero-actions .btn { width: 100%; }
  .flow-progress { flex-wrap: wrap; }
}

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

  .border-beam::before { animation: none; }
  .pulse-dot::after { animation: none; opacity: 0; }
}
