/* ————— NAV ————— */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  background: color-mix(in oklch, var(--bg) 92%, transparent);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  transition: border-color 0.3s ease, background 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { border-bottom-color: var(--line); }

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  height: 84px;
}

.brand {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--ff-display);
}
.brand .logo {
  width: 56px; height: 56px;
  background: url('photos/logo-transparent.png') center/contain no-repeat;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}
.brand:hover .logo { transform: rotate(-8deg); }
.brand .wordmark {
  display: flex; flex-direction: column;
  line-height: 0.95;
}
.brand .wordmark .name {
  color: var(--brand);
  font-weight: 700; font-size: 22px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.brand .wordmark .sub {
  font-family: var(--ff-italic);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 15px;
  letter-spacing: 0;
  margin-top: 2px;
}

.nav-links {
  display: flex; justify-content: center;
  gap: 36px;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--brand); }
.nav-links a.active { color: var(--brand); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--brand);
}

.nav-cta {
  display: flex; align-items: center; gap: 14px;
}
.nav-cta .phone-link {
  font-family: var(--ff-display); font-weight: 600; font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--ink);
  display: none;
}
@media (min-width: 1100px) { .nav-cta .phone-link { display: inline-flex; align-items: center; gap: 8px; } }
.nav-cta .phone-link:hover { color: var(--brand); }
.nav-cta .btn { padding: 12px 20px; font-size: 13px; }

@media (max-width: 920px) {
  .nav-links { display: none; }
  .brand .wordmark .sub { display: none; }
  .nav-inner { gap: 16px; height: 72px; }
  .brand .logo { width: 44px; height: 44px; }
}

/* ————— HERO ————— */
.hero {
  padding-top: 160px;
  padding-bottom: 0;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: stretch;
  padding-bottom: 0;
}
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero { padding-top: 110px; }
}

.hero-left {
  display: flex; flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: clamp(40px, 6vw, 80px);
}

.hero-top {
  display: flex;
  justify-content: space-between;
  font-family: var(--ff-mono);
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.hero-top .live::before {
  content: ""; display: inline-block;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand); margin-right: 10px;
  vertical-align: middle;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.hero-title {
  font-family: var(--ff-display);
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 0.82;
  font-size: clamp(72px, 12vw, 200px);
  margin: 0;
  text-transform: uppercase;
  color: var(--ink);
}
.hero-title .line {
  display: block;
  position: relative;
}
.hero-title .line-blue { color: var(--brand); }
.hero-title .line-italic {
  font-family: var(--ff-italic);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.01em;
  font-size: 0.72em;
  color: var(--ink-soft);
  line-height: 1;
  margin-top: 0.05em;
  margin-left: 0.5em;
}
.hero-title .star {
  font-family: var(--ff-display);
  display: inline-block;
  color: var(--brand);
  font-size: 0.45em;
  vertical-align: super;
  margin-left: 0.15em;
  transform: translateY(-0.2em);
}

.hero-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-blurb {
  max-width: 36ch;
  font-size: 16px; line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
.hero-blurb strong { color: var(--ink); font-weight: 600; }

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* hero right column — tall stacked image */
.hero-right {
  position: relative;
  align-self: stretch;
  min-height: 580px;
}
.hero-image {
  position: absolute; inset: 0;
  background: var(--bg-cream) center/cover no-repeat;
  overflow: hidden;
}
.hero-image .slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.2,0,0.1,1);
}
.hero-image .slide.active { opacity: 1; }

.hero-image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, oklch(0% 0 0 / 0.5) 100%);
  pointer-events: none;
}

.hero-tag {
  position: absolute;
  z-index: 3;
  bottom: 28px; left: 28px; right: 28px;
  display: flex; justify-content: space-between; align-items: flex-end;
  color: oklch(96% 0.005 85);
  font-family: var(--ff-mono);
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  pointer-events: none;
}
.hero-tag .num {
  font-family: var(--ff-display);
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  display: block;
  margin-bottom: 6px;
  text-transform: none;
}

/* slide indicator */
.hero-dots {
  position: absolute;
  top: 28px; right: 28px;
  display: flex; gap: 8px;
  z-index: 3;
}
.hero-dots .d {
  width: 22px; height: 2px;
  background: oklch(96% 0 0 / 0.4);
  transition: background 0.3s ease;
}
.hero-dots .d.active { background: oklch(96% 0 0); }

/* asymmetric overlap: a small inset photo card overlaps the boundary */
.hero-overlap {
  position: absolute;
  bottom: -60px;
  left: -80px;
  width: 200px; height: 260px;
  background: var(--bg-cream) center/cover no-repeat;
  border: 8px solid var(--bg);
  z-index: 4;
  display: none;
}
@media (min-width: 1100px) { .hero-overlap { display: block; } }

.hero-rotator {
  position: absolute;
  top: 50%; left: -38px;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  font-family: var(--ff-mono);
  font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: none;
}
@media (min-width: 1100px) { .hero-rotator { display: inline-block; } }

/* hero scroll cue */
.hero-scroll {
  display: flex; justify-content: center;
  padding: 32px 0 24px;
  font-family: var(--ff-mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-mute);
  border-top: 1px solid var(--line);
  margin-top: clamp(40px, 5vw, 64px);
}
.hero-scroll span { display: inline-flex; align-items: center; gap: 12px; }
.hero-scroll svg { animation: bob 1.6s ease-in-out infinite; }
@keyframes bob {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ————— STATS STRIP ————— */
.stats {
  background: var(--bg-cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(40px, 6vw, 72px) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.stat {
  background: var(--bg-cream);
  padding: clamp(24px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 8px;
  position: relative;
}
.stat .num {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(56px, 6.5vw, 96px);
  line-height: 0.9;
  color: var(--brand);
  letter-spacing: -0.01em;
}
.stat .num .unit {
  color: var(--ink);
  font-size: 0.5em;
  vertical-align: super;
  margin-left: 0.05em;
}
.stat .label {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink);
  margin-top: auto;
}
.stat .desc {
  font-family: var(--ff-italic); font-style: italic;
  font-size: 15px; color: var(--ink-soft);
  margin: 0;
  max-width: 22ch;
}
@media (max-width: 880px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
