/* ==========================================================================
   Albos HVAC — Design System
   Style: Trust & Authority (clean, professional, modern)
   Fonts: Poppins (headings) / Open Sans (body)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand palette */
  --color-primary: #0F172A;        /* deep navy — headings, header, footer */
  --color-primary-2: #1E293B;      /* lighter navy for gradients */
  --color-on-primary: #FFFFFF;
  --color-secondary: #334155;
  --color-accent: #0369A1;         /* trust blue — links, primary CTA */
  --color-accent-light: #0EA5E9;   /* sky blue — cooling / gradients */
  --color-accent-dark: #075985;
  --color-warm: #EA580C;           /* heating accent — used sparingly */
  --color-warm-light: #FB923C;
  --color-bg: #F8FAFC;
  --color-surface: #FFFFFF;
  --color-fg: #0F172A;
  --color-fg-muted: #475569;
  --color-muted: #EEF2F7;
  --color-border: #E2E8F0;
  --color-destructive: #DC2626;
  --color-success: #16A34A;
  --color-ring: #0369A1;

  --font-heading: 'Poppins', system-ui, sans-serif;
  --font-body: 'Open Sans', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 48px rgba(15, 23, 42, 0.14);
  --shadow-accent: 0 12px 28px rgba(3, 105, 161, 0.28);

  --container-w: 1180px;
  --transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-fg);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.2;
  margin: 0 0 .5em;
  font-weight: 700;
}
p { margin: 0 0 1em; color: var(--color-fg-muted); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ---------- Layout ---------- */
.container { max-width: var(--container-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-tight { padding: 44px 0; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(3, 105, 161, 0.08);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}
.eyebrow.warm { color: var(--color-warm); background: rgba(234, 88, 12, 0.09); }

.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 42px); }
.section-head p { font-size: 17px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; gap: 36px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  min-height: 48px;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover { background: var(--color-accent-dark); box-shadow: 0 14px 32px rgba(3,105,161,.36); transform: translateY(-2px); }
.btn-warm {
  background: linear-gradient(135deg, var(--color-warm) 0%, var(--color-warm-light) 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(234, 88, 12, .3);
}
.btn-warm:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(234,88,12,.38); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.35);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; transform: translateY(-2px); }
.btn-outline-dark {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-primary);
}
.btn-outline-dark:hover { border-color: var(--color-accent); color: var(--color-accent); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 34px; font-size: 16px; }

.cta-row { display: flex; flex-wrap: wrap; gap: 16px; }

/* ---------- Header ---------- */
.top-bar {
  background: var(--color-primary);
  color: rgba(255,255,255,.85);
  font-size: 13px;
}
.top-bar .container { display: flex; align-items: center; justify-content: space-between; padding-top: 8px; padding-bottom: 8px; }
.top-bar a { display: inline-flex; align-items: center; gap: 6px; }
.top-bar .top-links { display: flex; gap: 22px; }
.top-bar svg { width: 14px; height: 14px; }

header.site-header {
  /* NOTE: intentionally no backdrop-filter/transform/filter here — any of those on
     this element would make it the containing block for its position:fixed
     descendants (the mobile nav panel) instead of the viewport, breaking the
     full-screen dropdown on small screens. Solid background instead. */
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--color-border);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; }

.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-weight: 700; font-size: 21px; color: var(--color-primary); }
.logo .mark {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo .mark img { width: 100%; height: 100%; object-fit: contain; }
.logo small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--color-fg-muted); }

.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav a.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  color: var(--color-secondary);
  padding: 10px 16px;
  border-radius: var(--radius-full);
  transition: background var(--transition), color var(--transition);
}
.main-nav a.nav-link:hover, .main-nav a.nav-link.active { background: var(--color-muted); color: var(--color-accent); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.phone-pill {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-heading); font-weight: 600; font-size: 14.5px;
  color: var(--color-primary);
  padding: 10px 16px; border-radius: var(--radius-full);
  border: 1.5px solid var(--color-border);
  transition: border-color var(--transition), color var(--transition);
}
.phone-pill:hover { border-color: var(--color-accent); color: var(--color-accent); }
.phone-pill svg { width: 18px; height: 18px; color: var(--color-accent); }

.nav-toggle { display: none; background: none; border: none; padding: 8px; }
.nav-toggle svg { width: 26px; height: 26px; color: var(--color-primary); }

@media (max-width: 980px) {
  .main-nav { position: fixed; inset: 72px 0 0 0; background: #fff; flex-direction: column; align-items: stretch; padding: 20px; gap: 4px; transform: translateY(-12px); opacity: 0; pointer-events: none; transition: all var(--transition); border-top: 1px solid var(--color-border); overflow-y: auto; z-index: 99; }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a.nav-link { padding: 14px 16px; border-bottom: 1px solid var(--color-border); border-radius: 0; }
  .nav-toggle { display: inline-flex; }
  .top-bar .top-links { display: none; }
}

@media (max-width: 640px) {
  .nav-wrap { padding: 12px 16px; }
  .logo { font-size: 17px; gap: 8px; }
  .logo .mark { width: 38px; height: 38px; }
  .logo small { display: none; }
  .phone-pill { display: none; }
  .header-actions { gap: 8px; }
  .btn-primary.header-cta { padding: 12px 16px; font-size: 13.5px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--color-primary) 0%, var(--color-primary-2) 55%, #14304d 100%);
  color: #fff;
  padding: 90px 0 110px;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .35;
}
.hero::before { width: 480px; height: 480px; background: var(--color-accent-light); top: -160px; right: -120px; }
.hero::after { width: 380px; height: 380px; background: var(--color-warm); bottom: -160px; left: -100px; opacity: .18; }
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 { color: #fff; font-size: clamp(34px, 4.6vw, 56px); letter-spacing: -0.01em; }
.hero .lede { color: rgba(255,255,255,.78); font-size: 18px; max-width: 520px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  padding: 10px 14px; border-radius: var(--radius-full);
  font-size: 13.5px; font-weight: 600; color: #fff;
}
.hero-badge svg { width: 16px; height: 16px; color: var(--color-accent-light); }

/* Hero visual: animated equipment illustration + cursor parallax
   Elements with [data-depth] get their `transform` set continuously by JS
   (see js/main.js "Hero parallax") in response to mouse position, so they
   must NOT also carry a CSS animation on `transform` themselves — the two
   would fight over the same property. The idle "floaty" bob is applied to
   a nested .chip-bob wrapper instead, keeping it independent of the
   parallax transform living on the parent .float-chip. */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; perspective: 1000px; }
.hero-glow {
  position: absolute; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,.35), rgba(234,88,12,.12) 55%, transparent 72%);
  filter: blur(30px); z-index: 0;
}
.hero-orb {
  width: min(420px, 90%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, rgba(255,255,255,.16), rgba(255,255,255,0) 60%), linear-gradient(150deg, rgba(3,105,161,.55), rgba(15,23,42,.15));
  border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  overflow: visible;
}
.hero-orb .tech-illustration { width: 78%; height: auto; filter: drop-shadow(0 18px 30px rgba(0,0,0,.35)); }
[data-depth] { transform: translate3d(0,0,0); will-change: transform; }
.float-chip {
  position: absolute;
  background: #fff;
  color: var(--color-primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0;
  font-family: var(--font-heading); font-weight: 600; font-size: 13.5px;
  z-index: 2;
}
.chip-bob { display: flex; align-items: center; gap: 10px; padding: 12px 16px; animation: floaty 5s ease-in-out infinite; }
.float-chip svg { width: 20px; height: 20px; }
.float-chip.chip-cool { top: 6%; left: -4%; }
.float-chip.chip-cool .chip-bob { animation-delay: .2s; }
.float-chip.chip-cool svg { color: var(--color-accent-light); }
.float-chip.chip-heat { bottom: 10%; right: -6%; }
.float-chip.chip-heat .chip-bob { animation-delay: 1.1s; }
.float-chip.chip-heat svg { color: var(--color-warm); }
.float-chip.chip-air { top: 48%; left: -12%; }
.float-chip.chip-air .chip-bob { animation-delay: 2s; }
.float-chip.chip-air svg { color: var(--color-success); }
@media (max-width: 640px) {
  .chip-bob { padding: 9px 12px; font-size: 12px; }
  .float-chip.chip-cool { left: 0; }
  .float-chip.chip-air { left: 0; }
  .float-chip.chip-heat { right: 0; }
}
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@media (prefers-reduced-motion: reduce) {
  .chip-bob { animation: none; }
}

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--color-surface); border-bottom: 1px solid var(--color-border); }
.trust-strip .container { display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; padding: 26px 24px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-weight: 600; font-size: 14px; color: var(--color-secondary); }
.trust-item svg { width: 22px; height: 22px; color: var(--color-accent); flex-shrink: 0; }

/* ---------- Cards ---------- */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
/* Cursor-follow spotlight — JS (see "Card spotlight" in main.js) sets --mx/--my
   custom properties to the pointer position on each card; the gradient below
   just reads them, so there is no per-frame JS work for this effect. */
.card { position: relative; overflow: hidden; }
.card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 0%), rgba(3,105,161,.10), transparent 65%);
  opacity: 0; transition: opacity .35s ease;
  pointer-events: none;
}
.card:hover::before { opacity: 1; }

.icon-badge {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  background: rgba(3,105,161,.09);
  margin-bottom: 20px;
}
.icon-badge svg { width: 28px; height: 28px; color: var(--color-accent); }
.icon-badge.warm { background: rgba(234,88,12,.1); }
.icon-badge.warm svg { color: var(--color-warm); }

.feature-card h3 { font-size: 18px; margin-bottom: 8px; }
.feature-card p { font-size: 14.5px; margin-bottom: 0; }

/* Service showcase (residential / commercial) */
.service-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.service-block + .service-block { margin-top: 32px; }
.service-block.reverse { grid-template-columns: 1fr 1fr; }
.service-block.reverse .service-copy { order: 2; }
.service-block.reverse .service-visual { order: 1; }
@media (max-width: 900px) {
  .service-block, .service-block.reverse { grid-template-columns: 1fr; }
  .service-block.reverse .service-copy, .service-block.reverse .service-visual { order: initial; }
}
.service-copy { padding: 44px; }
.service-copy h3 { font-size: 26px; }
.service-copy > p { font-size: 15.5px; }
.service-visual {
  background: linear-gradient(160deg, var(--color-primary) 0%, var(--color-accent-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 40px; position: relative; overflow: hidden; min-height: 260px;
}
.service-visual.commercial { background: linear-gradient(160deg, #0F172A 0%, #334155 100%); }
.service-visual svg.big-icon { width: 42%; max-width: 180px; color: rgba(255,255,255,.92); }
.service-visual::after { content:""; position:absolute; inset:0; background: radial-gradient(circle at 75% 20%, rgba(255,255,255,.14), transparent 55%); z-index: 1; pointer-events: none; }
/* Photo variant: real job-site photos fill the card edge-to-edge, with the
   existing gradient (kept as a base layer + a darkening wash) showing
   through only where the photo doesn't fully cover, and the same soft
   highlight overlay from ::after on top for visual consistency with the
   icon-only cards elsewhere on the site. */
.service-visual.has-photo { padding: 0; }
.service-visual .visual-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}

.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.tag {
  display: flex; align-items: center; gap: 7px;
  background: var(--color-muted); border-radius: var(--radius-full);
  padding: 8px 14px; font-size: 13.5px; font-weight: 600; color: var(--color-secondary);
}
.tag svg { width: 15px; height: 15px; color: var(--color-accent); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 30px 24px 24px; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); }
.step-num {
  width: 40px; height: 40px; border-radius: var(--radius-full);
  background: var(--color-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; margin-bottom: 16px;
}
.step h4 { font-size: 16.5px; margin-bottom: 6px; }
.step p { font-size: 14px; margin-bottom: 0; }

/* Value cards (about page) */
.value-card { text-align: left; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--color-accent-dark) 0%, var(--color-accent) 55%, var(--color-accent-light) 130%);
  border-radius: var(--radius-lg);
  padding: 56px;
  color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-banner::after { content:""; position:absolute; inset:0; background: radial-gradient(circle at 85% 20%, rgba(255,255,255,.22), transparent 55%); }
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; font-size: clamp(24px, 3vw, 32px); margin-bottom: 6px; }
.cta-banner p { color: rgba(255,255,255,.85); margin-bottom: 0; }
@media (max-width: 768px) { .cta-banner { padding: 36px 28px; flex-direction: column; text-align: center; } .cta-banner .cta-row { justify-content: center; } }

.emergency-banner {
  background: linear-gradient(120deg, #7C2D12 0%, var(--color-warm) 100%);
  border-radius: var(--radius-lg);
  padding: 30px 40px;
  color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.emergency-banner .label { display: flex; align-items: center; gap: 14px; }
.emergency-banner .label svg { width: 30px; height: 30px; flex-shrink: 0; }
.emergency-banner strong { display: block; font-family: var(--font-heading); font-size: 17px; }
.emergency-banner span { font-size: 13.5px; color: rgba(255,255,255,.85); }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--color-primary); color: rgba(255,255,255,.7); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h5 { color: #fff; font-family: var(--font-heading); font-size: 14px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; }
.footer-grid ul li { margin-bottom: 12px; font-size: 14.5px; }
.footer-grid ul li a:hover { color: #fff; }
.footer-grid .foot-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-grid .foot-logo span { font-family: var(--font-heading); font-weight: 700; font-size: 19px; color: #fff; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 14.5px; }
.footer-contact-item svg { width: 18px; height: 18px; color: var(--color-accent-light); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; font-size: 13px; flex-wrap: wrap; gap: 12px; }
.footer-bottom .socials { display: flex; gap: 10px; }
.footer-bottom .socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.footer-bottom .socials a:hover { background: var(--color-accent); }
.footer-bottom .socials svg { width: 16px; height: 16px; color: #fff; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--color-primary) 0%, var(--color-primary-2) 100%);
  color: #fff; padding: 64px 0; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before { content:""; position:absolute; width: 420px; height: 420px; background: var(--color-accent-light); opacity: .22; filter: blur(70px); border-radius: 50%; top: -180px; right: -80px; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(30px, 4vw, 46px); margin-bottom: 12px; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: #fff; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-heading); font-weight: 600; font-size: 14px; color: var(--color-primary); }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  color: var(--color-fg);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 4px rgba(3,105,161,.14);
}
.field-hint { font-size: 12.5px; color: var(--color-fg-muted); }
.form-note { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--color-fg-muted); margin-top: 4px; }
.form-note svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; color: var(--color-accent); }
.form-success {
  display: none; align-items: center; gap: 12px; background: rgba(22,163,74,.1); border: 1px solid rgba(22,163,74,.3);
  color: #15803D; padding: 16px 18px; border-radius: var(--radius-sm); font-weight: 600; font-size: 14.5px; margin-top: 18px;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

/* Contact info cards */
.contact-info-card { display: flex; gap: 18px; align-items: flex-start; }
.contact-info-card .icon-badge { flex-shrink: 0; margin-bottom: 0; }
.contact-info-card h4 { font-size: 16px; margin-bottom: 4px; }
.contact-info-card p { font-size: 14.5px; margin-bottom: 0; }
.contact-info-card a.value { font-family: var(--font-heading); font-weight: 600; color: var(--color-accent); font-size: 15.5px; }
.contact-info-card a.value:hover { text-decoration: underline; }

.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--color-border); box-shadow: var(--shadow-md); transition: transform var(--transition), box-shadow var(--transition); }
.map-frame:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.map-visual {
  position: relative;
  min-height: 240px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  text-align: center;
  padding: 32px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.14), transparent 45%),
    radial-gradient(circle at 80% 75%, rgba(14,165,233,.35), transparent 50%),
    linear-gradient(150deg, var(--color-primary) 0%, var(--color-accent-dark) 100%);
  overflow: hidden;
}
.map-visual::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 36px 36px;
}
.map-visual .pin { width: 40px; height: 40px; color: #fff; position: relative; z-index: 1; }
.map-visual strong { position: relative; z-index: 1; font-family: var(--font-heading); color: #fff; font-size: 16.5px; }
.map-visual span { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.8); font-size: 13.5px; font-weight: 600; }
.map-visual span svg { color: rgba(255,255,255,.8); }

/* Hours table */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 10px 0; border-bottom: 1px solid var(--color-border); font-size: 14.5px; }
.hours-table td:first-child { font-weight: 600; color: var(--color-primary); font-family: var(--font-heading); }
.hours-table td:last-child { text-align: right; color: var(--color-fg-muted); }
.hours-table tr:last-child td { border-bottom: none; }

/* Values grid on about */
.credential-strip { display: flex; flex-wrap: wrap; gap: 18px; }
.credential-chip {
  display: flex; align-items: center; gap: 12px;
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 16px 20px; flex: 1; min-width: 220px;
}
.credential-chip svg { width: 26px; height: 26px; color: var(--color-accent); flex-shrink: 0; }
.credential-chip strong { display: block; font-family: var(--font-heading); font-size: 14.5px; color: var(--color-primary); }
.credential-chip span { font-size: 12.5px; color: var(--color-fg-muted); }

/* Founder / owner block */
.founder-block { display: flex; gap: 32px; align-items: center; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 40px; }
@media (max-width: 700px) { .founder-block { flex-direction: column; text-align: center; } }
.founder-avatar {
  width: 128px; height: 128px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(150deg, var(--color-accent) 0%, var(--color-primary) 100%);
  display: flex; align-items: center; justify-content: center; color: #fff;
  font-family: var(--font-heading); font-weight: 700; font-size: 40px;
  box-shadow: var(--shadow-md);
}
.founder-role { color: var(--color-accent); font-family: var(--font-heading); font-weight: 600; font-size: 13.5px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 10px; display: block; }

/* Reveal on scroll — only hidden pre-animation when JS confirms it can run the reveal
   (html.js-ready is added by an inline script in <head>). No-JS / slow-JS visitors
   always see full content, never a blank section. */
.js-ready .reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms ease, transform 700ms ease; }
.js-ready .reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 90ms; }
.reveal-delay-2 { transition-delay: 180ms; }
.reveal-delay-3 { transition-delay: 270ms; }
.reveal-delay-4 { transition-delay: 360ms; }

/* Stats */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 768px) { .stat-strip { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; padding: 28px 16px; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); }
.stat .num { font-family: var(--font-heading); font-weight: 800; font-size: 34px; color: var(--color-accent); }
.stat .lbl { font-size: 13.5px; color: var(--color-fg-muted); font-weight: 600; }

/* Back to top */
.back-to-top {
  position: fixed; bottom: 24px; right: 24px; width: 48px; height: 48px; border-radius: 50%;
  background: var(--color-accent); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: all var(--transition); z-index: 90; border: none;
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top svg { width: 20px; height: 20px; }

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--color-ring); outline-offset: 2px;
}
