/* ============================================================
   CONCORD LOCKSMITH — Old-Modern Warm Redesign
   Aesthetic: Heritage Warmth / Classic Craft / Modern Trust
   Fonts: Playfair Display (headings) + DM Sans (body) + Instrument Serif (accents)
   ============================================================ */

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #cf2e2e;
  --red-dk:     #a82222;
  --red-lt:     #e04040;
  --white:      #ffffff;
  --cream:      #faf7f2;
  --warm-white: #f5f0e8;
  --dark:       #1a1714;
  --dark-warm:  #2c2621;
  --text:       #3d352e;
  --text-mid:   #6b5f53;
  --text-light: #9a8e82;
  --border:     #e5ddd2;
  --border-lt:  #ede7dd;
  --radius:     6px;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
em { font-family: 'Instrument Serif', serif; font-style: italic; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--dark);
}
h2 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--red);
}
h2.h2-light { color: var(--white); }
h2.h2-light em { color: rgba(255,255,255,0.75); }

.section-tag {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.tag-light { color: rgba(255,255,255,0.5); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  transition: background 0.25s var(--ease), transform 0.2s, box-shadow 0.25s;
}
.btn-primary:hover {
  background: var(--red-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(207,46,46,0.3);
}
.btn-primary.btn-light {
  background: var(--white);
  color: var(--red);
}
.btn-primary.btn-light:hover {
  background: var(--cream);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: var(--radius);
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.btn-ghost-light {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.15);
}
.btn-ghost-light:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

/* ── NAV ─────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
#nav.scrolled {
  background: rgba(250,247,242,0.95);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(16px);
}
#nav.scrolled .nav-links a {
  color: var(--red);
}
#nav.scrolled .nav-links a:hover {
  color: var(--red-dk);
}
#nav.scrolled .logo-name {
  color: var(--dark);
}
#nav.scrolled .logo-since {
  color: var(--text-light);
}
#nav.scrolled .nav-cta {
  color: var(--red);
  border-color: var(--red);
}
#nav.scrolled .nav-cta:hover {
  background: var(--red);
  color: var(--white);
}
#nav.scrolled .hamburger span {
  background: var(--red);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
}
.logo-img-sm {
  height: 48px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.logo-since {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  margin-left: auto;
  margin-right: 2rem;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0;
  height: 1.5px;
  background: var(--red);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--red); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  padding: 0.55rem 1.1rem;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: var(--radius);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.nav-cta:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  transition: 0.3s;
}

/* MOBILE OVERLAY */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  text-align: center;
}
.m-link {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  opacity: 0.8;
  transition: opacity 0.2s;
}
.m-link:hover { opacity: 1; }
.m-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0 auto;
}
.m-phone {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem !important;
  color: var(--red) !important;
  opacity: 1 !important;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img,
.hero-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.95);
  transition: opacity 0.5s ease;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26,23,20,0.6) 0%,
    rgba(26,23,20,0.45) 50%,
    rgba(26,23,20,0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s var(--ease) forwards;
}
.badge-line {
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.25);
}

.hero h1 {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}
.h1-line {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s var(--ease) forwards;
}
.h1-line:nth-child(1) { animation-delay: 0.3s; }
.h1-line:nth-child(2) { animation-delay: 0.45s; }
.h1-italic {
  font-family: 'DM Serif Display', serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--red);
  animation: fadeUp 0.8s var(--ease) forwards, glow 3s ease-in-out 1.5s infinite;
}

@keyframes glow {
  0%, 100% { color: var(--red); text-shadow: none; }
  50%      { color: #ff6b6b; text-shadow: 0 0 20px rgba(207,46,46,0.5), 0 0 40px rgba(207,46,46,0.2); }
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s var(--ease) forwards;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.75s var(--ease) forwards;
}

/* Hero bottom stats */
.hero-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 1.75rem 2rem;
  background: rgba(26,23,20,0.5);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  animation: fadeUp 0.8s 0.9s var(--ease) forwards;
}
.hero-stat {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hs-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hs-plus {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--red);
}
.hs-label {
  width: 100%;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 0.2rem;
}
.hero-stat-divider {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.1);
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── TRUST STRIP ─────────────────────────────────────────── */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-mid);
}
.trust-item svg { color: var(--red); flex-shrink: 0; }
.trust-dot {
  width: 3px; height: 3px;
  background: var(--border);
  border-radius: 50%;
}

/* ── SERVICES ────────────────────────────────────────────── */
.section-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.services {
  padding: 6rem 0;
  background: var(--cream);
}
.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3.5rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-intro {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.svc-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease), transform 0.3s;
}
.svc-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.svc-img {
  overflow: hidden;
}
.svc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
  transition: transform 0.5s var(--ease), filter 0.4s;
}
.svc-card:hover .svc-img img {
  transform: scale(1.05);
  filter: saturate(1);
}

.svc-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}
.svc-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.svc-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.svc-body p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.svc-body ul {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  flex: 1;
}
.svc-body li {
  font-size: 0.8rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.svc-body li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.svc-link {
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-lt);
  transition: gap 0.2s;
}
.svc-link span { transition: transform 0.2s; }
.svc-card:hover .svc-link span { transform: translateX(4px); }

/* ── EMERGENCY BAND ──────────────────────────────────────── */
.emergency-band {
  background: var(--red);
  padding: 2.25rem 2rem;
}
.emg-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.emg-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  white-space: nowrap;
}
.emg-left strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.emg-dot {
  width: 8px; height: 8px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}
.emg-inner > p {
  flex: 1;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}
.emg-inner .btn-light { margin-left: auto; flex-shrink: 0; }

/* ── STORY / ABOUT ───────────────────────────────────────── */
.story {
  padding: 6rem 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.story-photos { display: flex; flex-direction: column; gap: 1rem; }
.story-main-photo {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--warm-white);
}
.story-main-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.photo-badge {
  position: absolute;
  bottom: 1rem; right: 1rem;
  background: var(--white);
  padding: 1rem 1.25rem;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  border-left: 3px solid var(--red);
}
.pb-year {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.pb-text {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.4;
  margin-top: 0.2rem;
}
.story-secondary {
  border-radius: 8px;
  overflow: hidden;
  height: 200px;
}
.story-secondary img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
}

.story-text {}
.story-text h2 { margin-bottom: 0.75rem; }
.story-rule {
  width: 48px; height: 2px;
  background: var(--red);
  margin-bottom: 1.5rem;
}
.story-text > p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.story-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin: 2rem 0;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  background: var(--cream);
  padding: 0.6rem 0.8rem;
  border-radius: 6px;
  border: 1px solid var(--border-lt);
}
.cred-item svg { color: var(--red); flex-shrink: 0; }

.story-hours {
  background: var(--cream);
  border: 1px solid var(--border-lt);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
}
.story-hours h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.story-hours table { width: 100%; border-collapse: collapse; }
.story-hours td {
  font-size: 0.83rem;
  padding: 0.3rem 0;
  color: var(--text-mid);
}
.story-hours td:first-child {
  color: var(--text);
  font-weight: 500;
  padding-right: 1rem;
}
.emg-hours td { color: var(--red) !important; font-style: italic; }

/* ── PHOTO BREAK ─────────────────────────────────────────── */
.photo-break {
  background: var(--dark);
}
.pb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 400px;
}
.pb-cell {
  position: relative;
  overflow: hidden;
}
.pb-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.65) contrast(1.05);
  transition: transform 0.6s var(--ease), filter 0.4s;
}
.pb-cell:hover img {
  transform: scale(1.05);
  filter: saturate(0.9);
}
.pb-label {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: rgba(26,23,20,0.75);
  backdrop-filter: blur(4px);
  color: rgba(255,255,255,0.8);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 3px;
}
.pb-quote-cell {
  background: var(--red);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem 2.5rem;
  gap: 2rem;
}
.pb-quote-cell blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: var(--white);
  line-height: 1.5;
  opacity: 0.95;
}

/* ── WHY US ──────────────────────────────────────────────── */
.why {
  padding: 6rem 0;
  background: var(--warm-white);
  border-top: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  margin-bottom: 2.5rem;
}
.why-card {
  padding: 2.25rem 1.75rem;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}
.why-card:last-child { border-right: none; }
.why-card:hover { background: var(--cream); }

.wc-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.wc-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.1em;
}
.wc-rule {
  flex: 1;
  height: 1px;
  background: var(--red);
  max-width: 32px;
  transition: max-width 0.3s var(--ease);
}
.why-card:hover .wc-rule { max-width: 48px; }

.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.65rem;
}
.why-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.why-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.75rem 2rem;
  background: var(--dark);
  border-radius: 8px;
  flex-wrap: wrap;
}
.why-cta span {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

/* ── CONTACT ─────────────────────────────────────────────── */
.contact {
  padding: 6rem 0;
  background: var(--dark-warm);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-desc {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.cd-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.cd-icon {
  width: 36px; height: 36px;
  background: rgba(207,46,46,0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.cd-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.15rem;
}
.cd-value {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
a.cd-value:hover { color: var(--white); }
.cd-phone {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem !important;
  font-weight: 700;
  color: var(--white) !important;
}

.map-frame {
  height: 340px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.map-frame iframe {
  width: 100%; height: 100%;
  filter: grayscale(0.4) contrast(1.05) brightness(0.85);
}
.map-actions {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.fl-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}
.footer-brand p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.footer-phone {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--red);
}
.footer-phone:hover { color: var(--red-lt); }

.footer-col h5 {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.2rem;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.55rem;
  line-height: 1.6;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-emg { font-style: italic; opacity: 0.6; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
}

/* ── PAGE HERO (sub-pages) ───────────────────────────────── */
.page-hero {
  position: relative;
  height: 40vh;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.05);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,23,20,0.7) 0%, rgba(26,23,20,0.85) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}
.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

/* Plain variant (explicit) + safety net (auto-applies when no .page-hero-bg).
   The :has() fallback prevents the "white text on cream" bug if a page hero
   is added without a background image. */
.page-hero-plain,
.page-hero:not(:has(.page-hero-bg)) {
  background: var(--cream);
}
.page-hero-plain .page-hero-content h1,
.page-hero:not(:has(.page-hero-bg)) .page-hero-content h1 {
  color: var(--dark);
}
.page-hero-plain .breadcrumb,
.page-hero-plain .breadcrumb a,
.page-hero:not(:has(.page-hero-bg)) .breadcrumb,
.page-hero:not(:has(.page-hero-bg)) .breadcrumb a {
  color: var(--text-mid);
}
.page-hero-plain .breadcrumb a:hover,
.page-hero:not(:has(.page-hero-bg)) .breadcrumb a:hover {
  color: var(--red);
}
.page-hero-plain .breadcrumb-sep,
.page-hero:not(:has(.page-hero-bg)) .breadcrumb-sep {
  color: var(--text-light);
}
.page-hero-plain .tag-light,
.page-hero:not(:has(.page-hero-bg)) .tag-light {
  color: var(--red);
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
}
.breadcrumb a {
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--white);
}
.breadcrumb-sep {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.25);
}

/* ── DETAIL SECTIONS (services page) ────────────────────── */
.detail-section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.detail-section:nth-child(odd) {
  background: var(--cream);
}
.detail-section:nth-child(even) {
  background: var(--white);
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.detail-grid.detail-reverse .detail-img {
  order: 2;
}
.detail-grid.detail-reverse .detail-text {
  order: 1;
}

.detail-img {
  border-radius: 8px;
  overflow: hidden;
}
.detail-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  filter: saturate(0.85);
  transition: transform 0.6s var(--ease), filter 0.4s;
}
.detail-img:hover img {
  transform: scale(1.03);
  filter: saturate(1);
}

.detail-text .section-tag {
  margin-bottom: 0.5rem;
}
.detail-text h2 {
  margin-bottom: 1rem;
}
.detail-text > p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.detail-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
  margin-bottom: 2rem;
}
.detail-list li {
  font-size: 0.85rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 500;
}
.detail-list li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── SERVICES HUB (services.html) ───────────────────────── */
.services-intro {
  padding: 4.5rem 0 2.5rem;
  background: var(--white);
}
.services-intro .section-header {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.services-hub {
  padding: 1rem 0 5rem;
  background: var(--white);
}
.services-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.svc-hub-card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s;
  color: inherit;
}
.svc-hub-card:hover {
  box-shadow: 0 16px 44px rgba(0,0,0,0.09);
  transform: translateY(-4px);
  border-color: var(--border-lt);
}

.svc-hub-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.svc-hub-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
  transition: transform 0.6s var(--ease), filter 0.4s;
}
.svc-hub-card:hover .svc-hub-img img {
  transform: scale(1.05);
  filter: saturate(1);
}
.svc-hub-num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--red);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.65rem;
  border-radius: 3px;
}

.svc-hub-body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-hub-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.55rem;
  letter-spacing: -0.01em;
}
.svc-hub-body p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex: 1;
}
.svc-hub-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border-lt);
}
.svc-hub-link .arrow { transition: transform 0.25s var(--ease); display: inline-block; }
.svc-hub-card:hover .svc-hub-link .arrow { transform: translateX(5px); }

/* ── SERVICE DETAIL PAGE (includes grid) ────────────────── */
.service-includes {
  padding: 5rem 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.includes-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.includes-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: border-color 0.3s, box-shadow 0.3s var(--ease), transform 0.3s;
}
.includes-card:hover {
  border-color: var(--red);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.includes-card .inc-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.14em;
}
.includes-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.01em;
}
.includes-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ── STATS SECTION ──────────────────────────────────────── */
.stats-section {
  padding: 4rem 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
}
.stat-item {
  text-align: center;
}
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ── CREDENTIALS GRID ───────────────────────────────────── */
.credentials-section {
  padding: 5rem 0;
  background: var(--cream);
}
.cred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 800px;
  margin: 0 auto;
}

/* ── QUOTE SECTION ──────────────────────────────────────── */
.quote-section {
  padding: 5rem 0;
  background: var(--dark-warm);
}
.big-quote {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.big-quote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.big-quote cite {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}

/* ── CTA SECTION ────────────────────────────────────────── */
.cta-section {
  padding: 5rem 0;
  background: var(--cream);
}
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem 3rem;
  background: var(--dark);
  border-radius: 8px;
  flex-wrap: wrap;
}
.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  margin: 0;
}
.cta-band h2 em { color: rgba(255,255,255,0.65); }

/* ── WHY GRID 2x2 (subpage) ────────────────────────────── */
.why-grid-2x2 {
  grid-template-columns: repeat(2, 1fr);
}

/* ── CONTACT PAGE ───────────────────────────────────────── */
.contact-main {
  padding: 5rem 0;
  background: var(--white);
}
.contact-page-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* — Contact Form — */
.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(207,46,46,0.08);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b5f53' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  padding: 1rem 2rem;
}
.form-status {
  margin-top: 0.85rem;
  font-size: 0.88rem;
  min-height: 1.2em;
}
.form-status[data-kind="success"] { color: #1f7a3d; }
.form-status[data-kind="error"]   { color: var(--red); }
.form-note {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: var(--text-light);
  text-align: center;
}
.form-note a {
  color: var(--red);
  font-weight: 600;
  transition: color 0.2s;
}
.form-note a:hover {
  color: var(--red-dk);
}

/* — Contact Sidebar (light bg) — */
.contact-details-light .cd-icon-light {
  background: rgba(207,46,46,0.1);
  color: var(--red);
}
.cd-value-dark {
  color: var(--text) !important;
}
.cd-phone-dark {
  color: var(--dark) !important;
}
a.cd-value-dark:hover {
  color: var(--red) !important;
}
.contact-map-embed {
  margin-top: 2.5rem;
}
.map-frame-light {
  border: 1.5px solid var(--border);
}
.map-frame-light iframe {
  filter: grayscale(0.3) contrast(1.05);
}
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--red);
  transition: color 0.2s;
}
.map-link:hover {
  color: var(--red-dk);
}

/* — Hours Section — */
.hours-section {
  padding: 5rem 0;
  background: var(--cream);
}
.hours-table-wrap {
  max-width: 560px;
  margin: 0 auto;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}
.hours-table td {
  padding: 0.85rem 0;
  font-size: 0.92rem;
  color: var(--text);
  border-bottom: 1px solid var(--border-lt);
}
.hours-table tr:last-child td {
  border-bottom: none;
}
.hours-table td:first-child {
  font-weight: 600;
  color: var(--dark);
}
.hours-table td:last-child {
  text-align: right;
  color: var(--text-mid);
}
.hours-table .emg-hours td {
  color: var(--red);
  font-weight: 600;
  border-top: 2px solid var(--border);
  border-bottom: none;
  padding-top: 1rem;
}
.hours-note {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
  text-align: center;
}
.hours-note a {
  color: var(--red);
  font-weight: 600;
}

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-l {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal-l.in { opacity: 1; transform: translateX(0); }
.reveal-r {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal-r.in { opacity: 1; transform: translateX(0); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; }
  .svc-card { grid-template-columns: 200px 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-card { border-bottom: 1px solid var(--border); }
  .why-card:nth-child(odd) { border-right: 1px solid var(--border); }
  .why-card:nth-child(even) { border-right: none; }
  .why-card:nth-last-child(-n+2) { border-bottom: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .pb-grid { grid-template-columns: 1fr 1fr; min-height: 300px; }
  .pb-cell:first-child { grid-column: 1 / 3; height: 260px; }
  .detail-grid { gap: 3rem; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: repeat(2, 1fr); }
  .services-hub-grid { grid-template-columns: repeat(2, 1fr); }
  .includes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: 90vh; }
  .hero-bottom { gap: 2rem; padding: 1.5rem 1.25rem; }
  .services, .story, .why, .contact { padding: 3.5rem 0; }
  .section-header { margin-bottom: 2.5rem; }
  .contact-main { padding: 3.5rem 0; }
  .contact-page-content { padding: 3.5rem 0; }
  .hours-section { padding: 3rem 0; }
  .detail-section { padding: 3rem 0; }
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .detail-img { aspect-ratio: 16/9; }
  .detail-grid.detail-reverse .detail-img { order: 0; }
  .detail-grid.detail-reverse .detail-text { order: 0; }
  .detail-reverse { direction: ltr; }
  .page-hero { min-height: 250px; padding: 6rem 1.5rem 2.5rem; }
  .page-hero h1 { font-size: 1.8rem; }
  .stats-row { flex-direction: column; gap: 1.5rem; }
  .stat-divider { width: 48px; height: 1px; }
  .cred-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  .cta-section { padding: 3rem 1.5rem; }
  .why-grid-2x2 { grid-template-columns: 1fr; }
  .emg-inner { flex-direction: column; text-align: center; }
  .emg-inner .btn-light { margin: 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { border-right: none !important; border-bottom: 1px solid var(--border); }
  .why-card:last-child { border-bottom: none; }
  .why-cta { flex-direction: column; text-align: center; gap: 1.25rem; padding: 1.5rem; }
  .pb-grid { grid-template-columns: 1fr; min-height: auto; }
  .pb-cell:first-child { grid-column: 1; height: 220px; }
  .pb-cell:nth-child(2) { height: 180px; }
  .pb-quote-cell { padding: 2rem 1.5rem; }

  /* Trust strip mobile */
  .trust-strip { padding: 0.75rem 1rem; }
  .trust-inner { gap: 0.75rem 1.25rem; justify-content: center; }
  .trust-dot { display: none; }
  .trust-item { font-size: 0.7rem; }

  /* Service cards stacked */
  .svc-card { grid-template-columns: 1fr; }
  .svc-img { height: 180px; }
  .svc-body { padding: 1.25rem; }

  /* Services hub + includes grids */
  .services-hub-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .services-intro { padding: 3rem 0 1.5rem; }
  .services-hub { padding: 0.5rem 0 3.5rem; }
  .includes-grid { grid-template-columns: 1fr; }
  .service-includes { padding: 3rem 0; }
  .includes-header { margin-bottom: 2rem; }

  /* Story section mobile */
  .story-grid { gap: 2rem; }
  .story-main-photo { aspect-ratio: 16/10; }
  .story-secondary { height: 160px; }
  .story-credentials { grid-template-columns: 1fr; }
  .story-text > p { font-size: 0.88rem; }
  .story-rule { margin-bottom: 1rem; }

  /* Contact page */
  .contact-page-grid { gap: 2.5rem; }
  .contact-grid { gap: 2.5rem; }
  .contact-desc { margin-bottom: 1.5rem; }
  .map-frame { height: 260px; }

  /* Hero sub-text */
  .hero-sub { font-size: 0.92rem; }
  .hero-badge { font-size: 0.6rem; gap: 0.6rem; }
  .badge-line { width: 24px; }

  /* Logo sizing */
  .logo-img { height: 42px; }
  .logo-name { font-size: 1rem; }
  .logo-since { font-size: 0.65rem; }
}
@media (max-width: 520px) {
  .hero { padding-top: 5rem; min-height: 85vh; }
  .hero-bottom { gap: 1.25rem; padding: 1rem 0.75rem; }
  .hs-num { font-size: 1.5rem; }
  .hs-label { font-size: 0.55rem; letter-spacing: 0.12em; }
  .hero-stat-divider { height: 28px; }
  .section-wrap { padding: 0 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { text-align: center; justify-content: center; }
  .detail-list { grid-template-columns: 1fr; }
  .detail-text h2 { font-size: 1.5rem; }
  h2 { font-size: 1.6rem; }
  .svc-body h3 { font-size: 1.1rem; }
  .svc-body p { font-size: 0.82rem; }

  /* Tighter nav */
  .nav-inner { padding: 0.85rem 1rem; }
  .logo-img { height: 36px; }
  .logo-name { font-size: 0.9rem; }
  .logo-since { font-size: 0.58rem; }

  /* Photo break */
  .pb-cell:first-child { height: 180px; }
  .pb-cell:nth-child(2) { height: 160px; }
  .pb-quote-cell blockquote { font-size: 1rem; }

  /* Footer tighter */
  .footer { padding: 3rem 1.25rem 1.5rem; }
  .footer-bottom { font-size: 0.65rem; }
}
