/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Design tokens ─────────────────────────────────────── */
:root {
  --bg:      #eef3fb;
  --surface: #e2eaf8;
  --white:   #ffffff;
  --navy:    #19263a;
  --blue:    #2e6db4;
  --blue-lt: #5b90cc;
  --muted:   #5e7490;
  --faint:   #ccd8ee;
  --text:    #19263a;
}

/* ── Base ──────────────────────────────────────────────── */
html { scroll-behavior: smooth; background: var(--bg); }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  min-height: 100vh;
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--faint); border-radius: 2px; }
button { cursor: pointer; font-family: inherit; }
a { font-family: inherit; }

/* ── Animations ────────────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.page-fade { animation: fadeIn 0.45s ease; }

/* ── Layout ────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; }

/* ── Typography helpers ────────────────────────────────── */
.label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  display: block;
  font-family: 'DM Sans', sans-serif;
}
.serif { font-family: 'Cormorant Garamond', serif; }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 13px;
  letter-spacing: 0.07em;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-primary {
  background: var(--blue);
  color: white;
  border: none;
}
.btn-primary:hover { background: var(--navy); }
.btn-secondary {
  background: var(--white);
  color: var(--muted);
  border: 1px solid var(--faint);
}
.btn-secondary:hover { border-color: var(--blue-lt); color: var(--blue); }

/* ── Navigation ────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 48px;
  transition: padding 0.3s ease;
}
.nav.scrolled { padding-top: 12px; padding-bottom: 12px; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translateZ(0);
  border-radius: 40px;
  padding: 0 28px;
  height: 60px;
  box-shadow: 0 2px 16px rgba(25,38,58,0.06);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled .nav-inner {
  box-shadow: 0 4px 32px rgba(25,38,58,0.1);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-link {
  background: none;
  border: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
  transition: color 0.2s;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}
.nav-link:hover { color: var(--blue); }
.nav-link.active {
  color: var(--blue);
  font-weight: 600;
  border-bottom-color: var(--blue);
}

.nav-cta {
  background: var(--navy);
  color: white;
  border: none;
  border-radius: 24px;
  padding: 10px 24px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.nav-cta:hover { background: var(--blue); }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.hamburger-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  border-radius: 1px;
  transition: all 0.2s;
}
.hamburger.open .hamburger-bar { background: var(--blue); }
.hamburger.open .hamburger-bar:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open .hamburger-bar:nth-child(2) { opacity: 0; }
.hamburger.open .hamburger-bar:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 78px; left: 16px; right: 16px;
  z-index: 99;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(25,38,58,0.14);
  animation: slideDown 0.2s ease;
}
.mobile-menu.open { display: block; }
.mobile-menu-item {
  display: block;
  width: 100%;
  padding: 16px 24px;
  background: white;
  border: none;
  border-bottom: 1px solid var(--faint);
  text-align: left;
  font-size: 15px;
  color: var(--navy);
  font-weight: 300;
  text-decoration: none;
  cursor: pointer;
}
.mobile-menu-item:last-of-type { border-bottom: none; }
.mobile-menu-item.active {
  background: var(--surface);
  color: var(--blue);
  font-weight: 500;
}
.mobile-menu-cta {
  display: block;
  width: 100%;
  padding: 16px 24px;
  background: var(--navy);
  border: none;
  font-size: 13px;
  color: white;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

/* ── Image placeholder ─────────────────────────────────── */
.img-placeholder {
  background: var(--surface);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
}
.img-placeholder.rounded { border-radius: 10px; }
.img-placeholder-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 8px,
    rgba(46,109,180,0.03) 8px,
    rgba(46,109,180,0.03) 9px
  );
}
.img-placeholder-icon {
  opacity: 0.2;
  position: relative;
}
.img-placeholder-label {
  font-family: monospace;
  font-size: 10px;
  color: var(--muted);
  opacity: 0.6;
  text-align: center;
  padding: 0 12px;
  position: relative;
}

/* ── Real images ───────────────────────────────────────── */
.site-img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

/* ── Stat ──────────────────────────────────────────────── */
.stat { text-align: center; }
.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--blue);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 64px 80px;
  max-width: 1300px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border-radius: 24px;
  padding: 7px 16px;
  margin-bottom: 28px;
  box-shadow: 0 2px 12px rgba(46,109,180,0.1);
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
}
.badge-text {
  font-size: 12px;
  color: var(--blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(56px, 7vw, 88px);
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 24px;
}
.hero-desc {
  font-size: 17px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 40px;
  text-wrap: pretty;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.hero-images-col { display: grid; gap: 10px; }
.stats-bar {
  grid-column: 1 / -1;
  background: white;
  border-radius: 10px;
  padding: 20px 16px;
  display: flex;
  justify-content: space-around;
  box-shadow: 0 2px 12px rgba(25,38,58,0.05);
}
.stats-divider { width: 1px; background: var(--faint); }

/* ── Services section ──────────────────────────────────── */
.services {
  background: var(--white);
  padding: 80px 64px;
}
.services h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(36px, 4vw, 52px);
  color: var(--navy);
  margin-bottom: 32px;
  line-height: 1.1;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.service-card {
  background: var(--bg);
  border-radius: 10px;
  padding: 32px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: block;
  cursor: default;
}
.service-card.clickable { cursor: pointer; }
.service-card.clickable:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(46,109,180,0.1);
}
.service-card-bar {
  width: 32px; height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin-bottom: 18px;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.8; }
.service-card-link {
  margin-top: 18px;
  font-size: 12px;
  color: var(--blue);
  letter-spacing: 0.1em;
}

/* ── Trust bar ─────────────────────────────────────────── */
.trust-bar {
  background: var(--surface);
  padding: 48px 64px;
  border-top: 1px solid var(--faint);
  border-bottom: 1px solid var(--faint);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.trust-item { text-align: center; }
.trust-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--blue);
  margin-bottom: 6px;
}
.trust-item-sub { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ── Page header (inner pages) ─────────────────────────── */
.page-header {
  background: var(--white);
  padding: 72px 64px 60px;
  border-bottom: 1px solid var(--faint);
  padding-top: calc(72px + 80px);
}
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 18px;
}
.page-header p {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.8;
  text-wrap: pretty;
}

/* ── Page content area ─────────────────────────────────── */
.page-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 64px;
}

/* ── Two-column content grid ───────────────────────────── */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
}
.content-grid-wide { gap: 72px; }

/* ── Service list (clock repair) ───────────────────────── */
.service-list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--faint);
}
.service-list-bar {
  width: 20px; height: 3px;
  background: var(--blue);
  flex-shrink: 0;
  border-radius: 1.5px;
}
.service-list-item span { font-size: 15px; color: var(--muted); }

/* ── Tag chips ─────────────────────────────────────────── */
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.tag {
  padding: 6px 12px;
  border: 1px solid var(--faint);
  border-radius: 4px;
  font-size: 12px;
  color: var(--muted);
  background: var(--white);
}

/* ── Brand tags ────────────────────────────────────────── */
.brand-tag {
  padding: 10px 18px;
  border: 1px solid var(--faint);
  border-radius: 4px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--muted);
  background: var(--white);
}
.brand-tag-more {
  padding: 10px 18px;
  border: 1px solid var(--faint);
  border-radius: 4px;
  font-size: 13px;
  color: var(--faint);
  font-style: italic;
  background: var(--white);
  display: flex;
  align-items: center;
}

/* ── Estimate callout ──────────────────────────────────── */
.estimate-box {
  background: var(--surface);
  border-radius: 10px;
  padding: 24px;
  border-top: 3px solid var(--blue);
}
.estimate-box-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--blue);
  margin-bottom: 10px;
}
.estimate-box p { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ── Watch service cards ───────────────────────────────── */
.watch-card {
  background: white;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(25,38,58,0.05);
}
.watch-card-bar {
  width: 28px; height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin-bottom: 14px;
}
.watch-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--blue);
  margin-bottom: 8px;
}
.watch-card p { font-size: 13px; color: var(--muted); line-height: 1.75; }

/* ── Authorization cards (about page) ─────────────────── */
.auth-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.auth-card {
  background: var(--surface);
  border-radius: 10px;
  padding: 28px;
  text-align: center;
  border-top: 3px solid var(--blue);
}
.auth-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--blue);
  margin-bottom: 8px;
}
.auth-card-role {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.auth-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ── About quote block ─────────────────────────────────── */
.quote-bar {
  width: 48px; height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin-bottom: 32px;
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  line-height: 1.75;
  color: var(--navy);
  margin-bottom: 20px;
}
.quote-attr { font-size: 14px; color: var(--blue); font-style: italic; margin-bottom: 32px; }
.about-body { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 18px; }

/* ── Location page ─────────────────────────────────────── */
.info-block { margin-bottom: 20px; }
.info-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}
.info-value {
  font-size: 15px;
  color: var(--navy);
  line-height: 1.6;
  white-space: pre-line;
  word-break: break-all;
}
.location-divider {
  width: 48px; height: 2px;
  background: var(--blue);
  border-radius: 1px;
  margin: 20px 0;
}
.hours-table { margin-top: 36px; }
.hours-table h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 18px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--faint);
  gap: 12px;
}
.hours-day { font-size: 14px; color: var(--muted); }
.hours-time { font-size: 14px; color: var(--navy); }
.hours-time.closed { color: var(--muted); }
.lamorinda-note {
  margin-top: 28px;
  background: var(--surface);
  border-radius: 8px;
  padding: 18px 20px;
  border-left: 3px solid var(--blue);
}
.lamorinda-note p { font-size: 13px; color: var(--muted); line-height: 1.75; }
.location-primary { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); }
.location-actions { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.copy-btn {
  width: 100%;
  border-radius: 8px;
  padding: 13px 28px;
  font-size: 13px;
  letter-spacing: 0.07em;
}

/* ── Image trio / duo grids ────────────────────────────── */
.image-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 60px;
}
.image-duo {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 10px;
  margin-bottom: 60px;
}

/* ── Footer ────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: white;
  padding: 60px 64px 40px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: white;
}
.footer-brand-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
}
.footer-col-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.footer-link {
  display: block;
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  padding: 4px 0;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
}
.footer-link:hover { color: white; }
.footer-contact {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 2.1;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ── Dark mode tokens ──────────────────────────────────── */
[data-theme="dark"] {
  --bg:      #0f1724;
  --surface: #162034;
  --white:   #1a2845;
  --navy:    #e2eaf8;
  --blue:    #5b90cc;
  --blue-lt: #7aaad8;
  --muted:   #8ba3c0;
  --faint:   #2a3d5c;
  --text:    #e2eaf8;
}

/* Map iframe dark loading state */
[data-theme="dark"] iframe {
  background: var(--surface);
  color-scheme: dark;
}

/* Nav glass in dark mode */
[data-theme="dark"] .nav-inner {
  background: rgba(15, 23, 36, 0.95);
}
[data-theme="dark"] .nav-cta,
[data-theme="dark"] .mobile-menu-cta {
  background: var(--blue);
  color: white;
}

/* Footer stays dark (var(--navy) becomes light text in dark mode) */
[data-theme="dark"] .footer {
  background: #060d18;
}
[data-theme="dark"] .footer-bottom {
  border-top-color: rgba(255,255,255,0.08);
}

/* White-background cards */
[data-theme="dark"] .stats-bar,
[data-theme="dark"] .badge,
[data-theme="dark"] .watch-card {
  background: var(--white);
}

/* Mobile menu */
[data-theme="dark"] .mobile-menu { background: var(--white); }
[data-theme="dark"] .mobile-menu-item { background: var(--white); border-bottom-color: var(--faint); }
[data-theme="dark"] .mobile-menu-item.active { background: var(--surface); }

/* Scrollbar */
[data-theme="dark"] ::-webkit-scrollbar-thumb { background: var(--faint); }

/* ── Theme toggle button ────────────────────────────────── */
.theme-toggle {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--faint);
  background: var(--white);
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  transition: border-color 0.2s, background 0.2s;
  color: var(--navy);
}
.theme-toggle:hover { border-color: var(--blue); }

/* ── Floating call button (mobile only) ────────────────── */
.fab-container {
  display: none !important;
}
@media (max-width: 767px) {
  .fab-container {
    display: flex !important;
  }
}
@media (max-width: 767px) {
  .fab-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 200;
  }
  .fab-btn {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--blue);
    color: white;
    border: none;
    font-size: 22px;
    flex-direction: column;
    gap: 1px;
    box-shadow: 0 4px 20px rgba(25,38,58,0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
    flex-shrink: 0;
  }
  .fab-btn:active { transform: scale(0.93); }
  .fab-call-link {
    display: none;
    position: absolute;
    bottom: 76px;
    right: 0;
    background: var(--navy);
    color: white;
    padding: 13px 22px;
    border-radius: 28px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.03em;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(25,38,58,0.25);
    animation: slideDown 0.15s ease;
  }
  .fab-call-link.open { display: block; }
}
[data-theme="dark"] .fab-btn { background: var(--blue); }
[data-theme="dark"] .fab-call-link { background: var(--surface); color: var(--text); }
[data-theme="dark"] iframe { filter: invert(1) hue-rotate(180deg); }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 767px) {
  /* Nav */
  .nav { padding: 12px 16px; }
  .nav.scrolled { padding-top: 12px; padding-bottom: 12px; }
  .nav-inner { padding: 0 16px 0 12px; height: 54px; }
  .nav-logo-text { font-size: 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .theme-toggle { width: 30px; height: 30px; font-size: 13px; }
  .nav-right { gap: 6px; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { padding: 120px 20px 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero h1 { font-size: 56px; }
  .hero-desc { font-size: 15px; }

  /* Services */
  .services { padding: 60px 20px; }
  .services-grid { grid-template-columns: 1fr; }

  /* Trust bar */
  .trust-bar { padding: 40px 20px; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .trust-item-title { font-size: 17px; }

  /* Page header */
  .page-header { padding: 48px 20px 40px; padding-top: calc(48px + 70px); }
  .page-header h1 { font-size: 48px; margin-bottom: 14px; }
  .page-header p { font-size: 15px; }

  /* Page content */
  .page-content { padding: 48px 20px; }

  /* Content grids */
  .content-grid { grid-template-columns: 1fr; gap: 48px; }
  .auth-grid { grid-template-columns: 1fr; }
  .image-trio { grid-template-columns: 1fr; }
  .image-duo { grid-template-columns: 1fr; }

  /* Hours */
  .hours-time.closed { color: var(--navy); }

  /* Watch */
  .services-grid.watch { grid-template-columns: 1fr; }

  /* Footer */
  .footer { padding: 48px 24px 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; margin-bottom: 36px; }
  .footer-pages { display: none; }
  .footer-bottom { flex-direction: column; }
}
