/* Taylor Roofing Company — shared stylesheet */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:    #c0392b;
  --red-dk: #a93226;
  --black:  #0e0e0e;
  --gray:   #1c1c1c;
  --mid:    #3a3a3a;
  --light:  #f5f5f5;
  --white:  #ffffff;
  --text:   #222222;
  --radius: 4px;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max: 1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dk); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-outline-red { background: transparent; color: var(--red); border: 2px solid var(--red); }
.btn-outline-red:hover { background: var(--red); color: var(--white); }
.btn-lg { font-size: 1.05rem; padding: 0.85rem 1.9rem; }

/* ── Nav ─────────────────────────────────────────────────────────────────── */
#nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 3px solid var(--red);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo img { height: 40px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-links a.active { color: var(--red); background: transparent; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 0.3em; cursor: pointer; }
.nav-dropdown > a::after { content: '▾'; font-size: 0.7em; opacity: 0.6; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 2px solid var(--red);
  border-radius: 0 0 6px 6px;
  min-width: 220px;
  z-index: 200;
  padding: 0.4rem 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 0.65rem 1rem;
  border-radius: 0;
  background: transparent;
  transition: color 0.12s, background 0.12s;
}
.dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,0.07); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.nav-phone {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
}
.nav-phone .icon { color: var(--red); margin-right: 0.3em; }

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.2s;
}

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  background: #161616;
  border-bottom: 2px solid var(--red);
  padding: 1rem 1.5rem;
}
.nav-drawer.open { display: block; }
.nav-drawer ul { list-style: none; }
.nav-drawer a {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a.active { color: var(--red); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-phone { display: none; }
}
@media (max-width: 480px) {
  .nav-logo img { height: 32px; }
}

/* ── Trust bar ────────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--red);
  padding: 0.8rem 1.5rem;
}
.trust-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  justify-content: center;
}
.trust-item {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.trust-item::before { content: '✓'; }

/* ── Page hero (interior pages) ──────────────────────────────────────────── */
.page-hero {
  background: var(--black);
  padding: 4.5rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 5px; height: 100%;
  background: var(--red);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(192,57,43,0.1) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
}
.page-hero-label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1rem;
  max-width: 700px;
}
.page-hero h1 em { font-style: normal; color: var(--red); }
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.page-hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ── Section shared ───────────────────────────────────────────────────────── */
section { padding: 4.5rem 1.5rem; }
.section-inner { max-width: var(--max); margin: 0 auto; }

.section-label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 0.85rem;
}
.section-sub {
  font-size: 1rem;
  color: #555;
  max-width: 560px;
  margin-bottom: 2.75rem;
  line-height: 1.75;
}
.section-sub.wide { max-width: 780px; }
.dark .section-title { color: var(--white); }
.dark .section-label { color: #e05a50; }
.dark .section-sub   { color: rgba(255,255,255,0.55); }

/* dark/light section backgrounds */
section.bg-dark  { background: var(--gray); }
section.bg-black { background: var(--black); }
section.bg-light { background: var(--light); }
section.bg-white { background: var(--white); }

/* ── Card grids ───────────────────────────────────────────────────────────── */
.card-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

@media (max-width: 900px) {
  .card-grid-4 { grid-template-columns: 1fr 1fr; }
  .card-grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .card-grid-2, .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border-radius: 6px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.card-dark {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 6px;
  padding: 2rem;
}
.card-dark:hover { border-color: rgba(192,57,43,0.5); }
.card-red-top { border-top: 4px solid var(--red); }
.card-gray-top { border-top: 4px solid var(--mid); }

.card-icon { font-size: 2rem; margin-bottom: 1rem; }
.card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.6rem;
}
.card-dark h3 { color: var(--white); }
.card p { font-size: 0.92rem; color: #555; line-height: 1.7; }
.card-dark p { color: rgba(255,255,255,0.52); }

/* ── Check list ───────────────────────────────────────────────────────────── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.check-list li {
  font-size: 0.93rem;
  color: #444;
  padding-left: 1.5em;
  position: relative;
  line-height: 1.5;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}
.check-list.white li { color: rgba(255,255,255,0.72); }
.check-list.white li::before { color: #e05a50; }

/* ── Numbered steps ───────────────────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .steps-grid { grid-template-columns: 1fr; } }

.step {
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
}
.step-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--red);
  opacity: 0.45;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.step h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.step p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ── CTA band ─────────────────────────────────────────────────────────────── */
.cta-band {
  background: var(--red);
  padding: 3.5rem 1.5rem;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.cta-band p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.75rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.cta-band .btn-white {
  background: var(--white);
  color: var(--red);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  display: inline-block;
  margin: 0 0.5rem 0.5rem;
  transition: background 0.15s, transform 0.1s;
}
.cta-band .btn-white:hover { background: #f0f0f0; }
.cta-band .btn-outline-white {
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  display: inline-block;
  margin: 0 0.5rem 0.5rem;
  transition: border-color 0.15s, background 0.15s;
}
.cta-band .btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ── Two-col content ──────────────────────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.two-col-wide { display: grid; grid-template-columns: 3fr 2fr; gap: 4rem; align-items: start; }
@media (max-width: 768px) {
  .two-col, .two-col-wide { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── Highlight stat boxes ─────────────────────────────────────────────────── */
.stat-box {
  text-align: center;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
}
.stat-box .stat-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.stat-box .stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.35rem;
}

/* ── FAQ accordion ────────────────────────────────────────────────────────── */
.faq { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.1rem 0;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-q .faq-icon { color: var(--red); font-size: 1.2rem; flex-shrink: 0; transition: transform 0.2s; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none;
  font-size: 0.93rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  padding-bottom: 1.1rem;
}
.faq-a.open { display: block; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
footer {
  background: #080808;
  border-top: 3px solid var(--red);
  padding: 2.5rem 1.5rem;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-brand img { height: 36px; width: auto; display: block; }
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-staff-link { color: rgba(255,255,255,0.35); text-decoration: none; margin-left: 1rem; border-bottom: 1px solid rgba(255,255,255,0.15); }
.footer-staff-link:hover { color: rgba(255,255,255,0.7); border-bottom-color: rgba(255,255,255,0.45); }

/* ── SVG icons ──────────────────────────────────────────────────────────── */
[data-icon] { display: inline-flex; align-items: center; justify-content: center; line-height: 0; }
[data-icon] svg { width: 1em; height: 1em; display: block; }

/* ── Photo placeholders (so design looks intentional before real photos drop in) ── */
.trc-photo {
  position: relative;
  background: linear-gradient(135deg, #1c1c1c 0%, #0e0e0e 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trc-photo::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(192,57,43,0.04) 12px, rgba(192,57,43,0.04) 13px),
    radial-gradient(ellipse at center, rgba(192,57,43,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.trc-photo::after {
  content: attr(data-label);
  position: relative;
  z-index: 1;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  text-align: center;
  padding: 0 1.5rem;
  line-height: 1.5;
}
.trc-photo.has-image::before,
.trc-photo.has-image::after { display: none; }
.trc-photo { background-color: #0e0e0e; }

/* ── Hero photo backdrop ───────────────────────────────────────────────── */
.hero-photo {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1c1c1c 0%, #0e0e0e 100%);
  background-size: cover;
  background-position: center;
}
.hero-photo::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 14px, rgba(192,57,43,0.05) 14px, rgba(192,57,43,0.05) 15px),
    radial-gradient(ellipse at 30% 40%, rgba(192,57,43,0.12) 0%, transparent 60%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.6) 45%, rgba(0,0,0,0.3) 80%, rgba(0,0,0,0.45) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, transparent 25%, transparent 60%, rgba(0,0,0,0.55) 100%);
}

/* ── Service card photo header ─────────────────────────────────────────── */
.svc-card { padding: 0; overflow: hidden; }
.svc-card .svc-photo {
  height: 160px;
  position: relative;
}
.svc-card .svc-photo .svc-card-icon {
  position: absolute;
  bottom: -22px;
  left: 1.5rem;
  width: 48px; height: 48px;
  background: var(--red);
  color: var(--white);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  margin: 0;
  z-index: 2;
}
.svc-card .svc-body {
  padding: 2rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-card .svc-body h3 { margin-top: 0.5rem; }

/* ── Process step photos ───────────────────────────────────────────────── */
.step { padding: 0; overflow: hidden; }
.step .step-photo {
  height: 140px;
  position: relative;
}
.step .step-photo .step-num {
  position: absolute;
  top: 0.75rem; right: 1rem;
  margin: 0;
  font-size: 2.2rem;
  color: var(--red);
  opacity: 0.9;
  z-index: 2;
  background: rgba(0,0,0,0.55);
  padding: 0.1rem 0.6rem;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}
.step .step-body { padding: 1.25rem 1.4rem 1.6rem; }
.step .step-body h4 { margin-bottom: 0.45rem; }

/* ── Meet the owner block ──────────────────────────────────────────────── */
#owner { background: var(--gray); }
.owner-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 768px) { .owner-grid { grid-template-columns: 1fr; gap: 2rem; } }
.owner-photo {
  aspect-ratio: 4/5;
  border-radius: 8px;
  border: 3px solid var(--red);
}
.owner-text .owner-quote {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.3vw, 1.85rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}
.owner-text .owner-quote::before {
  content: '"';
  color: var(--red);
  font-size: 1.3em;
  line-height: 0;
  vertical-align: -0.3em;
  margin-right: 0.1em;
}
.owner-text .owner-quote::after {
  content: '"';
  color: var(--red);
  font-size: 1.3em;
  line-height: 0;
  vertical-align: -0.3em;
  margin-left: 0.05em;
}
.owner-byline {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
}
.owner-byline span { color: rgba(255,255,255,0.5); font-weight: 500; margin-left: 0.5rem; }
.owner-bio { font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 1.5rem; }
.owner-creds { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.owner-creds span { display: inline-flex; align-items: center; gap: 0.45rem; }
.owner-creds [data-icon] { color: var(--red); font-size: 1rem; }

/* ── Recent work gallery ───────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 0.75rem;
}
@media (max-width: 768px) { .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; } }
.gallery-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s;
}
.gallery-item:hover { transform: translateY(-3px); }
.gallery-item.wide { grid-column: span 2; }
@media (max-width: 480px) { .gallery-item.wide { grid-column: span 1; } }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 70%, rgba(0,0,0,0.92) 100%);
  padding: 2rem 1.1rem 1rem;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
}
.gallery-caption small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(255,255,255,0.6);
  margin-top: 0.2rem;
}

/* ── Area card icon ────────────────────────────────────────────────────── */
.area-icon-svg {
  width: 32px; height: 32px;
  margin: 0 auto 0.5rem;
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.area-card.home .area-icon-svg { color: var(--red); }

/* ── Why us card icon refresh ──────────────────────────────────────────── */
.card-icon-svg {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: rgba(192,57,43,0.15);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
}
.card-dark .card-icon-svg { background: rgba(192,57,43,0.2); }

/* ── Contact detail icon refresh ───────────────────────────────────────── */
.contact-detail-icon-svg {
  width: 38px; height: 38px;
  border-radius: 6px;
  background: rgba(192,57,43,0.18);
  color: var(--red);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* ── Trust bar (with SVG icons + Google rating badge) ──────────────────── */
.trust-item { gap: 0.5rem; }
.trust-item::before { content: none; }
.trust-item [data-icon] { font-size: 1.05rem; color: var(--white); }
.trust-rating {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  padding: 0.05rem 0.7rem 0.05rem 0.4rem;
  background: rgba(0,0,0,0.25);
  border-radius: 999px;
}
.trust-rating .stars { display: inline-flex; gap: 1px; color: #fde047; font-size: 0.9rem; }
.trust-rating .stars [data-icon] svg { fill: currentColor; stroke: none; }
.trust-rating small { font-weight: 500; opacity: 0.8; }

/* ── Dark-section texture (subtle diagonal lines + red corner flare) ───── */
section.bg-black, section.bg-dark, #owner, #why {
  position: relative;
}
section.bg-black::before, section.bg-dark::before, #owner::before, #why::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(-58deg, transparent, transparent 38px,
      rgba(255,255,255,0.015) 38px, rgba(255,255,255,0.015) 39px),
    radial-gradient(ellipse 600px 400px at 100% 0%, rgba(192,57,43,0.08) 0%, transparent 70%);
}
section.bg-black > *, section.bg-dark > *, #owner > *, #why > * { position: relative; z-index: 1; }

/* ── Section dividers (angled cut between contrasting sections) ────────── */
.divider-angle {
  position: relative;
  height: 60px;
  margin-top: -60px;
  margin-bottom: -1px;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
}
.divider-angle svg { display: block; width: 100%; height: 100%; }
.divider-flush { margin-top: 0; }

/* ── Stats band ────────────────────────────────────────────────────────── */
#stats {
  background: var(--black);
  padding: 2.5rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
.stat {
  text-align: center;
  padding: 0.5rem 0.75rem;
  position: relative;
}
.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0; top: 18%; bottom: 18%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}
@media (max-width: 768px) {
  .stat + .stat::before { display: none; }
  .stat:nth-child(odd)::after { content: ''; position: absolute; right: -0.5rem; top: 15%; bottom: 15%; width: 1px; background: rgba(255,255,255,0.08); }
}
.stat .stat-num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  letter-spacing: 0.02em;
}
.stat .stat-num sup { font-size: 0.55em; color: rgba(255,255,255,0.5); margin-left: 0.1em; vertical-align: super; }
.stat .stat-label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 0.4rem;
}

/* ── Sticky scroll CTA (mobile-friendly) ───────────────────────────────── */
.scroll-cta {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s, transform 0.25s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.06);
  border-radius: 999px !important;
  padding: 0.85rem 1.4rem !important;
}
.scroll-cta.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
@media (max-width: 540px) {
  .scroll-cta { right: 0.85rem; bottom: 0.85rem; padding: 0.75rem 1.1rem !important; font-size: 0.9rem !important; }
}

/* ── Scroll-reveal animation ───────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Owner signature ───────────────────────────────────────────────────── */
.owner-signature {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--red);
}
.owner-signature svg { height: 38px; width: auto; }
.owner-signature .sig-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(192,57,43,0.5) 0%, transparent 100%);
  max-width: 120px;
}

/* ── Pulse on hero accent ──────────────────────────────────────────────── */
@keyframes redPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(192,57,43,0); }
  50%      { box-shadow: 0 0 28px 0 rgba(192,57,43,0.5); }
}
.hero-accent { animation: redPulse 4.5s ease-in-out infinite; }

/* ── Storm-response strip (emergency CTA between stats and services) ──── */
.storm-strip {
  background: linear-gradient(90deg, var(--red) 0%, var(--red-dk) 100%);
  padding: 0.85rem 1.5rem;
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.storm-strip [data-icon] { font-size: 1.2rem; }
.storm-strip a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; font-weight: 700; }
.storm-strip a:hover { text-decoration-thickness: 2px; }

/* ── Enhanced footer ───────────────────────────────────────────────────── */
footer { padding: 3.5rem 1.5rem 2rem; }
.footer-cols {
  max-width: var(--max);
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
@media (max-width: 768px) { .footer-cols { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-cols { grid-template-columns: 1fr; } }
.footer-col h5 {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-col p, .footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.85;
  text-decoration: none;
}
.footer-col a:hover { color: var(--red); }
.footer-col .footer-brand-block img { height: 40px; margin-bottom: 1rem; }
.footer-col .footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.7; }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.32);
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--red); }

/* ═══════════════════════════════════════════════════════════════════════
   DE-BOXED LAYOUTS
   New patterns replacing the old card-grid sections.
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Editorial service feature row (alternating L/R) ───────────────────── */
.svc-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 5rem;
}
.svc-feature:last-child { margin-bottom: 0; }
.svc-feature.flip { direction: rtl; }
.svc-feature.flip > * { direction: ltr; }
@media (max-width: 768px) {
  .svc-feature { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3.5rem; }
  .svc-feature.flip { direction: ltr; }
}
.svc-feature-photo {
  aspect-ratio: 4/3;
  border-radius: 4px;
  position: relative;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.svc-feature-photo::after { /* override the photo placeholder label color for light section */
  color: rgba(255,255,255,0.4);
}
.svc-feature-photo .accent-edge {
  position: absolute;
  left: -8px; top: -8px; bottom: 12%;
  width: 4px;
  background: var(--red);
}
.svc-feature-tag {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.svc-feature-tag::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--red);
}
.svc-feature h3 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.svc-feature p {
  font-size: 1rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  max-width: 520px;
}
.svc-feature .svc-link {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.svc-feature .svc-link [data-icon] { font-size: 1rem; transition: transform 0.2s; }
.svc-feature .svc-link:hover [data-icon] { transform: translateX(4px); }

/* ── Compact services strip (6-up flat list, no boxes) ─────────────────── */
.svc-strip-label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.svc-strip-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.1);
}
.svc-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}
@media (max-width: 768px) { .svc-strip { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .svc-strip { grid-template-columns: 1fr; } }
.svc-strip-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.25rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  border-right: 1px solid rgba(0,0,0,0.08);
  text-decoration: none;
  color: var(--text);
  transition: background 0.15s, color 0.15s;
  position: relative;
}
.svc-strip-item:nth-child(3n) { border-right: none; }
@media (max-width: 768px) {
  .svc-strip-item:nth-child(3n) { border-right: 1px solid rgba(0,0,0,0.08); }
  .svc-strip-item:nth-child(2n) { border-right: none; }
}
@media (max-width: 480px) {
  .svc-strip-item { border-right: none !important; }
}
.svc-strip-item .strip-icon {
  width: 42px; height: 42px;
  border-radius: 6px;
  background: rgba(192,57,43,0.1);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}
.svc-strip-item .strip-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex: 1;
}
.svc-strip-item .strip-arrow {
  color: rgba(0,0,0,0.3);
  font-size: 1rem;
  transition: transform 0.2s, color 0.15s;
}
.svc-strip-item:hover { background: var(--black); color: var(--white); }
.svc-strip-item:hover .strip-icon { background: var(--red); color: var(--white); }
.svc-strip-item:hover .strip-arrow { color: var(--red); transform: translateX(4px); }

/* ── Horizontal timeline (How it Works) ─────────────────────────────────── */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.timeline::before { /* connector line */
  content: '';
  position: absolute;
  top: 132px; left: 0; right: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--red) 0 8px, transparent 8px 16px);
  opacity: 0.5;
  z-index: 0;
}
@media (max-width: 768px) {
  .timeline { grid-template-columns: 1fr; gap: 1rem; }
  .timeline::before { display: none; }
}
.timeline-step {
  position: relative;
  text-align: center;
  z-index: 1;
}
.timeline-photo {
  width: 110px; height: 110px;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  border: 3px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.timeline-photo.trc-photo::after { font-size: 0.55rem; padding: 0 0.4rem; letter-spacing: 0.05em; }
.timeline-dot {
  position: absolute;
  bottom: -38px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px; height: 16px;
  background: var(--red);
  border-radius: 50%;
  border: 3px solid var(--black);
  z-index: 2;
}
.timeline-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-top: 3rem;
  margin-bottom: 0.5rem;
  opacity: 0.95;
}
.timeline-step h4 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.timeline-step p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  max-width: 220px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .timeline-step { display: grid; grid-template-columns: 90px 1fr; gap: 1rem; text-align: left; align-items: center; padding: 1rem 0; }
  .timeline-photo { width: 90px; height: 90px; margin: 0; }
  .timeline-dot { display: none; }
  .timeline-num { margin: 0; font-size: 1.6rem; grid-column: 1; }
  .timeline-step h4, .timeline-step p { grid-column: 2; }
  .timeline-step h4 { margin-top: -1.5rem; }
  .timeline-step p { max-width: none; }
}

/* ── Us vs. Typical Contractor comparison ──────────────────────────────── */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  overflow: hidden;
}
@media (max-width: 640px) { .compare { grid-template-columns: 1fr; } }
.compare-col-head {
  padding: 1.3rem 1.5rem;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.compare-col.ours .compare-col-head {
  background: var(--red);
  color: var(--white);
}
.compare-col.theirs .compare-col-head {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.5);
}
.compare-row {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  gap: 0.85rem;
  font-size: 0.94rem;
  line-height: 1.55;
}
.compare-col.ours .compare-row { color: rgba(255,255,255,0.85); }
.compare-col.theirs .compare-row { color: rgba(255,255,255,0.4); text-decoration: line-through; text-decoration-color: rgba(255,255,255,0.15); text-decoration-thickness: 1px; }
.compare-row [data-icon] {
  flex-shrink: 0;
  width: 22px; height: 22px;
  font-size: 1.1rem;
  margin-top: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.compare-col.ours .compare-row [data-icon] { color: var(--red); }
.compare-col.theirs .compare-row [data-icon] { color: rgba(255,255,255,0.25); }

/* ── Service area SVG map ──────────────────────────────────────────────── */
.area-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 768px) { .area-layout { grid-template-columns: 1fr; } }
.area-map {
  position: relative;
  aspect-ratio: 5/4;
  background: rgba(0,0,0,0.03);
  border-radius: 6px;
  overflow: hidden;
}
.area-map svg { width: 100%; height: 100%; display: block; }
.area-county { fill: rgba(192,57,43,0.18); stroke: rgba(192,57,43,0.5); stroke-width: 1.5; transition: fill 0.2s; cursor: pointer; }
.area-county.home { fill: var(--red); stroke: var(--red-dk); }
.area-county:hover { fill: rgba(192,57,43,0.5); }
.area-county-label { font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 0.04em; fill: #222; text-transform: uppercase; pointer-events: none; }
.area-county.home + .area-county-label { fill: var(--white); }
.area-state-outline { fill: none; stroke: rgba(0,0,0,0.15); stroke-width: 1; stroke-dasharray: 2 3; }
.area-star { fill: var(--white); stroke: var(--red-dk); stroke-width: 1; }
.area-list {
  list-style: none;
  padding: 0; margin: 0;
}
.area-list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.area-list li:last-child { border-bottom: none; }
.area-list li.is-home {
  font-weight: 700;
}
.area-list .area-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(192,57,43,0.3);
  flex-shrink: 0;
}
.area-list li.is-home .area-dot { background: var(--red); box-shadow: 0 0 0 4px rgba(192,57,43,0.15); }
.area-list .area-name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}
.area-list .area-town {
  font-size: 0.85rem;
  color: #888;
  margin-left: auto;
}

/* ── Mosaic gallery (asymmetric) ───────────────────────────────────────── */
.mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 0.6rem;
}
@media (max-width: 768px) {
  .mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
}
@media (max-width: 480px) {
  .mosaic { grid-template-columns: 1fr; grid-template-rows: repeat(5, 200px); }
}
.mosaic .m-feature { grid-column: 1; grid-row: 1 / span 2; }
@media (max-width: 768px) { .mosaic .m-feature { grid-column: 1 / span 2; grid-row: 1; } }
@media (max-width: 480px) { .mosaic .m-feature { grid-column: 1; } }

/* ── Image break (full-bleed photo strip with overlay text) ────────────── */
.image-break {
  position: relative;
  height: 340px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-break .ib-photo {
  position: absolute; inset: 0;
}
.image-break .ib-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.7) 100%);
}
.image-break .ib-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 700px;
}
.image-break .ib-tag {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.image-break .ib-tag::before,
.image-break .ib-tag::after {
  content: '';
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--red);
}
.image-break .ib-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.15;
}
.image-break .ib-title em { font-style: normal; color: var(--red); }

/* ═══ Asymmetry / personality moves ═══════════════════════════════════════ */

/* Big offset red accent block behind the hero copy, peeking out asymmetrically */
.hero-content { position: relative; }
.hero-content::before {
  content: '';
  position: absolute;
  right: -180px;
  top: 30%;
  width: 460px;
  height: 460px;
  background: var(--red);
  opacity: 0.12;
  transform: rotate(14deg);
  z-index: -1;
  pointer-events: none;
  border-radius: 8px;
}
@media (max-width: 768px) { .hero-content::before { width: 280px; height: 280px; right: -120px; opacity: 0.08; } }

/* Owner photo — red offset shadow block behind, photo sits on top */
.owner-photo {
  box-shadow: 18px 18px 0 0 var(--red);
  transform: translate(-9px, -9px);
}
@media (max-width: 768px) { .owner-photo { box-shadow: 12px 12px 0 0 var(--red); transform: translate(-6px, -6px); } }

/* Compare table — emphasize "ours" column so it doesn't read as symmetric */
.compare-col.ours {
  background: rgba(192,57,43,0.03);
  position: relative;
  z-index: 2;
}
.compare-col.ours .compare-col-head { font-size: 1.05rem; padding: 1.5rem 1.5rem; }
.compare-col.theirs .compare-col-head { padding: 1.5rem 1.5rem; }

/* Gallery mosaic — vary the corner radii for asymmetric edges */
.mosaic .gallery-item { border-radius: 4px; }
.mosaic .gallery-item.m-feature { border-radius: 4px 4px 32px 4px; }
.mosaic .gallery-item:nth-child(2) { border-radius: 4px 32px 4px 4px; }
.mosaic .gallery-item:nth-child(3) { border-radius: 4px 4px 4px 32px; }
.mosaic .gallery-item:nth-child(4) { border-radius: 32px 4px 4px 4px; }
.mosaic .gallery-item:nth-child(5) { border-radius: 4px 4px 32px 4px; }

/* Timeline — alternate photo sizes for subtle rhythm */
.timeline-step:nth-child(2) .timeline-photo,
.timeline-step:nth-child(4) .timeline-photo { width: 96px; height: 96px; margin-top: 14px; }
@media (max-width: 768px) {
  .timeline-step:nth-child(2) .timeline-photo,
  .timeline-step:nth-child(4) .timeline-photo { width: 90px; height: 90px; margin-top: 0; }
}

/* Stats — break the "4 identical boxes" feel by emphasizing one */
.stat:nth-child(3) .stat-num { font-size: clamp(2.4rem, 4.2vw, 3.4rem); }

/* Image break — accent slash on the left side, breaks centered symmetry */
.image-break::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--red);
  z-index: 3;
}

/* Services strip — alternate cell background instead of uniform white */
.svc-strip-item:nth-child(2),
.svc-strip-item:nth-child(4),
.svc-strip-item:nth-child(6) { background: rgba(0,0,0,0.02); }
