/* Sunshine Wash & Dry — design tokens pulled from the storefront photo */
:root {
  --yellow: #FFD60A;
  --yellow-soft: #FFF1A8;
  --yellow-bg: #FFFBE6;
  --blue: #143A7A;
  --blue-deep: #0E2858;
  --blue-light: #5BB6E8;
  --blue-bg: #EAF5FD;
  --ink: #0E1B3D;
  --ink-soft: #4A5374;
  --paper: #FFFCF2;
  --white: #ffffff;
  --line-green: #06C755;
  --shadow-sm: 0 1px 2px rgba(14, 27, 61, 0.04), 0 4px 12px rgba(14, 27, 61, 0.06);
  --shadow-md: 0 1px 2px rgba(14, 27, 61, 0.04), 0 8px 24px rgba(14, 27, 61, 0.08), 0 24px 48px -16px rgba(14, 27, 61, 0.12);
  --shadow-lg: 0 2px 4px rgba(14, 27, 61, 0.06), 0 12px 32px rgba(14, 27, 61, 0.10), 0 32px 64px -20px rgba(14, 27, 61, 0.18);
  --radius: 16px;
  --radius-lg: 24px;
  --max-w: 1140px;
  --font-th: 'Sarabun', 'Noto Sans Thai', system-ui, -apple-system, sans-serif;
  --font-en: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-th);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
html[lang="en"] body { font-family: var(--font-en); }
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-deep); }
h1, h2, h3 { font-weight: 800; line-height: 1.15; color: var(--blue-deep); margin: 0 0 0.5em; letter-spacing: -0.015em; }
h1 { font-size: clamp(1.9rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.3rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

/* Focus-visible (accessible without nuking design) */
:focus-visible { outline: none; }
.btn:focus-visible, .nav-links a:focus-visible, .cta-line:focus-visible,
.lang-switch a:focus-visible, .menu-toggle:focus-visible,
a:focus-visible { outline: 3px solid var(--blue-light); outline-offset: 3px; border-radius: 4px; }

/* ========== HEADER ========== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid rgba(20, 58, 122, 0.08);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; padding-bottom: 12px; gap: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand img { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; }
.brand-name { font-weight: 800; color: var(--blue-deep); font-size: 1.05rem; line-height: 1.1; min-width: 0; }
.brand-name small { display: block; font-weight: 500; color: var(--ink-soft); font-size: 0.78rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav-links { display: flex; gap: 4px; }
.nav-links a { padding: 10px 14px; border-radius: 999px; font-weight: 600; color: var(--ink-soft); font-size: 0.95rem; transition: background-color 120ms ease, color 120ms ease; }
.nav-links a:hover { background: var(--blue-bg); color: var(--blue-deep); }

.lang-switch { display: inline-flex; background: var(--blue-bg); border-radius: 999px; padding: 3px; margin-left: 8px; }
.lang-switch a { padding: 8px 14px; border-radius: 999px; font-size: 0.85rem; font-weight: 700; color: var(--blue-deep); }
.lang-switch a.is-active { background: var(--blue); color: var(--white); }

.cta-line {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--line-green); color: var(--white); font-weight: 700;
  padding: 10px 16px; border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.cta-line:hover { color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.cta-line svg { width: 18px; height: 18px; }

.menu-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; border-radius: 8px; }
.menu-toggle svg { width: 28px; height: 28px; color: var(--blue-deep); }
.nav-cta-wrap { display: flex; align-items: center; gap: 8px; }

@media (max-width: 820px) {
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); flex-direction: column; padding: 12px 20px;
    border-bottom: 1px solid rgba(20,58,122,0.08); gap: 0;
    box-shadow: var(--shadow-sm);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 14px 8px; border-radius: 8px; font-size: 1rem; }
  .menu-toggle { display: inline-flex; }
  .cta-line { display: none; } /* sticky bottom bar replaces this */
  .brand-name small { display: none; }
}

/* ========== NAV NEW BADGE ========== */
.nav-new { position: relative; display: inline-flex; align-items: center; gap: 8px; }
.new-dot {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.05em;
  background: var(--yellow); color: var(--blue-deep);
  padding: 2px 7px; border-radius: 999px;
  text-transform: uppercase;
}
@media (max-width: 820px) {
  .nav-new { font-weight: 700; color: var(--blue-deep); }
}

/* ========== HERO ========== */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #FFE85C 0%, var(--yellow) 35%, var(--yellow-soft) 100%);
  padding: 64px 0 0;
}
/* mesh gradient blobs */
.hero::before, .hero::after {
  content: ""; position: absolute; pointer-events: none; z-index: 0;
  filter: blur(80px); opacity: 0.55; border-radius: 50%;
}
.hero::before { width: 480px; height: 480px; background: var(--blue-light); top: -120px; right: -100px; }
.hero::after { width: 360px; height: 360px; background: #FFB300; bottom: -120px; left: -80px; opacity: 0.4; }
.hero .container { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.hero-content { padding-bottom: 64px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-deep); color: var(--white);
  padding: 7px 14px; border-radius: 999px;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: #5fff8a; box-shadow: 0 0 0 3px rgba(95,255,138,0.3); }
@media (prefers-reduced-motion: no-preference) {
  .eyebrow .dot { animation: pulse 2s ease-in-out infinite; }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(95,255,138,0.3); }
    50% { box-shadow: 0 0 0 6px rgba(95,255,138,0.15); }
  }
}
.hero h1 { color: var(--blue-deep); }
.hero .lead { font-size: 1.1rem; color: var(--ink); max-width: 540px; margin-bottom: 28px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* Hero promo strip (announces drop-off service) */
.hero-promo {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--blue-deep); color: var(--white);
  padding: 10px 16px 10px 10px; border-radius: 999px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
  transition: transform 160ms ease, box-shadow 160ms ease;
  max-width: 100%;
}
.hero-promo:hover { color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.hero-promo .promo-badge {
  background: var(--yellow); color: var(--blue-deep);
  padding: 4px 10px; border-radius: 999px;
  font-weight: 800; font-size: 0.75rem; letter-spacing: 0.04em;
  flex-shrink: 0;
}
.hero-promo .promo-msg { font-size: 0.92rem; line-height: 1.35; }
.hero-promo .promo-msg strong { color: var(--yellow); }
.hero-promo .promo-arrow { font-weight: 800; }
@media (max-width: 480px) {
  .hero-promo { padding: 8px 14px 8px 8px; gap: 8px; }
  .hero-promo .promo-msg { font-size: 0.82rem; }
  .hero-promo .promo-arrow { display: none; }
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px; font-weight: 700; font-size: 1rem;
  border: 2px solid transparent; cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease;
  min-height: 48px;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-primary { background: var(--blue-deep); color: var(--white); box-shadow: var(--shadow-md); }
.btn-primary:hover { color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-line { background: var(--line-green); color: var(--white); box-shadow: var(--shadow-md); }
.btn-line:hover { color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { background: var(--white); color: var(--blue-deep); border-color: var(--blue-deep); }
.btn-outline:hover { background: var(--blue-deep); color: var(--white); }

.hero-image { position: relative; align-self: end; padding-bottom: 0; }
.hero-image img {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.hero-badges {
  position: absolute; left: -20px; top: 24px;
  display: flex; flex-direction: column; gap: 10px; z-index: 2;
}
.badge {
  background: var(--white); color: var(--blue-deep);
  padding: 10px 16px; border-radius: 999px;
  font-weight: 700; font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 8px;
}
.badge.yellow { background: var(--yellow); }
.badge.promptpay { background: linear-gradient(135deg, #1B3A7A 0%, #4458B5 100%); color: var(--white); }
.badge svg { width: 18px; height: 18px; }

@media (max-width: 820px) {
  .hero { padding-top: 24px; }
  .hero .container { grid-template-columns: 1fr; gap: 20px; }
  .hero-content { padding-bottom: 0; text-align: center; }
  .hero-content .eyebrow, .hero-content .hero-ctas { margin-left: auto; margin-right: auto; }
  .hero-content .hero-ctas { justify-content: center; }
  .hero .lead { margin-left: auto; margin-right: auto; font-size: 1rem; }
  .hero-image img { aspect-ratio: 16/10; max-height: 280px; }
  .hero-badges { left: 12px; top: 12px; }
  .badge { font-size: 0.78rem; padding: 7px 12px; }
}

/* ========== DROP-OFF SERVICE (new feature highlight) ========== */
.dropoff {
  background: var(--paper);
  padding: 64px 0 72px;
  position: relative;
}
.dropoff::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 8px;
  background: linear-gradient(90deg, var(--yellow) 0%, var(--yellow) 33%, var(--blue-deep) 33%, var(--blue-deep) 66%, var(--line-green) 66%, var(--line-green) 100%);
  opacity: 0.85;
}
.dropoff-card {
  background: linear-gradient(180deg, var(--white) 0%, #FFFEF7 100%);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  max-width: 1000px; margin: 0 auto;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(20, 58, 122, 0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.dropoff-card::after {
  content: ""; position: absolute; top: -120px; right: -120px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 214, 10, 0.25) 0%, transparent 70%);
  pointer-events: none;
}
@media (max-width: 820px) {
  .dropoff { padding: 48px 0 56px; }
  .dropoff-card { padding: 32px 22px; border-radius: var(--radius); }
}

.dropoff-newtag {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 800; font-size: 0.82rem; letter-spacing: 0.06em;
  color: var(--blue-deep);
  padding: 6px 14px; border-radius: 999px;
  background: var(--yellow); margin-bottom: 18px;
  text-transform: uppercase;
}
.newtag-star { color: #DC2626; font-size: 1rem; }

.dropoff-quote {
  font-style: italic; color: var(--ink-soft);
  font-size: 1.05rem; margin: 0 0 6px;
}
.dropoff-card h2 {
  font-size: clamp(2rem, 4.8vw, 3rem);
  margin: 0 0 18px;
  color: var(--blue-deep);
  line-height: 1.1;
}
.dropoff-hl {
  background: linear-gradient(180deg, transparent 55%, var(--yellow) 55%);
  padding: 0 8px;
  color: var(--blue-deep);
}

.dropoff-hours {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 999px;
  background: var(--blue-bg); color: var(--blue-deep);
  font-weight: 700; font-size: 1rem; margin-bottom: 28px;
}
.dropoff-hours svg { color: var(--blue-deep); }

.dropoff-free {
  display: inline-flex; align-items: center; gap: 16px;
  background: var(--yellow-bg);
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  padding: 16px 24px 16px 20px;
  margin: 0 auto 26px;
  text-align: left;
  max-width: 540px;
}
.free-pill {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.4rem; letter-spacing: 0.02em;
  background: var(--line-green); color: var(--white);
  padding: 12px 18px; border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(6, 199, 85, 0.25);
}
.free-body { display: flex; flex-direction: column; gap: 2px; }
.free-body strong { color: var(--blue-deep); font-size: 1.05rem; line-height: 1.25; }
.free-body small { color: var(--ink-soft); font-size: 0.9rem; }
@media (max-width: 520px) {
  .dropoff-free { flex-direction: column; gap: 10px; text-align: center; align-items: center; padding: 18px; }
  .free-pill { font-size: 1.2rem; padding: 10px 16px; }
}

.dropoff-pitch {
  font-size: 1.05rem; color: var(--ink);
  max-width: 720px; margin: 0 auto 36px;
  line-height: 1.65;
}

.dropoff-steps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
  margin-bottom: 36px;
  text-align: left;
}
@media (max-width: 900px) { .dropoff-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .dropoff-steps { grid-template-columns: 1fr; } }
.dropoff-step {
  background: var(--white); border-radius: 14px; padding: 18px 16px;
  border: 1px solid rgba(20, 58, 122, 0.1);
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease;
  position: relative;
}
.dropoff-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.dropoff-step .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--blue-deep); color: var(--yellow);
  font-weight: 800; font-size: 0.95rem; margin-bottom: 10px;
}
.dropoff-step h3 { font-size: 0.98rem; margin-bottom: 4px; color: var(--blue-deep); }
.dropoff-step p { font-size: 0.85rem; color: var(--ink-soft); margin: 0; line-height: 1.45; }

.dropoff-menu {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid rgba(20, 58, 122, 0.1);
  padding: 22px;
  margin-bottom: 24px;
  text-align: left;
}
.dropoff-menu .menu-col { padding: 6px 18px; }
.dropoff-menu .menu-col + .menu-col { border-left: 1px dashed rgba(20, 58, 122, 0.18); }
.menu-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em;
  color: var(--blue); text-transform: uppercase; margin-bottom: 6px;
}
.menu-label svg { color: var(--blue-deep); }
.dropoff-menu strong { display: block; color: var(--blue-deep); font-size: 1.05rem; margin-bottom: 4px; }
.dropoff-menu small { color: var(--ink-soft); font-size: 0.85rem; }
@media (max-width: 640px) {
  .dropoff-menu { grid-template-columns: 1fr; gap: 16px; }
  .dropoff-menu .menu-col + .menu-col { border-left: 0; border-top: 1px dashed rgba(20, 58, 122, 0.18); padding-top: 16px; }
}

.dropoff-late {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--yellow-bg);
  border-radius: 12px;
  padding: 14px 18px;
  margin: 0 auto 28px;
  max-width: 720px;
  text-align: left;
}
.dropoff-late svg { color: var(--blue-deep); flex-shrink: 0; margin-top: 2px; }
.dropoff-late p { margin: 0; font-size: 0.95rem; color: var(--ink); line-height: 1.5; }

.dropoff-ctas {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  margin-bottom: 20px;
}

.dropoff-foot {
  font-style: italic; color: var(--ink-soft);
  font-size: 0.98rem; margin: 8px 0 0;
}

/* ========== SECTIONS ========== */
section { padding: 80px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head .kicker { color: var(--blue); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.85rem; margin-bottom: 8px; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }
@media (max-width: 820px) { section { padding: 56px 0; } .section-head { margin-bottom: 32px; } }

/* ========== WHY US (now P2 — moved up for trust-first) ========== */
.why { background: var(--blue-deep); color: var(--white); position: relative; overflow: hidden; }
.why::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(91, 182, 232, 0.25) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(255, 214, 10, 0.15) 0%, transparent 40%);
  pointer-events: none;
}
.why .container { position: relative; }
.why .section-head h2 { color: var(--white); }
.why .section-head .kicker { color: var(--yellow); }
.why .section-head p { color: rgba(255,255,255,0.8); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 820px) { .why-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }
.feature {
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius); padding: 24px;
  transition: transform 200ms ease, background-color 200ms ease;
}
.feature:hover { transform: translateY(-4px); background: rgba(255,255,255,0.1); }
.feature .icon {
  width: 48px; height: 48px; border-radius: 12px; background: var(--yellow);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.feature .icon svg { width: 26px; height: 26px; color: var(--blue-deep); }
.feature h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 6px; }
.feature p { color: rgba(255,255,255,0.78); font-size: 0.95rem; margin: 0; }

/* ========== PRICING ========== */
.pricing { background: var(--blue-bg); }
.pricing-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; }
@media (max-width: 820px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(20, 58, 122, 0.06);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.price-card h3 { color: var(--blue-deep); margin-bottom: 4px; display: flex; align-items: center; gap: 10px; }
.price-card .sub { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 16px; }

.price-table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 0.98rem; }
.price-table th, .price-table td { padding: 14px 12px; text-align: center; }
.price-table th { background: var(--yellow); color: var(--blue-deep); font-weight: 700; }
.price-table th:first-child { border-top-left-radius: 10px; text-align: left; }
.price-table th:last-child { border-top-right-radius: 10px; }
.price-table td { border-bottom: 1px solid rgba(20, 58, 122, 0.08); }
.price-table tr:last-child td { border-bottom: 0; }
.price-table td:first-child { text-align: left; font-weight: 700; color: var(--blue-deep); background: var(--yellow-bg); }
.price-table .baht { color: var(--ink); font-weight: 700; }
.price-table .baht::after { content: " ฿"; color: var(--ink-soft); font-weight: 500; }

.dryer-card .dryer-row {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 14px 0; border-bottom: 1px dashed rgba(20, 58, 122, 0.15);
}
.dryer-card .dryer-row:last-child { border-bottom: 0; }
.dryer-card .dryer-row strong { font-size: 1.4rem; color: var(--blue-deep); }
.dryer-card .dryer-row span { color: var(--ink-soft); }
.dryer-note { margin-top: 14px; font-size: 0.9rem; color: var(--ink-soft); padding: 12px; background: var(--yellow-bg); border-radius: 10px; }

/* ========== HOW IT WORKS ========== */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media (max-width: 820px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--white); border-radius: var(--radius); padding: 24px 18px;
  text-align: center; border: 1px solid rgba(20, 58, 122, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step:hover .step-num { transform: scale(1.08); }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--yellow); color: var(--blue-deep); font-weight: 800; font-size: 1.1rem;
  margin-bottom: 12px;
  transition: transform 200ms ease;
}
.step h3 { font-size: 1rem; margin-bottom: 6px; }
.step p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }

/* ========== LOCATION ========== */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; }
@media (max-width: 820px) { .location-grid { grid-template-columns: 1fr; } }
.location-info {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(20, 58, 122, 0.06);
  display: flex; flex-direction: column; justify-content: center;
}
.location-info h3 { display: flex; align-items: center; gap: 10px; }
.address { font-size: 1.05rem; color: var(--ink); margin: 0 0 16px; }
.hours { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; background: var(--yellow); border-radius: 999px; font-weight: 700; color: var(--blue-deep); margin-bottom: 20px; align-self: flex-start; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); min-height: 360px; background: var(--blue-bg); }
.map-embed iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

/* ========== FAQ ========== */
.faq { background: var(--yellow-bg); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid rgba(20, 58, 122, 0.06);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 20px 24px;
  font-weight: 700; color: var(--blue-deep); font-size: 1.05rem;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transition: background-color 160ms ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--yellow-bg); }
.faq-item summary::after {
  content: ""; width: 12px; height: 12px;
  border-right: 2.5px solid var(--blue-deep); border-bottom: 2.5px solid var(--blue-deep);
  transform: rotate(45deg); transition: transform 200ms ease; flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item .answer { padding: 0 24px 20px; color: var(--ink-soft); }

/* ========== CONTACT / LINE ========== */
.contact { background: linear-gradient(135deg, var(--yellow-bg) 0%, var(--blue-bg) 100%); }
.contact-card {
  max-width: 720px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: center;
}
@media (max-width: 640px) { .contact-card { grid-template-columns: 1fr; text-align: center; padding: 28px; } }
.contact-qr {
  width: 200px; height: 200px; border-radius: var(--radius);
  border: 4px solid var(--white); box-shadow: var(--shadow-sm);
  background: var(--white);
  margin: 0 auto;
}
.contact-card h3 { margin-bottom: 4px; }
.contact-card p { color: var(--ink-soft); margin-bottom: 16px; }

/* ========== STICKY MOBILE CTA BAR ========== */
.mobile-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(20, 58, 122, 0.1);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(14,27,61,0.08);
}
.mobile-cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; max-width: 600px; margin: 0 auto; }
.mobile-cta .btn { padding: 12px 16px; font-size: 0.95rem; min-height: 48px; }
.mobile-cta .btn svg { width: 18px; height: 18px; }
@media (max-width: 820px) {
  .mobile-cta { display: block; }
  body { padding-bottom: 78px; } /* space for the bar */
}

/* ========== FOOTER ========== */
.site-footer { background: var(--blue-deep); color: rgba(255,255,255,0.8); padding: 40px 0 24px; }
.site-footer .container { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
@media (max-width: 640px) { .site-footer .container { grid-template-columns: 1fr; } }
.site-footer .brand-name { color: var(--white); }
.site-footer .brand-name small { color: rgba(255,255,255,0.6); }
.site-footer h4 { color: var(--white); font-size: 1rem; margin: 0 0 12px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; font-size: 0.95rem; }
.site-footer a { color: rgba(255,255,255,0.8); }
.site-footer a:hover { color: var(--yellow); }
.copyright { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 32px; padding-top: 16px; font-size: 0.85rem; text-align: center; color: rgba(255,255,255,0.5); }

/* ========== UTILITIES ========== */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.icon-svg { display: none; } /* sprite container */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
