/* =========================================================
   Shelton Painting — styles.css
   Desktop-first responsive. Base styles target 1440 desktop.
   max-width breakpoints scale DOWN to tablet and mobile.
   Visuals mirror the Figma source of truth.
   ========================================================= */

:root {
  --orange:        #E8743D;
  --orange-600:    #D8682E;
  --orange-700:    #B85320;
  --orange-50:     #FFF1E8;
  --ink-900:       #1A1410;
  --ink-700:       #3B312B;
  --ink-500:       #6B5F57;
  --paper:         #FFFFFF;
  --cream-50:      #FBF7F2;
  --cream-100:     #F4ECE2;
  --line:          #E8DFD4;
  --line-dark:     rgba(255,255,255,0.18);
  --success:       #1F7A3E;
  --error:         #B0341E;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Desktop layout */
  --container:     1180px;
  --gutter:        40px;
  --section-y:     112px;

  /* Radii (Figma) */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  22px;
  --r-pill: 999px;

  /* Shadows (Figma) */
  --shadow-sm: 0 2px 8px rgba(20,12,8,0.06);
  --shadow-md: 0 14px 40px rgba(20,12,8,0.08);
  --shadow-lg: 0 30px 60px -20px rgba(20,12,8,0.18);
  --cta-glow:  0 8px 22px -8px rgba(232,116,61,0.65);

  --ease: cubic-bezier(.2,.7,.2,1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; height: auto; }

a { color: var(--orange-700); text-decoration: none; }
a:hover, a:focus-visible { text-decoration: underline; text-underline-offset: 2px; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: calc(var(--container) + 2 * var(--gutter));
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink-900); color: #fff;
  padding: 10px 14px; z-index: 999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* =========================
   Typography (desktop base)
   ========================= */
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink-900);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 0.4em;
}

h1 {
  font-size: 64px;
  line-height: 70px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
h2 {
  font-size: 40px;
  line-height: 46px;
  letter-spacing: -0.01em;
}
h3 { font-size: 22px; line-height: 28px; }
h4 {
  font-size: 13px; line-height: 16px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-900);
}

h1 em, h2 em {
  font-style: italic;
  font-family: var(--serif);
  color: var(--orange-700);
}

p { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.18em;
  line-height: 16px;
  text-transform: uppercase;
  color: var(--orange-700);
  font-weight: 600;
  margin: 0 0 14px;
}
.eyebrow-light { color: rgba(255,255,255,0.85); }

.section-lede {
  font-size: 17px;
  line-height: 28px;
  color: var(--ink-500);
  max-width: 60ch;
}
.section-lede-light { color: rgba(255,255,255,0.82); }

/* =========================
   Buttons
   ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  border-radius: var(--r-pill);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 160ms var(--ease), background-color 160ms var(--ease), color 160ms var(--ease), box-shadow 160ms var(--ease);
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--cta-glow);
}
.btn-primary:hover { background: var(--orange-600); }

.btn-ghost {
  background: transparent;
  color: var(--ink-900);
  border-color: rgba(26,20,16,0.18);
}
.btn-ghost:hover { background: var(--ink-900); color: #fff; border-color: var(--ink-900); }

.btn-block { display: flex; justify-content: center; width: 100%; }

/* =========================
   Header / Nav (desktop base)
   ========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms var(--ease), background-color 200ms var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255,255,255,0.98);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-900);
}
.brand:hover { text-decoration: none; }
.brand img { width: 40px; height: 40px; }
.brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.brand-name em {
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-top: 2px;
  font-weight: 600;
}

/* Hamburger (hidden on desktop) */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle .bar {
  width: 18px; height: 2px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: transform 200ms var(--ease), opacity 200ms var(--ease);
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Desktop nav */
.primary-nav ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.primary-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-900);
  border-radius: 8px;
}
.primary-nav a:hover { text-decoration: none; color: var(--orange-700); background: var(--cream-50); }

.primary-nav .nav-cta {
  margin-left: 8px;
  padding: 11px 18px;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  border-radius: var(--r-pill);
  box-shadow: var(--cta-glow);
}
.primary-nav .nav-cta:hover { background: var(--orange-600); color: #fff; }

.primary-nav .nav-call {
  font-weight: 600;
  color: var(--ink-900);
}
.primary-nav .nav-call:hover { color: var(--orange-700); }

/* =========================
   Hero (desktop base)
   ========================= */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 110px 0 130px;
  background:
    radial-gradient(ellipse at 12% 22%, rgba(232,116,61,0.18), transparent 50%),
    radial-gradient(ellipse at 92% 8%,  rgba(232,116,61,0.10), transparent 45%),
    #FFF8F1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero-inner { position: relative; max-width: 880px; }

.hero h1 { margin-bottom: 20px; }
.hero-sub {
  font-size: 19px;
  line-height: 30px;
  color: var(--ink-500);
  max-width: 56ch;
  margin-bottom: 28px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}

.hero-trust {
  list-style: none;
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 720px;
  font-size: 14px;
  line-height: 22px;
  color: var(--ink-500);
}
.hero-trust span {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  line-height: 40px;
  font-weight: 900;
  color: var(--orange-700);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

/* =========================
   Generic section
   ========================= */
.section { padding: var(--section-y) 0; }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head-light h2 { color: #fff; }
.section-head-light h2 em { color: #FFC79E; }

/* =========================
   Services
   ========================= */
.section-services { background: var(--cream-50); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px 26px;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232,116,61,0.35);
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--orange-50);
  color: var(--orange-700);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 22px; line-height: 28px; margin-bottom: 8px; }
.service-card p { font-size: 15px; line-height: 24px; color: var(--ink-500); margin: 0; }

/* =========================
   About
   ========================= */
.section-about { background: var(--paper); }
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}
.about-stamp {
  width: 320px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  position: relative;
}
.about-stamp::before {
  content: "";
  position: absolute;
  inset: -28px;
  background:
    radial-gradient(circle at 30% 30%, rgba(232,116,61,0.20), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(232,116,61,0.10), transparent 60%);
  border-radius: 50%;
  z-index: -1;
}
.about-stamp img {
  width: 100%; height: auto;
  filter: drop-shadow(0 18px 40px rgba(232,116,61,0.35));
}

.about-stat {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--ink-900);
  color: #fff;
  border-radius: var(--r-md);
  padding: 14px 18px;
  max-width: 240px;
  box-shadow: var(--shadow-md);
}
.about-stat strong {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 36px;
  font-weight: 900;
  color: var(--orange);
  display: block;
}
.about-stat span { font-size: 12px; line-height: 18px; color: rgba(255,255,255,0.78); }

.about-copy p { font-size: 17px; line-height: 28px; color: var(--ink-700); }
.about-copy p em {
  font-style: italic;
  color: var(--orange-700);
  font-family: var(--serif);
  font-size: 18px;
}

/* =========================
   Process
   ========================= */
.section-process { background: var(--cream-50); }
.process-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.process-list li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.step-num {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 28px;
  line-height: 30px;
  color: var(--orange);
}
.process-list h3 { margin: 0; font-size: 18px; line-height: 24px; }
.process-list p { margin: 0; color: var(--ink-500); font-size: 14px; line-height: 22px; }

/* =========================
   Values (dark)
   ========================= */
.section-values {
  background: var(--ink-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-values::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 14%, rgba(232,116,61,0.30), transparent 38%),
    radial-gradient(circle at 12% 90%, rgba(232,116,61,0.16), transparent 45%);
  pointer-events: none;
}
.section-values .container { position: relative; }
.section-values h2 { color: #fff; }

.values-grid {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.values-grid li {
  border: 1px solid var(--line-dark);
  border-radius: var(--r-md);
  padding: 22px 18px;
  background: rgba(255,255,255,0.04);
  text-align: center;
  transition: background-color 200ms var(--ease), border-color 200ms var(--ease);
}
.values-grid li:hover {
  background: rgba(232,116,61,0.12);
  border-color: rgba(232,116,61,0.5);
}
.values-grid span {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 22px;
  font-weight: 700;
  color: #fff;
}

/* =========================
   Service Area
   ========================= */
.section-area { background: var(--paper); }

.area-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.area-list li {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--ink-900);
  background: var(--cream-50);
  display: flex;
  align-items: center;
  gap: 10px;
}
.area-list li::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex: 0 0 auto;
}

/* =========================
   Quote / Form
   ========================= */
.section-quote {
  background: linear-gradient(135deg, var(--orange-600) 0%, var(--orange-700) 100%);
  color: #fff;
}
.section-quote h2 { color: #fff; }
.section-quote a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.quote-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.quote-copy { color: rgba(255,255,255,0.92); }
.quote-copy p {
  font-size: 17px;
  line-height: 28px;
  opacity: 0.92;
}

.quote-bullets {
  list-style: none;
  padding: 8px 0 0; margin: 24px 0 0;
  display: grid;
  gap: 10px;
}
.quote-bullets li {
  position: relative;
  padding-left: 34px;
  font-size: 16px;
  line-height: 24px;
}
.quote-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 1px;
  width: 22px; height: 22px;
  background: rgba(255,255,255,0.18);
  color: #fff;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
}

.quote-form {
  background: var(--paper);
  color: var(--ink-700);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 14px;
}

.field { display: grid; gap: 6px; }
.field-row { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }

.field label {
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  font: inherit;
  width: 100%;
  background: var(--cream-50);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--ink-900);
  transition: border-color 160ms var(--ease), background-color 160ms var(--ease), box-shadow 160ms var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--orange);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(232,116,61,0.15);
}

.field textarea { resize: vertical; min-height: 110px; }

.field-honeypot { position: absolute; left: -9999px; top: auto; height: 0; width: 0; overflow: hidden; }

.form-note {
  font-size: 12px;
  line-height: 18px;
  color: var(--ink-500);
  margin: 0;
  text-align: center;
}
.form-status {
  font-size: 14px;
  margin: 0;
  text-align: center;
  min-height: 1.2em;
}
.form-status.is-success { color: var(--success); }
.form-status.is-error { color: var(--error); }

/* =========================
   Footer
   ========================= */
.site-footer {
  background: var(--ink-900);
  color: rgba(255,255,255,0.78);
  padding: 64px 0 32px;
}
.site-footer h4 { color: #fff; margin: 0 0 14px; font-size: 12px; letter-spacing: 0.12em; }
.site-footer a { color: rgba(255,255,255,0.78); }
.site-footer a:hover { color: #fff; text-decoration: underline; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.footer-brand img { width: 56px; height: 56px; flex: 0 0 56px; }
.footer-brand strong {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 26px;
  color: #fff;
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
}
.footer-brand p { margin: 0; font-size: 14px; line-height: 22px; max-width: 36ch; }

.footer-nav ul,
.footer-contact ul {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 8px;
  font-size: 14px;
  line-height: 22px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 13px;
  line-height: 20px;
  gap: 24px;
}
.footer-cta a { color: var(--orange); font-weight: 600; }

/* =========================
   Floating call (mobile only — hidden on desktop)
   ========================= */
.floating-call {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: var(--orange);
  color: #fff;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: var(--r-pill);
  font-weight: 700;
  box-shadow: 0 10px 28px -8px rgba(232,116,61,0.7);
  z-index: 60;
}
.floating-call:hover { text-decoration: none; background: var(--orange-600); color: #fff; }

/* =========================
   Reveal on scroll
   ========================= */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   RESPONSIVE — desktop-first, scaling DOWN
   ========================================================= */

/* ≤1280 — slight container tightening */
@media (max-width: 1280px) {
  :root { --gutter: 32px; }
  h1 { font-size: 56px; line-height: 62px; }
}

/* ≤1024 — tablet: cards collapse, columns reflow */
@media (max-width: 1024px) {
  :root {
    --gutter: 28px;
    --section-y: 88px;
  }

  h1 { font-size: 48px; line-height: 54px; }
  h2 { font-size: 34px; line-height: 40px; }

  .hero { padding: 88px 0 100px; }
  .hero-sub { font-size: 18px; line-height: 28px; }

  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(4, 1fr); }
  .area-list { grid-template-columns: repeat(3, 1fr); }

  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-media { min-height: 320px; }
  .about-stamp { width: 280px; }

  .quote-grid { grid-template-columns: 1fr; gap: 40px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  .hero-trust span { font-size: 32px; line-height: 36px; }
}

/* ≤768 — mobile: nav collapses, single columns */
@media (max-width: 768px) {
  :root {
    --gutter: 20px;
    --section-y: 72px;
  }

  body { font-size: 16px; }

  h1 { font-size: 40px; line-height: 46px; }
  h2 { font-size: 28px; line-height: 34px; }
  h3 { font-size: 20px; line-height: 26px; }

  .hero { padding: 64px 0 80px; }
  .hero-sub { font-size: 17px; line-height: 26px; margin-bottom: 24px; }
  .hero-ctas { gap: 10px; }
  .btn { padding: 14px 20px; font-size: 15px; }

  /* Header */
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: fixed;
    inset: 68px 0 0 0;
    background: var(--paper);
    padding: 24px var(--gutter) 32px;
    transform: translateX(100%);
    transition: transform 280ms var(--ease);
    border-top: 1px solid var(--line);
    overflow-y: auto;
    z-index: 49;
  }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .primary-nav a {
    padding: 14px 8px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
  }
  .primary-nav .nav-cta {
    margin: 12px 0 0;
    padding: 14px 18px;
    text-align: center;
    justify-content: center;
    border: 0;
  }
  .primary-nav .nav-call {
    background: var(--ink-900);
    color: #fff;
    border-radius: var(--r-pill);
    padding: 14px 18px;
    margin-top: 4px;
    justify-content: center;
  }
  .primary-nav .nav-call:hover { color: #fff; background: var(--ink-700); }

  /* Hero trust row — keep 3 columns but scale */
  .hero-trust {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .hero-trust span { font-size: 26px; line-height: 30px; }
  .hero-trust { font-size: 13px; line-height: 18px; }

  /* Grids → single / double cols */
  .service-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card { padding: 24px 20px 22px; }

  .process-list { grid-template-columns: 1fr; gap: 12px; }
  .process-list li { padding: 22px 20px; }

  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .values-grid li { padding: 18px 14px; }
  .values-grid span { font-size: 16px; line-height: 22px; }

  .area-list { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  /* About */
  .about-stamp { width: 220px; }
  .about-stat { right: 0; bottom: -8px; padding: 12px 14px; max-width: 200px; }
  .about-stat strong { font-size: 26px; line-height: 30px; }
  .about-stat span { font-size: 11px; }

  /* Quote */
  .quote-form { padding: 24px; border-radius: 18px; }
  .field-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Floating call */
  .floating-call { display: inline-flex; }
}

/* ≤480 — small mobile: tighter padding, smaller numerals */
@media (max-width: 480px) {
  :root { --section-y: 56px; }
  h1 { font-size: 34px; line-height: 40px; letter-spacing: -0.015em; }
  .section-head { margin-bottom: 32px; }
  .hero { padding: 48px 0 64px; }
  .hero-trust { grid-template-columns: 1fr; gap: 12px; max-width: 320px; }
  .hero-trust span { font-size: 30px; line-height: 34px; margin-bottom: 2px; }
  .area-list { grid-template-columns: 1fr; }
}

/* =========================
   Print
   ========================= */
@media print {
  .site-header, .floating-call, .quote-form, .nav-toggle, .hero-bg { display: none !important; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  .section { padding: 32px 0; }
}
