/* ============================================================
   DRYmedic Restoration of Charleston — styles.css
   Brand: cyan #00B1EA · red #E51E25 (emergency only) · Montserrat
   Design: deep storm-navy grounding + coastal Lowcountry accents
   ============================================================ */

:root {
  --navy: #0A1C2E;          /* deep storm navy — primary ground */
  --navy-2: #112940;        /* raised navy surface */
  --navy-3: #1A3B5C;        /* borders / hover on navy */
  --cyan: #00B1EA;          /* DRYmedic brand primary */
  --cyan-bright: #2FC6F5;   /* links on dark */
  --cyan-dark: #0284B5;     /* hover / small text on light (AA) */
  --cyan-ink: #045C7E;      /* darker cyan for text on light */
  --red: #E51E25;           /* brand secondary — EMERGENCY CTAs only */
  --red-dark: #C1121F;
  --mist: #ECEFF2;          /* brand light gray */
  --sand: #F7F9FB;          /* section alt background */
  --white: #ffffff;
  --ink: #16222E;           /* body text on light */
  --ink-soft: #46586A;      /* secondary text on light */
  --text-dim: #8FA6BA;      /* secondary text on dark */
  --line: #DDE5EC;          /* borders on light */
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 3px rgba(10,28,46,.08), 0 4px 14px rgba(10,28,46,.06);
  --shadow-md: 0 6px 24px rgba(10,28,46,.12);
  --shadow-lg: 0 18px 50px rgba(10,28,46,.22);
  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan-dark); text-decoration: none; }
a:hover { color: var(--navy); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

h1, h2, h3, h4 { line-height: 1.15; color: var(--navy); font-weight: 800; letter-spacing: -0.015em; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 900; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: 1.2rem; }
h1 em, h2 em { font-style: normal; color: var(--cyan); }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan-dark);
  margin-bottom: .9rem;
}
.eyebrow-dim { color: var(--cyan-bright); }

/* ── Buttons ── */
.btn, .btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font);
  font-weight: 700; font-size: 1rem;
  padding: .95rem 1.7rem;
  border-radius: 999px;
  cursor: pointer; border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  line-height: 1.2; text-align: center;
}
.btn:hover, .btn-primary:hover, .btn-ghost:hover { transform: translateY(-2px); }

.btn-red {
  background: var(--red); color: #fff;
  box-shadow: 0 8px 24px rgba(229,30,37,.35);
}
.btn-red:hover { background: var(--red-dark); color: #fff; box-shadow: 0 10px 28px rgba(229,30,37,.45); }

.btn-primary {
  background: var(--cyan); color: var(--navy);
  box-shadow: 0 8px 24px rgba(0,177,234,.35);
}
.btn-primary:hover { background: var(--cyan-bright); color: var(--navy); }

.btn-ghost {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.45);
}
.btn-ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.08); }

.btn-white { background: #fff; color: var(--navy); box-shadow: var(--shadow-sm); }
.btn-white:hover { color: var(--cyan-dark); }
.btn-white-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); border-radius: 999px; padding: .95rem 1.7rem; font-weight: 700; display: inline-flex; align-items:center; gap:.5rem; }
.btn-white-outline:hover { border-color: #fff; color: #fff; }
.btn-full { width: 100%; }
.btn-lg { font-size: 1.15rem; padding: 1.15rem 2.2rem; }

/* ── Emergency top bar ── */
.emergency-bar {
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  color: #fff;
  text-align: center;
  font-size: .88rem; font-weight: 600;
  padding: .5rem 1rem;
  position: relative; z-index: 60;
}
.emergency-bar a { color: #fff; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }

/* ── Nav ── */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,28,46,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-nav.scrolled { background: rgba(10,28,46,.99); box-shadow: 0 8px 30px rgba(0,0,0,.35); }
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 1.6rem;
  height: 76px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 44px; width: auto; }
.nav-logo-sub {
  display: block; color: var(--cyan-bright);
  font-size: .74rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase;
  margin-top: 3px;
}
.nav-links { list-style: none; display: flex; gap: 1.35rem; margin-left: auto; align-items: center; }
.nav-links > li > a {
  color: #DCE7F0; font-weight: 600; font-size: .92rem;
  padding: .5rem 0; position: relative;
}
.nav-links > li > a:hover { color: var(--cyan-bright); }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.2rem;
  display: none; gap: 2rem;
  min-width: 240px;
}
.nav-dropdown-menu-single { min-width: 250px; }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: flex; }
.nav-dropdown-col { display: flex; flex-direction: column; min-width: 170px; }
.nav-dropdown-head {
  font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-dim); margin: .35rem 0 .3rem;
}
.nav-dropdown-col a {
  color: var(--ink); font-size: .92rem; font-weight: 600;
  padding: .42rem .5rem; border-radius: 8px; white-space: nowrap;
}
.nav-dropdown-col a:hover { background: var(--mist); color: var(--cyan-dark); }

.nav-phone { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.2; flex-shrink: 0; }
.nav-phone-label { font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--cyan-bright); }
.nav-phone-num { font-size: 1.12rem; font-weight: 800; color: #fff; }
.nav-phone:hover .nav-phone-num { color: var(--cyan-bright); }
.nav-call-btn {
  background: var(--red); color: #fff; font-weight: 800; font-size: .9rem;
  padding: .6rem 1.25rem; border-radius: 999px; flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(229,30,37,.4);
  transition: background .15s ease, transform .15s ease;
}
.nav-call-btn:hover { background: var(--red-dark); color: #fff; transform: translateY(-1px); }

.hamburger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: .25rem; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: #fff; margin: 5px 0; border-radius: 2px; transition: .25s; }

/* ── Hero (homepage) ── */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 500px at 80% -10%, rgba(0,177,234,.28), transparent 60%),
    radial-gradient(700px 400px at -10% 110%, rgba(0,177,234,.12), transparent 55%),
    linear-gradient(160deg, #0A1C2E 0%, #0E2740 55%, #11304E 100%);
  color: #fff;
  overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.62;
  z-index: 0;
  pointer-events: none;
}
.hero::before { /* navy tint + legibility scrim over the video */
  content: "";
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background:
    linear-gradient(to bottom, rgba(7,18,30,.68) 0%, rgba(10,28,46,.30) 45%, rgba(7,18,30,.74) 100%),
    linear-gradient(105deg, rgba(10,28,46,.72) 0%, rgba(10,28,46,.28) 55%, rgba(0,177,234,.08) 100%);
}
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}
.hero::after { /* tide line */
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 5px; z-index: 2;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--cyan-bright) 45%, transparent 100%);
  opacity: .85;
}
.hero-inner {
  max-width: var(--max); margin: 0 auto; padding: 5.5rem 24px 4.5rem;
  display: grid; grid-template-columns: 1.25fr .85fr; gap: 3.5rem; align-items: center;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  font-size: .8rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--cyan-bright); margin-bottom: 1.1rem;
}
.hero h1 { color: #fff; margin-bottom: 1.2rem; }
.hero h1 em { color: var(--cyan-bright); font-style: normal; }
.hero-sub { font-size: 1.12rem; color: #B9CBDB; max-width: 34rem; margin-bottom: 1.9rem; font-weight: 500; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-top: 4px solid var(--cyan);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 2rem 2.1rem;
  box-shadow: var(--shadow-lg);
}
.hero-card-label {
  font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--cyan-bright); margin-bottom: .4rem;
}
.hero-card-phone {
  display: block; font-size: clamp(1.7rem, 2.6vw, 2.1rem); font-weight: 900; color: #fff;
  letter-spacing: -.01em; margin-bottom: .5rem;
}
.hero-card-phone:hover { color: var(--cyan-bright); }
.hero-card-sub { font-size: .92rem; color: #B9CBDB; margin-bottom: 1.2rem; }
.hero-card-checks { display: grid; gap: .55rem; }
.hero-card-checks span {
  font-size: .9rem; font-weight: 600; color: #E4EDF4;
  padding-left: 1.6rem; position: relative;
}
.hero-card-checks span::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--cyan-bright); font-weight: 900;
}

.hero-stats { border-top: 1px solid rgba(255,255,255,.1); position: relative; z-index: 2; background: rgba(0,0,0,.18); }
.hero-stats-inner {
  max-width: var(--max); margin: 0 auto; padding: 1.2rem 24px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.stat { text-align: center; }
.stat-num { display: block; font-size: 1.55rem; font-weight: 900; color: var(--cyan-bright); letter-spacing: -.01em; }
.stat-label { font-size: .78rem; font-weight: 600; color: var(--text-dim); text-transform: uppercase; letter-spacing: .08em; }
/* Optional clarifier under a stat — used on Google Guaranteed so the badge
   reads as "screened credentials", not "Google backs every job". */
.stat-sub {
  display: block; margin-top: .25rem;
  font-size: .67rem; font-weight: 500; color: rgba(143,166,186,.72);
  letter-spacing: .02em; line-height: 1.35;
}

/* ── Services grid (dark section) ── */
.services-section {
  background: linear-gradient(180deg, var(--navy) 0%, #0D2338 100%);
  padding: 5.5rem 0 6rem;
}
.services-header {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem;
  margin-bottom: 2.8rem;
}
.services-header a { color: var(--cyan-bright); font-weight: 700; font-size: .95rem; }
.services-header a:hover { color: #fff; }
/* Tier 1 — the three emergencies people search at 2am. Larger, brighter,
   with a cyan accent rail that fills on hover. */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.svc-card {
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, rgba(255,255,255,.075) 0%, rgba(255,255,255,.03) 100%);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--radius-lg);
  padding: 2.1rem 1.9rem 1.8rem;
  display: flex; flex-direction: column;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-bright));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(47,198,245,.42);
  box-shadow: 0 18px 44px rgba(0,0,0,.34);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 54px; height: 54px; border-radius: 15px;
  background: linear-gradient(140deg, rgba(0,177,234,.26), rgba(0,177,234,.09));
  border: 1px solid rgba(47,198,245,.24);
  color: var(--cyan-bright);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: background .22s ease, color .22s ease;
}
.svc-card:hover .svc-icon { background: linear-gradient(140deg, var(--cyan), var(--cyan-dark)); color: #fff; }
.svc-icon svg { width: 27px; height: 27px; }
.svc-card h3 { color: #fff; margin-bottom: .55rem; font-size: 1.16rem; letter-spacing: -.01em; }
.svc-card p { color: #A7BCCC; font-size: .93rem; flex: 1; }
.svc-link {
  margin-top: 1.25rem; padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.09);
  color: var(--cyan-bright); font-weight: 700; font-size: .88rem;
}
.svc-card:hover .svc-link { color: #fff; }

/* Tier 2 — supporting services. Compact horizontal rows so they read as a
   different (lesser) tier instead of padding out the main grid with holes. */
.svc-grid-sub { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; margin-top: 1rem; }
.svc-mini {
  display: flex; align-items: center; gap: .9rem;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.svc-mini:hover { background: rgba(0,177,234,.09); border-color: rgba(47,198,245,.4); transform: translateY(-2px); }
.svc-mini-icon {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 11px;
  background: rgba(0,177,234,.13); color: var(--cyan-bright);
  display: flex; align-items: center; justify-content: center;
}
.svc-mini-icon svg { width: 19px; height: 19px; }
.svc-mini h3 { color: #fff; font-size: .93rem; line-height: 1.3; letter-spacing: -.01em; }
.svc-mini span { display: block; color: var(--text-dim); font-size: .78rem; font-weight: 500; margin-top: .1rem; }

/* Bottom band — replaces the old dashed "card" that pretended to be a service */
.svc-help {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  margin-top: 2.2rem; padding: 1.6rem 2rem;
  background: linear-gradient(120deg, rgba(0,177,234,.13), rgba(0,177,234,.04));
  border: 1px solid rgba(47,198,245,.26);
  border-radius: var(--radius-lg);
}
.svc-help > div { flex: 1 1 22rem; }
.svc-help .btn { flex-shrink: 0; }
.svc-help h3 { color: #fff; font-size: 1.14rem; margin-bottom: .25rem; }
.svc-help p { color: #A7BCCC; font-size: .93rem; }
@media (max-width: 900px) { .svc-grid-sub { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) {
  .svc-grid-sub { grid-template-columns: minmax(0, 1fr); }
  .svc-help { flex-direction: column; align-items: stretch; text-align: center; }
  /* in column direction the flex-grow above would stretch the copy block and
     leave a dead gap above the button */
  .svc-help > div { flex: 0 0 auto; }
  .svc-help .btn { justify-content: center; }
}

/* ── Trust / why-us (light) ── */
.trust-section { padding: 6rem 0; background: var(--white); }
.trust-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 4rem; align-items: start; }
.trust-left > p { color: var(--ink-soft); font-size: 1.05rem; max-width: 36rem; margin-bottom: 2rem; }
.trust-list { display: grid; gap: 1.5rem; }
.trust-item { display: flex; gap: 1.1rem; align-items: flex-start; }
.trust-check {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  position: relative; margin-top: .2rem;
  box-shadow: 0 4px 12px rgba(0,177,234,.35);
}
.trust-check::after {
  content: "✓"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: .85rem;
}
.trust-item h4 { font-size: 1.05rem; margin-bottom: .3rem; }
.trust-item p { color: var(--ink-soft); font-size: .95rem; }
.trust-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem;
  position: sticky; top: 110px;
}
.trust-stat {
  background: linear-gradient(165deg, var(--sand), #EDF3F8);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.4rem; text-align: center;
}
.trust-stat-num { font-size: 2.1rem; font-weight: 900; color: var(--navy); letter-spacing: -.02em; }
.trust-stat-num sup { font-size: 1rem; color: var(--cyan); }
.trust-stat-label { font-size: .8rem; font-weight: 700; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .08em; margin-top: .3rem; }

/* ── Process ── */
.process-section { padding: 6rem 0; background: var(--sand); text-align: center; }
.process-section h2 { margin-bottom: 3rem; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; text-align: left; }
.process-step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.9rem 1.6rem; position: relative;
  box-shadow: var(--shadow-sm);
}
.step-num {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--navy); color: var(--cyan-bright);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.15rem;
  margin-bottom: 1.1rem;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.process-step p { font-size: .92rem; color: var(--ink-soft); }

/* ── Areas ── */
.areas-section { padding: 6rem 0; background: var(--white); }
.areas-header { max-width: 44rem; margin-bottom: 2.6rem; }
.areas-header p:last-child { color: var(--ink-soft); }
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.areas-card {
  background: var(--sand); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.7rem 1.6rem;
}
.areas-card-head { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.1rem; }
.areas-state-name { font-weight: 800; color: var(--navy); font-size: 1.05rem; }
.areas-response { font-size: .8rem; color: var(--cyan-dark); font-weight: 600; }
.areas-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .35rem .8rem; }
.areas-list a { color: var(--ink); font-weight: 600; font-size: .93rem; }
.areas-list a:hover { color: var(--cyan-dark); }
.areas-footer {
  margin-top: 2.6rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  background: var(--navy); border-radius: var(--radius-lg); padding: 1.6rem 2rem;
}
.areas-footer p { color: #C6D6E3; font-weight: 600; }

/* ── Reviews (dark) ── */
.reviews-section { background: linear-gradient(180deg, #0D2338, var(--navy)); padding: 6rem 0; }
.reviews-head { text-align: center; max-width: 42rem; margin: 0 auto 3rem; }
.reviews-head p:last-child { color: var(--text-dim); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.7rem;
}
.review-stars { color: #FFC531; font-size: 1.05rem; letter-spacing: .1em; margin-bottom: .8rem; }
.review-text { color: #D4E1EB; font-size: .95rem; margin-bottom: 1.1rem; }
.review-author { color: var(--cyan-bright); font-weight: 700; font-size: .88rem; }

.owner-spotlight {
  margin-top: 4rem;
  display: grid; grid-template-columns: auto 1fr; gap: 2.5rem; align-items: center;
  background: rgba(0,177,234,.07);
  border: 1px solid rgba(0,177,234,.25);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.8rem;
}
.owner-spotlight-img { width: 130px; height: 130px; border-radius: 50%; object-fit: cover; border: 3px solid var(--cyan); background:#fff; padding: 10px; }
.owner-spotlight-eyebrow { font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--cyan-bright); margin-bottom: .7rem; }
.owner-spotlight-quote p:not(.owner-spotlight-eyebrow) { color: #E4EDF4; font-size: 1.08rem; font-weight: 500; line-height: 1.7; }
.owner-spotlight-quote cite { display: block; margin-top: 1rem; color: var(--text-dim); font-style: normal; font-weight: 600; font-size: .9rem; }

/* ── CTA section ── */
.cta-section {
  background:
    radial-gradient(900px 400px at 50% -20%, rgba(0,177,234,.25), transparent 60%),
    var(--navy);
  color: #fff; text-align: center; padding: 6rem 0;
  border-top: 5px solid var(--cyan);
}
.cta-section h2 { color: #fff; }
.cta-sub { color: #B9CBDB; max-width: 36rem; margin: 0 auto 1.8rem; font-size: 1.08rem; }
.cta-section > .container > p:not(.cta-sub):not(.eyebrow) { color: #B9CBDB; max-width: 38rem; margin: 0 auto 1.8rem; }
.cta-badges { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.2rem; }
.cta-badge {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  padding: .5rem 1.1rem; border-radius: 999px;
  font-size: .88rem; font-weight: 600; color: #DCE7F0;
}
.cta-phone {
  display: inline-block; font-size: clamp(2.2rem, 5vw, 3.3rem); font-weight: 900; color: #fff;
  letter-spacing: -.02em; margin-bottom: 1.5rem;
}
.cta-phone:hover { color: var(--cyan-bright); }
.cta-divider { width: 70px; height: 3px; background: var(--cyan); margin: 0 auto 1.8rem; border-radius: 2px; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-section .btn-lg { margin-top: 1rem; }

/* ── Footer ── */
.site-footer { background: #071523; color: #9FB4C6; padding: 4.5rem 0 2rem; font-size: .93rem; }
.footer-top, .footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.8rem;
  padding-bottom: 2.8rem; border-bottom: 1px solid rgba(255,255,255,.08);
}
/* Footer lockup — mirrors the nav so the mark always reads
   "DRYmedic Restoration Services OF CHARLESTON", never the bare corporate mark. */
.footer-lockup { display: inline-block; margin-bottom: 1.1rem; }
.footer-lockup img { height: 40px; width: auto; margin-bottom: 0 !important; display: block; }
.footer-lockup .footer-logo-sub {
  display: block; margin-top: 3px;
  color: var(--cyan-bright); font-size: .68rem; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase;
}
.footer-brand img { height: 40px; width: auto; margin-bottom: 1.1rem; }
.footer-brand p { margin-bottom: 1.1rem; max-width: 22rem; }
.footer-brand-phone { display: inline-block; color: #fff; font-weight: 800; font-size: 1.25rem; }
.footer-brand-phone:hover { color: var(--cyan-bright); }
.footer-contact { display: grid; gap: .4rem; margin-top: .8rem; }
.footer-contact a { color: #C6D6E3; }
.footer-col h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1rem; }
.footer-col a { display: block; color: #9FB4C6; padding: .28rem 0; font-weight: 500; }
.footer-col a:hover { color: var(--cyan-bright); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding-top: 1.6rem; font-size: .82rem; color: #6D8398;
}
.footer-legal { display: flex; gap: 1.4rem; }
.footer-legal a { color: #6D8398; }
.footer-legal a:hover { color: var(--cyan-bright); }
.footer-copy { color: #6D8398; }

/* ── Interior pages ── */
.breadcrumb { background: var(--sand); border-bottom: 1px solid var(--line); font-size: .85rem; padding: .65rem 0; }
.breadcrumb a { color: var(--ink-soft); font-weight: 600; }
.breadcrumb a:hover { color: var(--cyan-dark); }
.breadcrumb span { color: var(--navy); font-weight: 700; }

.page-hero {
  background:
    radial-gradient(900px 420px at 85% -20%, rgba(0,177,234,.3), transparent 60%),
    linear-gradient(160deg, #0A1C2E 0%, #0F2A45 100%);
  color: #fff; padding: 4.2rem 0 3.4rem;
  border-bottom: 4px solid var(--cyan);
}
.page-hero h1 { color: #fff; max-width: 52rem; margin-bottom: 1rem; }
.page-hero > .container > p { color: #B9CBDB; font-size: 1.12rem; max-width: 42rem; font-weight: 500; }
.hero-trust-pills { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.6rem; }
.trust-pill {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px; padding: .45rem 1rem;
  font-size: .84rem; font-weight: 600; color: #E4EDF4;
}

.page-cta-bar { background: var(--navy-2); border-bottom: 1px solid rgba(255,255,255,.08); padding: .9rem 0; }
.page-cta-bar .container { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; flex-wrap: wrap; }
.page-cta-bar span { color: #DCE7F0; font-weight: 600; font-size: .95rem; }

/* ── Inline estimate form ── */
.inline-estimate { background: var(--sand); padding: 4.5rem 0; border-bottom: 1px solid var(--line); }
.inline-estimate-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 3rem; box-shadow: var(--shadow-md);
  border-top: 5px solid var(--cyan);
}
.inline-estimate-copy h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.inline-estimate-copy > p { color: var(--ink-soft); margin-bottom: 1.4rem; }
.est-trust-list { list-style: none; display: grid; gap: .55rem; }
.est-trust-list li { font-size: .95rem; font-weight: 600; color: var(--ink); }

.estimate-form { display: grid; gap: .9rem; }
.form-field input, .form-field textarea, .form-field select,
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  font-family: var(--font); font-size: .98rem; color: var(--ink);
  background: var(--sand);
  border: 1.5px solid var(--line); border-radius: 10px;
  padding: .85rem 1rem;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus,
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--cyan); background: #fff;
  box-shadow: 0 0 0 3px rgba(0,177,234,.18);
}
.form-fine { font-size: .76rem; color: var(--ink-soft); text-align: center; }
.form-group label { font-weight: 700; font-size: .88rem; color: var(--navy); margin-bottom: .3rem; display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.req { color: var(--red); }

/* ── Content grid (service/city body) ── */
.page-body { padding: 4.5rem 0; }
.content-grid { display: grid; grid-template-columns: 1fr 320px; gap: 3.5rem; align-items: start; }
.content-body h2 { font-size: 1.6rem; margin: 2.4rem 0 .9rem; }
.content-body h2:first-child { margin-top: 0; }
.content-body h3 { font-size: 1.15rem; margin: 1.6rem 0 .5rem; }
.content-body p { color: var(--ink-soft); margin-bottom: 1rem; font-size: 1rem; }
.content-body ul { margin: 0 0 1.2rem 1.2rem; color: var(--ink-soft); }
.content-body li { margin-bottom: .45rem; }
.content-body li strong { color: var(--navy); }

.check-list { list-style: none !important; margin-left: 0 !important; display: grid; gap: .5rem; }
.check-list li { padding-left: 1.7rem; position: relative; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--cyan); font-weight: 900;
}

.service-links { list-style: none !important; margin-left: 0 !important; display: grid; grid-template-columns: 1fr 1fr; gap: .5rem .9rem; }
.service-links a { font-weight: 700; }

.faq { display: grid; gap: .8rem; margin-top: 1.2rem; }
.faq-item {
  background: var(--sand); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
}
.faq-item h3 { margin: 0 0 .45rem; font-size: 1.02rem; }
.faq-item p { margin-bottom: 0; font-size: .95rem; }
.faq-item p + p { margin-top: .7rem; }

/* Sidebar */
aside { position: sticky; top: 110px; display: grid; gap: 1.3rem; }
.sidebar-card {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 1.9rem 1.7rem; text-align: center;
  border-top: 4px solid var(--red);
  box-shadow: var(--shadow-md);
}
.sidebar-card h3 { color: #fff; margin-bottom: .6rem; }
.sidebar-card .phone { display: block; font-size: 1.65rem; font-weight: 900; color: var(--cyan-bright); margin-bottom: .4rem; }
.sidebar-card .phone:hover { color: #fff; }
.sidebar-card p { color: #B9CBDB; font-size: .88rem; margin-bottom: 1.1rem; }
.sidebar-card .btn { width: 100%; margin-bottom: .6rem; }
.sidebar-services {
  background: var(--sand); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
}
.sidebar-services h3 { font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); margin-bottom: .8rem; }
.sidebar-services a { display: block; padding: .45rem 0; font-weight: 700; color: var(--navy); border-bottom: 1px solid var(--line); font-size: .95rem; }
.sidebar-services a:last-child { border-bottom: 0; }
.sidebar-services a:hover { color: var(--cyan-dark); }

/* ── Gallery ── */
.gallery-section { padding: 6rem 0; background: var(--sand); }
.gallery-head { text-align: center; max-width: 44rem; margin: 0 auto 2.8rem; }
.gallery-sub { color: var(--ink-soft); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.gallery-card {
  border-radius: var(--radius-lg); overflow: hidden; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.gallery-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.gallery-label { padding: .9rem 1.2rem; font-weight: 700; color: var(--navy); font-size: .92rem; }

/* ── Mobile call bar ── */
.mobile-call-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  color: #fff; text-align: center;
  padding: .8rem 1rem calc(.8rem + env(safe-area-inset-bottom));
  font-weight: 800; font-size: 1.05rem;
  box-shadow: 0 -6px 24px rgba(0,0,0,.25);
  flex-direction: column; line-height: 1.3;
}
.mobile-call-bar:hover { color: #fff; }
.mcb-eyebrow { display: block; font-size: .62rem; font-weight: 700; letter-spacing: .22em; opacity: .85; }

/* ── Utility sections shared by about/contact/etc ── */
.section { padding: 5rem 0; }
.section-alt { background: var(--sand); }
.lead { font-size: 1.15rem; color: var(--ink-soft); font-weight: 500; }

/* ── Animations (paired with js/animations.js) ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.in-view { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; padding-top: 4rem; }
  .hero-card { max-width: 480px; }
  .svc-grid, .areas-grid, .reviews-grid, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .trust-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .trust-stats { position: static; }
  .content-grid { grid-template-columns: 1fr; }
  aside { position: static; grid-template-columns: 1fr 1fr; }
  .footer-top, .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { gap: 1rem; }
}

@media (max-width: 768px) {
  .nav-inner { height: 66px; gap: .8rem; }
  /* backdrop-filter turns the sticky nav into a containing block for
     position:fixed, which would trap the slide-in drawer inside the 66px
     nav — solid background on mobile instead. */
  .site-nav { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--navy); }
  .nav-phone { display: none; }
  /* Above the open drawer (both live in the nav's stacking context) so it
     stays tappable as a close button. */
  .hamburger { display: block; position: relative; z-index: 90; }
  .hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 85vw);
    background: var(--navy); z-index: 80;
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: 5rem 1.8rem 2rem;
    transform: translateX(100%); transition: transform .3s ease;
    overflow-y: auto;
  }
  .nav-links.open { transform: none; box-shadow: -20px 0 60px rgba(0,0,0,.4); }
  .nav-links > li { width: 100%; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-links > li > a { display: block; padding: .9rem 0; font-size: 1.05rem; }
  .nav-dropdown-menu {
    position: static; transform: none; display: none;
    background: transparent; box-shadow: none; padding: 0 0 .8rem .8rem;
    flex-direction: column; gap: 0; min-width: 0;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: flex; }
  .nav-dropdown-col { min-width: 0; }
  .nav-dropdown-col a { color: #C6D6E3; padding: .4rem 0; }
  .nav-dropdown-col a:hover { background: none; color: var(--cyan-bright); }
  .nav-dropdown-head { color: var(--cyan-bright); }

  .hero-inner { padding: 3.2rem 20px 3rem; }
  .hero-video { opacity: 0.62; }
  .hero-stats-inner { grid-template-columns: 1fr 1fr; gap: 1.2rem .6rem; }
  .services-header { flex-direction: column; align-items: flex-start; gap: .8rem; }
  .svc-grid, .areas-grid, .reviews-grid, .gallery-grid, .process-steps { grid-template-columns: 1fr; }
  .inline-estimate-inner { grid-template-columns: 1fr; padding: 1.8rem; gap: 1.8rem; }
  .areas-footer { flex-direction: column; text-align: center; }
  .owner-spotlight { grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 2rem 1.5rem; }
  .footer-top, .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  aside { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .page-cta-bar .container { justify-content: center; text-align: center; }
  .mobile-call-bar { display: flex; }
  body { padding-bottom: 68px; }
  .emergency-bar { font-size: .78rem; }
}

/* ── Blog ─────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.blog-card {
  display: flex; flex-direction: column; background: #fff; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--line); text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(11,31,51,.12); }
.blog-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--navy); }
.blog-card-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: .55rem; }
.blog-card-body h3 { color: var(--navy); font-size: 1.08rem; line-height: 1.35; }
.blog-card-body p { color: var(--ink-soft); font-size: .93rem; }
.blog-meta { display: flex; align-items: center; gap: .7rem; font-size: .78rem; }
.blog-tag {
  background: rgba(0,177,234,.1); color: var(--cyan-dark); font-weight: 700;
  padding: .18rem .6rem; border-radius: 99px; letter-spacing: .02em;
}
.blog-date { color: var(--ink-soft); font-weight: 600; }
.blog-intro { font-size: 1.13rem; color: var(--ink); line-height: 1.75; margin-bottom: 1.6rem; }
.post-hero-note { margin-top: .9rem; font-size: .85rem; color: rgba(255,255,255,.55); }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

/* ── Gallery placeholders (until real job photos) ────── */
.ph-tile {
  width: 100%; aspect-ratio: 4/3; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .5rem;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: rgba(255,255,255,.55); font-weight: 700; font-size: .9rem; letter-spacing: .04em;
}
.ph-tile svg { width: 34px; height: 34px; opacity: .5; }

/* ══════════════════════════════════════════════════════════════
   Mobile hardening — audited at 375px (Jul 20)
   ══════════════════════════════════════════════════════════════ */

/* iOS zooms the page on focus of any control under 16px — never let
   a form control drop below 16px at ANY width. */
.estimate-form input, .estimate-form textarea, .estimate-form select,
.form-group input, .form-group textarea, .form-group select,
.form-field input, .form-field textarea, .form-field select {
  font-size: 16px;
}

@media (max-width: 768px) {
  /* — Emergency bar: one tight line instead of two tall ones — */
  .emergency-bar { font-size: .72rem; padding: .45rem .75rem; line-height: 1.35; }

  /* — Hero: was 1350px tall on an 812px screen — */
  .hero-inner { padding: 2.4rem 20px 2rem; gap: 1.6rem; }
  .hero h1 { font-size: 1.9rem; }
  .hero-sub { font-size: .98rem; }
  .hero-eyebrow { font-size: .7rem; letter-spacing: .16em; }
  .hero-card { padding: 1.4rem 1.3rem; }
  .hero-card-phone { font-size: 1.75rem; }
  .hero-card-checks span { font-size: .85rem; }
  .hero-stats-inner { padding: .9rem 20px; gap: .9rem .5rem; }
  .stat-num { font-size: 1.25rem; }
  .stat-label { font-size: .68rem; }
  .stat-sub { font-size: .6rem; }

  /* — Full-width, thumb-sized CTAs — */
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .hero-actions .btn-ghost, .hero-actions .btn-primary,
  .cta-actions .btn { width: 100%; justify-content: center; text-align: center; }
  .btn { min-height: 48px; }
  .nav-call-btn { min-height: 44px; display: inline-flex; align-items: center; }

  /* — Section rhythm: desktop paddings are 5.5–6rem; phones drown in them — */
  .services-section, .trust-section, .process-section, .areas-section,
  .reviews-section, .gallery-section, .page-body { padding-top: 3.2rem; padding-bottom: 3.6rem; }
  .cta-section { padding-top: 3.6rem; padding-bottom: 3.8rem; }
  .page-hero { padding-top: 2.6rem; padding-bottom: 2.4rem; }
  .page-hero h1 { font-size: 1.75rem; }
  .svc-card { padding: 1.6rem 1.4rem 1.4rem; }
  .svc-help { padding: 1.4rem 1.3rem; }
  .page-cta-bar .container { padding-top: .2rem; padding-bottom: .2rem; }
  .inline-estimate { padding-top: 2.6rem; padding-bottom: 2.6rem; }

  /* — Trust pills: smaller chips, tighter wrap — */
  .hero-trust-pills { gap: .45rem; }
  .trust-pill { font-size: .74rem; padding: .35rem .65rem; }

  /* — Tap targets: links need ≥44px of touchable area — */
  .footer-col a, .sidebar-services a { padding: .42rem 0; }
  .footer-legal a { padding: .4rem .2rem; }
  .breadcrumb { font-size: .78rem; }

  /* — Sticky call bar: respect iPhone home-indicator safe area — */
  .mobile-call-bar { padding-bottom: calc(.75rem + env(safe-area-inset-bottom)); }
  body { padding-bottom: calc(68px + env(safe-area-inset-bottom)); }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 1.72rem; }
  h2 { font-size: 1.5rem; }
  .cta-phone { font-size: 2rem; }
}

/* ── Mobile calm pass: one red CTA on screen, not four ────────
   The sticky bottom call bar is the persistent emergency CTA on
   phones — the top emergency bar and the nav Call Now pill just
   duplicate it and make the first screen feel like a warning
   label. Desktop keeps all three. */
@media (max-width: 768px) {
  .emergency-bar { display: none; }
  .nav-call-btn { display: none; }
  .nav-inner { height: 62px; }
}
@media (max-width: 560px) {
  .m-hide { display: none; }           /* tucks hero copy tails on phones */
  .hero-card { display: none; }        /* phone + checks repeat: stats bar + trust section cover it */
  .hero-inner { gap: 0; }
}

/* Hamburger sits at the right edge on phones (the hidden Call pill used to
   push it there). */
@media (max-width: 768px) {
  .hamburger { margin-left: auto; }
}

/* Breathing room under the "OF CHARLESTON" logo line on phones — the fixed
   62px bar was cropping the lockup flush against the bar's bottom edge. */
@media (max-width: 768px) {
  .nav-inner { height: auto; min-height: 62px; padding-top: .55rem; padding-bottom: .7rem; }
}

/* Section headings placed DIRECTLY in a .page-body container (service-areas
   index, blog index) miss the .content-body h2 spacing and collide with the
   block above them. Give them the same rhythm. */
.page-body > .container > h2 { margin-top: 3rem; }
.page-body > .container > h2:first-child { margin-top: 0; }
.page-body > .container > h2 + p { margin-bottom: 1.4rem; }
.page-body > .container > .areas-grid { margin-bottom: 1rem; }
@media (max-width: 768px) {
  .page-body > .container > h2 { margin-top: 2.2rem; }
}
