/* 424 Landing Page — waitlist capture */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--cream); scroll-behavior: smooth; }
section { scroll-margin-top: 80px; }

/* ============================================================
   Warm hatching placeholder — used on every photo box.
   Client will swap these for real photographs.
   ============================================================ */
.photo-ph {
  position: relative;
  background-color: var(--bone);
  background-image:
    repeating-linear-gradient(
      135deg,
      rgba(15, 33, 59, 0.10) 0 1px,
      transparent 1px 9px
    ),
    repeating-linear-gradient(
      45deg,
      rgba(228, 196, 123, 0.18) 0 1px,
      transparent 1px 14px
    );
  overflow: hidden;
}
.photo-ph.on-dark-ph {
  background-color: var(--navy-800);
  background-image:
    repeating-linear-gradient(
      135deg,
      rgba(228, 196, 123, 0.14) 0 1px,
      transparent 1px 9px
    ),
    repeating-linear-gradient(
      45deg,
      rgba(228, 196, 123, 0.07) 0 1px,
      transparent 1px 14px
    );
}
.photo-ph .ph-label {
  position: absolute;
  left: 16px; bottom: 14px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--navy-500);
  background: rgba(245, 239, 227, 0.78);
  padding: 6px 10px;
  border: 1px solid rgba(15, 33, 59, 0.15);
}
.photo-ph.on-dark-ph .ph-label {
  color: var(--gold);
  background: rgba(15, 33, 59, 0.55);
  border-color: rgba(228, 196, 123, 0.3);
}

/* Octagonal clip — frame a photo like the logo */
.clip-oct {
  clip-path: var(--clip-octagon);
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 40px);
  transition: padding 260ms var(--ease-standard),
              background 260ms var(--ease-standard),
              border-color 260ms var(--ease-standard);
  background: transparent;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 12px clamp(20px, 5vw, 40px);
  background: var(--navy);
  border-bottom-color: rgba(228, 196, 123, 0.22);
}
.site-header .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--cream);
}
.site-header .brand img {
  height: 34px;
  width: auto;
  transition: height 260ms var(--ease-standard);
}
.site-header.scrolled .brand img { height: 28px; }
.site-header .brand .wordmark {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}
.site-header .brand .wordmark span {
  display: block;
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--gold-400);
  margin-top: 4px;
  font-weight: 400;
}

/* ============================================================
   Buttons (from design system)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  cursor: pointer;
  border-radius: 2px;
  transition: background 140ms var(--ease-standard),
              color 140ms var(--ease-standard),
              border-color 140ms var(--ease-standard);
  text-decoration: none;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-700); border-color: var(--gold-700); }
.btn-gold:active { background: var(--gold-800); }

.btn-sm { padding: 11px 18px; font-size: 10px; }

/* ============================================================
   Inputs
   ============================================================ */
.inp {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--navy);
  background: #fff;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy);
}
.inp::placeholder { color: var(--navy-300); }
.inp:focus { outline: none; box-shadow: 0 0 0 2px var(--cream), 0 0 0 4px var(--gold); }

.inp-on-dark {
  border: 1px solid rgba(228, 196, 123, 0.5);
  background: transparent;
  color: var(--cream);
}
.inp-on-dark::placeholder { color: var(--gold-400); opacity: 0.7; }
.inp-on-dark:focus { box-shadow: 0 0 0 2px var(--navy), 0 0 0 4px var(--gold); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  color: var(--cream);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 120px;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-color: var(--navy-900);
  background-image:
    repeating-linear-gradient(
      135deg,
      rgba(228, 196, 123, 0.09) 0 1px,
      transparent 1px 10px
    ),
    repeating-linear-gradient(
      45deg,
      rgba(228, 196, 123, 0.045) 0 1px,
      transparent 1px 16px
    ),
    radial-gradient(
      ellipse 90% 70% at 50% 30%,
      #14294A 0%,
      #0A1729 60%,
      #070F1D 100%
    );
}
.hero-photo .ph-label {
  position: absolute;
  left: 24px; top: 120px;
  color: var(--gold);
  background: rgba(15, 33, 59, 0.55);
  border: 1px solid rgba(228, 196, 123, 0.3);
  padding: 6px 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(15, 33, 59, 0.55) 0%,
      rgba(15, 33, 59, 0.15) 28%,
      rgba(15, 33, 59, 0.05) 45%,
      rgba(15, 33, 59, 0.85) 95%
    );
}
.hero-frame {
  position: absolute;
  inset: clamp(16px, 2vw, 28px);
  border: 1px solid rgba(228, 196, 123, 0.22);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.hero-h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 7.6vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
  color: var(--cream);
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gold-300);
  max-width: 48ch;
  margin: 0 auto 36px;
}
.hero-form {
  display: flex;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.hero-form .inp { flex: 1 1 240px; min-width: 0; }
.hero-form .btn { flex: 0 0 auto; }
.hero-note {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-top: 18px;
  opacity: 0.85;
}
.hero-ticker {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-400);
  z-index: 2;
}
.hero-ticker .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Success state */
.form-success {
  border: 1px solid var(--gold);
  padding: 22px;
  background: rgba(228, 196, 123, 0.08);
  text-align: left;
}
.form-success .ok-eye {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.form-success .ok-msg {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  line-height: 1.4;
  color: var(--cream);
  margin: 0;
}

/* ============================================================
   Section: The Story (cream)
   ============================================================ */
.section {
  padding: clamp(72px, 10vw, 140px) clamp(24px, 6vw, 96px);
}
.section-story {
  background: var(--cream);
  color: var(--navy);
  padding-bottom: clamp(40px, 5vw, 64px);
}
.story-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.story-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-800);
  margin-bottom: 28px;
}
.story-eyebrow::before {
  content: "";
  width: 32px; height: 1px;
  background: var(--gold-800);
}
.story-h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  max-width: 16ch;
  text-wrap: balance;
}
.story-lead {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(19px, 1.8vw, 22px);
  line-height: 1.45;
  color: var(--navy);
  margin: 0 0 24px;
  max-width: 44ch;
}
.story-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--navy-600);
  max-width: 48ch;
  margin: 0 0 16px;
}
.story-meta {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 520px;
}
.story-meta .m-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 36px;
  line-height: 1;
  color: var(--navy);
  margin-bottom: 8px;
}
.story-meta .m-lbl {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--navy-500);
}
.story-photo-wrap {
  position: relative;
  margin-top: clamp(40px, 5vw, 72px);
}
.story-photo {
  aspect-ratio: 4 / 5;
  width: 100%;
}
.story-photo-caption {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy-500);
}
.story-photo-caption::before {
  content: "";
  width: 20px; height: 1px;
  background: var(--gold-800);
}

/* Gold accent rule between sections */
.gold-rule {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 96px);
  display: flex;
  align-items: center;
  gap: 16px;
}
.gold-rule .line {
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
}
.gold-rule .dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

/* ============================================================
   Section: Timeline (cream)
   ============================================================ */
.section-timeline {
  background: var(--cream);
  color: var(--navy);
  padding: clamp(40px, 5vw, 64px) 0 clamp(72px, 10vw, 140px);
  overflow: hidden;
}
.tl-head {
  max-width: 1240px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  padding: 0 clamp(24px, 6vw, 96px);
  text-align: center;
}
.tl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-800);
  margin-bottom: 24px;
}
.tl-eyebrow::before, .tl-eyebrow::after {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold-800);
  opacity: 0.7;
}
.tl-h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}
.tl-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--navy-500);
  margin: 0;
}

.tl-rail-wrap {
  position: relative;
}
.tl-rail {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 0 32px;
}
.tl-rail::-webkit-scrollbar { display: none; }

.tl-track {
  position: relative;
  display: flex;
  gap: 0;
  padding: 0 clamp(24px, 6vw, 96px);
  width: max-content;
}
.tl-line { display: none; }
.tl-entry {
  position: relative;
  flex: 0 0 320px;
  width: 320px;
  padding: 0 28px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.tl-year {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  line-height: 1;
  color: var(--navy);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.tl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 0;
  margin-bottom: 22px;
  box-shadow: none;
}
.tl-entry:hover .tl-dot { transform: none; }
.tl-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 12px;
  text-wrap: balance;
}
.tl-title::after { content: none; }
.tl-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(15, 33, 59, 0.7);
  margin: 0;
}

.tl-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
}
.tl-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid var(--navy);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 140ms var(--ease-standard), color 140ms var(--ease-standard);
}
.tl-arrow:hover { background: var(--navy); color: var(--cream); }
.tl-arrow svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: square; stroke-linejoin: miter; }

@media (max-width: 600px) {
  .tl-entry { flex-basis: 280px; width: 280px; padding: 0 20px; }
  .tl-year { font-size: 26px; }
  .tl-title { font-size: 18px; }
}

/* ============================================================
   Section: What's Coming (navy)
   ============================================================ */
.section-whats-coming {
  background: var(--navy);
  color: var(--cream);
  position: relative;
  padding-bottom: clamp(48px, 6vw, 84px);
}
.section-whats-coming .wc-frame {
  position: absolute;
  inset: clamp(20px, 3vw, 40px);
  border: 1px solid rgba(228, 196, 123, 0.14);
  pointer-events: none;
}
.wc-inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}
.wc-head {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.wc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.wc-eyebrow::before,
.wc-eyebrow::after {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.wc-h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 auto;
  max-width: 16ch;
  color: var(--cream);
}
.wc-h2 em { font-style: italic; color: var(--gold); }
.wc-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(228, 196, 123, 0.25);
  border: 1px solid rgba(228, 196, 123, 0.25);
}
.wc-card {
  background: var(--navy);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 260ms var(--ease-standard);
}
.wc-card:hover { background: var(--navy-800); }
.wc-card .wc-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wc-card .wc-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.25;
  stroke-linecap: square;
  stroke-linejoin: miter;
}
.wc-card .wc-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--gold);
  font-style: italic;
}
.wc-card .wc-type {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin: 0;
}
.wc-card .wc-desc {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--gold-300);
  margin: 0;
  max-width: 34ch;
}
.wc-card .wc-foot {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(228, 196, 123, 0.22);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
}
.wc-card .wc-sf {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.wc-card .wc-count {
  font-family: var(--font-body);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
}

/* Amenity pills */
.amenities {
  margin-top: clamp(40px, 6vw, 64px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.amenity {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border: 1px solid rgba(228, 196, 123, 0.35);
  border-radius: 2px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  transition: border-color 200ms var(--ease-standard), background 200ms var(--ease-standard);
}
.amenity:hover {
  border-color: var(--gold);
  background: rgba(228, 196, 123, 0.05);
}
.amenity svg {
  width: 16px; height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.25;
  stroke-linecap: square;
  stroke-linejoin: miter;
  flex-shrink: 0;
}

/* ============================================================
   Section: Timeline — The Building Through Time
   ============================================================ */
.section-timeline {
  background: var(--cream);
  color: var(--navy);
  position: relative;
}
.tl-head {
  max-width: 1240px;
  margin: 0 auto clamp(48px, 6vw, 80px);
  text-align: center;
}
.tl-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-body); font-weight: 500;
  font-size: 11px; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold-800);
  margin-bottom: 24px;
}
.tl-eyebrow::before, .tl-eyebrow::after {
  content: ""; width: 28px; height: 1px;
  background: var(--gold); opacity: 0.7;
}
.tl-h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(32px, 4.4vw, 56px); line-height: 1.05;
  letter-spacing: -0.01em; margin: 0 0 18px;
  color: var(--navy); text-wrap: balance;
}
.tl-sub {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(17px, 1.6vw, 20px); line-height: 1.4;
  color: rgba(15, 33, 59, 0.8); margin: 0;
}

.tl-rail-wrap {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 56px);
}
.tl-rail {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 60px 0 32px;
}
.tl-rail::-webkit-scrollbar { display: none; }
.tl-track {
  position: relative;
  display: flex;
  gap: clamp(40px, 4vw, 64px);
  padding: 0 clamp(20px, 4vw, 40px);
  min-width: max-content;
}
.tl-line {
  position: absolute;
  left: 0; right: 0;
  top: 110px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
  z-index: 0;
}
.tl-entry {
  position: relative;
  width: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  padding-top: 0;
}
.tl-year {
  font-family: var(--font-display); font-weight: 400;
  font-size: 22px; line-height: 1;
  color: var(--navy);
  letter-spacing: -0.005em;
  margin-bottom: 22px;
  min-height: 26px;
}
.tl-entry.significant .tl-year {
  font-size: 28px;
  color: var(--navy);
}
.tl-dot {
  width: 9px; height: 9px;
  background: var(--gold);
  border-radius: 50%;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
  border: 1px solid var(--cream);
  box-shadow: 0 0 0 1px var(--gold);
}
.tl-entry.significant .tl-dot {
  width: 13px; height: 13px;
  background: var(--navy);
  box-shadow: 0 0 0 1px var(--gold), 0 0 0 4px rgba(228, 196, 123, 0.18);
  margin-bottom: 18px;
}
.tl-title {
  font-family: var(--font-body); font-weight: 600;
  font-size: 10.5px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold-800);
  margin: 0 0 12px;
}
.tl-entry.significant .tl-title { color: var(--navy); }
.tl-body {
  font-family: var(--font-body); font-size: 13.5px;
  line-height: 1.65; color: rgba(15, 33, 59, 0.78);
  margin: 0;
}

/* Nav arrows */
.tl-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}
.tl-arrow {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--navy);
  border-radius: 2px;
  cursor: pointer;
  color: var(--navy);
  transition: background 140ms var(--ease-standard), color 140ms var(--ease-standard);
}
.tl-arrow:hover { background: var(--navy); color: var(--cream); }
.tl-arrow:disabled { opacity: 0.3; cursor: not-allowed; }
.tl-arrow svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.4; }

/* Mobile: vertical */
@media (max-width: 760px) {
  .tl-rail { padding: 24px 0 16px; }
  .tl-track {
    flex-direction: column;
    gap: 36px;
    padding: 0 0 0 32px;
    min-width: 0;
  }
  .tl-line {
    top: 0; bottom: 0; left: 4px;
    width: 1px; height: auto; right: auto;
  }
  .tl-entry {
    width: 100%;
    padding-left: 24px;
    position: relative;
  }
  .tl-year {
    margin-bottom: 6px;
    min-height: 0;
  }
  .tl-dot {
    position: absolute;
    left: -27px;
    top: 8px;
    margin-bottom: 0;
  }
  .tl-entry.significant .tl-dot { left: -29px; }
  .tl-nav { display: none; }
}
.section-daytoday {
  background: var(--cream);
  color: var(--navy);
}
.dt-head {
  max-width: 1240px;
  margin: 0 auto clamp(56px, 7vw, 96px);
  position: relative;
  padding-top: 28px;
}
.dt-head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.dt-eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-800);
  margin-bottom: 24px;
}
.dt-h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  max-width: 18ch;
  color: var(--navy);
  text-wrap: balance;
}
.dt-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 48px) clamp(28px, 3vw, 48px);
}
.dt-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dt-col .dt-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: var(--gold-800);
  letter-spacing: 0.02em;
}
.dt-col .dt-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 1.9vw, 26px);
  line-height: 1.2;
  color: var(--navy);
  margin: 0;
  text-wrap: balance;
}
.dt-col .dt-body {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(15, 33, 59, 0.7);
  margin: 0;
}
.dt-col .dt-rule {
  width: 28px;
  height: 1px;
  background: var(--navy);
  opacity: 0.4;
  margin-top: 4px;
}
@media (max-width: 1024px) {
  .dt-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .dt-grid { grid-template-columns: 1fr; }
}
.section-details {
  background: var(--cream);
  color: var(--navy);
  padding-top: clamp(40px, 5vw, 72px);
  padding-bottom: clamp(40px, 5vw, 72px);
}
.details-head {
  max-width: 1240px;
  margin: 0 auto clamp(16px, 1.75vw, 25px);
}
.details-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-800);
  margin-bottom: 24px;
}
.details-eyebrow::before {
  content: "";
  width: 32px; height: 1px;
  background: var(--gold-800);
}
.details-h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  max-width: 22ch;
  text-wrap: balance;
}
.details-h2 em { font-style: italic; color: var(--navy); }

.masonry {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 240px 240px;
  gap: 12px;
}
.masonry > div {
  position: relative;
}
.m1 { grid-column: 1 / span 3; grid-row: 1 / span 2; }
.m2 { grid-column: 4 / span 3; grid-row: 1 / span 1; }
.m3 { grid-column: 4 / span 2; grid-row: 2 / span 1; }
.m4 { grid-column: 6 / span 1; grid-row: 2 / span 1; }
.m5 { grid-column: 1 / span 6; grid-row: 3 / span 1; }

.details-caption {
  max-width: 1240px;
  margin: 32px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--navy-200);
  flex-wrap: wrap;
}
.details-caption .lhs {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--navy);
  margin: 0;
  max-width: 42ch;
}
.details-caption .rhs {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 10px 14px;
  border: 1px solid var(--navy);
  border-radius: 2px;
  transition: background 140ms var(--ease-standard), color 140ms var(--ease-standard);
}
.details-caption .rhs:hover { background: var(--navy); color: var(--cream); }
.details-caption .rhs svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none; stroke-width: 1.4;
}

/* ============================================================
   Section: FAQ (cream)
   ============================================================ */
.section-faq {
  background: var(--cream);
  color: var(--navy);
  padding-top: clamp(40px, 5vw, 72px);
}
.faq-head {
  max-width: 880px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
  position: relative;
}
.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-800);
  margin-bottom: 24px;
}
.faq-eyebrow::before,
.faq-eyebrow::after {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.faq-h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--navy);
  text-wrap: balance;
}
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--navy-200);
}
.faq-item {
  border-bottom: 1px solid var(--navy-200);
}
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 24px 8px 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(15px, 1.4vw, 17px);
  letter-spacing: 0;
  color: var(--navy);
  text-align: left;
  transition: color 140ms var(--ease-standard);
}
.faq-q:hover { color: var(--gold-800); }
.faq-q:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.faq-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold-800);
  transition: transform 260ms var(--ease-standard);
}
.faq-arrow svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: square; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 320ms var(--ease-standard);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 0 24px;
  max-width: 60ch;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(15, 33, 59, 0.7);
}
.section-cta {
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  padding-top: clamp(72px, 10vw, 140px);
  padding-bottom: clamp(48px, 6vw, 84px);
}
.cta-divider {
  width: 72px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 36px;
  opacity: 0.85;
}
.cta-btn {
  margin-top: 4px;
}
.cta-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-numeral {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(140px, 22vw, 280px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: rgba(228, 196, 123, 0.06);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  pointer-events: none;
  z-index: 1;
  font-style: italic;
  user-select: none;
}
.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.cta-eyebrow::before,
.cta-eyebrow::after {
  content: "";
  width: 32px; height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.cta-h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
  color: var(--cream);
}
.cta-h2 em { font-style: italic; color: var(--gold); }
.cta-sub {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--gold-300);
  max-width: 52ch;
  margin: 0 auto 36px;
}
.cta-form {
  display: flex;
  gap: 10px;
  max-width: 540px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.cta-form .inp { flex: 1 1 240px; min-width: 0; }
.cta-note {
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-400);
  opacity: 0.8;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: var(--cream);
  padding: 72px clamp(24px, 6vw, 96px) 32px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--cream);
  align-self: flex-start;
}
.footer-brand img { height: 36px; width: auto; }
.footer-brand .wordmark {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}
.footer-brand .wordmark span {
  display: block;
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--gold-400);
  margin-top: 4px;
  font-weight: 400;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: start;
}
.footer-badge {
  width: 110px;
  height: auto;
  mix-blend-mode: screen;
  filter: brightness(1.05);
}
.footer-contact .addr {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-contact .tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.4;
  color: var(--cream);
  max-width: 32ch;
  margin: 0 0 20px;
}
.footer-contact .person {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.7;
  color: var(--gold-300);
  margin: 0;
}
.footer-contact .person a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 140ms var(--ease-standard);
}
.footer-contact .person a:hover { border-bottom-color: var(--gold); }

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}
.footer-social-row { display: flex; gap: 10px; }
.social-btn {
  width: 40px; height: 40px;
  border: 1px solid rgba(228, 196, 123, 0.35);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  border-radius: 2px;
  transition: border-color 140ms var(--ease-standard), background 140ms var(--ease-standard);
}
.social-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.4; }
.social-btn:hover { border-color: var(--gold); background: rgba(228, 196, 123, 0.08); }

.footer-rule {
  height: 1px;
  background: rgba(228, 196, 123, 0.35);
  margin: 56px 0 24px;
}
.footer-rule-top {
  margin: 0 0 56px;
}
.footer-fine {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(228, 196, 123, 0.5);
  flex-wrap: wrap;
  gap: 16px;
}

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms var(--ease-standard), transform 600ms var(--ease-standard);
}
.reveal.shown { opacity: 1; transform: translateY(0); }

/* ============================================================
   Responsive — mobile first, so tablet/desktop overrides
   ============================================================ */
@media (max-width: 880px) {
  .site-header { padding: 14px 20px; }
  .site-header .brand .wordmark { display: none; }
  .site-header .btn { padding: 11px 14px; font-size: 10px; letter-spacing: 0.18em; }

  .hero { padding: 100px 20px 100px; align-items: center; }
  .hero-h1 { font-size: clamp(38px, 9vw, 56px); }

  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-meta { grid-template-columns: repeat(3, 1fr); max-width: 100%; }

  .wc-cards {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 200px 200px 200px 200px;
    gap: 8px;
  }
  .m1 { grid-column: 1 / span 2; grid-row: 1 / span 2; }
  .m2 { grid-column: 1 / span 1; grid-row: 3 / span 1; }
  .m3 { grid-column: 2 / span 1; grid-row: 3 / span 1; }
  .m4 { grid-column: 1 / span 2; grid-row: 4 / span 1; }

  .details-caption { flex-direction: column; align-items: flex-start; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-social { align-items: flex-start; }
  .footer-fine { justify-content: flex-start; }
}

@media (max-width: 520px) {
  .hero-form, .cta-form { flex-direction: column; }
  .hero-form .btn, .cta-form .btn { width: 100%; }
  .amenities { justify-content: flex-start; }
  .amenity { font-size: 10px; letter-spacing: 0.18em; padding: 9px 14px; }

  .masonry {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 200px);
  }
  .m1, .m2, .m3, .m4 { grid-column: 1 / -1; }
  .m1 { grid-row: auto; }
  .m2 { grid-row: auto; }
  .m3 { grid-row: auto; }
  .m4 { grid-row: auto; }
}

/* ============================================================
   Mobile rendering fixes
   ============================================================ */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}
img { max-width: 100%; }

@media (max-width: 760px) {
  /* Timeline: lock to viewport, single column, no horizontal scroll */
  .section-timeline { overflow: hidden; }
  .tl-rail-wrap { padding: 0; overflow: hidden; }
  .tl-rail {
    overflow: visible;
    padding: 24px 0 16px;
  }
  .tl-track {
    flex-direction: column;
    gap: 36px;
    padding: 0;
    min-width: 0;
    width: 100%;
  }
  .tl-line {
    top: 0; bottom: 0; left: 4px;
    width: 1px; height: auto; right: auto;
  }
  .tl-entry {
    width: 100%;
    max-width: 100%;
    padding-left: 24px;
    padding-right: 0;
    position: relative;
    flex: 0 0 auto;
    text-align: left;
  }
  .tl-year {
    margin-bottom: 6px;
    min-height: 0;
    text-align: left;
  }
  .tl-title { text-align: left; }
  .tl-body {
    max-width: 100%;
    overflow-wrap: anywhere;
    text-align: left;
  }
  .tl-dot {
    position: absolute;
    left: -27px;
    top: 14px;
    margin: 0;
  }
  .tl-sub {
    letter-spacing: 0.2em;
    font-size: 14px;
  }
  .tl-nav { display: none; }
}

@media (max-width: 600px) {
  .tl-entry { flex-basis: auto; width: 100%; padding: 0 0 0 24px; }
  .tl-year { font-size: 26px; }
  .tl-title { font-size: 11px; }

  /* Hero ticker: keep on one line so dots flank text symmetrically */
  .hero-ticker {
    font-size: 9px;
    letter-spacing: 0.22em;
    gap: 10px;
    width: max-content;
    max-width: calc(100vw - 40px);
  }
  .hero-ticker > span:not(.dot) { white-space: nowrap; }
}

/* ============================================================
   Tweaks panel
   ============================================================ */
.tweaks-panel {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 280px;
  background: var(--navy);
  color: var(--cream);
  border: 1px solid var(--gold);
  border-radius: 2px;
  padding: 18px 18px 16px;
  z-index: 100;
  box-shadow: 0 20px 48px -20px rgba(0,0,0,0.6);
  font-family: var(--font-body);
}
.tweaks-panel h4 {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}
.tweaks-panel .row { margin-bottom: 12px; }
.tweaks-panel .lbl {
  display: block;
  font-size: 9.5px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 6px;
}
.tweaks-panel select, .tweaks-panel input[type="text"] {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid rgba(228, 196, 123, 0.4);
  background: transparent;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 12px;
  border-radius: 2px;
}
