/* ============================================================
   ATL ROOFS — Stylesheet
   Design: Editorial, no pills, sharp corners, terracotta accent
   ============================================================ */

/* ─── Tokens ───────────────────────────────────────────────── */
:root {
  --ink:        #0f0e0d;
  --ink-2:      #1c1a18;
  --ink-3:      #2c2a27;
  --stone:      #6b6560;
  --warm-gray:  #9e9890;
  --terra:      #bf5120;
  --terra-dk:   #993f18;
  --terra-lt:   #d4703a;
  --sand:       #e8e2da;
  --cream:      #f6f3ef;
  --off-white:  #ede9e3;
  --white:      #ffffff;

  --font-serif: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --container:  1280px;
  --pad:        clamp(20px, 5vw, 72px);
  --section-v:  96px;

  --r:   3px;
  --r-sm: 2px;
  --r-md: 6px;

  --sh:    0 2px 10px rgba(0,0,0,0.07);
  --sh-md: 0 6px 28px rgba(0,0,0,0.11);
  --sh-lg: 0 16px 56px rgba(0,0,0,0.17);

  --t: 0.24s cubic-bezier(0.4,0,0.2,1);
}

/* ─── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ─── Layout ───────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section { padding: var(--section-v) 0; scroll-margin-top: 106px; }

.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-24 { margin-top: 24px; display: inline-block; }

/* ─── Section Typography ───────────────────────────────────── */
.sec-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 14px;
}
.sec-label--light { color: var(--terra-lt); }

.sec-h {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.sec-h em { font-style: italic; color: var(--terra); }

.sec-hdr { margin-bottom: 56px; }
.sec-hdr--light .sec-h { color: var(--white); }
.sec-hdr--light .sec-h em { color: var(--terra-lt); }
.sec-hdr--center { text-align: center; }

.sec-sub {
  font-size: 1.05rem;
  color: var(--stone);
  max-width: 540px;
  margin-top: 14px;
  line-height: 1.75;
}
.sec-sub--light { color: rgba(255,255,255,0.6); }

/* ─── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: var(--t);
  white-space: nowrap;
  border: 1.5px solid transparent;
}

.btn-lg { padding: 17px 36px; font-size: 0.97rem; }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }

.btn-terra {
  background: var(--terra);
  color: var(--white);
  box-shadow: 0 3px 16px rgba(191,81,32,0.3);
}
.btn-terra:hover {
  background: var(--terra-dk);
  box-shadow: 0 5px 24px rgba(191,81,32,0.4);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
}

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.btn-ink {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn-ink:hover {
  background: var(--ink-3);
  transform: translateY(-1px);
  box-shadow: var(--sh-md);
}

.btn-outline-terra {
  background: transparent;
  color: var(--terra);
  border-color: var(--terra);
}
.btn-outline-terra:hover {
  background: var(--terra);
  color: var(--white);
}

/* ─── Text Links ───────────────────────────────────────────── */
.text-link {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--terra);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--t), color var(--t);
  border-bottom: 1px solid transparent;
}
.text-link:hover { gap: 8px; border-bottom-color: var(--terra); }
.text-link--red { color: #c02020; }
.text-link--red:hover { border-bottom-color: #c02020; }

/* ─── Forms ────────────────────────────────────────────────── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group.full { grid-column: 1/-1; }

.form-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-sm);
  font-size: 0.92rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--t);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--terra-lt);
  box-shadow: 0 0 0 3px rgba(191,81,32,0.18);
}
.form-select option { background: var(--ink-2); color: var(--white); }
.form-textarea { resize: vertical; min-height: 90px; }

.fsub {
  width: 100%;
  padding: 16px 24px;
  background: var(--terra);
  color: var(--white);
  border: none;
  border-radius: var(--r-sm);
  font-size: 0.97rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--t);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  box-shadow: 0 4px 18px rgba(191,81,32,0.35);
  margin-top: 8px;
}
.fsub:hover {
  background: var(--terra-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(191,81,32,0.45);
}

.form-note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  margin-top: 12px;
}

/* ─── Alert Banner ─────────────────────────────────────────── */
.alert-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background: var(--terra-dk);
  color: rgba(255,255,255,0.92);
  text-align: center;
  padding: 9px 20px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transform: translateY(0);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.alert-bar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.alert-bar a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── Navigation ───────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 38px; left: 0; right: 0;
  z-index: 1000;
  height: 68px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: top 0.35s ease, background var(--t), box-shadow var(--t);
}
#nav.alert-hidden {
  top: 0;
}
#nav.solid {
  background: rgba(15,14,13,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  width: 100%;
}
.nav-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0px;
  flex-shrink: 0;
}
.nav-logo {
  height: 92px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
}
.nav-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.01em;
}
.nav-sub {
  font-size: 0.58rem;
  color: var(--terra-lt);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links li a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.68);
  padding: 7px 12px;
  border-radius: var(--r);
  transition: color var(--t), background var(--t);
}
.nav-insta {
  display: flex;
  align-items: center;
  padding: 7px 8px !important;
  color: rgba(255,255,255,0.6) !important;
  transition: color var(--t) !important;
}
.nav-insta:hover { color: #E1306C !important; background: none !important; }
.nav-links li a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-phone {
  display: flex !important;
  align-items: center;
  gap: 7px;
  color: var(--white) !important;
  font-weight: 700 !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  padding: 7px 14px !important;
}
.nav-phone:hover { border-color: rgba(255,255,255,0.45) !important; }
.nav-cta {
  background: var(--terra) !important;
  color: var(--white) !important;
  padding: 9px 18px !important;
  font-weight: 700 !important;
  border-radius: var(--r-sm) !important;
}
.nav-cta:hover { background: var(--terra-dk) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  display: block;
  transition: var(--t);
}

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--ink);
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.72;
  z-index: 0;
  transform: scale(1.08);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,9,8,0.88) 0%, rgba(10,9,8,0.6) 55%, rgba(10,9,8,0.25) 100%),
    linear-gradient(to top, rgba(10,9,8,0.7) 0%, transparent 50%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; padding-top: 130px; padding-bottom: 64px; }
.hero-content { max-width: 660px; }

.hero-pre {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--terra-lt); }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-rating {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.3);
  animation: bounceDown 2.2s ease infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.35; }
  50% { transform: translateX(-50%) translateY(7px); opacity: 0.65; }
}

/* ─── Stats Bar ────────────────────────────────────────────── */
.stats-bar {
  background: var(--ink-2);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--terra-lt);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ─── Cert Strip ───────────────────────────────────────────── */
.cert-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--off-white);
  padding: 22px 0;
}
.cert-strip-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.cert-strip-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gray);
  white-space: nowrap;
  flex-shrink: 0;
}
.cert-items {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  flex-wrap: wrap;
}
.cert-items span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--stone);
  padding: 0 16px;
  border-right: 1px solid var(--sand);
  white-space: nowrap;
}
.cert-items span:first-child { padding-left: 0; }
.cert-items span:last-child { border-right: none; }

/* ─── Services ─────────────────────────────────────────────── */
.svc-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
.svc-feat {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--off-white);
  border-radius: var(--r-md);
  overflow: hidden;
}
.svc-feat-img {
  height: 260px;
  overflow: hidden;
  background: var(--ink-2);
}
.svc-feat-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.svc-feat:hover .svc-feat-img img { transform: scale(1.04); }
.svc-feat-body {
  padding: 28px 28px 32px;
  border-left: 3px solid var(--terra);
  flex: 1;
}
.svc-feat-body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}
.svc-feat-body p {
  font-size: 0.92rem;
  color: var(--stone);
  line-height: 1.75;
  margin-bottom: 16px;
}
.svc-bullets {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.svc-bullets li {
  font-size: 0.87rem;
  color: var(--ink-3);
  padding-left: 16px;
  position: relative;
}
.svc-bullets li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--terra);
  font-size: 0.7rem;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.svc-card {
  padding: 24px 22px 28px;
  border: 1px solid var(--off-white);
  border-left: 3px solid var(--terra);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  transition: box-shadow var(--t), border-left-color var(--t);
  display: flex;
  flex-direction: column;
}
.svc-card .text-link {
  margin-top: auto;
  padding-top: 14px;
}
.svc-card:hover {
  box-shadow: var(--sh-md);
  border-left-color: var(--terra-dk);
}
.svc-card--urgent { border-left-color: #c02020; }
.svc-card--urgent:hover { border-left-color: #9a1010; }
.svc-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.25;
}
.svc-card p {
  font-size: 0.86rem;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ─── Before / After ───────────────────────────────────────── */
.ba-section { background: var(--ink); }
.ba-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.ba-wrap {
  position: relative;
  width: 100%;
  height: 460px;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  touch-action: pan-y;
  background: var(--ink-3);
  box-shadow: var(--sh-lg);
}
.ba-tall { height: 580px; }
.ba-before, .ba-after {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
  pointer-events: none;
}
.ba-clip {
  position: absolute;
  top: 0; left: 0;
  width: 50%; height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.ba-clip .ba-after {
  position: absolute;
  top: 0; left: 0;
  width: 100vw; height: 100%;
  object-fit: cover;
}
.ba-divider {
  position: absolute;
  top: 0; left: 50%;
  width: 2px; height: 100%;
  background: var(--white);
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
}
.ba-handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-md);
  pointer-events: none;
  z-index: 11;
}
.ba-handle svg { width: 18px; height: 18px; color: var(--ink); }
.ba-label {
  position: absolute;
  bottom: 16px;
  background: rgba(0,0,0,0.6);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  backdrop-filter: blur(6px);
  z-index: 5;
  pointer-events: none;
}
.ba-label--l { right: 14px; }
.ba-label--r { left: 14px; }
.ba-caption {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  padding: 0 4px;
}
.ba-caption .sep { color: rgba(255,255,255,0.2); }
.ba-photo-panel {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--ink-3);
}
.ba-photo-panel img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.ba-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,9,8,0.85) 0%, rgba(10,9,8,0.2) 60%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}
.ba-photo-stat {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
}
.ba-photo-stat span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  letter-spacing: 0.03em;
}

/* ─── Storm Section ────────────────────────────────────────── */
.storm-section {
  background: var(--ink-2);
  padding: var(--section-v) 0;
}
.storm-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 72px;
  align-items: start;
}
.storm-intro {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 44px;
}
.storm-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 44px;
}
.storm-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
}
.storm-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--terra);
  line-height: 1;
  opacity: 0.65;
}
.storm-step-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}
.storm-step-body p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}
.storm-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.storm-photo {
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 24px;
  max-height: 300px;
}
.storm-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.storm-checklist {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-md);
  padding: 24px;
  margin-bottom: 20px;
}
.storm-checklist h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terra-lt);
  margin-bottom: 16px;
}
.storm-checklist ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 16px;
}
.storm-checklist li {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.7);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.storm-checklist li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--terra);
  font-size: 0.7rem;
}
.storm-checklist-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.6;
  font-style: italic;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 14px;
}
.storm-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}
.storm-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-md);
  padding: 18px 16px;
  text-align: center;
}
.storm-stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--terra-lt);
  line-height: 1;
  margin-bottom: 5px;
}
.storm-stat-lbl {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.4;
}
.storm-emergency-line {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(192,40,40,0.1);
  border: 1px solid rgba(192,40,40,0.22);
  border-radius: var(--r-md);
  padding: 14px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.03em;
  transition: background var(--t);
}
.storm-emergency-line:hover { background: rgba(192,40,40,0.18); }
.storm-pulse {
  width: 10px; height: 10px;
  background: #e03030;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.8s ease infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(224,48,48,0.5); }
  50% { box-shadow: 0 0 0 7px rgba(224,48,48,0); }
}

/* ─── Why Section ──────────────────────────────────────────── */
.why-section { background: var(--cream); padding-top: 48px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--off-white);
  border: 1px solid var(--off-white);
  margin-bottom: 48px;
}
.why-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 32px 24px;
  background: var(--cream);
  align-items: start;
  transition: background var(--t);
}
.why-item:hover { background: var(--white); }
.why-num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--terra);
  opacity: 0.5;
  line-height: 1;
  padding-top: 4px;
}
.why-body h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 9px;
  line-height: 1.3;
}
.why-body p {
  font-size: 0.86rem;
  color: var(--stone);
  line-height: 1.72;
}
.why-photo {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  height: 400px;
}
.why-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.why-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,9,8,0.72) 0%, rgba(10,9,8,0.1) 65%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}
.why-photo-overlay blockquote {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  line-height: 1.5;
  max-width: 520px;
  margin-bottom: 14px;
}
.why-photo-overlay cite {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-style: normal;
  letter-spacing: 0.04em;
}

/* ─── Reviews ──────────────────────────────────────────────── */
.reviews-section { background: var(--white); scroll-margin-top: 20px; }
.reviews-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 52px;
}
.google-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border: 1px solid var(--off-white);
  border-radius: var(--r-md);
}
.g-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; }
.g-num {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.g-meta { font-size: 0.78rem; color: var(--warm-gray); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  padding: 26px 24px 28px;
  border: 1px solid var(--off-white);
  border-top: 3px solid var(--terra);
  border-radius: 0 0 var(--r-md) var(--r-md);
  transition: box-shadow var(--t);
}
.review-card:hover { box-shadow: var(--sh-md); }
.review-stars { color: #f59e0b; font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-text {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.75;
  margin-bottom: 18px;
}
.review-attr {
  font-size: 0.8rem;
  color: var(--warm-gray);
  font-style: normal;
}
.review-attr em { font-style: italic; }
.reviews-extra {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;

}
.reviews-extra.open {
  max-height: 800px;
}
.reviews-extra .reviews-grid {
  margin-top: 24px;
}
.reviews-cta {
  text-align: center;
  margin-top: 48px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.reviews-cta p {
  font-size: 0.9rem;
  color: var(--stone);
  margin-bottom: 16px;
}

/* ─── Service Areas ────────────────────────────────────────── */
.areas-section { background: var(--off-white); }
.areas-inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 72px;
  align-items: start;
}
.areas-body {
  font-size: 1rem;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 20px;
}
.areas-body strong { color: var(--ink); font-weight: 600; }
.areas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 32px;
  border: 1px solid var(--sand);
  border-radius: var(--r-md);
  overflow: hidden;
}
.areas-col {
  display: flex;
  flex-direction: column;
}
.areas-col:first-child { border-right: 1px solid var(--sand); }
.areas-col span {
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-3);
  border-bottom: 1px solid var(--sand);
  background: var(--white);
  transition: background var(--t), color var(--t);
}
.areas-col span:last-child { border-bottom: none; }
.areas-col span:hover { background: var(--cream); color: var(--terra); }
.areas-map {
  border-radius: var(--r-md);
  overflow: hidden;
  height: 440px;
  position: sticky;
  top: 90px;
}

/* ─── FAQ ──────────────────────────────────────────────────── */
.faq-section { background: var(--cream); }
.faq-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}
.faq-sidebar-p {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.7;
  margin-top: 16px;
}
.faq-sidebar-p a { color: var(--terra); font-weight: 600; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--off-white);
}
.faq-item:first-child { border-top: 1px solid var(--off-white); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--t);
}
.faq-item.open .faq-q { color: var(--terra); }
.faq-icon {
  font-size: 1.3rem;
  color: var(--warm-gray);
  flex-shrink: 0;
  line-height: 1;
  font-weight: 300;
  transition: transform var(--t), color var(--t);
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--terra); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding 0.28s ease;
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 20px; }

/* ─── Contact ──────────────────────────────────────────────── */
.contact-section { background: var(--ink); }
.contact-section .sec-h { color: var(--white); }
.contact-section .sec-h em { color: var(--terra-lt); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 72px;
  align-items: start;
}
.contact-lead {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}
.contact-row svg { color: var(--terra-lt); flex-shrink: 0; }
.contact-row a { color: var(--white); transition: color var(--t); }
.contact-row a:hover { color: var(--terra-lt); }
.contact-hours {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  padding: 20px;
}
.contact-hours h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: rgba(255,255,255,0.38); }
.hours-row .time { font-weight: 600; }
.hours-row .time.emergency { color: var(--terra-lt); }
.contact-form-card {
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-md);
  padding: 36px 32px;
  box-shadow: var(--sh-lg);
}
.contact-form-card h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}
.contact-form-card h3 em { font-style: italic; color: var(--terra-lt); }
.contact-form-card > p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.38);
  margin-bottom: 24px;
  line-height: 1.55;
}

/* ─── Footer ───────────────────────────────────────────────── */
footer {
  background: #0a0909;
  padding: 72px 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.ft-top {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ft-brand-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.ft-logo {
  height: 60px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.ft-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1px;
  line-height: 1;
}
.ft-sub {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terra-lt);
}
.ft-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.32);
  line-height: 1.7;
  margin-top: 14px;
  margin-bottom: 16px;
}
.ft-nap {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.85;
  margin-bottom: 18px;
}
.ft-nap a { color: rgba(255,255,255,0.5); }
.ft-nap a:hover { color: var(--terra-lt); }
.ft-social { display: flex; gap: 10px; }
.ft-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
  transition: var(--t);
}
.ft-social a:hover { border-color: var(--terra); color: var(--terra); }
.ft-col h5 {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra-lt);
  margin-bottom: 18px;
}
.ft-col ul { display: flex; flex-direction: column; gap: 9px; }
.ft-col ul li a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.38);
  transition: color var(--t);
}
.ft-col ul li a:hover { color: var(--white); }
.ft-certs {
  margin-top: 22px;
  padding: 14px;
  background: rgba(191,81,32,0.08);
  border: 1px solid rgba(191,81,32,0.18);
  border-radius: var(--r-sm);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.8;
}
.ft-certs-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra-lt);
  margin-bottom: 8px;
}
.ft-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
}
.ft-bottom a { color: rgba(255,255,255,0.32); }
.ft-bottom a:hover { color: var(--terra-lt); }

/* ─── Mobile CTA ───────────────────────────────────────────── */
.mob-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  padding: 10px 14px 14px;
  background: var(--ink-2);
  border-top: 1px solid rgba(255,255,255,0.07);
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.mob-call {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  gap: 7px;
  padding: 13px;
  background: var(--ink-3);
  color: var(--white);
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 700;
}
.mob-quote {
  flex: 1.5;
  display: flex; align-items: center; justify-content: center;
  gap: 7px;
  padding: 13px;
  background: var(--terra);
  color: var(--white);
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 700;
}

/* ─── Scroll Reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── Responsive ───────────────────────────────────────────── */
@media (max-width: 1200px) {
  .storm-inner { grid-template-columns: 1fr 420px; gap: 48px; }
  .ft-top { grid-template-columns: 240px 1fr 1fr; }
  .ft-top .ft-col:last-child { grid-column: 2; grid-row: 2; }
}

@media (max-width: 1024px) {
  :root { --section-v: 72px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid .review-card:last-child { display: none; }
  .storm-inner { grid-template-columns: 1fr; gap: 48px; }
  .storm-right { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .storm-photo { grid-column: 1 / -1; max-height: 280px; }
  .storm-checklist { grid-column: 1 / -1; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .areas-inner { grid-template-columns: 1fr; }
  .areas-map { position: static; height: 300px; }
  .faq-inner { grid-template-columns: 1fr; gap: 48px; }
  .ba-row { grid-template-columns: 1fr; gap: 20px; }
  .ba-photo-panel { height: 340px; }
}

@media (max-width: 768px) {
  :root { --section-v: 56px; }
  .nav-links { display: none; flex-direction: column; }
  .hamburger { display: flex; }
  .svc-featured { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-grid .review-card:nth-child(n+4) { display: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stats-inner .stat-item:nth-child(2) { border-right: none; }
  .cert-items { display: none; }
  .ba-wrap { height: 320px; }
  .ba-tall { height: 400px; }
  .storm-right { grid-template-columns: 1fr; }
  .storm-ctas { flex-direction: column; }
  .storm-ctas .btn { text-align: center; justify-content: center; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
  .hero h1 { font-size: clamp(2.4rem, 7vw, 3.2rem); }
  .why-photo { height: 300px; }
  .why-photo-overlay { padding: 24px; }
  .why-photo-overlay blockquote { font-size: 1.1rem; }
  .ft-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ft-top .ft-brand { grid-column: 1 / -1; }
  .ft-top .ft-col:last-child { grid-column: auto; grid-row: auto; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px 20px; }
  .mob-cta { display: flex; }
  body { padding-bottom: 70px; }
  .reviews-hdr { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2.3rem; }
  .ft-top { grid-template-columns: 1fr; }
  .ft-bottom { flex-direction: column; text-align: center; }
  .svc-feat-body { padding: 20px; }
  .areas-list { grid-template-columns: 1fr; }
  .areas-col:first-child { border-right: none; }
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE GALLERY SECTION
══════════════════════════════════════════════════════════ */
.gallery-section { background: var(--cream); padding-top: 48px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 340px;
  gap: 10px;
  margin-top: 48px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
}
.gallery-item--tall {
  grid-row: span 2;
}
.gallery-item--wide {
  grid-column: span 2;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(10,9,8,0.75), transparent);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-item:hover .gallery-cap {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   PAGE HERO (services / our-work / storm sub-pages)
══════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--ink);
  padding: 160px 0 80px;
  text-align: center;
}
.page-hero--photo {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 106px 0 0;
}
.page-hero-img {
  position: absolute;
  inset: 0;
}
.page-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,9,8,0.82) 0%, rgba(10,9,8,0.45) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 64px 0;
  text-align: left;
  max-width: 640px;
}
.page-hero .sec-label { margin-bottom: 16px; display: block; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 20px;
}
.page-hero h1 em { color: var(--terra-lt); font-style: italic; }
.page-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 0 32px;
  line-height: 1.7;
}

/* Nav active state */
.nav-active { color: var(--terra-lt) !important; }

/* ═══════════════════════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════════════════════ */
.svc-page-section { background: var(--white); }
.svc-page-alt { background: var(--cream); }

.svc-page-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.svc-page-block--flip { direction: rtl; }
.svc-page-block--flip > * { direction: ltr; }

.svc-page-img {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.svc-page-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.svc-page-img--workers img { object-position: center 30%; }

.svc-page-body .sec-label { margin-bottom: 12px; display: block; }
.svc-page-body h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 16px;
}
.svc-page-body p {
  color: var(--stone);
  line-height: 1.75;
  margin-bottom: 20px;
}
.svc-page-body .svc-bullets { margin-bottom: 28px; }

.svc-emergency-section {
  background: var(--ink-2);
  padding: var(--section-v) 0;
}
.svc-emergency-inner {
  max-width: 680px;
}
.svc-emergency-text .sec-label { margin-bottom: 16px; display: block; }
.svc-emergency-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.svc-emergency-logo {
  width: clamp(2.8rem, 5vw, 4rem);
  height: clamp(2.8rem, 5vw, 4rem);
  flex-shrink: 0;
}
.svc-emergency-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin: 0;
}
.svc-emergency-text p {
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 20px;
}
.svc-bullets--light li { color: rgba(255,255,255,0.7); }
.svc-bullets--light li::before { color: var(--terra-lt); }

/* ═══════════════════════════════════════════════════════════
   OUR WORK PAGE
══════════════════════════════════════════════════════════ */
.ow-stats-bar {
  background: var(--ink-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 32px 0;
}
.ow-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.ow-stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.ow-stat-lbl {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ow-photo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 10px;
  margin-top: 48px;
}
.ow-uniform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 10px;
  margin-top: 48px;
}
.ow-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
}
.ow-photo--tall { grid-row: span 2; }
.ow-photo--wide { grid-column: span 2; }
.ow-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ow-photo:hover img { transform: scale(1.04); }
.ow-photo-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(10,9,8,0.75), transparent);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}
.ow-photo:hover .ow-photo-cap { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════
   STORM DAMAGE PAGE
══════════════════════════════════════════════════════════ */
.storm-page-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-top: 106px;
}
.storm-page-hero-img {
  position: absolute;
  inset: 0;
}
.storm-page-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.storm-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,9,8,0.85) 0%, rgba(10,9,8,0.4) 100%);
}
.storm-page-hero-content {
  position: relative;
  z-index: 2;
  padding: 64px 0;
  max-width: 640px;
}
.storm-page-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin: 16px 0 20px;
}
.storm-page-hero-content h1 em { color: var(--terra-lt); font-style: italic; }
.storm-page-hero-content p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
.storm-page-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.storm-process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 56px;
}
.storm-process-step {
  padding: 32px;
  border-top: 3px solid var(--terra);
  background: var(--cream);
  border-radius: 0 0 var(--r-md) var(--r-md);
}
.storm-process-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--terra);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 12px;
}
.storm-process-step h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
}
.storm-process-step p {
  color: var(--stone);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 10px;
}
.storm-process-note {
  color: var(--terra-dk) !important;
  font-size: 0.82rem !important;
  border-left: 2px solid var(--terra);
  padding-left: 10px;
}

.storm-signs-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.storm-signs-photo {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.storm-signs-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.storm-signs-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.storm-signs-list li {
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding-left: 20px;
  position: relative;
}
.storm-signs-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--terra-lt);
}

.storm-emergency-banner {
  background: var(--terra-dk);
  padding: 56px 0;
}
.storm-emergency-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.storm-emergency-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}
.storm-emergency-inner p {
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 520px;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — NEW PAGE STYLES
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .svc-page-block { grid-template-columns: 1fr; gap: 36px; }
  .svc-page-block--flip { direction: ltr; }
  .storm-process-grid { grid-template-columns: 1fr; gap: 24px; }
  .storm-signs-block { grid-template-columns: 1fr; gap: 40px; }
  .ow-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 200px);
  }
  .gallery-cap { opacity: 1; transform: translateY(0); }
  .ow-photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .ow-photo--tall { grid-row: span 1; }
  .ow-photo--wide { grid-column: span 2; }
  .ow-photo-cap { opacity: 1; transform: translateY(0); }
  .ow-uniform-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
  }
  .storm-page-ctas { flex-direction: column; }
  .storm-emergency-inner { flex-direction: column; text-align: center; }
  .page-hero { padding: 140px 0 60px; }
}
