/* ============================================================
   Battle Ground Auto Licensing — v6
   Heritage Pacific Northwest with premium craft.
   Filson / Pendleton / Sasquatch Books vibes.
   ============================================================ */

:root {
  /* Pulled from mom's existing license-plate sign */
  --navy: #1A3666;
  --navy-deep: #122849;
  --navy-darker: #0B1A30;
  --burgundy: #8B2D24;
  --burgundy-deep: #6E2018;

  /* Pacific Northwest atmospheric tones */
  --mist: #C5D5E2;
  --mist-soft: #E5ECF3;
  --mist-pale: #F2F6FA;
  --sky-dawn: #DCE5EE;
  --ridge: #94A8BC;
  --ridge-deep: #6B7F94;
  --forest: #2D4A3E;
  --moss: #5C7569;
  --cedar: #6B5544;

  /* Paper / atmosphere */
  --paper: #FFFFFF;
  --cream: #FBF9F4;
  --warm-grey: #F2EFE8;
  --rule: #DDD8CB;
  --rule-deep: #C8C2B0;
  --rule-soft: #ECE6D5;

  /* Text */
  --ink: #1A1A1A;
  --ink-soft: #2D2D2D;
  --slate: #5C5C66;
  --slate-light: #8B8E96;

  --good: #2D7A4A;

  --shadow-sm: 0 2px 8px rgba(26, 54, 102, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 54, 102, 0.08);
  --shadow-lg: 0 24px 60px rgba(26, 54, 102, 0.12);

  --radius-xs: 3px;
  --radius: 6px;
  --radius-md: 10px;
  --radius-pill: 999px;

  --max: 1280px;
  --gutter: 1.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1, "onum" 1;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Source Serif Pro', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.018em;
  color: var(--navy);
  line-height: 1.05;
  font-feature-settings: "ss01" 1, "ss02" 1;
}

h1 { font-size: clamp(3rem, 7vw, 5.5rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.4rem, 2vw, 1.85rem); letter-spacing: -0.015em; }

p { margin-bottom: 1.1rem; max-width: 62ch; }

a {
  color: var(--burgundy);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
a:hover { color: var(--burgundy-deep); }

strong { font-weight: 600; color: var(--navy); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 1.5rem;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--burgundy);
  display: inline-block;
}

.since {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.92rem;
  white-space: nowrap;
}
.since::before, .since::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--burgundy);
}

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) { .container { padding: 0 2.5rem; } }
@media (min-width: 1200px) { .container { padding: 0 3rem; } }

.section { padding: 7rem 0; position: relative; z-index: 2; }
@media (max-width: 720px) { .section { padding: 4.5rem 0; } }

/* TOP BAR */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(8px);
}

.topbar-inner {
  max-width: var(--max);
  margin-inline: auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (max-width: 920px) { .topbar-inner { gap: 0.75rem; } }
@media (min-width: 768px) { .topbar-inner { padding: 1.1rem 2.5rem; } }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 42px;
  height: 42px;
  background: var(--navy);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: var(--cream);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text .n {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand-text .t {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-top: 2px;
}

.topbar-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}
@media (min-width: 920px) { .topbar-nav { display: inline-flex; } }

.topbar-nav a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 0.5rem 0;
  white-space: nowrap;
}
.topbar-nav a:hover { color: var(--burgundy); }
.topbar-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--burgundy);
  transition: width 0.3s var(--ease);
}
.topbar-nav a:hover::after { width: 100%; }

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.85rem 0.4rem 0.65rem;
  border: 1px solid var(--rule-deep);
  border-radius: var(--radius-pill);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.78rem;
  color: var(--ink-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--cream);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--good);
  position: relative;
}
.status-dot::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: var(--good);
  opacity: 0.35;
  animation: pulse 2.4s var(--ease) infinite;
}
.status-dot.closed { background: var(--slate-light); }
.status-dot.closed::after { display: none; }

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.35; }
  70% { transform: scale(2.3); opacity: 0; }
  100% { transform: scale(2.3); opacity: 0; }
}

.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.2rem;
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius-pill);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.96rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s var(--ease);
  border: 1px solid var(--navy);
  white-space: nowrap;
}
.call-btn:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--cream);
}
.call-btn svg { width: 13px; height: 13px; }

/* Click-to-copy feedback state (desktop fallback for tel: links) */
a.copied,
a.call-btn.copied {
  background: var(--good) !important;
  border-color: var(--good) !important;
  color: var(--cream) !important;
}
a.copied.btn { color: var(--cream) !important; }

@media (max-width: 640px) {
  .brand-text .t { display: none; }
  /* Keep "Open now" hidden on mobile, but show the live wait time instead */
  .status-pill .status-label { display: none; }
  .status-pill { padding: 0.4rem 0.7rem; }
  .status-pill .status-wait { font-size: 0.72rem; }
  .status-pill .status-wait:not([hidden])::before { content: ""; }
  .call-btn span { display: none; }
  .call-btn { padding: 0.65rem; }
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 8rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--mist-pale) 60%, var(--sky-dawn) 100%);
}
@media (min-width: 768px) { .hero { padding: 5rem 0 10rem; } }

.hero-mountains {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 60%;
  z-index: 0;
  pointer-events: none;
}
.hero-mountains svg { width: 100%; height: 100%; display: block; }

.hero-sun {
  position: absolute;
  top: 12%;
  right: 8%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 220, 170, 0.32) 0%, rgba(255, 220, 170, 0) 60%);
  z-index: 0;
  pointer-events: none;
}

.hero-trees {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 18%;
  z-index: 1;
  pointer-events: none;
}
.hero-trees svg { width: 100%; height: 100%; display: block; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 3;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.15fr 1fr; gap: 4rem; }
}

/* Mobile: reorder so the plate appears as a compact anchor right after the
   headline, instead of being pushed below all the hero text. */
@media (max-width: 979px) {
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .hero-text {
    display: contents;
  }
  .hero-since { order: 1; margin-bottom: 0; }
  .hero h1 { order: 2; margin-bottom: 0; }
  .plate-wrap { order: 3; }
  .hero-lede { order: 4; margin-bottom: 0; }
  .hero-actions { order: 5; margin-bottom: 0; }
  .hero-info { order: 6; }
}

.hero-text { position: relative; }
.hero-since { margin-bottom: 2rem; }

.hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  letter-spacing: -0.028em;
  line-height: 0.98;
  margin-bottom: 2rem;
  color: var(--ink);
}
.hero h1 .ital { font-style: italic; color: var(--burgundy); font-weight: 400; }

.hero-lede {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 42ch;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 3.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.75rem;
  background: var(--navy);
  color: var(--cream);
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.btn:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--cream);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

.btn .arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease);
  font-size: 1.05em;
}
.btn:hover .arrow { transform: translateX(3px); }

.plate-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
@media (min-width: 980px) {
  .plate-wrap {
    align-self: start;
    margin-top: 0.5rem;
  }
}

.plate {
  position: relative;
  background: var(--paper);
  border: 3px solid var(--navy);
  border-radius: 14px;
  padding: 1.75rem 2.25rem;
  box-shadow: 0 30px 60px -20px rgba(26, 54, 102, 0.35), 0 12px 30px -8px rgba(26, 54, 102, 0.18);
  text-align: center;
  overflow: hidden;
  aspect-ratio: 5 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 480px;
  width: 100%;
  transform: rotate(-1.5deg);
  transition: transform 0.6s var(--ease-out-expo);
}
.plate:hover { transform: rotate(0deg) scale(1.02); }

/* Mobile: smaller plate, less tilt (avoids horizontal overflow on narrow screens) */
@media (max-width: 979px) {
  .plate-wrap {
    margin: 0.5rem auto 0;
  }
  .plate {
    max-width: 340px;
    transform: rotate(-1deg);
    padding: 1.4rem 1.75rem;
  }
}
@media (max-width: 420px) {
  .plate {
    max-width: 290px;
    transform: rotate(0deg);
  }
}

.plate-rivet {
  position: absolute;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle at 30% 30%, #aaa 0%, #6a6a6a 60%, #4a4a4a 100%);
  border-radius: 50%;
  box-shadow: inset 0 -1px 2px rgba(0,0,0,0.3);
}
.plate-rivet.tl { top: 13px; left: 13px; }
.plate-rivet.tr { top: 13px; right: 13px; }
.plate-rivet.bl { bottom: 13px; left: 13px; }
.plate-rivet.br { bottom: 13px; right: 13px; }

.plate-mountains {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.4;
  pointer-events: none;
}

.plate-content { position: relative; z-index: 1; }

.plate-top-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 0.35rem;
}
.plate-top-rule::before, .plate-top-rule::after {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--burgundy);
}
.plate-battle-ground {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  color: var(--burgundy);
  letter-spacing: 0.2em;
  font-weight: 400;
}
.plate-auto {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 5rem);
  color: var(--navy);
  letter-spacing: 0.05em;
  line-height: 0.85;
  margin-bottom: 0.05em;
}
.plate-licensing {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.85rem, 4.5vw, 3.2rem);
  color: var(--navy);
  letter-spacing: 0.05em;
  line-height: 0.9;
  margin-bottom: 0.3em;
}
.plate-since {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(0.78rem, 1.3vw, 0.92rem);
  color: var(--navy);
  letter-spacing: 0.18em;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.plate-since::before, .plate-since::after {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--navy);
}

.hero-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--rule);
  position: relative;
}
@media (min-width: 600px) {
  .hero-info { gap: 2.5rem; }
}

.hero-info .item .lbl {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--burgundy);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
@media (min-width: 600px) {
  .hero-info .item .lbl { font-size: 0.75rem; letter-spacing: 0.2em; }
}
.hero-info .item .val {
  font-family: 'Fraunces', serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.35;
  letter-spacing: -0.01em;
}
@media (min-width: 600px) {
  .hero-info .item .val { font-size: 1.05rem; line-height: 1.4; }
}
.hero-info .item .val a { color: var(--navy); font-weight: 500; }
.hero-info .item .val a:hover { color: var(--burgundy); }

/* TRUST BAR */
.trust-bar {
  background: var(--navy);
  color: var(--cream);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--navy-deep);
  border-bottom: 1px solid var(--navy-deep);
}

.trust-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(197, 213, 226, 0.08), transparent 70%);
  pointer-events: none;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  padding: 0 1rem;
}
@media (min-width: 720px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
}

.trust-item {
  text-align: center;
  padding: 0 0.5rem;
  position: relative;
}
@media (min-width: 720px) {
  .trust-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 25%;
    bottom: 25%;
    width: 1px;
    background: rgba(197, 213, 226, 0.15);
  }
}

.trust-item .num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}
.trust-item .num .plus {
  font-family: 'Bebas Neue', sans-serif;
  font-style: normal;
  color: var(--mist);
  font-size: 0.7em;
  vertical-align: super;
  letter-spacing: 0;
}

.trust-item .lbl {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.82rem;
  color: var(--mist);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* SECTION HEAD */
.section-head {
  max-width: 720px;
  margin: 0 auto 5rem;
  text-align: center;
  position: relative;
}
.section-head .eyebrow { justify-content: center; margin-bottom: 1.75rem; }
.section-head .eyebrow::before,
.section-head .eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--burgundy);
}
.section-head h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  letter-spacing: -0.024em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.section-head h2 .ital { font-style: italic; color: var(--burgundy); font-weight: 400; }
.section-head p {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin: 0 auto;
  max-width: 48ch;
  line-height: 1.6;
}

/* SERVICES */
.services {
  background: var(--paper);
  position: relative;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 640px) { .service-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .service-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: var(--paper);
  padding: 2.5rem 2rem;
  transition: all 0.4s var(--ease-out-expo);
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 240px;
}
.service-card:hover { background: var(--cream); }
.service-card:hover .service-num {
  color: var(--burgundy);
  transform: translateY(-2px);
}
.service-card:hover h3 { color: var(--burgundy); }

.service-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--ridge-deep);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  transition: all 0.3s var(--ease);
  display: inline-block;
}

.service-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--navy);
  letter-spacing: -0.015em;
  margin-bottom: 0.75rem;
  line-height: 1.15;
  transition: color 0.3s var(--ease);
}
.service-card p {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.55;
  margin-bottom: 0;
  max-width: none;
}

/* PREPARE WIZARD */
.prepare {
  background: var(--paper);
  position: relative;
}

.wizard {
  max-width: 880px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.wizard-tabs {
  display: flex;
  border-bottom: 1px solid var(--rule);
  overflow-x: auto;
  scrollbar-width: none;
  background: var(--paper);
}
.wizard-tabs::-webkit-scrollbar { display: none; }

.wizard-tab {
  flex: 1;
  min-width: 130px;
  padding: 1.2rem 1.25rem;
  background: var(--paper);
  border: none;
  border-right: 1px solid var(--rule);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  position: relative;
  text-align: center;
}
.wizard-tab:last-child { border-right: 0; }
.wizard-tab:hover { background: var(--cream); color: var(--burgundy); }
.wizard-tab.active {
  background: var(--cream);
  color: var(--burgundy);
}
.wizard-tab.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--burgundy);
}

.wizard-panels { padding: 3rem 2.5rem; }
@media (max-width: 600px) { .wizard-panels { padding: 2.5rem 1.5rem; } }

.wizard-panel { display: none; animation: fadeIn 0.4s var(--ease); }
.wizard-panel.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.wizard-panel h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  letter-spacing: -0.018em;
  margin-bottom: 0.85rem;
  color: var(--navy);
}
.wizard-panel h3 .ital { font-style: italic; color: var(--burgundy); }

.wizard-time {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.85rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
}
.wizard-time svg { width: 14px; height: 14px; color: var(--burgundy); }

.wizard-list {
  list-style: none;
  counter-reset: prep;
  margin-bottom: 1.5rem;
}
.wizard-list li {
  display: flex;
  gap: 1.25rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--rule-soft);
  counter-increment: prep;
  align-items: flex-start;
}
.wizard-list li:last-child { border-bottom: none; padding-bottom: 0; }
.wizard-list li:first-child { padding-top: 0; }

.wizard-list li::before {
  content: counter(prep, decimal-leading-zero);
  flex-shrink: 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--burgundy);
  min-width: 36px;
  margin-top: 1px;
}

.wizard-list .item-title {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  color: var(--navy);
  font-size: 1.02rem;
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.wizard-list .item-sub {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.5;
}

.wizard-note {
  margin-top: 1.85rem;
  padding: 1.25rem 1.5rem;
  background: var(--paper);
  border-left: 3px solid var(--burgundy);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.wizard-note p {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 0.93rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}
.wizard-note strong { color: var(--burgundy); }

/* Wizard sub-heading — used inside multi-flow panels like Vessel */
.wizard-subhead {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-top: 1.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--rule-deep);
}
.wizard-subhead:first-of-type {
  margin-top: 0;
}
/* When wizard-subhead follows a wizard-time element, no top margin needed */
.wizard-time + .wizard-subhead {
  margin-top: 0;
}

/* "Also handle" footnote — small editorial line beneath the wizard */
.also-handle {
  max-width: 720px;
  margin: 2.5rem auto 0;
  padding: 0 1rem;
  text-align: center;
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 0.98rem;
  font-style: italic;
  color: var(--slate);
  line-height: 1.6;
}
.also-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-right: 0.45rem;
}

.wizard-disclaimer {
  max-width: 640px;
  margin: 1.5rem auto 0;
  padding: 1rem 1.5rem 0;
  border-top: 1px solid var(--rule);
  text-align: center;
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.55;
  opacity: 0.9;
}
.wizard-disclaimer .asterisk {
  color: var(--burgundy);
  font-weight: 600;
  margin-right: 0.15rem;
}

/* DOL DIVERSION */
.diversion {
  background: var(--cream);
  position: relative;
}

.diversion-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1040px;
  margin: 0 auto 3.5rem;
}
@media (min-width: 760px) {
  .diversion-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

.compare-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  border: 1px solid var(--rule);
  position: relative;
  transition: all 0.4s var(--ease);
}
.compare-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.compare-card.yes {
  background: var(--paper);
  border: 1px solid var(--navy);
}
.compare-card.yes::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 3px;
  background: var(--burgundy);
}

.compare-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 1rem 0.42rem 0.8rem;
  background: var(--warm-grey);
  border-radius: var(--radius-pill);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
  text-transform: uppercase;
}
.compare-card.yes .compare-tag {
  background: var(--navy);
  color: var(--cream);
}

.compare-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(1.35rem, 2vw, 1.55rem);
  letter-spacing: -0.018em;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.compare-list { list-style: none; }
.compare-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--rule-soft);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.compare-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.compare-list li:first-child { padding-top: 0; }

.list-mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.compare-card.yes .list-mark { background: var(--navy); color: var(--cream); }
.compare-card.no .list-mark { background: var(--warm-grey); color: var(--ridge-deep); }
.list-mark svg { width: 11px; height: 11px; stroke-width: 2.5; }

.dol-offices-wrap {
  max-width: 1040px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 2.5rem;
}

.dol-offices-wrap h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.22em;
  color: var(--burgundy);
  margin-bottom: 1.85rem;
  text-transform: uppercase;
}

.dol-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
@media (min-width: 700px) { .dol-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }

.dol-card { display: flex; align-items: flex-start; gap: 1.2rem; }

.dol-pin {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dol-pin svg { width: 18px; height: 18px; }

.dol-body .name {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  color: var(--navy);
  font-size: 1.05rem;
  display: block;
  margin-bottom: 0.35rem;
  letter-spacing: -0.012em;
}

.dol-body .addr {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 0.92rem;
  color: var(--slate);
  margin-bottom: 0.85rem;
  line-height: 1.5;
}

.dol-body a.directions {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  color: var(--burgundy);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: uppercase;
  transition: gap 0.25s var(--ease);
}
.dol-body a.directions:hover { gap: 0.6rem; color: var(--burgundy-deep); }

/* ABOUT */
.about {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 920px) {
  .about-grid { grid-template-columns: 1.1fr 1fr; gap: 5.5rem; }
}

.about-content h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: -0.026em;
  line-height: 1.05;
  margin-bottom: 2rem;
  max-width: 14ch;
}
.about-content h2 .ital { font-style: italic; color: var(--burgundy); font-weight: 400; }

.about-prose p {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 1.35rem;
  max-width: 52ch;
}
.about-prose p:last-child { margin-bottom: 0; }
.about-prose strong { font-weight: 600; color: var(--navy); }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.about-feature {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  transition: all 0.4s var(--ease-out-expo);
}
.about-feature:hover {
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.about-feature .ico {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-xs);
  background: var(--mist-soft);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
}
.about-feature .ico svg { width: 18px; height: 18px; }

.about-feature .title {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  color: var(--navy);
  font-size: 1.02rem;
  margin-bottom: 0.4rem;
  letter-spacing: -0.012em;
  line-height: 1.25;
}

.about-feature .sub {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.5;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why {
  background: var(--paper);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) {
  .why-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
@media (min-width: 1000px) {
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}

.why-card {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: all 0.4s var(--ease-out-expo);
}
.why-card:hover {
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
.why-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 1rem;
}
.why-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.18rem;
  color: var(--navy);
  letter-spacing: -0.015em;
  margin-bottom: 0.65rem;
  line-height: 1.25;
}
.why-card p {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.6;
}
.why-card p strong { color: var(--navy); font-weight: 600; }

.why-team {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 2rem;
}
@media (min-width: 768px) {
  .why-team { grid-template-columns: 1fr 1.3fr; gap: 3rem; padding: 2.5rem; }
}
.why-team-photo {
  aspect-ratio: 4 / 3;
  background: var(--mist-soft);
  border: 1px dashed var(--rule-deep);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  color: var(--slate);
}
.why-team-photo svg { width: 48px; height: 48px; opacity: 0.6; }
.why-team-photo span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.why-team-text h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  color: var(--navy);
  letter-spacing: -0.018em;
  margin-bottom: 0.85rem;
  line-height: 1.2;
}
.why-team-text p {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact {
  background: var(--paper);
}
.contact-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
}
@media (min-width: 640px) {
  .contact-card { padding: 3rem 2.75rem; }
}
.hidden-field { display: none; }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 560px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}
.form-row .form-field { margin-bottom: 1.25rem; }
.form-field label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.form-field label .optional {
  color: var(--slate);
  font-size: 0.75rem;
}
.form-field input,
.form-field textarea {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule-deep);
  border-radius: var(--radius);
  padding: 0.8rem 0.95rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  width: 100%;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26, 54, 102, 0.1);
}
.contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.85rem;
  background: var(--navy);
  color: var(--cream);
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.contact-submit:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.contact-note {
  margin-top: 1.1rem;
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.5;
}
.contact-success {
  text-align: center;
  padding: 1rem;
}
.contact-success svg {
  width: 54px;
  height: 54px;
  color: var(--good);
  margin-bottom: 1rem;
}
.contact-success h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.contact-success p {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.contact-success a, .contact .section-head a {
  color: var(--burgundy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================================
   GOOGLE REVIEWS
   ============================================================ */
.reviews {
  background: var(--cream);
}
.reviews-cta {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 3rem 2rem;
}
.reviews-cta-stars {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
}
.reviews-cta-stars svg {
  width: 28px;
  height: 28px;
  color: #E8A05C;
}
.reviews-cta h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--navy);
  letter-spacing: -0.018em;
  margin-bottom: 0.85rem;
  line-height: 1.25;
}
.reviews-cta p {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.6;
  max-width: 460px;
  margin: 0 auto 1.85rem;
}
.reviews-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.85rem;
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s var(--ease);
}
.reviews-btn:hover {
  background: var(--burgundy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.reviews-readlink {
  display: block;
  margin-top: 1.25rem;
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 0.95rem;
  color: var(--burgundy);
  text-decoration: underline;
  text-decoration-color: var(--rule-deep);
  text-underline-offset: 3px;
}
.reviews-readlink:hover { text-decoration-color: var(--burgundy); }

/* Call sheet email link */
.call-sheet-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1rem;
  padding: 0.85rem;
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 0.92rem;
  color: var(--navy);
  text-decoration: none;
  border-top: 1px solid var(--rule);
}
.call-sheet-email svg { width: 17px; height: 17px; color: var(--burgundy); }
.call-sheet-email:hover { color: var(--burgundy); }

/* FAQ */
.faq {
  background: var(--paper);
  position: relative;
}

/* ============================================================
   LIVE WAIT (inside Open-now status pill)
   ============================================================ */
.status-wait {
  font-weight: 500;
  white-space: nowrap;
  opacity: 0.9;
}
.status-wait:not([hidden])::before {
  content: "· ";
  opacity: 0.5;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--rule);
}
.faq-item:first-child { border-top: 1px solid var(--rule); }

.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 1.65rem 0.5rem 1.65rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
  cursor: pointer;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--navy);
  letter-spacing: -0.015em;
  line-height: 1.35;
  transition: color 0.25s var(--ease);
}
.faq-q:hover { color: var(--burgundy); }
.faq-q-glyph {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--rule-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s var(--ease);
}
.faq-q-glyph::before,
.faq-q-glyph::after {
  content: "";
  position: absolute;
  background: var(--navy);
  transition: transform 0.3s var(--ease);
}
.faq-q-glyph::before { width: 11px; height: 1.5px; }
.faq-q-glyph::after { width: 1.5px; height: 11px; }

.faq-item.open .faq-q-glyph {
  background: var(--burgundy);
  border-color: var(--burgundy);
}
.faq-item.open .faq-q-glyph::before,
.faq-item.open .faq-q-glyph::after { background: var(--cream); }
.faq-item.open .faq-q-glyph::after { transform: rotate(90deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out-expo);
}
.faq-item.open .faq-a { max-height: 600px; }

.faq-a-inner {
  padding: 0 0.5rem 1.85rem 0;
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 60ch;
}
.faq-a-inner p { margin-bottom: 0.85rem; }
.faq-a-inner p:last-child { margin-bottom: 0; }
.faq-a-inner a {
  color: var(--burgundy);
  text-decoration: underline;
  text-decoration-color: var(--rule-deep);
  text-underline-offset: 3px;
}
.faq-a-inner a:hover { text-decoration-color: var(--burgundy); }

/* VISIT */
.visit {
  padding: 0;
  background: var(--navy);
  color: var(--cream);
  position: relative;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  min-height: 560px;
}
@media (min-width: 920px) { .visit-grid { grid-template-columns: 1fr 1fr; } }

.visit-text {
  padding: 4.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 920px) { .visit-text { padding: 6.5rem; } }

.visit-text .eyebrow { color: var(--mist); }
.visit-text .eyebrow::before { background: var(--mist); }

.visit-text h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  letter-spacing: -0.024em;
  color: var(--cream);
  margin-bottom: 1.5rem;
  max-width: 14ch;
  line-height: 1.05;
}
.visit-text h2 .ital { font-style: italic; color: var(--mist); font-weight: 400; }

.visit-text p {
  font-family: 'Source Serif Pro', Georgia, serif;
  color: var(--mist);
  font-size: 1.05rem;
  max-width: 36ch;
  line-height: 1.6;
}

.visit-address-block {
  margin: 2.75rem 0;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(197, 213, 226, 0.18);
  border-bottom: 1px solid rgba(197, 213, 226, 0.18);
}
.visit-address-block .l1 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(1.55rem, 2.5vw, 1.85rem);
  color: var(--cream);
  letter-spacing: -0.018em;
  margin-bottom: 0.4rem;
}
.visit-address-block .l2 {
  font-family: 'Source Serif Pro', Georgia, serif;
  color: var(--mist);
  font-size: 1rem;
}

.visit-text .btn {
  align-self: flex-start;
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
}
.visit-text .btn:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--cream);
}

.visit-map {
  position: relative;
  min-height: 380px;
  background: var(--navy-deep);
}
.visit-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(25%) contrast(1.05);
}

/* FOOTER */
.footer {
  background: var(--navy-deep);
  color: var(--mist);
  padding: 5.5rem 0 2.75rem;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--burgundy) 50%, transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.7fr 1fr 1fr; gap: 4rem; }
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  margin-bottom: 1.5rem;
}
.footer-brand .brand-mark { width: 48px; height: 48px; }
.footer-brand .name {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--cream);
}

.footer-tagline {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 1rem;
  color: var(--mist);
  line-height: 1.6;
  max-width: 40ch;
  margin-bottom: 1.5rem;
}

.footer-since-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.4rem 1.1rem;
  background: rgba(197, 213, 226, 0.06);
  border: 1px solid rgba(197, 213, 226, 0.18);
  border-radius: var(--radius-pill);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--mist);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 0.95rem;
}
.footer-contact a {
  color: var(--cream);
  font-weight: 500;
  text-decoration: none;
  letter-spacing: -0.005em;
}
.footer-contact a:hover { color: var(--mist); }

.footer h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  color: var(--mist);
  margin-bottom: 1.35rem;
  text-transform: uppercase;
}

.footer ul { list-style: none; }
.footer li {
  padding: 0.4rem 0;
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 0.95rem;
}
.footer li a { color: var(--mist); text-decoration: none; }
.footer li a:hover { color: var(--cream); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(197, 213, 226, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 0.82rem;
  color: var(--slate-light);
}

/* REVEALS */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.r-1 { transition-delay: 0.1s; }
.r-2 { transition-delay: 0.22s; }
.r-3 { transition-delay: 0.34s; }
.r-4 { transition-delay: 0.46s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--burgundy);
  color: var(--cream);
  padding: 1rem 1.5rem;
  z-index: 200;
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--radius);
}
.skip-link:focus { left: 1rem; top: 1rem; }

::selection { background: var(--navy); color: var(--cream); }

/* ============================================================
   TWO WAYS TO RENEW — premium two-card layout
   ============================================================ */
.two-ways {
  background: var(--paper);
  position: relative;
}

.ways-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
  align-items: stretch;
}
@media (min-width: 820px) {
  .ways-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

.way-card {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
}
.way-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.way-card.highlight {
  background: var(--paper);
  border-color: var(--navy);
}
.way-card.highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 3px;
  background: var(--burgundy);
}

.way-badge {
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: var(--burgundy);
  color: var(--cream);
  padding: 0.3rem 0.95rem;
  border-radius: var(--radius-pill);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.way-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--mist-soft);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.way-card.highlight .way-icon {
  background: var(--navy);
  color: var(--cream);
}
.way-icon svg { width: 24px; height: 24px; }

.way-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.2vw, 1.75rem);
  letter-spacing: -0.018em;
  color: var(--navy);
  margin-bottom: 0.45rem;
}

.way-tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.08rem;
  color: var(--burgundy);
  margin-bottom: 1.85rem;
}

.way-points {
  list-style: none;
  margin-bottom: 2rem;
}

.way-points li {
  padding: 0.85rem 0 0.85rem 1.6rem;
  border-bottom: 1px solid var(--rule-soft);
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 0.97rem;
  color: var(--ink-soft);
  line-height: 1.55;
  position: relative;
}
.way-points li:last-child { border-bottom: 0; padding-bottom: 0; }
.way-points li:first-child { padding-top: 0; }

.way-points li:not(.way-emphasis)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.25rem;
  width: 8px;
  height: 8px;
  border: 2px solid var(--burgundy);
  border-radius: 50%;
}
.way-points li:first-child:not(.way-emphasis)::before { top: 0.45rem; }

.way-points li a {
  color: var(--burgundy);
  text-decoration: underline;
  text-decoration-color: var(--rule-deep);
  text-underline-offset: 3px;
}
.way-points li a:hover {
  text-decoration-color: var(--burgundy);
}

/* The "choose us as your subagent" emphasis point */
.way-points li.way-emphasis {
  background: var(--mist-pale);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  margin: 0.65rem 0;
  font-size: 0.95rem;
}
.way-card.highlight .way-points li.way-emphasis {
  background: var(--cream);
  border-color: var(--burgundy);
  border-left: 3px solid var(--burgundy);
}
.way-points li.way-emphasis strong {
  color: var(--burgundy);
  font-weight: 600;
}

.way-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.6rem;
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  align-self: flex-start;
  margin-top: auto;
  transition: all 0.25s var(--ease);
  cursor: pointer;
}
.way-cta:hover {
  background: var(--navy);
  color: var(--cream);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.way-cta.primary {
  background: var(--navy);
  color: var(--cream);
}
.way-cta.primary:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
}
.way-cta svg {
  transition: transform 0.25s var(--ease);
}
.way-cta:hover svg {
  transform: translateX(3px);
}

/* "How to do it" divider — used inside the online card */
.way-divider {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 1.75rem 0 1.25rem;
}
.way-divider::before,
.way-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.way-divider span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  white-space: nowrap;
}

/* ============================================================
   RENEW STEPS — inside the online card (compact)
   ============================================================ */
.renew-steps {
  list-style: none;
  margin-bottom: 1.75rem;
  padding: 0;
}

.renew-steps li {
  display: flex;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px dashed var(--rule);
  align-items: flex-start;
}
.renew-steps li:first-child { padding-top: 0; }
.renew-steps li:last-child:not(.renew-step-key) {
  border-bottom: 0;
  padding-bottom: 0;
}

/* The critical step is visually emphasized */
.renew-steps li.renew-step-key {
  background: var(--navy);
  border: 0;
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  margin: 0.65rem 0 0.25rem;
  box-shadow: 0 6px 18px rgba(26, 54, 102, 0.15);
}

.renew-step-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--burgundy);
  line-height: 1;
  min-width: 32px;
  margin-top: 0.1rem;
  letter-spacing: -0.01em;
}
.renew-steps li.renew-step-key .renew-step-num {
  color: var(--cream);
  font-size: 1.55rem;
}

.renew-step-body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.renew-step-key-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.28rem 0.78rem;
  background: var(--burgundy);
  color: var(--cream);
  border-radius: var(--radius-pill);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

.renew-step-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.35;
  letter-spacing: -0.005em;
}
.renew-step-title em {
  font-style: italic;
  color: var(--burgundy);
}
.renew-steps li.renew-step-key .renew-step-title {
  color: var(--cream);
  font-size: 1.05rem;
}
.renew-steps li.renew-step-key .renew-step-title em {
  color: var(--mist);
  font-style: italic;
}

.renew-step-sub {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.5;
}
.renew-step-sub strong { color: var(--navy); }
.renew-steps li.renew-step-key .renew-step-sub {
  color: var(--mist);
  font-size: 0.93rem;
}
.renew-steps li.renew-step-key .renew-step-sub strong {
  color: var(--cream);
}

/* ============================================================
   CALL SHEET — premium action sheet (iOS-style on mobile)
   ============================================================ */
.call-sheet {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.call-sheet.open {
  pointer-events: auto;
  opacity: 1;
}

.call-sheet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 26, 48, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.call-sheet-card {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  border-radius: 20px 20px 0 0;
  padding: 2.5rem 1.75rem 1.5rem;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.25);
  transform: translateY(100%);
  transition: transform 0.45s var(--ease-out-expo);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border-top: 3px solid var(--burgundy);
  padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
}
.call-sheet.open .call-sheet-card {
  transform: translateY(0);
}

/* Desktop: center, fade + scale */
@media (min-width: 720px) {
  .call-sheet-card {
    bottom: auto;
    top: 50%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%) scale(0.94);
    opacity: 0;
    border-radius: 14px;
    width: 90%;
    max-width: 440px;
    padding: 2.75rem 2.5rem 2rem;
    transition: transform 0.4s var(--ease-out-expo), opacity 0.3s var(--ease);
  }
  .call-sheet.open .call-sheet-card {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

.call-sheet-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--slate);
  border-radius: 50%;
  transition: all 0.2s var(--ease);
}
.call-sheet-close:hover {
  background: var(--rule-soft);
  color: var(--ink);
}
.call-sheet-close svg { width: 16px; height: 16px; }

.call-sheet-eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 1rem;
}

.call-sheet-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 9vw, 3.4rem);
  letter-spacing: 0.04em;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 1.1rem;
}

.call-sheet-hours {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.call-sheet-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
}

.call-sheet-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.05rem 1.5rem;
  border-radius: var(--radius);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  border: 1px solid;
  width: 100%;
}
.call-sheet-btn svg { width: 16px; height: 16px; }

.call-sheet-btn.primary {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.call-sheet-btn.primary:hover,
.call-sheet-btn.primary:active {
  background: var(--burgundy);
  border-color: var(--burgundy);
  transform: translateY(-1px);
}

.call-sheet-btn.secondary {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--navy);
}
.call-sheet-btn.secondary:hover,
.call-sheet-btn.secondary:active {
  background: var(--navy);
  color: var(--cream);
}
.call-sheet-btn.secondary.copied {
  background: var(--good) !important;
  color: var(--cream) !important;
  border-color: var(--good) !important;
}

.call-sheet-cancel {
  background: transparent;
  border: 0;
  color: var(--slate);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.95rem;
  cursor: pointer;
  width: 100%;
  transition: color 0.2s var(--ease);
}
.call-sheet-cancel:hover { color: var(--ink); }

body.sheet-open { overflow: hidden; }

/* ============================================================
   CALL CONFIRM — iOS-style confirmation alert
   ============================================================ */
.call-confirm {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.call-confirm.open {
  pointer-events: auto;
  opacity: 1;
}

.call-confirm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 26, 48, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}

.call-confirm-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  background: var(--paper);
  border-radius: 14px;
  width: calc(100% - 3rem);
  max-width: 300px;
  opacity: 0;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out-expo), opacity 0.25s var(--ease);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.call-confirm.open .call-confirm-card {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.call-confirm-body {
  padding: 1.75rem 1.5rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--rule);
}

.call-confirm-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 0.65rem;
}

.call-confirm-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.95rem;
  letter-spacing: 0.04em;
  color: var(--navy);
  line-height: 1;
}

.call-confirm-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.call-confirm-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.05rem 1rem;
  background: transparent;
  border: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s var(--ease);
  -webkit-tap-highlight-color: rgba(26, 54, 102, 0.1);
}

.call-confirm-btn.cancel {
  color: var(--slate);
  border-right: 1px solid var(--rule);
}
.call-confirm-btn.cancel:hover,
.call-confirm-btn.cancel:active { background: var(--rule-soft); }

.call-confirm-btn.primary {
  color: var(--navy);
  font-weight: 400;
}
.call-confirm-btn.primary:hover,
.call-confirm-btn.primary:active { background: var(--mist-pale); }

/* ============================================================
   HOW-TO VIDEOS — grid + cards
   ============================================================ */
.videos {
  background: var(--cream);
  position: relative;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .video-grid { grid-template-columns: 1fr 1fr; gap: 1.85rem; }
}
@media (min-width: 1000px) {
  .video-grid { grid-template-columns: repeat(3, 1fr); }
}

.video-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  display: flex;
  flex-direction: column;
}
.video-card:hover,
.video-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy);
  outline: none;
}
.video-card:focus-visible { box-shadow: 0 0 0 3px rgba(139, 45, 36, 0.4), var(--shadow-md); }

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy-deep);
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out-expo), filter 0.3s var(--ease);
}
.video-card:hover .video-thumb img,
.video-card:focus-visible .video-thumb img {
  transform: scale(1.04);
  filter: brightness(0.85);
}

.video-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 26, 48, 0.0) 50%, rgba(11, 26, 48, 0.55) 100%);
  pointer-events: none;
  z-index: 1;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 68px;
  height: 68px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: all 0.35s var(--ease-out-expo);
  color: var(--navy);
}
.video-play svg {
  width: 26px;
  height: 26px;
  margin-left: 3px; /* visual centering for play triangle */
}
.video-card:hover .video-play,
.video-card:focus-visible .video-play {
  background: var(--burgundy);
  color: var(--cream);
  transform: translate(-50%, -50%) scale(1.08);
}

.video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 2;
  padding: 4px 9px;
  background: rgba(11, 26, 48, 0.85);
  color: var(--cream);
  border-radius: var(--radius-xs);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.video-body {
  padding: 1.5rem 1.5rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.video-body h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: -0.015em;
  margin-bottom: 0.55rem;
  line-height: 1.25;
  transition: color 0.25s var(--ease);
}
.video-card:hover .video-body h3,
.video-card:focus-visible .video-body h3 { color: var(--burgundy); }

.video-body p {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   FEATURED SINGLE VIDEO (welcome video)
   ============================================================ */
.video-feature {
  max-width: 760px;
  margin: 0 auto;
}

.video-card-feature {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
}
.video-card-feature:hover,
.video-card-feature:focus-visible {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--navy);
  outline: none;
}
.video-card-feature:focus-visible {
  box-shadow: 0 0 0 3px rgba(139, 45, 36, 0.4), var(--shadow-lg);
}

.video-thumb-feature {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy);
}
.video-thumb-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}
.video-card-feature:hover .video-thumb-feature img,
.video-card-feature:focus-visible .video-thumb-feature img {
  transform: scale(1.04);
}
.video-thumb-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 26, 48, 0.35), transparent 55%);
  z-index: 1;
}

.video-play-feature {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(251, 249, 244, 0.95);
  color: var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s var(--ease);
}
.video-play-feature svg {
  width: 30px;
  height: 30px;
  margin-left: 4px;
}
.video-card-feature:hover .video-play-feature,
.video-card-feature:focus-visible .video-play-feature {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--cream);
}

.video-duration-feature {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 2;
  padding: 5px 11px;
  background: rgba(11, 26, 48, 0.85);
  color: var(--cream);
  border-radius: var(--radius-xs);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.video-body-feature {
  padding: 1.85rem 2rem 2rem;
  text-align: center;
}
.video-body-feature h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  color: var(--navy);
  letter-spacing: -0.018em;
  margin-bottom: 0.75rem;
  line-height: 1.2;
  transition: color 0.25s var(--ease);
}
.video-card-feature:hover .video-body-feature h3,
.video-card-feature:focus-visible .video-body-feature h3 { color: var(--burgundy); }

.video-body-feature p {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 520px;
}

.video-more-note {
  text-align: center;
  margin: 2.5rem auto 0;
  max-width: 640px;
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.6;
}
.video-more-tag {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-right: 0.5rem;
}

/* ============================================================
   VIDEO PLAYER MODAL
   ============================================================ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1050;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.video-modal.open {
  pointer-events: auto;
  opacity: 1;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 26, 48, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}

.video-modal-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.94);
  width: calc(100% - 2rem);
  max-width: 960px;
  opacity: 0;
  transition: transform 0.4s var(--ease-out-expo), opacity 0.3s var(--ease);
}
.video-modal.open .video-modal-card {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.video-modal-close {
  position: absolute;
  top: -42px;
  right: 0;
  background: transparent;
  border: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--cream);
  border-radius: 50%;
  transition: all 0.2s var(--ease);
}
.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
}
.video-modal-close svg { width: 20px; height: 20px; }
@media (max-width: 700px) {
  .video-modal-close { top: -38px; }
  .video-modal-close svg { width: 18px; height: 18px; }
}

.video-modal-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.video-modal-iframe {
  position: absolute;
  inset: 0;
}

.video-modal-iframe iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-modal-title {
  margin-top: 1.25rem;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--cream);
  text-align: center;
  letter-spacing: -0.01em;
  line-height: 1.35;
  padding: 0 1rem;
}
