/* ============================================================
   STATION LAUNDROMAT — Main Stylesheet
   Shared between English (/) and Spanish (/es/) versions.
   ============================================================ */

:root {
  --cream: #FAF6EE;
  --cream-deep: #F2EBDD;
  --navy: #163A5F;
  --navy-deep: #0E2843;
  --blue: #2E6FA3;
  --blue-soft: #D6E5F0;
  --copper: #B8804A;
  --copper-soft: #E8D5BD;
  --ink: #1A2332;
  --ink-soft: #5A6573;
  --line: rgba(22,58,95,0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.display { font-family: 'Fraunces', Georgia, serif; font-weight: 500; letter-spacing: -0.02em; }
.display-italic { font-family: 'Fraunces', Georgia, serif; font-style: italic; font-weight: 500; }
.mono { font-family: 'Geist Mono', ui-monospace, monospace; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) { .container { padding: 0 20px; } }

/* ========== NAV ========== */
nav.topbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px; max-width: 1280px; margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--navy); }
.nav-logo img { height: 44px; width: auto; }

.nav-links { display: flex; gap: 28px; align-items: center; flex: 1 1 auto; min-width: 0; flex-wrap: wrap; justify-content: flex-end; row-gap: 12px; }
.nav-links a:not(.nav-cta):not(.lang-link):not(.nav-order) {
  color: var(--ink); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s;
}
.nav-links a:not(.nav-cta):not(.lang-link):not(.nav-order):hover { color: var(--blue); }

.nav-cta {
  background: var(--navy); color: var(--cream) !important;
  padding: 11px 22px; border-radius: 999px; font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; transition: all 0.25s; white-space: nowrap;
}
.nav-cta:hover { background: var(--blue); transform: translateY(-1px); }

/* Secondary "Order Online" pill — sits immediately left of the Call CTA, visible at all widths */
.nav-order {
  border: 1.5px solid var(--navy);
  color: var(--navy);
  background: transparent;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
}
.nav-order:hover { background: var(--navy); color: var(--cream); }

/* Language toggle */
.lang-toggle {
  display: inline-flex; align-items: center;
  background: var(--cream-deep); border: 1px solid var(--line);
  border-radius: 999px; padding: 4px;
  font-family: 'Geist Mono', monospace;
}
.lang-toggle a {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  padding: 6px 12px; border-radius: 999px;
  color: var(--ink-soft); text-decoration: none;
  transition: all 0.2s;
}
.lang-toggle a.active { background: var(--navy); color: var(--cream); }
.lang-toggle a:not(.active):hover { color: var(--navy); }

.open-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--ink-soft); padding: 6px 12px;
  background: var(--cream-deep); border-radius: 999px;
}
.open-pill .dot {
  width: 7px; height: 7px; border-radius: 50%; background: #2E8B57;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(46,139,87,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(46,139,87,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,139,87,0); }
}

@media (max-width: 980px) {
  .nav-inner { padding: 14px 20px; flex-wrap: wrap; row-gap: 10px; }
  /* Let the nav flow onto a second row instead of clipping the Call pill at narrow widths. */
  .nav-links { width: 100%; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
  .nav-links a:not(.nav-cta):not(.lang-link):not(.nav-order) { display: none; }
  .nav-links .nav-dropdown { display: none; }
  .open-pill { display: none; }
}

/* ========== HERO ========== */
.hero { position: relative; padding: 80px 0 100px; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 60px; align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 50px 0 60px; }
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--copper); margin-bottom: 28px;
}
.hero-eyebrow .line { width: 32px; height: 1px; background: var(--copper); }
.hero h1 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: clamp(44px, 6.5vw, 86px);
  line-height: 0.98; letter-spacing: -0.035em;
  color: var(--navy); margin-bottom: 28px;
}
.hero h1 em { font-style: italic; font-weight: 400; color: var(--blue); }
.hero-sub {
  font-size: 19px; color: var(--ink-soft); max-width: 540px;
  margin-bottom: 40px; line-height: 1.5;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px; border-radius: 999px;
  font-weight: 600; font-size: 15px;
  text-decoration: none; transition: all 0.25s;
  border: none; cursor: pointer;
}
.btn-primary { background: var(--navy); color: var(--cream); }
.btn-primary:hover { background: var(--blue); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(22,58,95,0.2); }
.btn-secondary { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--cream); }
.btn svg { width: 16px; height: 16px; }

/* Hero card */
.hero-visual { position: relative; aspect-ratio: 1/1.1; display: flex; align-items: center; justify-content: center; }
.hero-card {
  background: var(--navy);
  border-radius: 24px; padding: 48px 40px;
  width: 100%; height: 100%; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  color: var(--cream);
}
.hero-card::before {
  content: ''; position: absolute; top: -20%; right: -20%;
  width: 70%; height: 70%;
  background: radial-gradient(circle, rgba(46,111,163,0.4), transparent 70%);
  border-radius: 50%;
}
.hero-card::after {
  content: ''; position: absolute; bottom: -30%; left: -10%;
  width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(184,128,74,0.18), transparent 70%);
  border-radius: 50%;
}
.hero-card-content { position: relative; z-index: 2; }
.hc-eyebrow { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.65; margin-bottom: 16px; }
.hc-quote { font-family: 'Fraunces', serif; font-style: italic; font-size: clamp(22px, 2.2vw, 30px); line-height: 1.25; font-weight: 400; margin-bottom: 22px; }
.hc-attr { font-size: 14px; opacity: 0.75; }
.hc-stats {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; padding-top: 32px;
  border-top: 1px solid rgba(250,246,238,0.18);
}
.hc-stat .num { font-family: 'Fraunces', serif; font-size: 36px; font-weight: 600; color: var(--copper-soft); line-height: 1; }
.hc-stat .lbl { font-size: 12px; opacity: 0.7; margin-top: 8px; text-transform: uppercase; letter-spacing: 0.1em; }

/* Bubbles */
.bubble {
  position: absolute; border-radius: 50%;
  border: 1.5px solid var(--blue); opacity: 0.18;
  animation: float 8s ease-in-out infinite;
}
.bubble.b1 { width: 80px; height: 80px; top: 10%; right: 10%; animation-delay: 0s; }
.bubble.b2 { width: 40px; height: 40px; top: 30%; right: 28%; animation-delay: 1.5s; }
.bubble.b3 { width: 60px; height: 60px; bottom: 15%; left: 8%; animation-delay: 3s; }
.bubble.b4 { width: 30px; height: 30px; bottom: 30%; left: 22%; animation-delay: 4.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-20px) translateX(8px); }
}

/* ========== RIBBON ========== */
.ribbon { background: var(--navy); color: var(--cream); padding: 24px 0; }
.ribbon-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; align-items: center; }
.ribbon-item {
  display: flex; align-items: center; gap: 16px; padding: 0 16px;
  border-right: 1px solid rgba(250,246,238,0.15);
}
.ribbon-item:last-child { border-right: none; }
.ribbon-item .icon {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: 50%;
  background: rgba(250,246,238,0.08); color: var(--copper-soft);
  display: flex; align-items: center; justify-content: center;
}
.ribbon-item .icon svg { width: 18px; height: 18px; }
.ribbon-item .label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.6; margin-bottom: 3px; }
.ribbon-item .value { font-weight: 500; font-size: 15px; }
.ribbon-item a { color: inherit; text-decoration: none; }
@media (max-width: 760px) {
  .ribbon-inner { grid-template-columns: 1fr; gap: 18px; }
  .ribbon-item { border-right: none; border-bottom: 1px solid rgba(250,246,238,0.12); padding-bottom: 16px; }
  .ribbon-item:last-child { border-bottom: none; padding-bottom: 0; }
}

/* ========== SECTIONS ========== */
section { padding: 110px 0; }
@media (max-width: 640px) { section { padding: 70px 0; } }

.section-head { max-width: 720px; margin-bottom: 64px; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--copper); margin-bottom: 20px;
}
.section-eyebrow .line { width: 28px; height: 1px; background: var(--copper); }
.section-head h2 {
  font-family: 'Fraunces', serif; font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 500; line-height: 1.05; letter-spacing: -0.025em;
  color: var(--navy);
}
.section-head h2 em { font-style: italic; color: var(--blue); font-weight: 400; }
.section-head p { font-size: 18px; color: var(--ink-soft); margin-top: 20px; max-width: 580px; line-height: 1.55; }

/* ========== SERVICES ========== */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
@media (max-width: 960px) { .services-grid { grid-template-columns: 1fr; } }
.service {
  background: var(--cream); padding: 44px 36px;
  transition: background 0.3s; cursor: default; position: relative;
}
.service:hover { background: var(--cream-deep); }
.service-num { font-family: 'Fraunces', serif; font-style: italic; font-size: 14px; color: var(--copper); margin-bottom: 24px; }
.service h3 {
  font-family: 'Fraunces', serif; font-size: 32px; font-weight: 500;
  letter-spacing: -0.02em; color: var(--navy); margin-bottom: 16px; line-height: 1.1;
}
.service p { color: var(--ink-soft); font-size: 16px; line-height: 1.55; margin-bottom: 24px; max-width: 460px; }
.service ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.service-link {
  display: inline-block; margin-top: 22px;
  font-size: 14px; font-weight: 600; color: var(--blue);
  text-decoration: none; transition: color 0.2s;
}
.service-link:hover { color: var(--navy); text-decoration: underline; }
.service li {
  font-size: 12px; padding: 6px 12px;
  background: var(--blue-soft); color: var(--navy);
  border-radius: 999px; font-weight: 500;
}

/* ========== WHY US ========== */
.why-section { background: var(--cream-deep); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 880px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: var(--cream); padding: 32px 28px; border-radius: 16px;
  border: 1px solid var(--line); transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(22,58,95,0.08); }
.why-card .icon-wrap {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--blue-soft); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.why-card .icon-wrap svg { width: 22px; height: 22px; }
.why-card h4 {
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 19px;
  color: var(--navy); margin-bottom: 10px; letter-spacing: -0.01em;
}
.why-card p { font-size: 15px; color: var(--ink-soft); line-height: 1.5; }

/* ========== REVIEWS ========== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 880px) { .reviews-grid { grid-template-columns: 1fr; } }
.review {
  background: var(--cream-deep); padding: 32px 28px;
  border-radius: 16px; border: 1px solid var(--line);
}
.review-stars { display: flex; gap: 2px; margin-bottom: 16px; color: var(--copper); }
.review-stars svg { width: 16px; height: 16px; }
.review-quote {
  font-family: 'Fraunces', serif; font-size: 17px; line-height: 1.5;
  color: var(--navy); margin-bottom: 20px; letter-spacing: -0.005em;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--blue); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px; font-family: 'Fraunces', serif;
}
.review-name { font-weight: 500; font-size: 14px; color: var(--ink); }
.review-meta { font-size: 12px; color: var(--ink-soft); }

/* ========== LOCATION ========== */
.location-section { background: var(--cream-deep); }
.location-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: center; }
@media (max-width: 880px) { .location-grid { grid-template-columns: 1fr; gap: 40px; } }
.location-head h2 {
  font-family: 'Fraunces', serif; font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 500; color: var(--navy); line-height: 1.05; letter-spacing: -0.025em;
}
.location-head h2 em { font-style: italic; color: var(--blue); font-weight: 400; }
.location-head p { font-size: 17px; color: var(--ink-soft); margin-top: 18px; line-height: 1.55; }

.hours-table { margin-top: 32px; }
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 15px;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--ink); font-weight: 500; }
.hours-time { color: var(--ink-soft); font-family: 'Geist Mono', monospace; font-size: 14px; }
.map-wrap {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(22,58,95,0.12);
  border: 1px solid var(--line); aspect-ratio: 4/3;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

.contact-list { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
.contact-row { display: flex; align-items: flex-start; gap: 14px; }
.contact-row .ic {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--blue-soft); color: var(--navy);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-row .ic svg { width: 16px; height: 16px; }
.contact-row .lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-soft); margin-bottom: 3px; }
.contact-row .val { font-size: 16px; color: var(--ink); font-weight: 500; }
.contact-row a { color: var(--navy); text-decoration: none; }
.contact-row a:hover { color: var(--blue); text-decoration: underline; }

/* ========== FINAL CTA ========== */
.final-cta {
  background: var(--navy); color: var(--cream);
  text-align: center; position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(46,111,163,0.3), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(184,128,74,0.18), transparent 50%);
  pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta h2 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: clamp(38px, 5.5vw, 66px); line-height: 1.05; letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.final-cta h2 em { font-style: italic; color: var(--copper-soft); font-weight: 400; }
.final-cta p { font-size: 18px; color: rgba(250,246,238,0.78); max-width: 540px; margin: 0 auto 40px; line-height: 1.5; }
.final-cta .btn-primary { background: var(--copper); color: var(--navy); }
.final-cta .btn-primary:hover { background: var(--copper-soft); }
.final-cta .btn-secondary { color: var(--cream); border-color: var(--cream); }
.final-cta .btn-secondary:hover { background: var(--cream); color: var(--navy); }
.final-cta .hero-ctas { justify-content: center; }

/* ========== FOOTER ========== */
footer { background: var(--navy-deep); color: rgba(250,246,238,0.7); padding: 60px 0 32px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand .tag { font-family: 'Fraunces', serif; font-style: italic; font-size: 17px; color: var(--cream); margin-bottom: 14px; }
.footer-brand p { line-height: 1.6; max-width: 320px; }
.footer h5 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--copper-soft); margin-bottom: 18px; font-weight: 600; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer a { color: rgba(250,246,238,0.7); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--cream); }
.footer-bottom {
  padding-top: 32px; border-top: 1px solid rgba(250,246,238,0.1);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: rgba(250,246,238,0.5);
}
.footer-bottom .credits { font-family: 'Geist Mono', monospace; font-size: 12px; }

/* Reveal animation */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }
}

/* ========== LEGAL / CONTENT PAGES ========== */
.legal-main { padding: 56px 0 90px; }
.legal-wrap { max-width: 760px; margin: 0 auto; }
.legal-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--copper); margin-bottom: 18px;
}
.legal-eyebrow .line { width: 28px; height: 1px; background: var(--copper); }
.legal-wrap h1 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: clamp(34px, 5vw, 52px); line-height: 1.05; letter-spacing: -0.025em;
  color: var(--navy); margin-bottom: 16px;
}
.legal-updated { font-family: 'Geist Mono', monospace; font-size: 13px; color: var(--ink-soft); margin-bottom: 40px; }
.legal-wrap h2 {
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 24px;
  color: var(--navy); letter-spacing: -0.015em;
  margin: 44px 0 14px;
}
.legal-wrap p, .legal-wrap li { font-size: 16px; color: var(--ink); line-height: 1.65; }
.legal-wrap p { margin-bottom: 16px; }
.legal-wrap ul { margin: 0 0 16px 22px; display: flex; flex-direction: column; gap: 8px; }
.legal-wrap a { color: var(--blue); text-decoration: underline; }
.legal-wrap a:hover { color: var(--navy); }
.legal-lead { font-size: 18px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 28px; }

.legal-table { width: 100%; border-collapse: collapse; margin: 8px 0 24px; font-size: 15px; }
.legal-table th, .legal-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.legal-table th { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-soft); font-weight: 600; }
.legal-table td:first-child { font-family: 'Geist Mono', monospace; color: var(--navy); white-space: nowrap; }

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000;
  background: var(--navy-deep); color: rgba(250,246,238,0.88);
  border-top: 1px solid rgba(250,246,238,0.16);
  padding: 18px 0;
  box-shadow: 0 -10px 34px rgba(0,0,0,0.22);
}
.cookie-banner[hidden] { display: none; }
.cookie-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cookie-text { font-size: 14px; line-height: 1.5; max-width: 640px; }
.cookie-text a { color: var(--copper-soft); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
/* NY AG guidance: Accept and Decline are visually identical — same size,
   color, and weight. Do not style one as primary over the other. */
.cookie-btn {
  padding: 11px 30px; border-radius: 999px;
  font-family: 'Geist', sans-serif; font-size: 14px; font-weight: 600;
  background: var(--cream); color: var(--navy);
  border: 1.5px solid var(--cream); cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.cookie-btn:hover { background: var(--copper-soft); border-color: var(--copper-soft); }
@media (max-width: 640px) {
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; }
}

/* ========== SERVICE / SEO PAGES ========== */
.breadcrumb { background: var(--cream); border-bottom: 1px solid var(--line); }
.breadcrumb .container { padding-top: 14px; padding-bottom: 14px; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-family: 'Geist Mono', monospace; font-size: 12px; color: var(--ink-soft); }
.breadcrumb li { display: inline-flex; align-items: center; gap: 8px; }
.breadcrumb li:not(:last-child)::after { content: '›'; color: var(--ink-soft); }
.breadcrumb a { color: var(--blue); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--navy); font-weight: 600; }

/* one-column service hero (no visual card) */
.svc-hero { padding: 64px 0 56px; }
.svc-hero h1 { max-width: 760px; }
.svc-hero .hero-sub { margin-bottom: 32px; }

.svc-list { list-style: none; max-width: 720px; display: grid; gap: 14px; }
.svc-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 17px; color: var(--ink); line-height: 1.5; }
.svc-list li::before { content: '✓'; color: var(--copper); font-weight: 700; flex-shrink: 0; }

.price-card { background: var(--cream); border: 1px solid var(--line); border-radius: 18px; padding: 34px; max-width: 620px; }
.price-headline { font-family: 'Fraunces', serif; font-size: 44px; font-weight: 600; color: var(--navy); line-height: 1; }
.price-headline span { font-family: 'Geist', sans-serif; font-size: 17px; font-weight: 500; color: var(--ink-soft); }
.price-list { list-style: none; margin-top: 24px; display: grid; gap: 2px; }
.price-list li { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
.price-list li:last-child { border-bottom: none; }
.price-list .k { color: var(--ink-soft); }
.price-list .v { color: var(--navy); font-weight: 600; font-family: 'Geist Mono', monospace; }
.price-note { font-size: 13px; color: var(--ink-soft); margin-top: 18px; }

.faq { max-width: 820px; }
.faq details { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq summary { font-family: 'Fraunces', serif; font-size: 19px; font-weight: 600; color: var(--navy); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--copper); font-size: 24px; line-height: 1; flex-shrink: 0; }
.faq details[open] summary::after { content: '\2013'; }
.faq details > p { margin-top: 12px; color: var(--ink-soft); line-height: 1.6; font-size: 16px; }

.svc-aside { font-size: 15px; color: var(--ink-soft); margin-top: 28px; }
.svc-aside a { color: var(--blue); }

/* How-It-Works 2×2 on service pages; collapses to one column on small screens */
.services-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 640px) { .services-grid.cols-2 { grid-template-columns: 1fr; } }

/* ========== NAV SERVICES DROPDOWN ========== */
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dd-parent {
  color: var(--ink); text-decoration: none; font-size: 14px; font-weight: 500;
  transition: color 0.2s; cursor: pointer;
}
.nav-dropdown:hover .nav-dd-parent, .nav-dropdown:focus-within .nav-dd-parent { color: var(--blue); }
.nav-dd-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  margin-top: 10px; min-width: 200px;
  background: var(--cream); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 18px 44px rgba(22,58,95,0.16);
  padding: 8px; z-index: 300;
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
/* small hover bridge so the menu doesn't close in the gap below the parent */
.nav-dropdown::after { content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 12px; }
.nav-dropdown:hover .nav-dd-menu, .nav-dropdown:focus-within .nav-dd-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-dd-menu a {
  padding: 9px 14px; border-radius: 9px; font-size: 14px; font-weight: 500;
  color: var(--ink); text-decoration: none; white-space: nowrap; transition: background 0.15s, color 0.15s;
}
.nav-dd-menu a:hover { background: var(--cream-deep); color: var(--navy); }

/* ========== CLICKABLE SERVICE CARDS (homepage) ========== */
.service-card { cursor: pointer; color: inherit; text-decoration: none; display: block; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 38px rgba(22,58,95,0.12); z-index: 2; }
.service-card h3 { transition: color 0.2s; }
.service-card:hover h3 { color: var(--blue); }

/* ========== OTHER AREAS WE SERVE (cross-link) ========== */
.area-links { display: flex; flex-wrap: wrap; gap: 12px; }
.area-links a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 999px;
  border: 1.5px solid var(--line); background: var(--cream);
  color: var(--navy); text-decoration: none; font-weight: 600; font-size: 14px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.area-links a:hover { border-color: var(--navy); background: var(--cream-deep); transform: translateY(-2px); }
