/* ============================================================
   Progress Glass Co. Ltd — Design System (v2)
   Brand palette: orange (#ea4d1c) + charcoal (#1a1a1a) from logo
   Modern, minimal, accessible, fast-loading, fully responsive
   ============================================================ */

:root {
  /* Brand color tokens */
  --color-bg: #ffffff;
  --color-surface: #faf8f5;        /* warm off-white */
  --color-surface-2: #f0ece6;      /* warmer secondary surface */
  --color-text: #1a1a1a;           /* matches logo charcoal */
  --color-text-muted: #4b4b4b;
  --color-text-subtle: #6b6b6b;
  --color-border: #e6e2dc;
  --color-primary: #ea4d1c;        /* brand orange ("p" in logo) */
  --color-primary-hover: #c93d10;
  --color-primary-dark: #a83209;
  --color-accent: #1a1a1a;         /* brand charcoal ("g" in logo) */
  --color-accent-hover: #000000;
  --color-success: #16a34a;
  --color-warning: #d97706;
  --color-danger: #dc2626;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-8: 3rem;
  --space-10: 4rem;
  --space-12: 6rem;
  --space-16: 8rem;

  /* Type */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.12);

  /* Layout */
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body { overflow-x: hidden; }  /* hard guard against horizontal scroll */

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

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

a { color: var(--color-primary); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--color-primary-hover); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 var(--space-4);
  color: var(--color-text);
}

h1 { font-size: clamp(2rem, 3.5vw + 1rem, 3.6rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 2vw + 1rem, 2.6rem); }
h3 { font-size: clamp(1.2rem, 1vw + 0.9rem, 1.5rem); }
h4 { font-size: 1.125rem; }

p { margin: 0 0 var(--space-4); color: var(--color-text-muted); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--color-border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: 72px;
  padding: var(--space-3) 0;
  flex-wrap: nowrap;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 700;
  color: var(--color-text);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo:hover { color: var(--color-text); }
.nav-logo-mark {
  display: inline-block;
  width: 64px;
  height: 37px;                /* matches 120x69 source aspect ratio (~1.74:1) */
  background: url("/images/progress-glass-logo-120x69.png") no-repeat center / contain;
  /* Hide the inline "PG" text so the actual logo image shows alone */
  font-size: 0;
  color: transparent;
  border-radius: 0;
  flex-shrink: 0;
}
/* Dark footer: flip the logo to pure white so it stays visible.
   Single-file approach; loses brand orange in the footer only. */
.site-footer .nav-logo-mark {
  filter: brightness(0) invert(1);
}
.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  list-style: none;
  margin: 0; padding: 0;
}
.nav-list a {
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: var(--space-2) var(--space-1);
  position: relative;
  display: inline-block;
  min-height: 44px;          /* touch target */
  line-height: 28px;
}
.nav-list a:hover, .nav-list a[aria-current="page"] {
  color: var(--color-primary);
}
.nav-list a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: var(--space-1); right: var(--space-1); bottom: 6px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
}
.nav-cta { display: flex; gap: var(--space-2); align-items: center; flex-shrink: 0; }
.nav-toggle {
  display: none;
  background: none; border: none;
  width: 44px; height: 44px;
  cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--color-text); position: relative; display: block; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 22px; height: 2px; background: var(--color-text);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top: 7px; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.75rem 1.35rem;
  min-height: 44px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.97rem;
  letter-spacing: -0.005em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--color-primary-hover); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-accent { background: var(--color-accent); color: #fff; }
.btn-accent:hover { background: var(--color-accent-hover); color: #fff; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--color-text); border-color: var(--color-border); }
.btn-outline:hover { border-color: var(--color-text); color: var(--color-text); }
.btn-ghost { background: transparent; color: var(--color-text); }
.btn-ghost:hover { background: var(--color-surface); color: var(--color-primary); }
.btn-lg { padding: 0.95rem 1.7rem; font-size: 1.05rem; min-height: 52px; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: var(--space-10) 0 var(--space-10);
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-bg) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(234, 77, 28, 0.10), transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(26, 26, 26, 0.05), transparent 40%);
  pointer-events: none;
}
.hero .container { position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-10);
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-surface-2);
  color: var(--color-accent);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: var(--space-5);
}
.hero-eyebrow .dot { width: 8px; height: 8px; background: var(--color-success); border-radius: 50%; box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.18); }
.hero-title { margin-bottom: var(--space-4); }
.hero-sub { font-size: 1.15rem; color: var(--color-text-muted); max-width: 540px; margin-bottom: var(--space-6); }
.hero-cta { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.hero-trust { margin-top: var(--space-6); display: flex; gap: var(--space-6); flex-wrap: wrap; font-size: 0.9rem; color: var(--color-text-subtle); }
.hero-trust strong { color: var(--color-text); display: block; font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; }

.hero-visual {
  position: relative;
  border-radius: var(--radius-xl);
  background-color: #1a1a1a;
  background-image: var(--hero-photo, linear-gradient(135deg, #1a1a1a 0%, #ea4d1c 100%));
  background-size: cover;
  background-position: center;
  aspect-ratio: 4/5;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(26, 26, 26, 0.45) 0%, rgba(234, 77, 28, 0.35) 100%),
    linear-gradient(transparent 50%, rgba(0, 0, 0, 0.65));
}
.hero-visual-content {
  position: absolute;
  inset: 0;
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}
.hero-visual-tag {
  position: absolute;
  top: var(--space-5); left: var(--space-5);
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}
.hero-visual h3 { color: #fff; margin-bottom: var(--space-2); font-size: 1.5rem; }
.hero-visual p { color: rgba(255,255,255,0.9); margin: 0; }

/* ============================================================
   Sections
   ============================================================ */
section { padding: var(--space-10) 0; }
.section-eyebrow {
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: var(--space-3);
}
.section-header { text-align: center; max-width: 720px; margin: 0 auto var(--space-8); }
.section-header.left { text-align: left; margin-left: 0; }
.section-header p { font-size: 1.1rem; }
.section-alt { background: var(--color-surface); }

/* ============================================================
   Cards / Grids
   ============================================================ */
.grid { display: grid; gap: var(--space-5); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: #d9d1c4; }
.card h3 { margin-bottom: var(--space-3); }
.card p { margin-bottom: var(--space-4); }
.card .card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: grid; place-items: center;
  color: #fff;
  margin-bottom: var(--space-4);
}

/* Photo at the top of a card (e.g., service cards on home) */
.card-photo {
  display: block;
  width: calc(100% + var(--space-6) * 2);
  height: 200px;
  object-fit: cover;
  margin: calc(-1 * var(--space-6)) calc(-1 * var(--space-6)) var(--space-5);
  background: var(--color-surface-2);
}

/* Hero/lead photo inside service sections */
.service-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-5);
  background: var(--color-surface-2);
}

/* Gallery: equal-height tiles showing recent work */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}
.gallery-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-surface-2);
}
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.gallery-tile:hover img { transform: scale(1.05); }
.gallery-tile-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: var(--space-3) var(--space-4);
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
}
@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .card-photo { height: 180px; }
}
.card a.card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
  color: var(--color-primary);
}
.card a.card-link:hover { gap: var(--space-3); }

/* Feature row */
.feature-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: var(--space-4);
  align-items: start;
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-border);
}
.feature-row:last-child { border-bottom: none; }
.feature-row .feature-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--color-surface-2);
  color: var(--color-primary);
  display: grid; place-items: center;
}
.feature-row h4 { margin: 0 0 var(--space-1); }
.feature-row p { margin: 0; font-size: 0.97rem; }

/* Pill / chip list */
.chips { display: flex; flex-wrap: wrap; gap: var(--space-2); margin: var(--space-4) 0; }
.chip {
  background: var(--color-surface-2);
  color: var(--color-accent);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--color-accent) 0%, #000000 100%);
  color: #fff;
  padding: var(--space-10) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(234, 77, 28, 0.35), transparent 50%);
}
.cta-band .container { position: relative; display: flex; align-items: center; justify-content: space-between; gap: var(--space-6); flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin: 0 0 var(--space-2); }
.cta-band p { color: rgba(255,255,255,0.85); margin: 0; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: #0d0d0d;
  color: #cccccc;
  padding: var(--space-10) 0 var(--space-6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-8);
}
.site-footer h4 { color: #fff; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--space-4); }
.site-footer a { color: #cccccc; }
.site-footer a:hover { color: var(--color-primary); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: var(--space-2); }
.site-footer .nav-logo { color: #fff; }
.site-footer .footer-brand p { color: #999999; margin: var(--space-3) 0; }
.footer-bottom {
  border-top: 1px solid #2a2a2a;
  margin-top: var(--space-8);
  padding-top: var(--space-5);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.9rem;
  color: #999999;
  flex-wrap: wrap; gap: var(--space-3);
}

/* ============================================================
   Forms
   ============================================================ */
.form { display: grid; gap: var(--space-4); max-width: 640px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.form label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: var(--space-2); color: var(--color-text); }
/* Text-style inputs — exclude checkbox/radio so they don't inherit text-field sizing */
.form input:not([type="checkbox"]):not([type="radio"]),
.form select,
.form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font: inherit;
  font-size: 16px;            /* prevents iOS zoom on focus */
  background: #fff;
  color: var(--color-text);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form input:not([type="checkbox"]):not([type="radio"]):focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(234, 77, 28, 0.18);
}
.form textarea { min-height: 120px; resize: vertical; }

/* Native checkboxes / radios — keep their default browser size, just tint to brand */
.form input[type="checkbox"],
.form input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--color-primary);  /* tints the check mark orange */
}

/* Checkbox group — two columns on desktop, single column on phones */
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3) var(--space-4);
  margin-top: var(--space-2);
}
.checkbox-group label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  gap: var(--space-3);
  font-weight: 400;
  font-size: 0.97rem;
  line-height: 1.4;
  margin: 0;
  padding: var(--space-2) 0;
  cursor: pointer;
  min-height: 36px;
  color: var(--color-text);
}

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq-list { display: grid; gap: var(--space-3); max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-4) var(--space-5);
  font-weight: 600;
  color: var(--color-text);
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--space-4);
  min-height: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.4rem; color: var(--color-primary); font-weight: 400;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-body { padding: 0 var(--space-5) var(--space-5); color: var(--color-text-muted); }
.faq-item .faq-body p { margin-bottom: var(--space-3); }
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* ============================================================
   Breadcrumbs
   ============================================================ */
.breadcrumbs {
  font-size: 0.9rem;
  color: var(--color-text-subtle);
  padding: var(--space-5) 0 0;
}
.breadcrumbs ol { list-style: none; padding: 0; margin: 0; display: flex; gap: var(--space-2); flex-wrap: wrap; }
.breadcrumbs li + li::before { content: '/'; margin-right: var(--space-2); color: var(--color-text-subtle); }
.breadcrumbs a { color: var(--color-text-subtle); }
.breadcrumbs a:hover { color: var(--color-text); }
.breadcrumbs [aria-current="page"] { color: var(--color-text); }

/* ============================================================
   Page heading (interior pages)
   ============================================================ */
.page-hero {
  padding: var(--space-8) 0 var(--space-6);
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-bg) 100%);
}
.page-hero h1 { max-width: 820px; margin-bottom: var(--space-3); }
.page-hero .lede { font-size: 1.2rem; color: var(--color-text-muted); max-width: 680px; }

/* ============================================================
   Map embed and responsive media
   ============================================================ */
.map-embed {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 100%;
}
iframe { max-width: 100%; }

/* Make any blog-post tables scrollable on small screens */
table.compare { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ============================================================
   Utility
   ============================================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.lead { font-size: 1.15rem; color: var(--color-text-muted); }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============================================================
   Responsive — large tablet (1024px and below)
   ============================================================ */
@media (max-width: 1024px) {
  .nav-cta .btn-ghost { display: none; }
  .nav-list { gap: var(--space-4); }
}

/* ============================================================
   Responsive — tablet (960px and below)
   ============================================================ */
@media (max-width: 960px) {
  :root { --space-12: 4.5rem; --space-10: 3rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 16/10; max-height: 360px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
  .hero-trust { gap: var(--space-4); }
  h1 { font-size: clamp(1.8rem, 4vw + 1rem, 2.8rem); }
}

/* ============================================================
   Responsive — phone (720px and below)
   ============================================================ */
@media (max-width: 720px) {
  section { padding: var(--space-8) 0; }
  .hero { padding: var(--space-8) 0 var(--space-8); }
  .page-hero { padding: var(--space-6) 0 var(--space-5); }

  .nav { min-height: 64px; }
  .nav-list { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-list {
    display: flex;
    position: absolute;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    padding: var(--space-3) var(--space-5);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    gap: 0;
  }
  .nav.open .nav-list li { border-bottom: 1px solid var(--color-border); }
  .nav.open .nav-list li:last-child { border-bottom: none; }
  .nav.open .nav-list a { padding: var(--space-3) 0; width: 100%; }
  .nav-cta .btn-ghost { display: none; }
  .nav-cta .btn-primary { padding: 0.65rem 1rem; font-size: 0.9rem; min-height: 44px; }
  .nav-logo span:last-child { display: none; }

  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .form-row { grid-template-columns: 1fr; }
  .checkbox-group { grid-template-columns: 1fr; }
  .cta-band .container { flex-direction: column; text-align: center; align-items: stretch; }
  .cta-band .hero-cta { justify-content: center; }

  .hero-cta .btn { width: 100%; }
  .hero-trust { gap: var(--space-4); }
  .hero-trust > div { flex: 1 1 calc(50% - var(--space-4)); }
  .map-embed { height: 280px; }
}

/* ============================================================
   Responsive — small phone (480px and below)
   ============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 var(--space-4); }
  body { font-size: 16px; }
  h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  h2 { font-size: clamp(1.4rem, 5vw, 1.9rem); }
  .hero-trust strong { font-size: 1.25rem; }
  .hero-visual { aspect-ratio: 3/2; }
  .page-hero h1 { font-size: clamp(1.6rem, 5vw + 0.5rem, 2.2rem); }
  .card { padding: var(--space-5); }
  .btn-lg { padding: 0.8rem 1.3rem; font-size: 1rem; }
  .map-embed { height: 240px; }
  .nav-logo-mark { width: 56px; height: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: var(--space-2); }
}

/* ============================================================
   Print-friendly
   ============================================================ */
@media print {
  .site-header, .site-footer, .cta-band, .nav-toggle, .hero-cta { display: none; }
  body { font-size: 12pt; color: #000; }
  a { color: #000; text-decoration: underline; }
}
