/* ============================================
   WHITNEY ROOFING & GUTTERING
   Design System v4 — Agency Polished / Editorial
   Restrained. Confident. Expensive.
   ============================================ */

:root {
  --yellow:      #FFD303;
  --yellow-d:    #E6BE00;
  --yellow-soft: #FFF8D1;

  --ink:         #111111;
  --graphite:    #222222;
  --slate:       #555555;
  --mute:        #8A8A8A;

  --line:        #E8E4DC;
  --line-soft:   #F0ECE4;
  --paper:       #F5F1E8;
  --cream:       #F9F6EF;
  --bone:        #FBF9F3;
  --white:       #FFFFFF;

  --red: var(--yellow);

  --font-serif:   'Fraunces', 'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;
  --font-display: var(--font-serif);

  --step--1: clamp(0.84rem, 0.80rem + 0.18vw, 0.92rem);
  --step-0:  clamp(1.00rem, 0.96rem + 0.20vw, 1.08rem);
  --step-1:  clamp(1.15rem, 1.08rem + 0.34vw, 1.30rem);
  --step-2:  clamp(1.35rem, 1.22rem + 0.60vw, 1.60rem);
  --step-3:  clamp(1.65rem, 1.45rem + 1.00vw, 2.10rem);
  --step-4:  clamp(2.05rem, 1.75rem + 1.50vw, 2.75rem);
  --step-5:  clamp(2.50rem, 2.05rem + 2.25vw, 3.50rem);
  --step-6:  clamp(3.00rem, 2.35rem + 3.25vw, 4.50rem);
  --step-7:  clamp(3.75rem, 2.75rem + 5.00vw, 6.00rem);

  --container: 1280px;
  --container-wide: 1440px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 28px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --shadow-sm: 0 1px 2px rgba(17,17,17,0.04), 0 2px 4px rgba(17,17,17,0.03);
  --shadow:    0 4px 12px rgba(17,17,17,0.04), 0 12px 32px rgba(17,17,17,0.06);
  --shadow-lg: 0 12px 32px rgba(17,17,17,0.06), 0 24px 64px rgba(17,17,17,0.08);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: var(--step-0); line-height: 1.6;
  color: var(--ink); background: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--yellow); color: var(--ink); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--ink);
  text-wrap: balance;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
h1 { font-size: var(--step-7); letter-spacing: -0.04em; }
h2 { font-size: var(--step-6); letter-spacing: -0.035em; }
h3 { font-size: var(--step-4); line-height: 1.08; }
h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--step-1);
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--ink);
}
h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: inherit;
}
p { color: var(--slate); max-width: 62ch; line-height: 1.65; }

.lead {
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--graphite);
  max-width: 52ch;
  font-weight: 400;
}

.eyebrow, .sec-num {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
}
.eyebrow::before {
  content: ''; width: 24px; height: 1px;
  background: currentColor; display: inline-block;
}

.mono, .label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
}

.container {
  width: 100%; max-width: var(--container);
  margin: 0 auto; padding: 0 var(--gutter);
}
.container-wide { max-width: var(--container-wide); }
.section { padding: clamp(5rem, 10vw, 9rem) 0; position: relative; }
.section-tight { padding: clamp(3.5rem, 6vw, 5rem) 0; }

/* Announce */
.announce {
  background: var(--ink); color: rgba(255,255,255,0.85);
  font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 0.7rem var(--gutter); text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  flex-wrap: wrap;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.announce strong { color: var(--yellow); font-weight: 600; }
.announce a { color: var(--yellow); border-bottom: 1px solid rgba(255,211,3,0.3); padding-bottom: 1px; transition: border-color 0.2s; }
.announce a:hover { border-bottom-color: var(--yellow); }
.announce .dot {
  display: inline-block; width: 7px; height: 7px;
  background: var(--yellow); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,211,3,0.5); }
  50%     { box-shadow: 0 0 0 6px rgba(255,211,3,0); }
}
.emergency-bar { background: var(--ink); color: rgba(255,255,255,0.85); font-family: var(--font-mono); font-size: 0.72rem; padding: 0.7rem 1rem; text-align: center; }
.emergency-bar a { color: var(--yellow); }
.pulse-dot { display: inline-block; width: 7px; height: 7px; background: var(--yellow); border-radius: 50%; margin-right: 0.5rem; vertical-align: middle; animation: pulse 2s ease-in-out infinite; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 100%;
  padding: 0 1.5rem 0 0;
  display: flex; align-items: center; gap: 0.5rem;
}
.brand-mark {
  padding-left: 0; margin-left: 0;
  background: #FFD303;
  align-self: stretch;
  padding: 0 0.5rem 0 0;
}
.brand, .logo {
  display: inline-flex; align-items: center; flex-shrink: 0;
}
.brand-mark, .logo-mark {
  display: flex; align-items: center;
  padding: 0 0.75rem 0 0;
  flex-shrink: 0;
}
.brand-mark img, .logo-mark img {
  height: 181px; width: auto;
  object-fit: contain; display: block;
}
.brand-text, .logo-text {
  display: flex; flex-direction: column; line-height: 1.05;
  font-family: var(--font-serif); font-weight: 500;
  font-size: 1.05rem; letter-spacing: -0.02em; color: var(--ink);
}
.brand-text .sub, .logo-text span {
  font-family: var(--font-mono); font-weight: 400;
  font-size: 0.66rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--slate);
  margin-top: 4px;
}
/* CTA icon group — desktop: next to nav; mobile: right side of header */
.header-ctas {
  display: flex; align-items: center; gap: 0.5rem;
  flex-shrink: 0;
}
@media (min-width: 1025px) {
  .header-ctas { order: 10; margin-left: 0.75rem; }
}

.site-nav, .nav { display: flex; align-items: center; gap: 2rem; margin-left: auto; margin-right: auto; padding: 0; }
.site-nav a, .nav-link {
  font-size: 0.92rem; font-weight: 400;
  color: var(--ink); position: relative; padding: 6px 0;
  transition: opacity 0.2s;
}
.site-nav a:hover, .nav-link:hover { opacity: 0.6; }
.site-nav a.active::after, .nav-link.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--ink);
}

.header-cta, .header-actions { display: flex; align-items: center; gap: 1rem; }
.header-phone { font-family: var(--font-mono); font-size: 0.82rem; font-weight: 500; color: var(--ink); white-space: nowrap; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--font-sans); font-size: 0.92rem; font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap; cursor: pointer;
  transition: all 0.25s var(--ease);
}
.btn .arr {
  display: inline-flex; width: 28px; height: 28px;
  border-radius: 50%; background: rgba(0,0,0,0.08);
  align-items: center; justify-content: center;
  font-size: 0.85em;
  transition: transform 0.3s var(--ease);
  margin-right: -0.5rem;
}
.btn:hover .arr { transform: translateX(4px); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--graphite); box-shadow: var(--shadow); }
.btn-dark .arr { background: rgba(255,255,255,0.14); }
.btn-yellow, .btn-red { background: var(--yellow); color: var(--ink); }
.btn-yellow:hover, .btn-red:hover { background: var(--yellow-d); box-shadow: var(--shadow); }
.btn-white { background: var(--white); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-white:hover { box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-ghost .arr { background: rgba(0,0,0,0.06); }
.btn-ghost:hover .arr { background: rgba(255,255,255,0.14); }
.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.82rem; }
.btn-lg { padding: 1.1rem 2rem; font-size: 0.98rem; }

/* Hamburger / mobile nav */
/* Hamburger defined below near header CTAs */

.mobile-nav { position: fixed; inset: 0; z-index: 60; pointer-events: none; opacity: 0; transition: opacity 0.3s; }
.mobile-nav.open { pointer-events: auto; opacity: 1; }
.mobile-nav-backdrop { position: absolute; inset: 0; background: rgba(17,17,17,0.5); backdrop-filter: blur(8px); }
.mobile-nav-panel {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: min(400px, 90vw);
  background: var(--cream); color: var(--ink);
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  transform: translateX(100%); transition: transform 0.45s var(--ease);
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-panel a {
  color: var(--ink);
  font-family: var(--font-serif); font-weight: 400;
  font-size: 1.8rem; letter-spacing: -0.02em;
  padding: 0.25rem 0;
}
.mobile-nav-panel a:hover { color: var(--slate); }
.mobile-nav-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ink); color: var(--white);
  display: grid; place-items: center;
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(4rem, 9vw, 7rem);
  background: var(--ink); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
  display: block;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(17,17,17,0.32) 0%, rgba(17,17,17,0.48) 45%, rgba(17,17,17,0.58) 100%);
  pointer-events: none;
}
.hero-inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); position: relative; z-index: 2; }
.hero-top {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 2rem; margin-bottom: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap; gap: 1rem;
}
.hero .eyebrow, .hero .label { color: rgba(255,255,255,0.7); }
.hero .eyebrow::before { background: rgba(255,255,255,0.5); }
.hero h1 {
  font-size: clamp(3.2rem, 8.5vw, 8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 400;
  max-width: 16ch;
  color: var(--white);
}
.hero .lead { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }
.hero h1 em, .hero h2 em, .hero h3 em { color: #FFD303 !important; }
.dark-section h1 em, .dark-section h2 em, .dark-section h3 em { color: #FFD303 !important; }
.hero .lead { color: rgba(255,255,255,0.92); }
.hero .hero-stats { border-top-color: rgba(255,255,255,0.15); }
.hero .hero-stat .num { color: var(--white); }
.hero .hero-stat .lbl { color: rgba(255,255,255,0.75); }
.hero .btn-ghost { border-color: rgba(255,255,255,0.40); color: var(--white); }
.hero .btn-ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.hero h1 .accent { position: relative; display: inline-block; white-space: nowrap; }
.hero h1 .accent::after {
  content: ''; position: absolute;
  left: -0.04em; right: -0.04em; bottom: 0.08em;
  height: 0.32em; background: var(--yellow);
  z-index: -1; border-radius: 2px;
}
.hero-bottom {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  align-items: end;
}
.hero-meta { display: grid; gap: 1.25rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.hero-stat .num {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(2rem, 3vw, 2.75rem); line-height: 1;
  letter-spacing: -0.03em; color: var(--ink);
}
.hero-stat .lbl { margin-top: 0.5rem; }

/* Hero image */
.hero-image {
  margin-top: clamp(3rem, 6vw, 5rem);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  position: relative;
  box-shadow: var(--shadow-lg);
  background: #111;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.hero-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,0) 60%, rgba(17,17,17,0.25) 100%);
  pointer-events: none;
}
.hero-image .label-tag {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  font-family: var(--font-mono); font-size: 0.7rem;
  font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink);
  background: var(--yellow); padding: 0.5rem 0.85rem;
  border-radius: 999px;
}

/* Marquee */
.marquee {
  margin-top: clamp(4rem, 8vw, 6rem);
  border-top: 1px solid rgba(255,255,255,0.12); border-bottom: none;
  padding: 1.5rem 0; overflow: hidden; white-space: nowrap;
  background: transparent; position: relative; z-index: 2;
}
.marquee-track {
  display: inline-flex; gap: 3rem; align-items: center;
  animation: marquee 50s linear infinite;
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-style: italic;
  letter-spacing: -0.02em; color: rgba(255,255,255,0.75);
}
.marquee-track .mdot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--yellow); display: inline-block;
  flex-shrink: 0;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Section head */
.sec-head {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.sec-head > div { display: flex; flex-direction: column; gap: 1.25rem; }
.sec-head h2 { max-width: 14ch; }
@media (max-width: 800px) { .sec-head { grid-template-columns: 1fr; gap: 1.5rem; } }

/* Dark */
.dark-section {
  background: var(--ink); color: rgba(255,255,255,0.85);
  position: relative; overflow: hidden;
}
.dark-section[style*="background-image"]::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(to bottom, rgba(20,20,20,0.88) 0%, rgba(20,20,20,0.72) 50%, rgba(20,20,20,0.92) 100%);
}
.dark-section[style*="background-image"] > .container { position: relative; z-index: 1; }
.dark-section h1, .dark-section h2, .dark-section h3, .dark-section h4 { color: var(--white); }
.dark-section p { color: rgba(255,255,255,0.68); }
.dark-section .sec-num, .dark-section .eyebrow, .dark-section .label { color: rgba(255,255,255,0.55); }
.dark-section .checklist { border-top-color: rgba(255,255,255,0.12); }
.dark-section .checklist li { color: rgba(255,255,255,0.85); border-bottom-color: rgba(255,255,255,0.12); }

/* Services */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 900px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services { grid-template-columns: 1fr; } }
.service {
  background: var(--white);
  padding: clamp(1.75rem, 2.5vw, 2.25rem);
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  position: relative; min-height: 280px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
  border: 1px solid var(--line);
  overflow: hidden;
}
a.service { color: inherit; text-decoration: none; }
a.service:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.service .svc-num {
  font-family: var(--font-mono); font-size: 0.7rem;
  font-weight: 500; letter-spacing: 0.14em;
  color: var(--mute); margin-bottom: auto; text-transform: uppercase;
}
.service h4 {
  margin-top: 1.5rem; margin-bottom: 0.6rem;
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  letter-spacing: -0.02em; line-height: 1.15;
}
.service p { font-size: 0.94rem; line-height: 1.55; color: var(--slate); }
.service.feature { grid-column: auto; background: var(--white); color: var(--ink); }
.service.feature h4 { color: var(--ink); }
.service.feature p { color: var(--slate); }
.service .svc-arrow {
  position: absolute; top: 1.75rem; right: 1.75rem;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--paper); color: var(--ink);
  display: grid; place-items: center;
  opacity: 0; transform: translateY(-6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
a.service:hover .svc-arrow { opacity: 1; transform: translateY(0); }

.dark-section .service { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85); }
.dark-section .service h4 { color: var(--white); }
.dark-section .service p { color: rgba(255,255,255,0.65); }
.dark-section a.service:hover { background: var(--yellow); color: var(--ink); border-color: transparent; }
.dark-section a.service:hover h4 { color: var(--ink); }
.dark-section a.service:hover p { color: var(--graphite); }
.dark-section a.service:hover .svc-num { color: var(--ink); }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

.feature-image {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #2a2a2a 0%, #111 100%);
  aspect-ratio: 4/5; position: relative;
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.feature-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.feature-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,0) 55%, rgba(17,17,17,0.4) 100%);
  pointer-events: none;
}
.feature-image .label-tag {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  font-family: var(--font-mono); font-size: 0.7rem;
  font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink);
  background: var(--yellow); padding: 0.5rem 0.85rem;
  border-radius: 999px;
}
.feature-image .label { display: none; }

.checklist { display: grid; gap: 0; margin-top: 2rem; border-top: 1px solid var(--line); }
.checklist li {
  display: flex; align-items: center; gap: 1rem;
  font-size: 1rem; color: var(--ink);
  padding: 1.1rem 0; border-bottom: 1px solid var(--line);
  list-style: none;
}
.checklist li::before {
  content: ''; flex-shrink: 0; width: 22px; height: 22px;
  background: var(--yellow); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}

/* Locations */
.locations { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 900px) { .locations { grid-template-columns: 1fr; } }
.loc-card {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: clamp(2rem, 3vw, 2.5rem);
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  position: relative; min-height: 380px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
  overflow: hidden;
  background-size: cover; background-position: center bottom;
}
.loc-card::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(to bottom, rgba(20,20,20,0.82) 0%, rgba(20,20,20,0.55) 50%, rgba(20,20,20,0.75) 100%);
  transition: background 0.4s var(--ease);
}
.loc-card:hover::before { background: linear-gradient(to bottom, rgba(20,20,20,0.72) 0%, rgba(20,20,20,0.45) 50%, rgba(20,20,20,0.65) 100%); }
.loc-card > * { position: relative; z-index: 1; }
.loc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.loc-card .loc-state {
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.6);
}
.loc-card .loc-name {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(2.25rem, 4vw, 3rem); line-height: 1.02;
  letter-spacing: -0.035em; margin-top: 0.75rem; color: var(--white);
}
.loc-card .loc-name em { font-style: italic; color: var(--yellow); }
.loc-card .loc-since { font-family: var(--font-mono); font-size: 0.72rem; color: rgba(255,255,255,0.55); margin-top: 0.75rem; }
.loc-card p { margin-top: 1rem; font-size: 0.95rem; line-height: 1.55; color: rgba(255,255,255,0.7); }
.loc-card .loc-foot {
  margin-top: auto; padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.loc-card .loc-phone { font-family: var(--font-mono); font-size: 0.82rem; font-weight: 500; color: var(--white); }
.loc-card .loc-cta {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--yellow); color: var(--ink);
  display: grid; place-items: center;
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s;
}
.loc-card:hover .loc-cta { transform: rotate(-45deg); background: var(--white); color: var(--ink); }
.loc-card .new-badge {
  position: absolute; top: 1.75rem; right: 1.75rem;
  background: var(--yellow); color: var(--ink);
  font-family: var(--font-mono); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.35rem 0.7rem; border-radius: 100px;
}

/* Testimonials */
.testimonials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
@media (max-width: 800px) { .testimonials { grid-template-columns: 1fr; } }
.tcard {
  background: var(--white);
  padding: clamp(2rem, 3vw, 2.5rem);
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 1.5rem;
  border: 1px solid var(--line);
}
.tcard .stars { color: var(--ink); font-size: 1rem; letter-spacing: 0.1em; }
.tcard blockquote {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(1.2rem, 2vw, 1.55rem); line-height: 1.35;
  letter-spacing: -0.02em; color: var(--ink);
}
.tcard .who { font-family: var(--font-mono); font-size: 0.78rem; color: var(--slate); letter-spacing: 0.08em; }
.tcard .who strong { color: var(--ink); font-weight: 500; }

/* Process */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 800px) { .process { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .process { grid-template-columns: 1fr; } }
.step {
  background: var(--white);
  padding: clamp(1.75rem, 2.5vw, 2.25rem);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.step .num {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(2.5rem, 4vw, 3.25rem); color: var(--ink);
  line-height: 1; letter-spacing: -0.04em;
  font-style: italic;
}
.step .num::after {
  content: ''; display: block;
  width: 32px; height: 2px; background: var(--yellow);
  margin-top: 1rem;
}
.step h4 { margin: 1.5rem 0 0.5rem; }
.step p { font-size: 0.94rem; }

/* FAQ */
.faq-wrap, .faq-group { max-width: 900px; margin: 0 auto; }
.faq-group + .faq-group { margin-top: 3rem; }
.faq-group-title {
  font-family: var(--font-mono); font-weight: 500;
  font-size: 0.74rem; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--slate);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.faq-group-title::before { content: ''; width: 24px; height: 1px; background: currentColor; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center; gap: 2rem;
  padding: 1.5rem 0; cursor: pointer;
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  letter-spacing: -0.02em; color: var(--ink);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--slate); }
.faq-toggle {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--paper); color: var(--ink);
  display: grid; place-items: center; font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.2s;
}
.faq-item.open .faq-toggle { background: var(--yellow); transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s var(--ease); }
.faq-answer-inner { overflow: hidden; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer-inner > div { padding-bottom: 1.5rem; }
.faq-answer-inner > div { color: var(--slate); font-size: 1rem; line-height: 1.65; max-width: 70ch; }

/* CTA band */
.cta-band {
  background: var(--ink); color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 5rem);
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; align-items: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute;
  top: -40%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,211,3,0.15) 0%, transparent 60%);
  pointer-events: none;
}
@media (max-width: 800px) { .cta-band { grid-template-columns: 1fr; } }
.cta-band h2 { color: var(--white); max-width: 16ch; }
.cta-band p { color: rgba(255,255,255,0.7); }
.cta-band .phone-jumbo {
  font-family: var(--font-serif); font-weight: 400; font-style: italic;
  font-size: clamp(2rem, 4vw, 2.75rem); letter-spacing: -0.03em;
  color: var(--yellow); display: block; margin-bottom: 0.5rem;
}
.cta-band .phone-meta {
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 500;
  color: rgba(255,255,255,0.55); letter-spacing: 0.12em; text-transform: uppercase;
}
.cta-band .sec-num { color: rgba(255,255,255,0.55); }
.cta-band .btn-ghost {
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
}
.cta-band .btn-ghost:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.cta-band .btn-ghost .arr { background: rgba(255,255,255,0.14); }
.cta-band .btn-ghost:hover .arr { background: rgba(0,0,0,0.06); }
.phone-big { font-family: var(--font-serif); font-weight: 400; font-style: italic; color: var(--ink); display: inline-block; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(2rem, 5vw, 4rem); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info ul { border-top: 1px solid var(--line); }
.contact-info ul li {
  display: flex; gap: 1.5rem; padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-info .ci-label {
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--slate); width: 80px; flex-shrink: 0; padding-top: 6px;
}
.contact-info .ci-val {
  font-family: var(--font-serif); font-weight: 400;
  font-size: 1.15rem; color: var(--ink); letter-spacing: -0.015em;
  line-height: 1.35;
}
.contact-info .ci-val a { color: var(--ink); }

.form { background: var(--white); border-radius: var(--radius); padding: clamp(1.75rem, 3vw, 2.5rem); border: 1px solid var(--line); }
.form-row { display: grid; gap: 1rem; }
.form-row.two { grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .form-row.two { grid-template-columns: 1fr; } }
.form-row + .form-row { margin-top: 1rem; }
.field { display: flex; flex-direction: column; }
.field label {
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--slate); margin-bottom: 0.5rem;
}
.field input, .field select, .field textarea {
  padding: 0.9rem 1rem; border: 1px solid var(--line);
  border-radius: 10px; background: var(--bone);
  font-family: var(--font-sans); font-size: 0.95rem; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--ink); background: var(--white); }
.field textarea { resize: vertical; min-height: 120px; }
.form-status { margin-top: 1rem; font-size: 0.93rem; font-weight: 500; min-height: 1.4em; }
.form-status.success { color: #1a7a3c; }
.form-status.error   { color: #b91c1c; }
.hp { display: none !important; }

/* Footer */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.85); padding: clamp(4rem, 7vw, 6rem) 0 1.75rem; }
.footer-grid, .footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 800px) { .footer-grid, .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 500px) { .footer-grid, .footer-top { grid-template-columns: 1fr; } }
.footer-brand p { margin-top: 1.5rem; color: rgba(255,255,255,0.65); max-width: 34ch; font-size: 0.95rem; line-height: 1.55; }
.site-footer .brand-mark {
  background: #FFD303;
  display: inline-flex;
  padding: 0.35rem 0.6rem;
  border-radius: 4px;
  align-self: flex-start;
}
.site-footer .brand-mark img {
  height: 56px;
  max-height: 56px;
  width: auto;
  max-width: 220px;
}
@media (max-width: 600px) {
  .site-footer .brand-mark img { height: 48px; max-height: 48px; }
}
.footer-col h4, .footer-col h5 {
  font-family: var(--font-mono); font-weight: 500;
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.5); margin-bottom: 1.5rem;
}
.footer-col ul { display: grid; gap: 0.85rem; }
.footer-col a { color: rgba(255,255,255,0.8); font-size: 0.95rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--yellow); }
.footer-col address { font-style: normal; color: rgba(255,255,255,0.75); font-size: 0.93rem; line-height: 1.75; }
.footer-phone { color: var(--white) !important; font-family: var(--font-mono); font-weight: 500; }
.footer-license {
  font-family: var(--font-mono); font-size: 0.7rem;
  color: rgba(255,255,255,0.45); letter-spacing: 0.08em;
}
.footer-bottom {
  padding-top: 1.75rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  font-family: var(--font-mono); font-size: 0.72rem;
  color: rgba(255,255,255,0.5); letter-spacing: 0.08em;
}
.footer-legal { display: flex; gap: 1.5rem; }

/* Float call — hidden, replaced by header CTA */
.float-call { display: none !important; }

/* Header icon CTAs */
.header-call, .header-cal {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: var(--ink); color: var(--white);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.header-call:hover, .header-cal:hover { background: var(--graphite); transform: scale(1.08); }
.header-call svg, .header-cal svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Hamburger */
.hamburger {
  display: none;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #FFD303; color: var(--ink);
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(17,17,17,0.18);
  transition: background 0.2s, transform 0.2s;
}
.hamburger:hover { background: #e6e64d; transform: scale(1.06); }
.hamburger span { display: none; }
.hamburger::before {
  content: '';
  width: 22px; height: 18px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 18'%3E%3Crect x='0' y='0' width='22' height='2.5' rx='1.25' fill='white'/%3E%3Crect x='0' y='7.75' width='22' height='2.5' rx='1.25' fill='white'/%3E%3Crect x='0' y='15.5' width='22' height='2.5' rx='1.25' fill='white'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 18'%3E%3Crect x='0' y='0' width='22' height='2.5' rx='1.25' fill='white'/%3E%3Crect x='0' y='7.75' width='22' height='2.5' rx='1.25' fill='white'/%3E%3Crect x='0' y='15.5' width='22' height='2.5' rx='1.25' fill='white'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================ */
@media (max-width: 1024px) {
  body { padding-bottom: 56px; }
  /* Hide desktop-only elements */
  .main-nav,
  .site-nav,
  .nav,
  .top-bar,
  .header-cta,
  .header-actions { display: none !important; }

  /* Announce bar: compact single line */
  .announce {
    font-size: 0.62rem;
    padding: 0.5rem 0.75rem;
    gap: 0.35rem;
    letter-spacing: 0.06em;
  }
  .announce .tagline { display: none; }

  /* ---- HEADER: sticky bar, logo left / icons right ---- */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 40;
  }
  .header-inner {
    display: flex;
    align-items: center;
    padding: 0 1rem 0 0;
    min-height: auto;
    height: auto;
    gap: 0;
  }

  /* Logo: left-aligned, flush to edge */
  .brand {
    flex: 0 1 auto;
    min-width: 0;
    margin-right: auto;
  }
  .brand-mark,
  .logo-mark { padding-right: 0; }
  .brand-mark img,
  .logo-mark img {
    height: 148px;
    width: auto;
    max-width: 62vw;
    object-fit: contain;
    object-position: left center;
  }

  /* CTA icons: pinned to the right side of header */
  .header-ctas {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    flex-shrink: 0;
    margin-left: auto;
  }
  .header-call,
  .header-cal {
    width: 60px;
    height: 60px;
  }
  .header-call svg,
  .header-cal svg { width: 24px; height: 24px; }

  /* ---- HAMBURGER: sticky bottom bar ---- */
  .hamburger {
    display: inline-flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    top: auto;
    transform: none;
    z-index: 50;
    width: 100%;
    height: 56px;
    border-radius: 0;
    box-shadow: 0 -2px 12px rgba(17,17,17,0.2);
    gap: 8px;
    flex-direction: row;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .hamburger::after {
    content: 'Menu';
    color: var(--ink);
  }
  .hamburger:hover {
    background: #e6e64d;
    transform: none;
  }
  .hamburger span { width: 20px; height: 2px; }

  /* ---- HERO: single-column on tablet ---- */
  .hero h1 {
    font-size: clamp(3.2rem, 8.5vw, 5.5rem);
    max-width: none;
  }
  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* ---- SECTIONS: collapse multi-column grids ---- */
  .sec-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .cta-band { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid,
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ============================================
   RESPONSIVE — PHONE (≤ 600px)
   ============================================ */
@media (max-width: 600px) {
  /* Announce bar: minimal */
  .announce {
    font-size: 0.58rem;
    padding: 0.4rem 0.5rem;
    gap: 0.2rem;
    letter-spacing: 0.04em;
  }
  .announce .dot { width: 5px; height: 5px; }

  /* Header: more compact */
  .header-inner {
    padding: 0 0.75rem 0 0;
    height: auto;
  }
  .brand-mark img,
  .logo-mark img {
    height: 125px;
    max-width: 60vw;
  }
  .header-ctas { gap: 0.4rem; }
  .header-call,
  .header-cal { width: 54px; height: 54px; }
  .header-call svg,
  .header-cal svg { width: 21px; height: 21px; }

  /* Hamburger: same sticky bar on small mobile */
  .hamburger {
    height: 50px;
    font-size: 0.8rem;
  }
  .hamburger span { width: 18px; height: 1.8px; }

  /* Hero: smaller text, single column */
  .hero {
    padding: clamp(1.5rem, 3vw, 2rem) 0 clamp(3rem, 6vw, 5rem);
  }
  .hero h1 {
    font-size: clamp(2.8rem, 8vw, 4rem);
  }
  .hero-bottom { gap: 1.5rem; }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .hero-stat .num {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Lead text: legible on small screens */
  .lead { font-size: var(--step-1); }
  .dark-section h2 { font-size: clamp(2.2rem, 6vw, 3.2rem); }

  /* Sections: less vertical padding */
  .section { padding: clamp(3rem, 7vw, 5rem) 0; }

  /* All card grids: single column */
  .services { grid-template-columns: 1fr; }
  .locations { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .footer-grid,
  .footer-top { grid-template-columns: 1fr; }

  /* Location cards: reduce min-height */
  .loc-card { min-height: auto; }

  /* Service cards: reduce min-height */
  .service { min-height: auto; }

  /* Marquee: smaller text */
  .marquee-track {
    font-size: clamp(1rem, 1.5vw, 1.35rem);
    gap: 2rem;
  }
}

/* ============================================
   TOP UTILITY BAR
   ============================================ */
.top-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.top-bar-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0.55rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
}
.top-bar a {
  color: var(--slate);
  transition: color 0.2s;
  font-weight: 500;
}
.top-bar a:hover { color: var(--ink); }
.top-bar .btn { padding: 0.4rem 1rem; font-size: 0.68rem; letter-spacing: 0.12em; }

/* ============================================
   MAIN NAV — DROPDOWNS
   ============================================ */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--ink);
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
  background: var(--cream);
}
.nav-dropdown-toggle .chevron {
  width: 14px; height: 14px;
  stroke: currentColor; stroke-width: 2;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}
.nav-dropdown.open .nav-dropdown-toggle .chevron {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 250px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  z-index: 50;
}
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink);
  transition: background 0.15s, padding-left 0.2s;
}
.nav-dropdown-menu a:hover {
  background: var(--cream);
  padding-left: 1.5rem;
}

/* ============================================
   MOBILE NAV — ACCORDION DROPDOWNS
   ============================================ */
.mobile-nav-section { padding: 0; }
.mobile-nav-section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  cursor: pointer;
}
.mobile-nav-section-title a { color: inherit; text-decoration: none; }
.nav-dropdown-toggle { text-decoration: none; }
.mobile-nav-section-title .chevron {
  width: 18px; height: 18px;
  stroke: var(--slate); stroke-width: 2;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.3s var(--ease);
}
.mobile-nav-section.open .mobile-nav-section-title .chevron {
  transform: rotate(180deg);
}
.mobile-nav-section-links {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}
.mobile-nav-section.open .mobile-nav-section-links {
  grid-template-rows: 1fr;
}
.mobile-nav-section-links-inner {
  overflow: hidden;
}
.mobile-nav-section-links a {
  display: block;
  padding: 0.45rem 0 0.45rem 1.25rem;
  font-family: var(--font-sans) !important;
  font-size: 1rem !important;
  color: var(--slate) !important;
  border-left: 2px solid var(--line);
  transition: color 0.2s, border-color 0.2s;
}
.mobile-nav-section-links a:hover {
  color: var(--ink) !important;
  border-left-color: var(--yellow);
}

/* Top bar — hidden (merged into main nav) */
.top-bar { display: none; }

/* ============================================
   LOCATION SELECTION MODAL
   ============================================ */
.location-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gutter);
}
.location-modal[hidden] { display: none; }

.location-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.location-modal-panel {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 24px 80px rgba(17, 17, 17, 0.18);
  animation: modal-in 0.28s var(--ease) both;
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(14px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.location-modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--slate);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.location-modal-close:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.location-modal-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  color: var(--mute);
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.location-modal-title {
  font-family: var(--font-serif);
  font-size: var(--step-3);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 1.75rem;
}

.location-modal-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.location-modal-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bone);
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: border-color 0.2s, background 0.2s, transform 0.18s var(--ease);
}
.location-modal-option:hover {
  border-color: var(--yellow);
  background: var(--yellow-soft);
  transform: translateX(4px);
}

.location-modal-option-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.location-modal-option-name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.975rem;
  color: var(--ink);
  line-height: 1.3;
}

.location-modal-option-cities {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--slate);
  line-height: 1.4;
}

.location-modal-option-arr {
  font-size: 1.2rem;
  color: var(--mute);
  flex-shrink: 0;
  transition: transform 0.2s var(--ease), color 0.2s;
}
.location-modal-option:hover .location-modal-option-arr {
  transform: translateX(4px);
  color: var(--ink);
}

/* Utils */
.center { text-align: center; }
.divider { height: 1px; background: var(--line); margin: 4rem 0; }
