/* ============================================================
   Snow & Sons Roofing — Master Stylesheet
   Editorial / Luxury Design System · Poppins-only · Brand colors only
   ============================================================ */

/* -- Brand tokens -- */
:root {
  --tricorn-black: #040707;
  --shiver:        #2A3D45;
  --in-the-navy:   #2C3E53;
  --solstice:      #526C7D;
  --dignity-blue:  #094C73;
  --danube:        #2377A2;
  --jacaranda:     #5A9EC0;
  --regale-blue:   #7DB5D3;
  --porch-ceiling: #9BC8DE;
  --something-blue:#B0D6E6;
  --soar:          #C3DFE8;
  --white-snow:    #F8FBFA;
  --opalescent:    #DFE0E2;
  --on-the-rocks:  #E1E2DD;
  --passive:       #D0D1CC;
  --retreat:       #A3B2A4;
  --urbane-bronze: #503B26;

  --bg-canvas:     var(--white-snow);
  --bg-paper:      var(--white-snow);
  --bg-mist:       var(--opalescent);
  --bg-deep:       var(--in-the-navy);
  --bg-deeper:     var(--shiver);
  --bg-darkest:    var(--tricorn-black);

  --ink:           var(--tricorn-black);
  --ink-soft:      var(--in-the-navy);
  --text:          var(--tricorn-black);
  --text-muted:    var(--solstice);
  --text-faint:    var(--retreat);
  --text-on-dark:  var(--white-snow);
  --text-on-dark-muted: var(--porch-ceiling);

  --accent:        var(--danube);
  --accent-deep:   var(--dignity-blue);
  --accent-soft:   var(--regale-blue);
  --accent-mist:   var(--something-blue);
  --accent-bronze: var(--urbane-bronze);

  --rule:          rgba(4, 7, 7, 0.10);
  --rule-strong:   rgba(4, 7, 7, 0.18);
  --rule-on-dark:  rgba(248, 251, 250, 0.14);

  --ff-display: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --ff-sans:    'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --ff-mono:    'Poppins', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px; --s-11: 160px;

  --r-sm: 4px; --r-md: 8px; --r-lg: 14px; --r-xl: 22px;

  --shadow-xs: 0 1px 2px rgba(4, 7, 7, 0.06);
  --shadow-sm: 0 2px 6px rgba(4, 7, 7, 0.08);
  --shadow-md: 0 8px 24px rgba(4, 7, 7, 0.10);
  --shadow-lg: 0 24px 60px rgba(4, 7, 7, 0.14);
  --shadow-xl: 0 40px 100px rgba(4, 7, 7, 0.18);

  --maxw: 1280px;
  --maxw-narrow: 980px;
  --maxw-prose: 720px;
  --header-h: 88px;
  --utility-h: 36px;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  color: var(--text);
  background: var(--bg-canvas);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--accent); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { padding: 0; margin: 0; list-style: none; }
input, textarea, select { font: inherit; color: inherit; }
hr { border: 0; border-top: 1px solid var(--rule); margin: 0; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 var(--s-4);
  line-height: 1.05;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); line-height: 1.02; letter-spacing: -0.025em; }
h2 { font-size: clamp(2.2rem, 4vw, 3.6rem); line-height: 1.08; }
h3 { font-size: clamp(1.6rem, 2.4vw, 2.2rem); line-height: 1.18; }
h4 { font-size: 1.35rem; line-height: 1.3; font-weight: 400; }
h5 { font-size: 1.1rem; line-height: 1.35; font-weight: 500; letter-spacing: 0; }
h6 { font-size: 0.95rem; line-height: 1.4; font-weight: 600; letter-spacing: 0; }
p { margin: 0 0 1em; }
p.lead { font-size: 1.18rem; line-height: 1.55; color: var(--text-muted); font-weight: 400; }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent); margin-bottom: var(--s-4);
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--accent); display: inline-block; }
.eyebrow.on-dark { color: var(--something-blue); }
.eyebrow.on-dark::before { background: var(--something-blue); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--s-5); }
.container--narrow { max-width: var(--maxw-narrow); }
.container--prose  { max-width: var(--maxw-prose); }
@media (min-width: 768px) { .container { padding: 0 var(--s-7); } }

section { padding: var(--s-10) 0; }
section.tight { padding: var(--s-9) 0; }
section.loose { padding: var(--s-11) 0; }
@media (max-width: 768px) {
  section { padding: var(--s-9) 0; }
  section.tight { padding: var(--s-8) 0; }
  section.loose { padding: var(--s-10) 0; }
}

.section-head { max-width: 760px; margin-bottom: var(--s-8); }
.section-head--centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--centered .eyebrow { justify-content: center; }
.section-head p.lead { margin-top: var(--s-4); }

.grid { display: grid; gap: var(--s-5); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* -- Buttons -- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  padding: 16px 28px;
  font-family: var(--ff-sans); font-size: 0.92rem; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  border-radius: var(--r-sm); transition: all .3s var(--ease);
  cursor: pointer; white-space: nowrap; line-height: 1;
}
.btn--primary { background: var(--accent); color: var(--white-snow); box-shadow: 0 4px 18px rgba(35, 119, 162, 0.30); }
.btn--primary:hover { background: var(--accent-deep); color: var(--white-snow); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(35, 119, 162, 0.42); }
.btn--dark { background: var(--bg-deep); color: var(--white-snow); }
.btn--dark:hover { background: var(--bg-darkest); color: var(--white-snow); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--rule-strong); }
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn--ghost.on-dark { color: var(--text-on-dark); border-color: rgba(255,255,255,0.32); }
.btn--ghost.on-dark:hover { background: rgba(255,255,255,0.08); color: var(--white-snow); border-color: var(--white-snow); }
.btn--link {
  display: inline-flex; align-items: center; gap: var(--s-2);
  padding: 0; font-family: var(--ff-sans); font-size: 0.88rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink);
  border-bottom: 1px solid var(--ink); padding-bottom: 4px;
  transition: all .25s var(--ease);
}
.btn--link::after { content: '→'; transition: transform .25s var(--ease); }
.btn--link:hover { color: var(--accent); border-color: var(--accent); }
.btn--link:hover::after { transform: translateX(4px); }

/* -- Utility bar (dark strip) -- */
.utility-bar { background: var(--bg-darkest); color: var(--text-on-dark-muted); font-size: 0.78rem; letter-spacing: 0.04em; }
.utility-bar__inner { display: flex; align-items: center; justify-content: space-between; height: var(--utility-h); gap: var(--s-5); }
.utility-bar__left { display: flex; align-items: center; gap: var(--s-5); }
.utility-bar__left span { display: inline-flex; align-items: center; gap: 8px; }
.utility-bar__left svg { width: 13px; height: 13px; opacity: 0.85; }
.utility-bar__right { display: flex; align-items: center; gap: var(--s-5); flex-shrink: 0; }
.utility-bar__right a { color: var(--white-snow); display: inline-flex; align-items: center; gap: 6px; font-weight: 500; white-space: nowrap; }
.utility-bar__right a:hover { color: var(--something-blue); }
@media (max-width: 768px) { .utility-bar__left .hide-mobile { display: none; } }
@media (max-width: 520px) { .utility-bar__inner { justify-content: center; } .utility-bar__left { display: none; } }

/* -- Sticky header -- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled { background: rgba(255, 255, 255, 0.96); border-bottom-color: var(--rule); box-shadow: 0 1px 0 rgba(4, 7, 7, 0.02), 0 8px 28px rgba(4, 7, 7, 0.05); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: var(--s-5); }
.site-header__logo { display: flex; align-items: center; gap: var(--s-3); flex-shrink: 0; }
.site-header__logo img { height: 64px; width: auto; }
.site-header__wordmark { display: none; flex-direction: column; line-height: 1; }
.site-header__wordmark strong { font-family: var(--ff-display); font-size: 1.15rem; letter-spacing: -0.01em; color: var(--ink); font-weight: 500; }
.site-header__wordmark span { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }
@media (min-width: 1100px) { .site-header__wordmark { display: flex; } }

.site-nav { display: flex; align-items: center; gap: var(--s-7); }
.site-nav__list { display: flex; align-items: center; gap: var(--s-6); }
.site-nav__list a { font-size: 0.88rem; font-weight: 500; color: var(--ink-soft); position: relative; padding: 8px 0; letter-spacing: 0.01em; }
.site-nav__list a::after { content: ''; position: absolute; bottom: 2px; left: 0; right: 0; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.site-nav__list a:hover::after, .site-nav__list a.active::after { transform: scaleX(1); }
.site-nav__list a:hover { color: var(--accent); }

.site-nav__cta { display: flex; align-items: center; gap: var(--s-3); }
.header-phone { display: none; align-items: center; gap: 8px; font-weight: 600; font-size: 0.95rem; color: var(--ink); white-space: nowrap; flex-shrink: 0; }
.header-phone svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
@media (min-width: 980px) { .header-phone { display: inline-flex; } }

.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: var(--r-sm); transition: background .2s var(--ease); }
.nav-toggle:hover { background: rgba(4, 7, 7, 0.04); }
.nav-toggle svg { width: 22px; height: 22px; }
@media (max-width: 980px) {
  .site-nav__list, .site-nav__cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* -- Hero -- */
.hero { position: relative; padding: clamp(64px, 10vh, 120px) 0 clamp(72px, 12vh, 140px); overflow: hidden; }
.hero__inner { display: grid; grid-template-columns: 1.15fr 1fr; gap: var(--s-9); align-items: center; }
@media (max-width: 900px) { .hero__inner { grid-template-columns: 1fr; gap: var(--s-7); } }
.hero__eyebrow { display: inline-flex; align-items: center; gap: var(--s-3); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted); margin-bottom: var(--s-6); }
.hero__eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--text-muted); }
.hero h1 { font-size: clamp(3rem, 7vw, 6.5rem); line-height: 0.98; margin-bottom: var(--s-6); letter-spacing: -0.035em; font-weight: 300; color: var(--ink); }
.hero h1 em { font-style: italic; font-weight: 300; color: var(--accent); }
.hero__sub { font-size: 1.2rem; line-height: 1.55; color: var(--text-muted); max-width: 520px; margin-bottom: var(--s-7); }
.hero__ctas { display: flex; gap: var(--s-3); flex-wrap: wrap; }

/* Hero trust strip — now full-width below hero grid */
.hero__trust { display: flex; align-items: center; gap: var(--s-7); margin-top: var(--s-8); padding-top: var(--s-6); border-top: 1px solid var(--rule); flex-wrap: nowrap; }
.hero__trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--text-muted); letter-spacing: 0.01em; white-space: nowrap; flex-shrink: 0; }
.hero__trust-item strong { color: var(--ink); font-weight: 600; }
.hero__trust-item svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
@media (max-width: 900px) { .hero__trust { gap: var(--s-5); flex-wrap: wrap; } .hero__trust-item { font-size: 0.78rem; } }

.hero__visual { position: relative; aspect-ratio: 4 / 5; border-radius: var(--r-md); overflow: hidden; background: linear-gradient(160deg, var(--soar) 0%, var(--regale-blue) 60%, var(--dignity-blue) 100%); box-shadow: var(--shadow-xl); }
.hero__visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__visual-caption { position: absolute; left: var(--s-5); bottom: var(--s-5); right: var(--s-5); padding: var(--s-5); background: rgba(44, 62, 83, 0.82); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); color: var(--text-on-dark); border-radius: var(--r-sm); }
.hero__visual-caption strong { display: block; font-family: var(--ff-display); font-size: 1.25rem; color: var(--white-snow); margin-bottom: 4px; font-weight: 400; }
.hero__visual-caption span { font-size: 0.85rem; color: var(--something-blue); letter-spacing: 0.04em; }
.hero__badge { position: absolute; top: var(--s-5); right: var(--s-5); background: rgba(255,255,255,0.94); backdrop-filter: blur(8px); padding: 14px 18px; border-radius: var(--r-sm); display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-md); }
.hero__badge img { width: 36px; height: auto; }
.hero__badge-text strong { display: block; font-size: 0.78rem; color: var(--ink); letter-spacing: 0.05em; font-weight: 600; }
.hero__badge-text span { font-size: 0.7rem; color: var(--text-muted); }

/* Page hero (compact) */
.page-hero { background: linear-gradient(180deg, var(--bg-paper) 0%, var(--bg-canvas) 100%); padding: clamp(64px, 8vh, 96px) 0 clamp(72px, 10vh, 120px); border-bottom: 1px solid var(--rule); }
.page-hero__inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--s-8); align-items: end; }
@media (max-width: 900px) { .page-hero__inner { grid-template-columns: 1fr; gap: var(--s-6); } }
.page-hero h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); font-weight: 300; letter-spacing: -0.03em; line-height: 1.02; margin-bottom: var(--s-5); }
.page-hero h1 em { font-style: italic; color: var(--accent); font-weight: 300; }
.page-hero__lead { font-size: 1.15rem; color: var(--text-muted); line-height: 1.55; margin-bottom: var(--s-6); max-width: 540px; }
.page-hero__meta { display: flex; flex-wrap: wrap; gap: var(--s-5) var(--s-7); padding-top: var(--s-5); border-top: 1px solid var(--rule); }
.page-hero__meta-item span { display: block; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.page-hero__meta-item strong { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 400; color: var(--ink); }

.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.06em; margin-bottom: var(--s-6); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span.sep { opacity: 0.5; }

/* -- Trust strip -- */
.trust-strip { background: var(--bg-paper); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: var(--s-6) 0; }
.trust-strip__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); }
@media (max-width: 768px) { .trust-strip__inner { grid-template-columns: repeat(2, 1fr); } }
.trust-item { display: flex; align-items: center; gap: var(--s-3); }
.trust-item__icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%; background: var(--soar); display: flex; align-items: center; justify-content: center; color: var(--dignity-blue); transition: transform .35s var(--ease-spring); }
.trust-item:hover .trust-item__icon { transform: scale(1.08); }
.trust-item__icon svg { width: 22px; height: 22px; }
.trust-item__text strong { display: block; font-size: 0.92rem; color: var(--ink); font-weight: 600; line-height: 1.2; }
.trust-item__text span { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.02em; }

/* -- Service cards -- */
.service-card { position: relative; background: var(--bg-paper); border: 1px solid var(--rule); border-radius: var(--r-md); overflow: hidden; transition: all .35s var(--ease); display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent-mist); }
.service-card__media { aspect-ratio: 4 / 3; overflow: hidden; background: linear-gradient(135deg, var(--soar), var(--regale-blue)); }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.service-card:hover .service-card__media img { transform: scale(1.05); }
.service-card__body { padding: var(--s-6); display: flex; flex-direction: column; flex: 1; }
.service-card__num { font-family: var(--ff-mono); font-size: 0.72rem; letter-spacing: 0.18em; color: var(--text-muted); margin-bottom: var(--s-3); }
.service-card h3 { font-family: var(--ff-display); font-size: 1.6rem; font-weight: 400; margin-bottom: var(--s-3); letter-spacing: -0.015em; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: var(--s-5); flex: 1; }
.service-card__link { display: inline-flex; align-items: center; gap: var(--s-2); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-top: auto; }
.service-card__link::after { content: '→'; transition: transform .25s var(--ease); }
.service-card:hover .service-card__link::after { transform: translateX(4px); }

.service-tile { display: flex; align-items: center; gap: var(--s-4); padding: var(--s-5); background: var(--bg-paper); border: 1px solid var(--rule); border-radius: var(--r-md); transition: all .25s var(--ease); }
.service-tile:hover { border-color: var(--accent); transform: translateX(3px); color: inherit; }
.service-tile__icon { width: 48px; height: 48px; border-radius: var(--r-sm); background: var(--soar); color: var(--dignity-blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.service-tile__icon svg { width: 22px; height: 22px; }
.service-tile__text strong { display: block; color: var(--ink); font-weight: 600; font-size: 0.95rem; margin-bottom: 2px; }
.service-tile__text span { font-size: 0.82rem; color: var(--text-muted); }

/* -- Editorial split -- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-9); align-items: center; }
.split--reverse .split__media { order: 2; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: var(--s-6); } .split--reverse .split__media { order: 0; } }
.split__media { position: relative; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 5 / 6; background: linear-gradient(160deg, var(--soar), var(--regale-blue)); box-shadow: var(--shadow-lg); }
.split__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.split__media-tag { position: absolute; top: var(--s-5); left: var(--s-5); background: rgba(255,255,255,0.92); padding: 8px 14px; border-radius: var(--r-sm); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); }
.split__body { max-width: 540px; }
.split__body h2 { margin-bottom: var(--s-5); }
.split__body p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.6; margin-bottom: var(--s-4); }
.split__bullets { margin: var(--s-6) 0; padding: var(--s-5) 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); display: flex; flex-direction: column; gap: var(--s-4); }
.split__bullets li { display: flex; align-items: flex-start; gap: var(--s-3); font-size: 0.95rem; }
.split__bullets li svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

/* -- Stats -- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-6); padding: var(--s-7) 0; }
@media (max-width: 700px) { .stats { grid-template-columns: 1fr; } }
.stat { padding-right: var(--s-5); border-right: 1px solid var(--rule); }
.stat:last-child { border-right: 0; }
@media (max-width: 700px) { .stat { border-right: 0; border-bottom: 1px solid var(--rule); padding: 0 0 var(--s-5); } .stat:last-child { border-bottom: 0; } }
.stat__num { font-family: var(--ff-display); font-size: clamp(3rem, 5vw, 4.5rem); line-height: 1; font-weight: 300; color: var(--ink); letter-spacing: -0.03em; margin-bottom: var(--s-2); }
.stat__num em { color: var(--accent); font-style: italic; }
.stat__label { font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); font-weight: 500; }
.stat__desc { font-size: 0.92rem; color: var(--text-muted); margin-top: var(--s-3); }
.stats.on-dark .stat { border-color: rgba(255,255,255,0.18); }
.stats.on-dark .stat__num { color: var(--white-snow); }
.stats.on-dark .stat__num em { color: var(--regale-blue); }
.stats.on-dark .stat__label { color: var(--something-blue); }

/* -- Process -- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); counter-reset: process; }
@media (max-width: 900px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .process { grid-template-columns: 1fr; } }
.process__step { padding: var(--s-6) var(--s-5); border: 1px solid var(--rule); border-radius: var(--r-md); background: var(--bg-paper); position: relative; counter-increment: process; transition: all .3s var(--ease); overflow: hidden; }
.process__step::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--accent); transition: width .6s var(--ease); }
.process__step:hover { border-color: var(--accent-mist); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.process__step:hover::after { width: 100%; }
.process__step::before { content: counter(process, decimal-leading-zero); font-family: var(--ff-mono); font-size: 0.72rem; letter-spacing: 0.18em; color: var(--accent); display: block; margin-bottom: var(--s-4); font-weight: 600; }
.process__step h4 { font-family: var(--ff-display); font-size: 1.35rem; font-weight: 400; margin-bottom: var(--s-3); letter-spacing: -0.01em; }
.process__step p { color: var(--text-muted); font-size: 0.92rem; margin: 0; }

/* -- Testimonial -- */
.testimonial { padding: var(--s-7); background: var(--bg-paper); border: 1px solid var(--rule); border-radius: var(--r-md); position: relative; }
.testimonial__quote { font-family: var(--ff-display); font-size: 1.4rem; line-height: 1.4; font-weight: 300; color: var(--ink); margin-bottom: var(--s-5); font-style: italic; }
.testimonial__quote::before { content: '\201C'; font-size: 3.5rem; line-height: 0; color: var(--accent); vertical-align: -0.4em; margin-right: 4px; }
.testimonial__meta { display: flex; align-items: center; gap: var(--s-3); padding-top: var(--s-5); border-top: 1px solid var(--rule); }
.testimonial__avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--regale-blue), var(--dignity-blue)); display: flex; align-items: center; justify-content: center; color: var(--white-snow); font-weight: 600; font-size: 0.95rem; }
.testimonial__name strong { display: block; color: var(--ink); font-weight: 600; font-size: 0.95rem; }
.testimonial__name span { color: var(--text-muted); font-size: 0.82rem; }
.testimonial__stars { color: var(--urbane-bronze); margin-bottom: var(--s-4); letter-spacing: 2px; font-size: 0.95rem; }

/* -- Projects -- */
.project { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; border: 1px solid var(--rule); border-radius: var(--r-md); overflow: hidden; margin-bottom: var(--s-6); }
@media (max-width: 900px) { .project { grid-template-columns: 1fr; } }
.project__image { aspect-ratio: 4 / 3; overflow: hidden; background: linear-gradient(135deg, var(--soar), var(--regale-blue)); }
.project__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.project:hover .project__image img { transform: scale(1.04); }
.project__meta { padding: var(--s-6); display: flex; flex-direction: column; justify-content: center; background: var(--bg-paper); border-left: 1px solid var(--rule); }
@media (max-width: 900px) { .project__meta { border-left: 0; border-top: 1px solid var(--rule); } }
.project__type { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: var(--s-3); font-weight: 600; }
.project__title { font-family: var(--ff-display); font-size: 1.45rem; font-weight: 400; margin-bottom: var(--s-2); letter-spacing: -0.01em; }
.project__location { color: var(--text-muted); font-size: 0.92rem; margin-bottom: var(--s-4); }

/* -- FAQ -- */
.faq { display: flex; flex-direction: column; }
.faq__item { border-bottom: 1px solid var(--rule); overflow: hidden; }
.faq__item:first-child { border-top: 1px solid var(--rule); }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: var(--s-5); width: 100%; padding: var(--s-6) 0; text-align: left; font-family: var(--ff-display); font-size: 1.3rem; font-weight: 400; color: var(--ink); letter-spacing: -0.01em; transition: color .25s var(--ease); }
.faq__q:hover { color: var(--accent); }
.faq__q-icon { width: 32px; height: 32px; flex-shrink: 0; border-radius: 50%; background: var(--soar); display: flex; align-items: center; justify-content: center; color: var(--dignity-blue); transition: transform .35s var(--ease), background .25s var(--ease); }
.faq__q-icon svg { width: 14px; height: 14px; }
.faq__item.open .faq__q-icon { background: var(--accent); color: var(--white-snow); transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a-inner { padding: 0 0 var(--s-6) 0; color: var(--text-muted); font-size: 1.02rem; line-height: 1.6; max-width: 800px; }
.faq__a-inner p { margin-bottom: var(--s-3); }
.faq__a-inner p:last-child { margin-bottom: 0; }

/* -- Quote form -- */
.quote-form { background: var(--white-snow); padding: var(--s-7); border-radius: var(--r-md); border: 1px solid var(--rule); box-shadow: var(--shadow-md); }
.quote-form h3 { font-family: var(--ff-display); font-size: 1.7rem; font-weight: 400; margin-bottom: var(--s-2); letter-spacing: -0.015em; }
.quote-form > p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: var(--s-6); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); margin-bottom: var(--s-4); }
.form-row.full { grid-template-columns: 1fr; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }
.field input, .field select, .field textarea { padding: 14px 14px; border: 1px solid var(--rule-strong); border-radius: var(--r-sm); background: var(--bg-canvas); font-size: 0.98rem; color: var(--ink); transition: border-color .2s var(--ease), box-shadow .2s var(--ease); font-family: var(--ff-sans); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(35, 119, 162, 0.14); }
.field textarea { min-height: 110px; resize: vertical; }
.field__hint { font-size: 0.78rem; color: var(--text-faint); margin-top: 2px; }
.field--checkbox { flex-direction: row; align-items: flex-start; gap: 10px; padding: var(--s-3) 0; }
.field--checkbox input { width: 18px; height: 18px; accent-color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.field--checkbox label { font-size: 0.85rem; color: var(--text-muted); text-transform: none; letter-spacing: 0; font-weight: 400; line-height: 1.5; }
.quote-form button[type="submit"] { width: 100%; margin-top: var(--s-3); padding: 18px; }
.quote-form__note { text-align: center; margin-top: var(--s-4); font-size: 0.78rem; color: var(--text-faint); }
.quote-form__success { display: none; text-align: center; padding: var(--s-7); }
.quote-form__success.active { display: block; }
.quote-form__success-icon { width: 56px; height: 56px; margin: 0 auto var(--s-5); background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white-snow); }
.quote-form__success h3 { color: var(--ink); margin-bottom: var(--s-3); }
.quote-form__success p { color: var(--text-muted); }

/* -- CTA band -- */
.cta-band { background: var(--bg-deep); color: var(--text-on-dark); position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: -50%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(176, 214, 230, 0.10) 0%, transparent 70%); pointer-events: none; }
.cta-band__inner { position: relative; display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--s-7); align-items: center; }
@media (max-width: 768px) { .cta-band__inner { grid-template-columns: 1fr; text-align: left; gap: var(--s-5); } }
.cta-band h2 { color: var(--white-snow); font-weight: 300; font-size: clamp(2rem, 4vw, 3.4rem); margin-bottom: var(--s-4); letter-spacing: -0.02em; }
.cta-band h2 em { color: var(--regale-blue); font-style: italic; }
.cta-band p { color: var(--something-blue); font-size: 1.08rem; margin-bottom: 0; max-width: 540px; }
.cta-band__actions { display: flex; flex-direction: column; gap: var(--s-3); align-items: flex-start; }
@media (min-width: 768px) { .cta-band__actions { align-items: flex-end; } }
.cta-band__phone { display: inline-flex; align-items: center; gap: 10px; font-family: var(--ff-display); font-size: 2rem; font-weight: 400; color: var(--white-snow); letter-spacing: -0.01em; transition: all .35s var(--ease); white-space: nowrap; }
.cta-band__phone svg { width: 24px; height: 24px; color: var(--regale-blue); }
.cta-band__phone:hover { color: var(--regale-blue); transform: translateX(4px); }
.cta-band__phone-label { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--something-blue); font-family: var(--ff-sans); font-weight: 500; }

.section--dark { background: var(--bg-deep); color: var(--text-on-dark); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white-snow); }
.section--dark p { color: var(--something-blue); }
.section--dark .lead { color: var(--text-on-dark); }
.section--dark .eyebrow { color: var(--something-blue); }
.section--dark .eyebrow::before { background: var(--something-blue); }
.section--paper { background: var(--bg-paper); }
.section--mist  { background: var(--bg-mist); }

/* -- Detail layout (sidebar + body) -- */
.detail { display: grid; grid-template-columns: 1fr 380px; gap: var(--s-9); align-items: start; }
@media (max-width: 1080px) { .detail { grid-template-columns: 1fr; gap: var(--s-7); } }
.detail__body p { font-size: 1.05rem; line-height: 1.7; color: var(--text); margin-bottom: var(--s-4); }
.detail__body h2 { margin-top: var(--s-7); margin-bottom: var(--s-5); font-weight: 300; }
.detail__body h2:first-child { margin-top: 0; }
.detail__body h3 { margin-top: var(--s-6); margin-bottom: var(--s-4); font-weight: 400; }
.detail__body ul:not(.checklist):not(.split__bullets) { margin: var(--s-5) 0; display: flex; flex-direction: column; gap: 10px; }
.detail__body ul:not(.checklist):not(.split__bullets) li { padding-left: var(--s-5); position: relative; font-size: 1.02rem; line-height: 1.55; color: var(--text); }
.detail__body ul:not(.checklist):not(.split__bullets) li::before { content: ''; position: absolute; left: 0; top: 12px; width: 8px; height: 1px; background: var(--accent); }

.detail__aside { position: sticky; top: calc(var(--header-h) + var(--s-4)); display: flex; flex-direction: column; gap: var(--s-5); }
@media (max-width: 1080px) { .detail__aside { position: static; } }

.aside-card { background: var(--bg-paper); border: 1px solid var(--rule); border-radius: var(--r-md); padding: var(--s-6); transition: all .35s var(--ease); }
.aside-card:hover { box-shadow: var(--shadow-md); border-color: var(--accent-mist); }
.aside-card h4 { font-family: var(--ff-display); font-weight: 400; font-size: 1.3rem; margin-bottom: var(--s-4); letter-spacing: -0.01em; }
.aside-card p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: var(--s-5); }
.aside-card .btn { width: 100%; }
.aside-card__phone { display: flex; align-items: center; gap: var(--s-3); padding: var(--s-4); background: var(--bg-canvas); border-radius: var(--r-sm); margin-bottom: var(--s-4); }
.aside-card__phone svg { width: 28px; height: 28px; color: var(--accent); }
.aside-card__phone strong { display: block; font-family: var(--ff-display); font-size: 1.3rem; color: var(--ink); font-weight: 400; }
.aside-card__phone span { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; }

/* -- Materials grid -- */
.materials { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); margin: var(--s-6) 0; }
@media (max-width: 900px) { .materials { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .materials { grid-template-columns: 1fr; } }
.material { padding: var(--s-5); border: 1px solid var(--rule); border-radius: var(--r-md); background: var(--bg-paper); transition: all .3s var(--ease); }
.material:hover { border-color: var(--accent-mist); transform: translateY(-3px); }
.material__icon { width: 44px; height: 44px; border-radius: var(--r-sm); background: var(--soar); color: var(--dignity-blue); display: flex; align-items: center; justify-content: center; margin-bottom: var(--s-4); }
.material__icon svg { width: 22px; height: 22px; }
.material h4 { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 500; margin-bottom: 6px; letter-spacing: -0.005em; }
.material p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* -- Founder spotlight (fixed) -- */
.founder { background: var(--bg-deep); color: var(--text-on-dark); border-radius: var(--r-lg); overflow: hidden; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); position: relative; align-items: stretch; }
@media (max-width: 900px) { .founder { grid-template-columns: 1fr; } }
.founder__image { position: relative; min-height: 100%; background: var(--bg-deep); overflow: hidden; }
@media (max-width: 900px) { .founder__image { min-height: 0; aspect-ratio: 4 / 5; } }
.founder__image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 28%; display: block; }
.founder__body { padding: var(--s-8) var(--s-7); min-width: 0; display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 768px) { .founder__body { padding: var(--s-6); } }
.founder h2 { color: var(--white-snow); font-weight: 300; font-size: clamp(1.9rem, 3vw, 2.6rem); line-height: 1.1; margin-bottom: var(--s-5); overflow-wrap: break-word; }
.founder h2 em { color: var(--regale-blue); font-style: italic; }
.founder p { color: var(--something-blue); font-size: 1rem; line-height: 1.65; margin-bottom: var(--s-4); overflow-wrap: break-word; }
.founder p:last-of-type { margin-bottom: 0; }
.founder__sig { margin-top: var(--s-5); padding-top: var(--s-5); border-top: 1px solid rgba(255,255,255,0.18); }
.founder__sig strong { display: block; font-family: var(--ff-display); font-size: 1.3rem; font-weight: 400; color: var(--white-snow); font-style: italic; }
.founder__sig span { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--something-blue); margin-top: 4px; display: inline-block; }

/* -- Footer -- */
.site-footer { background: var(--bg-darkest); color: var(--something-blue); padding: var(--s-9) 0 var(--s-5); }
.site-footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--s-7); padding-bottom: var(--s-7); border-bottom: 1px solid rgba(255,255,255,0.12); }
@media (max-width: 900px) { .site-footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .site-footer__top { grid-template-columns: 1fr; gap: var(--s-6); } }
.site-footer__brand img { height: 78px; width: auto; margin-bottom: var(--s-4); }
.site-footer__brand p { font-family: var(--ff-display); font-style: italic; font-size: 1.15rem; color: var(--text-on-dark); max-width: 320px; margin-bottom: var(--s-5); font-weight: 300; line-height: 1.4; }
.site-footer__social { display: flex; gap: var(--s-3); }
.site-footer__social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: var(--text-on-dark); transition: all .35s var(--ease-spring); }
.site-footer__social a:hover { background: var(--accent); color: var(--white-snow); transform: translateY(-3px) scale(1.05); }
.site-footer__social svg { width: 16px; height: 16px; }
.site-footer__col h5 { color: var(--white-snow); font-family: var(--ff-sans); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: var(--s-5); font-weight: 600; }
.site-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.site-footer__col a { font-size: 0.92rem; }
.site-footer__col a:hover { color: var(--something-blue); }
.site-footer__col p { font-size: 0.92rem; margin-bottom: 12px; color: var(--something-blue); }
.site-footer__col strong { color: var(--white-snow); display: block; font-weight: 500; }
.site-footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: var(--s-5); font-size: 0.78rem; color: var(--porch-ceiling); flex-wrap: wrap; gap: var(--s-3); }
.site-footer__bottom a { color: var(--porch-ceiling); }
.site-footer__bottom a:hover { color: var(--white-snow); }
.site-footer__legal { display: flex; gap: var(--s-3); align-items: center; flex-wrap: wrap; }
.site-footer__legal .sep { opacity: 0.5; }

/* -- Mobile sticky CTA -- */
.mobile-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; display: none; background: var(--bg-deep); border-top: 1px solid rgba(255,255,255,0.12); padding: 10px 12px; gap: 8px; box-shadow: 0 -8px 20px rgba(4, 7, 7, 0.18); }
.mobile-cta a { flex: 1; padding: 12px; text-align: center; font-size: 0.84rem; font-weight: 500; letter-spacing: 0.06em; border-radius: var(--r-sm); white-space: nowrap; }
.mobile-cta a.call { background: var(--white-snow); color: var(--bg-deep); }
.mobile-cta a.quote { background: var(--accent); color: var(--white-snow); }
@media (max-width: 768px) { .mobile-cta { display: flex; } .site-footer { padding-bottom: 80px; } }

.center { text-align: center; }
.muted { color: var(--text-muted); }
.divider { height: 1px; background: var(--rule); border: 0; margin: var(--s-7) 0; }

/* ============================================================
   MOTION & LIVE EFFECTS
   ============================================================ */

/* Reveal on scroll */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); will-change: opacity, transform; }
  .reveal.in { opacity: 1; transform: none; }
  .reveal-delay-1 { transition-delay: .08s; }
  .reveal-delay-2 { transition-delay: .16s; }
  .reveal-delay-3 { transition-delay: .24s; }
  .reveal-delay-4 { transition-delay: .32s; }
}

/* Animated accent underline — italic em words in headings */
/* Italic accent words in headings — color only */
h1 em, h2 em { color: var(--accent); font-style: italic; }
.cta-band h2 em, .founder h2 em, .section--dark h2 em { color: var(--regale-blue); }

/* Animated underline — ONLY on page H1s (heroes / page heroes), not section heads */
.hero h1 em, .page-hero h1 em { position: relative; display: inline-block; }
.hero h1 em::after, .page-hero h1 em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.04em;
  height: 0.07em;
  background: currentColor;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1.1s .35s cubic-bezier(.65, 0, .35, 1);
  border-radius: 2px;
  opacity: 0.92;
}
.hero h1 em.is-drawn::after, .page-hero h1 em.is-drawn::after { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) {
  .hero h1 em::after, .page-hero h1 em::after { transition: none; transform: scaleX(1); }
}


/* Hero text entrance — staggered fade-up */
@media (prefers-reduced-motion: no-preference) {
  .hero h1, .hero .hero__sub, .hero .hero__ctas, .hero .hero__trust, .hero .hero__eyebrow,
  .page-hero h1, .page-hero .page-hero__lead, .page-hero .breadcrumb, .page-hero .eyebrow, .page-hero .btn, .page-hero__meta {
    opacity: 0;
    transform: translateY(18px);
    animation: hero-rise .9s var(--ease) forwards;
  }
  .hero .hero__eyebrow, .page-hero .breadcrumb { animation-delay: .05s; }
  .hero h1, .page-hero .eyebrow { animation-delay: .15s; }
  .hero .hero__sub, .page-hero h1 { animation-delay: .25s; }
  .hero .hero__ctas, .page-hero .page-hero__lead { animation-delay: .35s; }
  .hero .hero__trust, .page-hero .btn { animation-delay: .45s; }
  .page-hero__meta { animation-delay: .55s; }
  .hero .hero__visual { opacity: 0; transform: translateY(24px) scale(0.98); animation: hero-rise-img 1.1s .15s var(--ease) forwards; }
}
@keyframes hero-rise { to { opacity: 1; transform: none; } }
@keyframes hero-rise-img { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: no-preference) {
  .hero__visual img { animation: hero-img-zoom 14s ease-out infinite alternate; }
}
@keyframes hero-img-zoom { from { transform: scale(1.0); } to { transform: scale(1.06); } }

.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(176, 214, 230, 0) 100%);
  pointer-events: none; transition: background .35s var(--ease); z-index: 1;
}
.service-card:hover::before { background: linear-gradient(135deg, transparent 0%, rgba(176, 214, 230, 0.14) 100%); }
.service-card__body, .service-card__media { position: relative; z-index: 2; }

/* Reveal helpers */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
  .reveal-delay-1 { transition-delay: .08s; }
  .reveal-delay-2 { transition-delay: .16s; }
  .reveal-delay-3 { transition-delay: .24s; }
  .reveal-delay-4 { transition-delay: .32s; }
}

/* CHECKLIST — boxed lists with checkmarks */
.checklist {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 32px;
  margin: 32px 0; padding: 32px 32px 32px 40px;
  background: linear-gradient(160deg, var(--bg-paper) 0%, rgba(195, 223, 232, 0.45) 240%);
  border: 1px solid var(--rule); border-radius: 8px; position: relative; overflow: hidden;
}
.checklist::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--dignity-blue) 100%);
}
@media (max-width: 700px) { .checklist { grid-template-columns: 1fr; } }
.checklist li {
  display: block !important;
  position: relative !important;
  padding: 5px 0 5px 36px !important;
  margin: 0 !important;
  font-size: 0.97rem !important;
  line-height: 1.6 !important;
  color: var(--text) !important;
  list-style: none !important;
  list-style-type: none !important;
}
.checklist li::before {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  top: 6px !important;
  width: 22px !important;
  height: 22px !important;
  margin: 0 !important;
  background-color: var(--accent) !important;
  border-radius: 50% !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F8FBFA' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: 14px 14px !important;
  display: block !important;
}
.checklist li strong { color: var(--ink); font-weight: 600; }
.checklist li strong + br { display: none; }

/* CALLOUT — dark editorial pull-quote */
.callout {
  margin: 48px 0; padding: 32px 48px;
  background: var(--bg-deep); color: var(--text-on-dark);
  border-radius: 8px; position: relative; overflow: hidden;
}
.callout::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(176, 214, 230, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.callout p {
  font-family: var(--ff-display); font-size: 1.3rem; font-weight: 300;
  line-height: 1.45; color: var(--white-snow); margin: 0; position: relative;
}
.callout p em { color: var(--regale-blue); font-style: italic; }

/* STEPS ROW — auto-numbered process */
.steps-row { display: flex; flex-direction: column; gap: 16px; margin: 32px 0; counter-reset: srow; }
.steps-row__item {
  display: grid; grid-template-columns: 60px 1fr; gap: 24px;
  padding: 24px 32px; background: var(--bg-paper);
  border: 1px solid var(--rule); border-radius: 8px;
  align-items: start; counter-increment: srow;
  transition: all .35s var(--ease); position: relative; overflow: hidden;
}
.steps-row__item::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--accent); transform: scaleY(0); transform-origin: top;
  transition: transform .4s var(--ease);
}
.steps-row__item:hover { border-color: var(--accent-mist); transform: translateX(4px); }
.steps-row__item:hover::after { transform: scaleY(1); }
.steps-row__item::before {
  content: counter(srow, decimal-leading-zero);
  font-family: var(--ff-sans); font-weight: 300; font-size: 2.4rem;
  line-height: 1; color: var(--accent); letter-spacing: -0.02em;
}
.steps-row__item h4 { font-size: 1.15rem; font-weight: 500; margin-bottom: 6px; line-height: 1.3; }
.steps-row__item p { font-size: 0.95rem; color: var(--text-muted); margin: 0; line-height: 1.55; }
@media (max-width: 600px) { .steps-row__item { grid-template-columns: 1fr; gap: 12px; } .steps-row__item::before { font-size: 1.8rem; } }

/* ISSUE GRID — alternative card pattern */
.issue-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 32px 0; }
@media (max-width: 700px) { .issue-grid { grid-template-columns: 1fr; } }
.issue { padding: 24px; background: var(--bg-paper); border: 1px solid var(--rule); border-radius: 8px; display: flex; align-items: flex-start; gap: 16px; transition: all .3s var(--ease); }
.issue:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.issue__icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 4px; background: var(--soar); color: var(--dignity-blue); display: flex; align-items: center; justify-content: center; }
.issue__icon svg { width: 22px; height: 22px; }
.issue__text strong { display: block; color: var(--ink); font-weight: 600; font-size: 1rem; margin-bottom: 4px; }
.issue__text p { font-size: 0.9rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

::selection { background: var(--accent); color: var(--white-snow); }
@media print { .site-header, .site-footer, .mobile-cta, .cta-band { display: none; } }


/* ============================================================
   MOBILE OPTIMIZATION (≤768px and ≤480px)
   ============================================================ */
@media (max-width: 768px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  section { padding: 56px 0; }
  section.tight { padding: 48px 0; }
  section.loose { padding: 64px 0; }

  .section-head { margin-bottom: 32px; }
  h1 { font-size: clamp(2rem, 8vw, 2.6rem) !important; line-height: 1.05 !important; }
  h2 { font-size: clamp(1.6rem, 6vw, 2rem) !important; line-height: 1.1 !important; }
  h3 { font-size: 1.3rem !important; line-height: 1.25 !important; }
  p.lead { font-size: 1rem; }

  /* Hero */
  .hero { padding: 40px 0 56px; }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 3rem) !important; margin-bottom: 18px; }
  .hero__eyebrow { font-size: 0.7rem; margin-bottom: 18px; }
  .hero__sub { font-size: 1rem; margin-bottom: 28px; }
  .hero__visual { aspect-ratio: 4 / 4; }
  .hero__visual-caption { left: 14px; right: 14px; bottom: 14px; padding: 14px; }
  .hero__visual-caption strong { font-size: 1.05rem; }
  .hero__badge { top: 14px; right: 14px; padding: 10px 12px; }
  .hero__badge-text strong { font-size: 0.72rem; }
  .hero__badge-text span { font-size: 0.64rem; }
  .hero__ctas .btn { padding: 14px 22px; font-size: 0.85rem; }

  /* Hero trust items — stack on mobile */
  .hero__trust { gap: 14px 20px; margin-top: 36px; padding-top: 24px; flex-wrap: wrap; }
  .hero__trust-item { font-size: 0.78rem; }

  /* Page hero */
  .page-hero { padding: 40px 0 56px; }
  .page-hero h1 { font-size: clamp(2rem, 8vw, 2.8rem) !important; }
  .page-hero__lead { font-size: 1rem; margin-bottom: 24px; }
  .page-hero__meta { gap: 18px 32px; padding-top: 20px; }
  .page-hero__meta-item span { font-size: 0.66rem; }
  .page-hero__meta-item strong { font-size: 1.1rem; }

  /* Utility & header */
  .utility-bar { font-size: 0.72rem; }
  .utility-bar__inner { height: 32px; }
  .site-header__inner { height: 72px; }
  .site-header__logo img { height: 50px; }

  /* Cards & grids */
  .grid { gap: 18px; }
  .service-card__body { padding: 22px; }
  .service-card h3 { font-size: 1.35rem !important; }
  .service-card p { font-size: 0.92rem; margin-bottom: 18px; }

  /* Trust strip below hero */
  .trust-strip__inner { gap: 18px; }
  .trust-item__icon { width: 38px; height: 38px; }
  .trust-item__icon svg { width: 18px; height: 18px; }
  .trust-item__text strong { font-size: 0.88rem; }
  .trust-item__text span { font-size: 0.74rem; }

  /* Process & stats */
  .process { gap: 14px; }
  .process__step { padding: 22px 20px; }
  .process__step h4 { font-size: 1.2rem !important; }
  .stats { gap: 22px; padding: 32px 0; }
  .stat__num { font-size: 2.6rem !important; }

  /* Detail layout (service pages) */
  .detail { gap: 36px; }
  .detail__body p { font-size: 0.98rem; line-height: 1.65; }
  .detail__body h2 { margin-top: 36px; margin-bottom: 18px; }
  .detail__body h2:first-child { margin-top: 0; }

  /* Materials */
  .materials { gap: 14px; }
  .material { padding: 20px; }
  .material h4 { font-size: 1.1rem !important; }

  /* Checklist on mobile */
  .checklist { padding: 22px 22px 22px 28px; gap: 12px; margin: 24px 0; }
  .checklist li { font-size: 0.94rem !important; line-height: 1.5 !important; }

  /* Callout */
  .callout { padding: 26px 24px; margin: 32px 0; }
  .callout p { font-size: 1.1rem; }

  /* Steps row */
  .steps-row__item { padding: 18px 20px; gap: 14px; }
  .steps-row__item::before { font-size: 1.8rem; }
  .steps-row__item h4 { font-size: 1.05rem !important; }
  .steps-row__item p { font-size: 0.9rem; }

  /* Aside */
  .aside-card { padding: 22px; }

  /* Founder */
  .founder__body { padding: 32px 24px; }
  .founder h2 { font-size: 1.7rem !important; }
  .founder p { font-size: 0.95rem; line-height: 1.6; }

  /* FAQ */
  .faq__q { padding: 22px 0; font-size: 1.1rem !important; gap: 16px; }
  .faq__a-inner { font-size: 0.95rem; padding-bottom: 22px; }

  /* Testimonial */
  .testimonial { padding: 28px; }
  .testimonial__quote { font-size: 1.15rem; }

  /* Project */
  .project__meta { padding: 22px; }
  .project__title { font-size: 1.25rem !important; }

  /* Quote form */
  .quote-form { padding: 24px; }
  .quote-form h3 { font-size: 1.4rem !important; }
  .field input, .field select, .field textarea { padding: 12px; font-size: 0.95rem; }

  /* CTA band */
  .cta-band__inner { gap: 22px; }
  .cta-band h2 { font-size: clamp(1.6rem, 6vw, 2.2rem) !important; margin-bottom: 12px; }
  .cta-band__phone { font-size: 1.5rem; }

  /* Footer */
  .site-footer { padding: 48px 0 20px; }
  .site-footer__top { gap: 28px; padding-bottom: 28px; }
  .site-footer__brand img { height: 60px; }
  .site-footer__brand p { font-size: 1rem; }
  .site-footer__col h5 { margin-bottom: 16px; }

  /* Mobile sticky CTA */
  .mobile-cta { padding: 8px 10px; gap: 6px; }
  .mobile-cta a { padding: 11px 8px; font-size: 0.8rem; }
  .site-footer { padding-bottom: 90px; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  section { padding: 44px 0; }
  .hero h1 { font-size: 2rem !important; }
  .page-hero h1 { font-size: 1.85rem !important; }
  .hero__visual { aspect-ratio: 5 / 4; }
  .page-hero__meta { gap: 14px 24px; }
  .stats { grid-template-columns: 1fr; gap: 18px; }
  .stat { padding: 0 0 18px; border-right: 0; border-bottom: 1px solid var(--rule); }
  .stat:last-child { border-bottom: 0; padding-bottom: 0; }
  .grid-2, .grid-3, .grid-4 { gap: 14px; }
  .form-row { gap: 14px; margin-bottom: 14px; }
  .checklist { padding: 18px 18px 18px 24px; }
  .checklist li { font-size: 0.9rem !important; }
  .callout p { font-size: 1rem; }
  .testimonial { padding: 22px; }
  .founder__body { padding: 26px 20px; }
  .founder h2 { font-size: 1.5rem !important; }
  .cta-band__phone { font-size: 1.3rem; }
  .btn { padding: 13px 20px; font-size: 0.82rem; }
}


/* ============================================================
   FAMILY STRIP (homepage) — personal photos under founder block
   ============================================================ */
.family-strip {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .family-strip { grid-template-columns: 1fr; gap: 32px; } }
.family-strip__caption .eyebrow { margin-bottom: 14px; }
.family-strip__caption p {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
  max-width: 360px;
}
.family-strip__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 600px) { .family-strip__photos { grid-template-columns: repeat(3, 1fr); gap: 8px; } }
.family-photo {
  margin: 0;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--soar), var(--regale-blue));
  box-shadow: var(--shadow-md);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.family-photo:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.family-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform .8s var(--ease);
}
.family-photo:hover img { transform: scale(1.04); }

/* Subtle rotation for editorial polish */
.family-photo:nth-child(1) { transform: rotate(-1.5deg); }
.family-photo:nth-child(2) { transform: translateY(-8px); }
.family-photo:nth-child(3) { transform: rotate(1.5deg); }
.family-photo:nth-child(1):hover { transform: rotate(-1.5deg) translateY(-4px); }
.family-photo:nth-child(2):hover { transform: translateY(-12px); }
.family-photo:nth-child(3):hover { transform: rotate(1.5deg) translateY(-4px); }
@media (max-width: 600px) {
  .family-photo:nth-child(1), .family-photo:nth-child(2), .family-photo:nth-child(3) { transform: none; }
}

/* ============================================================
   MEET CRYSTAL credibility card (insurance-claims aside)
   ============================================================ */
.aside-card.meet-crystal { text-align: center; padding-top: 32px; }
.meet-crystal__photo {
  width: 120px; height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  border: 3px solid var(--soar);
  box-shadow: var(--shadow-sm);
  background: linear-gradient(160deg, var(--soar), var(--regale-blue));
}
.meet-crystal__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; display: block; }
.aside-card.meet-crystal h4 { margin-bottom: 4px; }
.meet-crystal__title {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.aside-card.meet-crystal > p:not(.meet-crystal__title) {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}


/* ============================================================
   MOBILE — Crystal placements (family strip, meet-crystal, split)
   ============================================================ */
@media (max-width: 768px) {
  .family-strip { gap: 28px; margin-top: 36px; }
  .family-strip__caption p { font-size: 1rem; max-width: none; line-height: 1.55; }
  .family-strip__photos { gap: 10px; }
  .family-photo { aspect-ratio: 3 / 4; }
  /* Disable the slight rotation on mobile so photos sit cleanly */
  .family-photo:nth-child(1),
  .family-photo:nth-child(2),
  .family-photo:nth-child(3) { transform: none !important; }
  .family-photo:hover { transform: none !important; }
  .family-photo:nth-child(1):hover,
  .family-photo:nth-child(2):hover,
  .family-photo:nth-child(3):hover { transform: none !important; }

  /* Meet Crystal aside card — slightly smaller portrait, tightened spacing */
  .aside-card.meet-crystal { padding: 24px 20px 22px; }
  .meet-crystal__photo { width: 96px; height: 96px; margin-bottom: 14px; border-width: 2px; }
  .aside-card.meet-crystal h4 { font-size: 1.2rem; }
  .meet-crystal__title { font-size: 0.7rem; margin-bottom: 12px; }
  .aside-card.meet-crystal > p:not(.meet-crystal__title) { font-size: 0.95rem; }

  /* Founder split image — looser aspect ratio so Crystal isn't cropped */
  .split__media { aspect-ratio: 4 / 5; }
  .split__media-tag { font-size: 0.66rem; padding: 6px 12px; }
}

@media (max-width: 480px) {
  .family-strip { margin-top: 28px; gap: 22px; }
  .family-strip__caption p { font-size: 0.95rem; }
  .family-strip__photos { gap: 8px; }

  /* Single-row family photos still — but smaller, neater */
  .meet-crystal__photo { width: 88px; height: 88px; }
  .aside-card.meet-crystal { padding: 22px 18px 20px; }

  .split__media { aspect-ratio: 1 / 1; }
}
         

/* ============================================================
   MOBILE NAV — full-screen drawer with Services accordion
   ============================================================ */

/* Hamburger toggle: visible only on mobile/tablet */
.site-header .nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 4px;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  transition: background .2s ease;
}
.site-header .nav-toggle:hover { background: rgba(4, 7, 7, 0.04); }
.site-header .nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 980px) {
  .site-header .site-nav__list,
  .site-header .site-nav__cta .btn,
  .site-header .header-phone { display: none !important; }
  .site-header .nav-toggle { display: inline-flex !important; }
}

/* Drawer overlay */
.mobile-nav {
  position: fixed !important;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #2C3E53 !important;
  z-index: 9999 !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 20px 22px 24px !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .28s ease, transform .28s ease, visibility 0s .28s;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.open {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  transition: opacity .28s ease, transform .28s ease, visibility 0s 0s;
}

/* Drawer header (logo + close) */
.mobile-nav .mobile-nav__top {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 28px !important;
  flex-shrink: 0;
}
.mobile-nav .mobile-nav__top img {
  height: 48px !important;
  width: auto !important;
}
.mobile-nav .mobile-nav__close {
  width: 44px !important; height: 44px !important;
  display: inline-flex !important;
  align-items: center !important; justify-content: center !important;
  color: #F8FBFA !important;
  background: rgba(255,255,255,0.06) !important;
  border: 0 !important;
  border-radius: 50% !important;
  cursor: pointer !important;
}
.mobile-nav .mobile-nav__close:hover { background: rgba(255,255,255,0.14) !important; }
.mobile-nav .mobile-nav__close svg { width: 22px !important; height: 22px !important; }

/* Navigation list — top level items */
.mobile-nav .mobile-nav__list {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  flex: 1 0 auto;
}

.mobile-nav .mobile-nav__list > a,
.mobile-nav .mobile-nav__group {
  display: block !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.12) !important;
}

.mobile-nav .mobile-nav__list > a {
  color: #F8FBFA !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.5rem !important;
  font-weight: 300 !important;
  letter-spacing: -0.01em !important;
  padding: 18px 4px !important;
  text-decoration: none !important;
  transition: color .2s ease, padding-left .2s ease;
}
.mobile-nav .mobile-nav__list > a:hover,
.mobile-nav .mobile-nav__list > a:active {
  color: #B0D6E6 !important;
  padding-left: 10px !important;
}

/* Services accordion trigger */
.mobile-nav .mobile-nav__group-trigger {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  background: transparent !important;
  border: 0 !important;
  padding: 18px 4px !important;
  color: #F8FBFA !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.5rem !important;
  font-weight: 300 !important;
  letter-spacing: -0.01em !important;
  text-align: left !important;
  cursor: pointer !important;
  line-height: 1.3 !important;
}
.mobile-nav .mobile-nav__group-trigger:hover { color: #B0D6E6 !important; }
.mobile-nav .mobile-nav__group-trigger svg {
  width: 20px !important; height: 20px !important;
  opacity: 0.75 !important;
  transition: transform .3s ease, opacity .2s ease;
  flex-shrink: 0;
  margin-left: 12px;
}
.mobile-nav .mobile-nav__group.open .mobile-nav__group-trigger svg {
  transform: rotate(180deg) !important;
  opacity: 1 !important;
}
.mobile-nav .mobile-nav__group.open .mobile-nav__group-trigger { color: #B0D6E6 !important; }

/* Services accordion content (sublist) */
.mobile-nav .mobile-nav__sublist {
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height .35s ease !important;
  background: rgba(0,0,0,0.18) !important;
  margin: 0 -4px !important;
  border-radius: 0 !important;
}
.mobile-nav .mobile-nav__group.open .mobile-nav__sublist {
  max-height: 800px !important;
}
.mobile-nav .mobile-nav__sublist a {
  display: block !important;
  padding: 12px 12px 12px 28px !important;
  color: #B0D6E6 !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  background: transparent !important;
  position: relative;
  transition: color .15s ease, background .15s ease;
}
.mobile-nav .mobile-nav__sublist a:last-child { border-bottom: 0 !important; }
.mobile-nav .mobile-nav__sublist a::before {
  content: '' !important;
  position: absolute !important;
  left: 12px;
  top: 50% !important;
  width: 8px; height: 1px;
  background: #7DB5D3;
  opacity: 0.6;
}
.mobile-nav .mobile-nav__sublist a:hover,
.mobile-nav .mobile-nav__sublist a:active {
  color: #F8FBFA !important;
  background: rgba(255,255,255,0.04) !important;
}

/* Drawer bottom CTAs */
.mobile-nav .mobile-nav__bottom {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  padding-top: 24px !important;
  margin-top: 24px !important;
  border-top: 1px solid rgba(255,255,255,0.14) !important;
  flex-shrink: 0;
}
.mobile-nav .mobile-nav__bottom .btn {
  width: 100% !important;
  padding: 16px !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  border-radius: 4px !important;
  text-align: center !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 500 !important;
  font-family: 'Poppins', sans-serif !important;
}
.mobile-nav .mobile-nav__bottom .btn--ghost {
  background: transparent !important;
  color: #F8FBFA !important;
  border: 1px solid rgba(255,255,255,0.35) !important;
}
.mobile-nav .mobile-nav__bottom .btn--ghost:hover {
  background: rgba(255,255,255,0.08) !important;
  border-color: #F8FBFA !important;
}
.mobile-nav .mobile-nav__bottom .btn--primary {
  background: #2377A2 !important;
  color: #F8FBFA !important;
  border: 1px solid #2377A2 !important;
}
.mobile-nav .mobile-nav__bottom .btn--primary:hover {
  background: #094C73 !important;
  border-color: #094C73 !important;
}

/* Prevent body scroll when drawer open */
body:has(.mobile-nav.open) { overflow: hidden !important; }
