/* LockYourBike — shared stylesheet */

:root {
  --parchment: #f2ebe0;
  --parchment-dark: #e6ddd0;
  --ink: #1c1a17;
  --ink-dim: #6b6459;
  --deben: #3d6070;
  --deben-light: #5a8a9f;
  --copper: #a8683a;
  --reed: #8a9a7d;
  --line: rgba(28, 26, 23, 0.13);
  --line-white: rgba(242, 235, 224, 0.18);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--parchment);
  color: var(--ink);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, .serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  line-height: 1.1;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }

.eyebrow {
  font-size: 10px;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--deben);
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
}

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 7vw; }

/* ─── HEADER ─── */

header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 7vw;
  transition: background-color 0.7s ease, padding 0.5s ease;
}

header.scrolled {
  background: rgba(242, 235, 224, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px 7vw;
  border-bottom: 1px solid var(--line);
}

header.hero-mode .logo,
header.hero-mode nav a,
header.hero-mode .header-cta {
  color: var(--parchment);
}

header.hero-mode.scrolled .logo,
header.hero-mode.scrolled nav a,
header.hero-mode.scrolled .header-cta {
  color: var(--ink);
}

header.hero-mode .header-cta {
  border-color: rgba(242, 235, 224, 0.5);
}

header.hero-mode.scrolled .header-cta {
  border-color: var(--deben);
  color: var(--deben);
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  letter-spacing: 0.42em;
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
  transition: color 0.5s;
}

.logo small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 8px;
  letter-spacing: 0.38em;
  color: var(--ink-dim);
  margin-top: 4px;
  font-weight: 400;
  transition: color 0.5s;
}

header.hero-mode .logo small {
  color: rgba(242, 235, 224, 0.6);
}

header.hero-mode.scrolled .logo small {
  color: var(--ink-dim);
}

nav {
  display: flex;
  gap: 42px;
  align-items: center;
}

nav a {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.72;
  transition: opacity 0.35s, color 0.5s;
  font-weight: 400;
}

nav a:hover { opacity: 1; }

.header-cta {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--deben);
  border: 1px solid var(--deben);
  padding: 10px 22px;
  transition: background-color 0.4s, color 0.4s, border-color 0.5s;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.header-cta:hover {
  background: var(--deben);
  color: var(--parchment);
}

/* hamburger toggle (mobile only) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.35s ease, opacity 0.25s ease, background-color 0.5s;
}
header.hero-mode .nav-toggle span { background: var(--parchment); }
header.hero-mode .nav-toggle { filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.45)); }
header.hero-mode.scrolled .nav-toggle { filter: none; }
header.hero-mode .logo,
header.hero-mode .desktop-nav a { text-shadow: 0 1px 14px rgba(0, 0, 0, 0.4); }
header.hero-mode.scrolled .logo,
header.hero-mode.scrolled .desktop-nav a { text-shadow: none; }
header.hero-mode.scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle.active span { background: var(--parchment); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* full-screen mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  color: var(--parchment);
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 300;
  padding: 14px;
  letter-spacing: 0.01em;
}
.mobile-menu .mobile-menu-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--deben-light);
  border: 1px solid var(--deben-light);
  padding: 18px 40px;
  margin-top: 28px;
}

@media (max-width: 780px) {
  header { padding: 20px 6vw; }
  .desktop-nav { display: none; }
  .nav-toggle { display: flex; }
}

/* ─── HERO ─── */

.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.hero-bg img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(28, 26, 23, 0.38) 0%,
    rgba(28, 26, 23, 0.05) 32%,
    rgba(28, 26, 23, 0.45) 68%,
    rgba(28, 26, 23, 0.94) 100%
  );
}

.hero-inner {
  position: relative;
  width: 100%;
  padding: 0 7vw 12vh;
}

.hero-kicker {
  font-size: 10px;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: rgba(242, 235, 224, 0.72);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  margin-bottom: 36px;
  display: block;
  overflow: hidden;
}

.hero h1 {
  font-size: clamp(52px, 9.5vw, 140px);
  color: var(--parchment);
  letter-spacing: 0.01em;
  line-height: 1.02;
  overflow: hidden;
}

.hero h1 .word {
  display: inline-block;
  margin-right: 0.22em;
  overflow: hidden;
}

.hero h1 .word-inner {
  display: block;
  transform: translateY(110%);
}

.hero h1 em {
  font-style: italic;
  font-weight: 300;
}

.hero-sub {
  margin-top: 32px;
  font-size: 16px;
  color: rgba(242, 235, 224, 0.82);
  max-width: 42ch;
  line-height: 1.65;
  letter-spacing: 0.01em;
  opacity: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
}

.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: rgba(242, 235, 224, 0.56);
  font-family: 'DM Sans', sans-serif;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(242, 235, 224, 0.3);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(242, 235, 224, 0.7);
  animation: scroll-drop 2.4s 2.2s ease infinite;
}

@keyframes scroll-drop {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ─── STATEMENT ─── */

.statement {
  padding: 20vh 0;
  text-align: center;
  background: var(--parchment);
}

.statement p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.3;
  max-width: 22ch;
  margin: 28px auto 0;
  color: var(--ink);
}

.statement p .dim {
  color: var(--ink-dim);
}

/* ─── BEATS ─── */

.beats-section {
  padding: 0 0 18vh;
  background: var(--parchment);
}

.beats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border-top: 1px solid var(--line);
}

.beat {
  padding: 7vh 0 8vh;
  border-right: 1px solid var(--line);
  padding-right: 4vw;
  padding-left: 4vw;
}

.beat:last-child { border-right: none; }

.beat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.32em;
  color: var(--deben);
  margin-bottom: 28px;
  display: block;
}

.beat h3 {
  font-size: clamp(28px, 3.2vw, 44px);
  margin-bottom: 18px;
  line-height: 1.05;
}

.beat p {
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.7;
  max-width: 28ch;
}

@media (max-width: 720px) {
  .beats-row { grid-template-columns: 1fr; }
  .beat { border-right: none; border-bottom: 1px solid var(--line); }
  .beat:last-child { border-bottom: none; }
}

/* ─── EXPERIENCE TEASER ─── */

.experience-teaser {
  padding: 0 0 3vh;
  background: var(--parchment);
}

.teaser-card {
  position: relative;
  height: 88vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.teaser-card .card-bg {
  position: absolute;
  inset: 0;
  transition: transform 1.8s ease;
}

.teaser-card:hover .card-bg { transform: scale(1.04); }

.teaser-card .card-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(28, 26, 23, 0.18) 0%,
    rgba(28, 26, 23, 0.06) 38%,
    rgba(28, 26, 23, 0.55) 70%,
    rgba(28, 26, 23, 0.93) 100%
  );
}

.teaser-card-inner {
  position: relative;
  width: 100%;
  padding: 0 7vw 9vh;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.teaser-card-inner .left { flex: 1; max-width: 640px; }

.teaser-card .eyebrow { color: rgba(242, 235, 224, 0.7); margin-bottom: 20px; display: block; }
.teaser-card h2 { font-size: clamp(36px, 6vw, 84px); color: var(--parchment); margin-bottom: 18px; }
.teaser-card p { font-size: 16px; color: rgba(242, 235, 224, 0.8); max-width: 44ch; line-height: 1.65; }

.teaser-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--parchment);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  white-space: nowrap;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(242, 235, 224, 0.35);
  transition: border-color 0.4s;
}

.teaser-link:hover { border-color: var(--parchment); }

.teaser-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.4s;
  flex-shrink: 0;
}

.teaser-link:hover svg { transform: translateX(5px); }

@media (max-width: 680px) {
  .teaser-card-inner { flex-direction: column; align-items: flex-start; }
  .teaser-card { height: 92vh; }
}

/* ─── ROUTE MAP ─── */

.route-section {
  padding: 16vh 0;
  background: var(--parchment-dark);
  overflow: hidden;
}

.route-section .wrap {
  max-width: 760px;
  text-align: center;
}

.route-text .eyebrow { margin-bottom: 22px; }
.route-text p { margin-left: auto; margin-right: auto; }

.route-text h2 {
  font-size: clamp(30px, 4vw, 52px);
  margin-bottom: 28px;
  line-height: 1.15;
}

.route-text p {
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.75;
  margin-bottom: 18px;
  max-width: 40ch;
}

/* ── Route map stage ── */
.route-stage-wrap {
  max-width: 1180px;
  margin: 7vh auto 0;
  padding: 0 5vw;
}

.route-stage {
  position: relative;
  height: clamp(460px, 66vh, 720px);
  border-radius: 16px;
  overflow: hidden;
  background: var(--parchment-dark);
  border: 1px solid rgba(28, 26, 23, 0.12);
  box-shadow: 0 30px 70px -30px rgba(28, 26, 23, 0.55);
}

#route-map { position: absolute; inset: 0; }
#route-map .mapboxgl-canvas { outline: none; }

/* warm vignette so the satellite reads as "ours", not Google Maps */
.route-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  box-shadow: inset 0 0 120px 10px rgba(28, 26, 23, 0.45);
  background:
    linear-gradient(180deg, rgba(28, 26, 23, 0.28) 0%, transparent 22%, transparent 72%, rgba(28, 26, 23, 0.42) 100%);
}

/* Custom pin markers */
.route-marker {
  width: 16px; height: 16px;
  cursor: pointer;
  transform: translateZ(0);
}
.route-marker .pin {
  position: absolute;
  left: 50%; top: 50%;
  width: 14px; height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 50%;
  background: var(--copper);
  border: 2px solid var(--parchment);
  box-shadow: 0 1px 6px rgba(0,0,0,0.5);
  transform: scale(0);
  transition: transform .45s cubic-bezier(.34,1.56,.64,1);
}
.route-marker.start .pin { background: var(--reed-sage, #8a9a7d); }
.route-marker.finish .pin { background: var(--deben); width: 18px; height: 18px; margin: -9px 0 0 -9px; }
.route-marker.show .pin { transform: scale(1); }
.route-marker .pulse {
  position: absolute;
  left: 50%; top: 50%;
  width: 14px; height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 50%;
  border: 1.5px solid var(--copper);
  opacity: 0;
}
.route-marker.show .pulse { animation: routePulse 2.4s ease-out 3; }
@keyframes routePulse {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(3.4); opacity: 0; }
}
.route-marker .mlabel {
  position: absolute;
  left: 14px; top: -4px;
  white-space: nowrap;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.85);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
}
.route-marker.show .mlabel { opacity: 1; transform: translateX(0); }

/* Travelling cursor dot (the only thing that moves during the reveal) */
.route-cursor { width: 18px; height: 18px; }
.route-cursor .cdot {
  position: absolute; left: 50%; top: 50%;
  width: 12px; height: 12px; margin: -6px 0 0 -6px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--copper);
  box-shadow: 0 0 12px 3px rgba(217, 138, 78, 0.85);
  opacity: 0; transition: opacity .3s ease;
}
.route-cursor.show .cdot { opacity: 1; }
.route-cursor .cpulse {
  position: absolute; left: 50%; top: 50%;
  width: 12px; height: 12px; margin: -6px 0 0 -6px;
  border-radius: 50%; border: 1.5px solid var(--copper); opacity: 0;
}
.route-cursor.show .cpulse { animation: routePulse 1.8s ease-out infinite; }

/* Image teaser burst */
.route-burst {
  position: absolute;
  right: 22px; top: 22px;
  z-index: 4;
  width: clamp(150px, 26%, 248px);
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--parchment);
  padding: 7px;
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.7);
  opacity: 0;
  transform: translateY(8px) scale(.98);
  transition: opacity .5s ease, transform .5s ease;
  pointer-events: none;
}
.route-burst.show { opacity: 1; transform: translateY(0) scale(1); }
.route-burst img { width: 100%; height: clamp(96px, 13vw, 150px); object-fit: cover; border-radius: 5px; display: block; }
.route-burst figcaption {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; color: var(--ink);
  text-align: center; padding: 7px 2px 3px;
}

/* Replay button */
.route-replay {
  position: absolute;
  right: 18px; bottom: 18px;
  z-index: 4;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; letter-spacing: 0.08em;
  color: var(--ink);
  background: rgba(242, 235, 224, 0.92);
  border: 1px solid rgba(28,26,23,0.14);
  border-radius: 40px;
  padding: 9px 16px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background .25s ease, transform .25s ease;
}
.route-replay:hover { background: var(--parchment); transform: translateY(-1px); }
.route-replay span { color: var(--copper); margin-right: 4px; }

/* Fallback / no-token state */
.route-fallback {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 8vh 8vw;
  background:
    radial-gradient(120% 100% at 50% 0%, #2d3a2e 0%, #1c2820 55%, #14110d 100%);
  color: var(--parchment);
}
.route-fallback .eyebrow { color: var(--reed-sage, #8a9a7d); margin-bottom: 14px; }
.route-itinerary {
  list-style: none;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  counter-reset: stop;
  text-align: left;
}
.route-itinerary li {
  position: relative;
  padding: 10px 0 10px 38px;
  border-bottom: 1px solid rgba(242, 235, 224, 0.12);
  counter-increment: stop;
}
.route-itinerary li:last-child { border-bottom: 0; }
.route-itinerary li::before {
  content: counter(stop);
  position: absolute; left: 0; top: 10px;
  width: 24px; height: 24px;
  border: 1px solid var(--copper);
  border-radius: 50%;
  color: var(--copper);
  font-family: 'DM Sans', sans-serif; font-size: 12px;
  display: flex; align-items: center; justify-content: center;
}
.route-itinerary b { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; display: block; }
.route-itinerary span { font-family: 'DM Sans', sans-serif; font-size: 13px; color: rgba(242,235,224,0.72); }
.route-fallback-note {
  margin-top: 20px;
  font-family: 'DM Sans', sans-serif; font-size: 13px;
  color: rgba(242,235,224,0.8);
  max-width: 46ch;
}
.route-fallback-note code { color: var(--copper); }

/* Legend chips under the map */
.route-legend {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 22px 0 0;
}
.route-legend li {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; letter-spacing: 0.04em;
  color: var(--ink-dim);
  border: 1px solid var(--line);
  border-radius: 40px;
  padding: 7px 14px;
  cursor: pointer;
  transition: all .25s ease;
}
.route-legend li:hover, .route-legend li.active {
  color: var(--ink);
  border-color: var(--copper);
  background: rgba(168, 104, 58, 0.07);
}
.route-legend li b { color: var(--copper); font-weight: 700; margin-right: 6px; }

.route-disclaimer {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--ink-dim);
  margin: 16px auto 0;
  opacity: 0.8;
}

/* Mapbox popup, restyled to brand */
.route-stage .mapboxgl-popup-content {
  font-family: 'DM Sans', sans-serif;
  background: var(--parchment);
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: 0 16px 40px -16px rgba(0,0,0,0.6);
}
.route-stage .mapboxgl-popup-content h4 { font-family: 'Cormorant Garamond', serif; font-size: 21px; color: var(--ink); margin: 0 0 4px; }
.route-stage .mapboxgl-popup-content p { font-size: 13px; color: var(--ink-dim); margin: 0; line-height: 1.5; }
.route-stage .mapboxgl-popup-tip { display: none; }
.route-stage .mapboxgl-ctrl-logo, .route-stage .mapboxgl-ctrl-attrib { opacity: 0.7; }

@media (max-width: 820px) {
  .route-burst { width: 38%; right: 14px; top: 14px; }
  .route-itinerary b { font-size: 19px; }
}

/* ─── HOTELS ─── */

.hotels-section {
  padding: 14vh 0;
  background: var(--parchment);
}

.hotels-header {
  text-align: center;
  margin-bottom: 8vh;
}

.hotels-header h2 {
  font-size: clamp(32px, 4.5vw, 62px);
  margin-top: 20px;
}

.hotels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.hotel-card {
  position: relative;
  height: 70vh;
  min-height: 480px;
  overflow: hidden;
}

.hotel-card .card-bg { position: absolute; inset: 0; transition: transform 1.8s ease; }
.hotel-card:hover .card-bg { transform: scale(1.04); }

.hotel-card .card-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(28, 26, 23, 0.88) 100%);
}

.hotel-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 7% 8%;
}

.hotel-info .eyebrow { color: rgba(242, 235, 224, 0.65); margin-bottom: 14px; }

.hotel-info h3 {
  font-size: clamp(26px, 3vw, 40px);
  color: var(--parchment);
  margin-bottom: 10px;
}

.hotel-info p {
  font-size: 14px;
  color: rgba(242, 235, 224, 0.72);
  max-width: 30ch;
  line-height: 1.6;
}

@media (max-width: 720px) {
  .hotels-grid { grid-template-columns: 1fr; }
  .hotel-card { height: 60vh; }
}

/* ─── FOUNDER NOTE ─── */

.founder-note {
  padding: 16vh 0;
  background: var(--parchment-dark);
}

.founder-note .wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 8vw;
  align-items: start;
}

.founder-label { padding-top: 8px; }

.founder-label .eyebrow { margin-bottom: 16px; }

.founder-label h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
  color: var(--ink-dim);
}

.founder-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.6vw, 34px);
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 32px;
  color: var(--ink);
}

.text-link {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--deben);
  border-bottom: 1px solid var(--deben);
  padding-bottom: 4px;
  display: inline-block;
  transition: opacity 0.35s;
}

.text-link:hover { opacity: 0.7; }

@media (max-width: 820px) {
  .founder-note .wrap { grid-template-columns: 1fr; gap: 5vh; }
}

/* ─── FAQ ─── */

.faq-item {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.faq-item h4 {
  font-size: clamp(20px, 2.4vw, 28px);
  margin-bottom: 12px;
  color: var(--ink);
}

.faq-item p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.7;
  max-width: 52ch;
}

/* ─── ABOUT ─── */

.about-story {
  padding: 16vh 0;
  background: var(--parchment);
}

.about-story .wrap { max-width: 820px; }

.about-lead {
  margin-bottom: 7vh;
}

.about-lead p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.6vw, 46px);
  font-weight: 300;
  line-height: 1.4;
  color: var(--ink);
}

.about-lead em { font-style: italic; color: var(--deben); }

.about-body p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--ink);
  margin-bottom: 30px;
  max-width: 62ch;
}

.about-body em { font-style: italic; }

.about-sign {
  margin-top: 6vh;
  padding-top: 5vh;
  border-top: 1px solid var(--line);
}

.signoff {
  font-size: clamp(28px, 3.4vw, 42px);
  color: var(--ink);
  margin-bottom: 6px;
}

.signoff-role {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* ─── COTSWOLDS TEASER ─── */

.cotswolds-section {
  padding: 0 0 14vh;
  background: var(--parchment);
}

.cotswolds-card {
  position: relative;
  height: 52vh;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cotswolds-card .card-bg { position: absolute; inset: 0; filter: grayscale(60%) brightness(0.7); }

.cotswolds-card .card-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 26, 23, 0.58);
}

.cotswolds-inner {
  position: relative;
  text-align: center;
  padding: 0 7vw;
}

.cotswolds-inner .eyebrow { color: rgba(242, 235, 224, 0.6); margin-bottom: 20px; }

.cotswolds-inner h2 {
  font-size: clamp(32px, 5vw, 68px);
  color: var(--parchment);
  margin-bottom: 18px;
}

.cotswolds-inner p {
  font-size: 15px;
  color: rgba(242, 235, 224, 0.68);
  max-width: 38ch;
  margin: 0 auto 28px;
  line-height: 1.65;
}

.cotswolds-inner a {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(242, 235, 224, 0.7);
  border-bottom: 1px solid rgba(242, 235, 224, 0.3);
  padding-bottom: 4px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  transition: color 0.35s, border-color 0.35s;
}

.cotswolds-inner a:hover {
  color: var(--parchment);
  border-color: var(--parchment);
}

/* ─── WAITLIST CTA ─── */

.waitlist-cta {
  padding: 18vh 0;
  background: var(--ink);
  text-align: center;
}

.waitlist-cta .eyebrow { color: var(--deben-light); margin-bottom: 24px; }

.waitlist-cta h2 {
  font-size: clamp(34px, 5.5vw, 78px);
  color: var(--parchment);
  max-width: 18ch;
  margin: 0 auto 24px;
  line-height: 1.12;
}

.waitlist-cta p {
  font-size: 16px;
  color: rgba(242, 235, 224, 0.62);
  max-width: 44ch;
  margin: 0 auto 44px;
  line-height: 1.65;
}

.btn-primary {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  background: var(--deben);
  color: var(--parchment);
  padding: 20px 54px;
  border: 1px solid var(--deben);
  cursor: pointer;
  transition: background-color 0.45s, color 0.45s, border-color 0.45s;
}

.btn-primary:hover {
  background: transparent;
  color: var(--deben-light);
  border-color: var(--deben-light);
}

.btn-ghost {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  background: transparent;
  color: var(--parchment);
  padding: 20px 54px;
  border: 1px solid rgba(242, 235, 224, 0.3);
  cursor: pointer;
  transition: background-color 0.45s, border-color 0.45s;
}

.btn-ghost:hover {
  border-color: var(--parchment);
}

/* ─── FOOTER ─── */

footer {
  padding: 12vh 7vw 8vh;
  background: var(--ink);
  border-top: 1px solid var(--line-white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 6vw;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  letter-spacing: 0.38em;
  color: var(--parchment);
  font-weight: 400;
  margin-bottom: 12px;
}

.footer-logo small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 8px;
  letter-spacing: 0.34em;
  color: rgba(242, 235, 224, 0.38);
  margin-top: 5px;
  font-weight: 400;
}

.footer-note {
  font-size: 13px;
  color: rgba(242, 235, 224, 0.44);
  line-height: 1.7;
  max-width: 38ch;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-nav a {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242, 235, 224, 0.54);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  transition: color 0.35s;
}

.footer-nav a:hover { color: var(--parchment); }

.footer-legal {
  font-size: 11px;
  color: rgba(242, 235, 224, 0.3);
  letter-spacing: 0.04em;
  text-align: right;
}

.footer-legal a {
  transition: color 0.35s;
}

.footer-legal a:hover { color: rgba(242, 235, 224, 0.6); }

@media (max-width: 820px) {
  .footer-inner { grid-template-columns: 1fr; gap: 6vh; }
  .footer-legal { text-align: left; }
}

/* ─── WAITLIST OVERLAY ─── */

.waitlist-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  visibility: hidden;
}

.waitlist-overlay.open {
  pointer-events: all;
  visibility: visible;
}

.overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 26, 23, 0.6);
  opacity: 0;
}

.overlay-panel {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 92vh;
  background: var(--parchment);
  transform: translateY(100%);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.overlay-header {
  position: sticky;
  top: 0;
  background: var(--parchment);
  border-bottom: 1px solid var(--line);
  padding: 22px 7vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.overlay-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  letter-spacing: 0.04em;
  font-weight: 300;
}

.overlay-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--ink-dim);
  transition: color 0.35s;
}

.overlay-close:hover { color: var(--ink); }

.overlay-close svg { width: 20px; height: 20px; }

.overlay-body {
  padding: 6vh 7vw 10vh;
  max-width: 760px;
}

.overlay-intro {
  margin-bottom: 6vh;
}

.overlay-intro p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink);
}

.overlay-intro small {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-dim);
  letter-spacing: 0.02em;
  line-height: 1.6;
}

/* ─── FORM ─── */

.form-field {
  margin-bottom: 38px;
}

.form-field label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 14px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  padding: 10px 0;
  outline: none;
  transition: border-color 0.45s;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-field textarea {
  resize: none;
  min-height: 68px;
  line-height: 1.5;
}

.form-field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6459' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 28px;
}

.form-field select option { background: var(--parchment); color: var(--ink); font-family: sans-serif; }

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

.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(107, 100, 89, 0.45); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 52px; }

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .overlay-panel { height: 100vh; }
}

.stepper {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 6px 0;
}

.stepper-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: none;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 20px;
  cursor: pointer;
  transition: border-color 0.4s, color 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
}

.stepper-btn:hover { border-color: var(--deben); color: var(--deben); }

.stepper-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  min-width: 2.4ch;
  text-align: center;
  line-height: 1;
}

.form-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 4vh 0;
}

.form-submit-area { margin-top: 5vh; }

.form-submit {
  background: var(--deben);
  border: 1px solid var(--deben);
  color: var(--parchment);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 22px 58px;
  cursor: pointer;
  transition: background-color 0.45s, color 0.45s, border-color 0.45s;
}

.form-submit:hover {
  background: transparent;
  color: var(--deben);
}

.form-submit[disabled] { opacity: 0.5; cursor: default; }

.form-note {
  margin-top: 18px;
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: 0.02em;
  line-height: 1.65;
}

.form-thanks { display: none; }

.form-thanks.show { display: block; }

.form-thanks p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 300;
  line-height: 1.35;
  max-width: 24ch;
  margin-bottom: 22px;
}

.form-thanks small {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.65;
  display: block;
}

/* ─── IMAGE FALLBACK BACKGROUNDS ─── */

/* These colours show when photos haven't loaded yet — each slot has a distinct tone */
.hero-bg { background: linear-gradient(160deg, #2a3d48 0%, #1c1a17 100%); }
.experience-teaser .card-bg { background: linear-gradient(160deg, #3d5045 0%, #1c2820 100%); }
.hotel-card:first-child .card-bg { background: linear-gradient(160deg, #3a3028 0%, #1c1a17 100%); }
.hotel-card:last-child .card-bg { background: linear-gradient(160deg, #2d3a2e 0%, #1c2820 100%); }
.cotswolds-card .card-bg { background: linear-gradient(160deg, #3a3d42 0%, #1c1a17 100%); }

/* ─── SCROLL REVEAL ─── */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1.1s ease, transform 1.1s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.reveal-left.in, .reveal-right.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .hero h1 .word-inner { transform: none; }
  .hero-sub, .hero-kicker, .hero-scroll { opacity: 1; }
  .scroll-line::after { animation: none; }
}

/* ─── ACCESSIBILITY: keyboard focus ─── */

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

/* ─── IMAGE PLACEHOLDERS (designed fallback before/without photography) ─── */

.hero-bg {
  background: linear-gradient(165deg, #33505f 0%, #243a45 55%, #1c1a17 100%);
}
.card-bg {
  background: linear-gradient(160deg, var(--parchment-dark) 0%, #d2c4ad 60%, #c2b196 100%);
}
.hero-bg img, .card-bg img { transition: opacity 0.6s ease; }
.media-failed img { opacity: 0; }

/* ─── HONEYPOT (spam guard — visually hidden, not display:none) ─── */

.hp-field {
  position: absolute !important;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
}

/* ─── SHARE ─── */

.share { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.share-prompt {
  font-family: 'DM Sans', sans-serif; font-weight: 300;
  font-size: 13px; letter-spacing: 0.02em; color: var(--ink-dim);
}
.share-btn {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid var(--line); background: transparent; color: var(--ink);
  font-family: 'DM Sans', sans-serif; font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 12px 20px; border-radius: 40px; cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.share-btn:hover { background: var(--deben); border-color: var(--deben); color: var(--parchment); }
.share-btn svg { width: 16px; height: 16px; }
.share-fallback { display: none; gap: 8px; align-items: center; flex-wrap: wrap; }
.share-fallback.show { display: flex; }
.share-fallback a, .share-fallback button {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  border: 1px solid var(--line); background: transparent; color: var(--ink);
  font-family: 'DM Sans', sans-serif; font-size: 12px; letter-spacing: 0.08em;
  padding: 9px 15px; border-radius: 40px; cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.share-fallback a:hover, .share-fallback button:hover {
  background: var(--deben); border-color: var(--deben); color: var(--parchment);
}
.share-copied { font-size: 12px; letter-spacing: 0.04em; color: var(--deben); opacity: 0; transition: opacity 0.3s ease; }
.share-copied.show { opacity: 1; }
.footer-share { margin-top: 22px; }
.thanks-share { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); }

/* On dark footer, soften share borders */
footer .share-prompt { color: rgba(242,235,224,0.62); }
footer .share-btn { border-color: var(--line-white); color: var(--parchment); }
footer .share-btn:hover { background: var(--parchment); border-color: var(--parchment); color: var(--ink); }
footer .share-fallback a, footer .share-fallback button { border-color: var(--line-white); color: var(--parchment); }
footer .share-fallback a:hover, footer .share-fallback button:hover { background: var(--parchment); border-color: var(--parchment); color: var(--ink); }

/* ─── SIMPLE PAGES (404, privacy) ─── */

.simple-page { max-width: 760px; margin: 0 auto; padding: 22vh 7vw 14vh; }
.simple-page--center { display: flex; align-items: center; text-align: center; min-height: 86vh; }
.simple-inner { width: 100%; }
.simple-page h1 { font-size: clamp(40px, 7vw, 82px); margin: 14px 0 22px; }
.simple-page h2 { font-size: clamp(21px, 3vw, 28px); margin: 42px 0 10px; }
.simple-page p {
  font-family: 'DM Sans', sans-serif; font-weight: 300;
  color: var(--ink-dim); font-size: 16px; line-height: 1.8; margin-bottom: 14px;
}
.simple-page p a { color: var(--deben); text-decoration: underline; text-underline-offset: 3px; }
.legal-lead {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 22px !important; color: var(--ink) !important; line-height: 1.5 !important;
  margin-bottom: 8px;
}
.legal-updated { font-size: 13px !important; opacity: 0.65; margin-top: 40px; }
.simple-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 36px; }
.simple-page--center .simple-actions { justify-content: center; }
.simple-actions a.btn-primary, .simple-actions a.btn-ghost { text-decoration: none; }
