/* ==========================================================================
   SurfCoast Roof Renewal — landing page
   Standalone stylesheet. Palette sampled from public/img/suncoast-logo.png
   Type: Fraunces (display) + Manrope (UI/body)
   ========================================================================== */

:root {
    /* brand — from logo */
    --navy-900:  #0A2547;
    --navy-800:  #0E2E57;
    --navy-700:  #143C6E;
    --ocean-600: #2F7FBF;
    --ocean-400: #5BA7DC;
    --green-800: #4E7A1F;
    --green-700: #5C8A24;
    --green-600: #6FA22E;
    --lime-500:  #93C24A;
    --lime-300:  #C4DE97;
    --lime-100:  #E9F2D7;

    /* canvas / neutrals */
    --cream:     #F7F5EE;
    --paper:     #FFFFFF;
    --sand-200:  #EBE4D4;
    --sand-300:  #DED4BE;
    --ink:       #1E2A38;
    --ink-soft:  #56646F;
    --ink-faint: #8A94A0;

    --maxw: 1500px;
    --gutter: clamp(20px, 5vw, 72px);
    --radius: 18px;
    --radius-sm: 12px;
    --shadow-sm: 0 2px 10px rgba(10, 37, 71, .06);
    --shadow-md: 0 18px 44px -20px rgba(10, 37, 71, .30);
    --shadow-lg: 0 40px 90px -32px rgba(10, 37, 71, .42);

    --ff-display: "Fraunces", "Georgia", "Times New Roman", serif;
    --ff-sans: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- reset-ish ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
    font-family: var(--ff-sans);
    font-size: 17px;
    line-height: 1.62;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
::selection { background: var(--lime-300); color: var(--navy-900); }

.wrap {
    width: 100%;
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: var(--gutter);
}
/* content sections sit clearly narrower than the header / footer */
main .wrap { max-width: 1400px; }

.skip-link {
    position: fixed; top: -60px; left: 12px; z-index: 200;
    background: var(--navy-900); color: #fff;
    padding: 10px 16px; border-radius: 10px; font-weight: 700;
    transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

:focus-visible {
    outline: 3px solid var(--ocean-600);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ---------- typography helpers ---------- */
.h2 {
    font-family: var(--ff-display);
    font-weight: 500;
    font-size: clamp(2rem, 1.3rem + 3.1vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -.015em;
    color: var(--navy-900);
}
.h2--light { color: #fff; }
.eyebrow, .kicker {
    font-family: var(--ff-sans);
    font-weight: 800;
    font-size: .78rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--green-700);
}
.kicker { display: inline-block; margin-bottom: 14px; }
.kicker--light { color: var(--lime-500); }
.eyebrow { color: var(--ocean-600); margin-bottom: 18px; }

.lead {
    font-size: clamp(1.05rem, 1rem + .5vw, 1.28rem);
    line-height: 1.55;
    color: var(--ink-soft);
}
.lead--center { max-width: 62ch; margin-inline: auto; }
.lead--light { color: rgba(255, 255, 255, .82); }

.ital-green {
    font-style: italic;
    color: inherit;
    padding-left: .12em;
}
.u-green, .u-lime {
    color: inherit;
    white-space: nowrap;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    --btn-bg: var(--green-600);
    --btn-fg: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    gap: .55em;
    font-family: var(--ff-sans);
    font-weight: 800;
    font-size: .95rem;
    letter-spacing: .01em;
    line-height: 1;
    padding: 15px 24px;
    border-radius: 999px;
    background: var(--btn-bg);
    color: var(--btn-fg);
    box-shadow: 0 12px 24px -12px rgba(94, 138, 36, .7);
    transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
    text-align: center;
}
.btn svg { width: 1.15em; height: 1.15em; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 30px -12px rgba(94, 138, 36, .75); }
.btn:active { transform: translateY(0); }

.btn--green { --btn-bg: var(--green-600); }
.btn--green:hover { background: var(--green-700); }
.btn--lime {
    --btn-bg: var(--lime-500); --btn-fg: var(--navy-900);
    box-shadow: 0 12px 24px -12px rgba(147, 194, 74, .8);
}
.btn--lime:hover { background: #a4d05c; }
.btn--ghost {
    --btn-bg: transparent; --btn-fg: var(--navy-900);
    box-shadow: inset 0 0 0 2px rgba(10, 37, 71, .22);
}
.btn--ghost:hover { --btn-bg: rgba(10, 37, 71, .05); box-shadow: inset 0 0 0 2px rgba(10, 37, 71, .4); }
.btn--ghost-light {
    --btn-fg: #fff;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .5);
}
.btn--ghost-light:hover { --btn-bg: rgba(255, 255, 255, .12); box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .9); }
.btn--lg { padding: 18px 30px; font-size: 1rem; }
.btn--sm { padding: 11px 18px; font-size: .85rem; }
.btn--block { display: flex; width: 100%; }

/* ==========================================================================
   TOPBAR + HEADER
   ========================================================================== */
.topbar {
    position: sticky; top: 0; z-index: 101;
    background: var(--navy-900);
    color: rgba(255, 255, 255, .72);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .02em;
}
.topbar__inner {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; flex-wrap: wrap;
    min-height: 40px; padding-block: 8px;
    text-align: center;
}
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item svg { width: 15px; height: 15px; fill: none; stroke: var(--lime-500); stroke-width: 1.8; }
.topbar__sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(255, 255, 255, .3); }
@media (max-width: 720px) { .topbar { display: none; } }

.site-head {
    position: sticky; top: 40px; z-index: 100;
    background: var(--paper);
    transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
    border-bottom: 1px solid var(--sand-200);
}
/* no topbar below 720px — header sticks to the very top */
@media (max-width: 720px) { .site-head { top: 0; } }
.site-head__inner {
    display: flex; align-items: center; gap: 24px;
    min-height: 84px;
}
.site-head.is-stuck {
    box-shadow: var(--shadow-sm);
}
.brand { flex-shrink: 0; }
.brand img { width: auto; height: 52px; }
@media (max-width: 720px) { .brand img { height: 56px; } }

.nav {
    display: flex; align-items: center; gap: 2px;
    margin-inline: auto;
}
.nav__link {
    position: relative;
    padding: 10px 11px;
    font-weight: 700;
    font-size: .92rem;
    white-space: nowrap;
    color: var(--navy-800);
    border-radius: 8px;
    transition: color .15s var(--ease), background .15s var(--ease);
}
.nav__link::after {
    content: ""; position: absolute; left: 11px; right: 11px; bottom: 4px;
    height: 2px; border-radius: 2px; background: var(--green-600);
    transform: scaleX(0); transform-origin: left; transition: transform .22s var(--ease);
}
.nav__link:hover { color: var(--green-700); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }

.head-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.phone-pill {
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 800; font-size: .92rem; color: var(--navy-900);
    padding: 9px 8px;
}
.phone-pill svg { width: 23px; height: 23px; fill: none; stroke: var(--green-600); stroke-width: 2; }
.phone-pill:hover { color: var(--green-700); }
@media (max-width: 720px) { .phone-pill svg { width: 26px; height: 26px; } }
@media (max-width: 1220px) { .phone-pill span { display: none; } }

.hamburger { display: none; width: 44px; height: 44px; border-radius: 10px; position: relative; }
.hamburger span {
    position: absolute; left: 11px; height: 2px; border-radius: 2px;
    background: var(--navy-900);
    transition: width .25s var(--ease), top .25s var(--ease), transform .25s var(--ease);
}
.hamburger span:nth-child(1) { top: 18px; width: 24px; }
.hamburger span:nth-child(2) { top: 25px; width: 15px; }
.hamburger:hover span:nth-child(2) { width: 24px; }
.hamburger.is-open span { top: 21px; width: 22px; }
.hamburger.is-open span:nth-child(1) { transform: rotate(45deg); }
.hamburger.is-open span:nth-child(2) { transform: rotate(-45deg); }

@media (max-width: 960px) {
    .nav { display: none; }
    .nav-cta { display: none; }
    .hamburger { display: block; }
    .head-actions { margin-left: auto; }   /* push call + menu to the right edge */
    .site-head.is-stuck { background: rgba(255, 255, 255, .96); }
}

/* mobile nav overlay — centered dark sheet */
.mnav {
    position: fixed; inset: 0; z-index: 99;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: clamp(96px, 24vw, 116px) var(--gutter) max(28px, env(safe-area-inset-bottom));
    background:
        radial-gradient(680px 460px at 108% -6%, rgba(47, 127, 191, .28), transparent 62%),
        radial-gradient(520px 420px at -20% 108%, rgba(94, 138, 36, .22), transparent 60%),
        var(--navy-900);
    color: #fff;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: opacity .32s var(--ease), transform .42s var(--ease), visibility 0s .42s;
}
.mnav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: opacity .3s var(--ease), transform .5s var(--ease);
}

.mnav__inner {
    display: flex; flex-direction: column; align-items: center;
    width: 100%; max-width: 460px;
}
.mnav__link {
    display: block; text-align: center;
    padding: 11px 4px;
    font-family: var(--ff-display);
    font-size: clamp(1.15rem, 5.2vw, 1.5rem);
    font-weight: 500; line-height: 1.2;
    color: #fff;
    opacity: 0; transform: translateY(8px);
    transition: opacity .4s var(--ease), transform .4s var(--ease), color .18s var(--ease);
}
.mnav.is-open .mnav__link { opacity: 1; transform: none; }
.mnav.is-open .mnav__link:nth-child(1) { transition-delay: .08s; }
.mnav.is-open .mnav__link:nth-child(2) { transition-delay: .12s; }
.mnav.is-open .mnav__link:nth-child(3) { transition-delay: .16s; }
.mnav.is-open .mnav__link:nth-child(4) { transition-delay: .20s; }
.mnav.is-open .mnav__link:nth-child(5) { transition-delay: .24s; }
.mnav.is-open .mnav__link:nth-child(6) { transition-delay: .28s; }
.mnav.is-open .mnav__link:nth-child(7) { transition-delay: .32s; }
.mnav__link:hover, .mnav__link:active, .mnav__link:focus-visible { color: var(--lime-300); }

.mnav__foot {
    width: 100%; max-width: 380px;
    margin-top: clamp(26px, 6vh, 44px);
    display: grid; gap: 14px;
    opacity: 0;
    transition: opacity .4s var(--ease) .36s;
}
.mnav.is-open .mnav__foot { opacity: 1; }
.mnav__phone {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    font-weight: 800; font-size: 1rem; color: #fff;
    padding: 6px;
}
.mnav__phone svg { width: 18px; height: 18px; fill: none; stroke: var(--lime-500); stroke-width: 2; }
.mnav__tag {
    text-align: center;
    font-size: .72rem; font-weight: 700; letter-spacing: .04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
}

@media (prefers-reduced-motion: reduce) {
    .mnav__link, .mnav__foot { opacity: 1 !important; transform: none !important; }
}

body.no-scroll { overflow: hidden; }

/* ==========================================================================
   HERO — full-bleed background slider (cross-fade + continuous Ken-Burns zoom)
   ========================================================================== */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: clamp(520px, 80vh, 820px);
    padding-top: clamp(56px, 8vh, 96px);
    padding-bottom: clamp(110px, 16vw, 190px);
    background: var(--navy-900);
    overflow: hidden;
    isolation: isolate;
}

.hero__slides { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 1.4s var(--ease);
}
.hero__slide.is-active { opacity: 1; }
.hero__slide-img {
    position: absolute; inset: -4%;              /* bleed so the gentle zoom never shows an edge */
    display: block;
    background: var(--bg) center 38% / cover no-repeat;
    transform: scale(1);
    will-change: transform;
}
/* slow, subtle zoom only — runs the whole time a slide is on screen */
.hero__slide.is-active .hero__slide-img              { animation: hero-zoom-in 24s linear forwards; }
.hero__slide:nth-child(2).is-active .hero__slide-img { animation-name: hero-zoom-out; }
@keyframes hero-zoom-in  { from { transform: scale(1);    } to { transform: scale(1.06); } }
@keyframes hero-zoom-out { from { transform: scale(1.06); } to { transform: scale(1);    } }

.hero__scrim {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(90deg, rgba(6,17,34,.90) 0%, rgba(6,17,34,.74) 32%, rgba(6,17,34,.44) 60%, rgba(6,17,34,.22) 100%),
        linear-gradient(180deg, rgba(6,17,34,.5) 0%, rgba(6,17,34,0) 22%);
    -webkit-mask-image: linear-gradient(180deg, #000 78%, transparent 99%);
    mask-image: linear-gradient(180deg, #000 78%, transparent 99%);
}

.hero__inner {
    position: relative; z-index: 2; width: 100%;
    max-width: 1400px;
    margin-inline: auto;
    padding-inline: var(--gutter);
}
.hero__copy { max-width: 640px; }

.hero .eyebrow { color: var(--lime-500); }
.hero__title {
    font-family: var(--ff-display);
    font-weight: 600;
    font-size: clamp(2.9rem, 1.6rem + 6.2vw, 5.6rem);
    line-height: .98;
    letter-spacing: -.025em;
    color: #fff;
    margin-bottom: 22px;
    text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.hero__lead {
    font-size: clamp(1.08rem, 1rem + .6vw, 1.35rem);
    color: rgba(255,255,255,.92);
    max-width: 46ch;
    margin-bottom: 26px;
    text-shadow: 0 1px 18px rgba(0,0,0,.4);
}
.ticks { display: grid; gap: 10px; margin-bottom: 32px; }
.ticks li {
    position: relative;
    padding-left: 32px;
    font-weight: 600;
    color: rgba(255,255,255,.9);
}
.ticks li::before {
    content: "";
    position: absolute; left: 0; top: 3px;
    width: 20px; height: 20px; border-radius: 50%;
    background: rgba(147, 194, 74, .18);
    box-shadow: inset 0 0 0 1.5px var(--lime-500);
}
.ticks li::after {
    content: "";
    position: absolute; left: 6px; top: 9px;
    width: 8px; height: 5px;
    border-left: 2px solid var(--lime-500);
    border-bottom: 2px solid var(--lime-500);
    transform: rotate(-45deg);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

@media (prefers-reduced-motion: reduce) {
    .hero__slide-img { animation: none !important; transform: scale(1); }
}

/* wave dividers */
.wave { position: absolute; left: 0; right: 0; line-height: 0; pointer-events: none; }
.wave svg { width: 100%; height: clamp(60px, 8vw, 112px); }
.wave--hero { bottom: -1px; }
.wave--hero svg path { fill: var(--paper); }
.wave--flip { bottom: -1px; transform: rotate(180deg); }
.wave--flip svg path { fill: var(--cream); }
.wave--foot { top: 0; transform: translateY(-99%); }
.wave--foot svg path { fill: var(--paper); }

/* ==========================================================================
   SECTIONS — shared
   ========================================================================== */
.section { position: relative; padding-block: clamp(64px, 9vw, 120px); }
.section--about   { background: var(--paper); }
.section--process { background: var(--cream); }
.section--benefits{ background: var(--paper); }
.section--faq     { background: var(--paper); }

.section__head { text-align: center; max-width: 720px; margin-inline: auto; margin-bottom: clamp(40px, 6vw, 68px); }
.section__head--left { text-align: left; margin-inline: 0; }
.section__head .h2 { margin-bottom: 16px; }

/* ---------- about / science ---------- */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(36px, 5vw, 76px);
    align-items: center;
}
.about__text .h2 { margin-bottom: 20px; }
.about__text .lead { margin-bottom: 16px; color: var(--ink); }
.about__text p { color: var(--ink-soft); margin-bottom: 14px; }
.about__text .kicker { color: var(--green-700); }
.about__text strong { color: var(--navy-900); }
.fineprint { font-size: .9rem; font-weight: 600; color: var(--ink-faint); }
.about__text .fineprint { color: var(--ink-faint); }

/* two-image collage: large square + small wide inset bottom-right */
.about__media {
    position: relative;
    margin: 4px clamp(28px, 4vw, 56px) clamp(40px, 6vw, 64px) 4px;
}
.about__media-main,
.about__media-inset {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--lime-100), var(--sand-100));
    box-shadow: var(--shadow-md);
}
.about__media-main { aspect-ratio: 1 / 1; }
.about__media-inset {
    position: absolute;
    right: clamp(-56px, -4vw, -28px);
    bottom: clamp(-40px, -5vw, -28px);
    width: 60%;
    aspect-ratio: 16 / 10;
    border: 6px solid var(--paper);
    box-shadow: var(--shadow-lg);
}
.about__media-main img,
.about__media-inset img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.about__media-main.is-empty::after,
.about__media-inset.is-empty::after {
    content: "Image";
    position: absolute; inset: 0;
    display: grid; place-items: center;
    font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
    font-size: .72rem; color: var(--green-700);
    opacity: .5;
}

/* trust metrics — horizontal row under both columns */
.metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: clamp(48px, 6vw, 80px);
    list-style: none;
}
.metric {
    background: var(--paper);
    border: 1px solid var(--sand-200);
    border-radius: var(--radius-sm);
    padding: 24px 22px;
}
.metric__num {
    display: block;
    font-family: var(--ff-display);
    font-size: clamp(1.9rem, 1.4rem + 1.6vw, 2.6rem);
    font-weight: 600; line-height: 1;
    color: var(--navy-900);
    margin-bottom: 8px;
}
.metric__label { font-size: .9rem; font-weight: 600; color: var(--ink-soft); }

/* ---------- process — vertical timeline (alternating on desktop) ---------- */
.steps {
    position: relative;
    list-style: none;
    max-width: 940px;
    margin-inline: auto;
}
.steps::before {                       /* the spine */
    content: "";
    position: absolute; top: 8px; bottom: 8px; left: 50%;
    width: 2px; transform: translateX(-50%);
    border-radius: 2px;
    background: linear-gradient(180deg, rgba(147, 194, 74, .55), rgba(47, 127, 191, .35));
}
.step {
    position: relative;
    width: 50%;
    box-sizing: border-box;
}
.step:not(:last-child) { margin-bottom: clamp(28px, 5vw, 54px); }
.step:nth-child(odd)  { margin-left: 0;   padding-right: clamp(38px, 5vw, 60px); text-align: right; }
.step:nth-child(even) { margin-left: 50%; padding-left:  clamp(38px, 5vw, 60px); text-align: left;  }

/* connector from card to the spine */
.step::after {
    content: "";
    position: absolute; top: 24px; height: 2px;
    background: var(--sand-300);
}
.step:nth-child(odd)::after  { right: 0; width: clamp(38px, 5vw, 60px); }
.step:nth-child(even)::after { left: 0;  width: clamp(38px, 5vw, 60px); }

/* node on the spine */
.step__node {
    position: absolute; top: 0;
    display: grid; place-items: center;
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--paper);
    color: var(--green-700);
    box-shadow: 0 0 0 6px var(--cream), var(--shadow-sm);
    z-index: 1;
}
.step:nth-child(odd)  .step__node { right: -26px; }
.step:nth-child(even) .step__node { left:  -26px; }
.step__node svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.step__card {
    position: relative;
    background: var(--paper);
    border: 1px solid var(--sand-200);
    border-radius: var(--radius);
    padding: 22px 26px;
    box-shadow: var(--shadow-sm);
}
.step__no {
    display: inline-block;
    font-weight: 800; font-size: .72rem;
    letter-spacing: .16em; text-transform: uppercase;
    color: var(--green-700);
    margin-bottom: 8px;
}
.step__title {
    font-family: var(--ff-display);
    font-size: 1.18rem; font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 6px;
}
.step p { font-size: .93rem; color: var(--ink-soft); }

/* mobile — spine on the left, every card on the right */
@media (max-width: 760px) {
    .steps { max-width: 480px; }
    .steps::before { left: 22px; transform: none; }
    .step,
    .step:nth-child(odd),
    .step:nth-child(even) {
        width: 100%;
        margin-left: 0;
        padding-left: 64px;
        padding-right: 0;
        text-align: left;
    }
    .step:not(:last-child) { margin-bottom: 20px; }
    .step:nth-child(odd) .step__node,
    .step:nth-child(even) .step__node {
        left: -1px; right: auto;
        width: 46px; height: 46px;
    }
    .step:nth-child(odd)::after,
    .step:nth-child(even)::after {
        left: 22px; right: auto;
        width: 42px;
    }
}

/* ---------- before / after (side by side, all breakpoints) ---------- */
.ba {
    max-width: 940px;
    margin: 0 auto clamp(44px, 6vw, 72px);
}
.ba__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(10px, 2vw, 20px);
}
.ba__item {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--navy-900);
}
.ba__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.ba__tag {
    position: absolute; top: 12px; left: 12px;
    font-size: .66rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
    padding: 6px 12px; border-radius: 999px;
    color: #fff; background: rgba(10, 37, 71, .72);
    -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.ba__tag--after { background: rgba(94, 138, 36, .85); }

.ba__caption {
    margin-top: 16px;
    text-align: center;
    font-size: .92rem;
    color: var(--ink-soft);
    max-width: 60ch; margin-inline: auto;
}

@media (max-width: 560px) {
    .ba__tag { font-size: .58rem; letter-spacing: .1em; padding: 5px 9px; top: 9px; left: 9px; }
    .ba__caption { font-size: .86rem; }
}

/* ---------- benefits (plain cards — icon at the left of the title) ---------- */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: clamp(28px, 4vw, 52px);
    row-gap: clamp(30px, 4vw, 44px);
}
.card {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    row-gap: 6px;
    align-items: start;
}
.card__icon {
    grid-row: 1;
    display: flex;
    color: var(--green-700);
}
.card__icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.card h3 {
    grid-column: 2;
    font-family: var(--ff-display);
    font-size: 1.18rem; font-weight: 600;
    line-height: 1.25;
    color: var(--navy-900);
}
.card p {
    grid-column: 2;
    font-size: .94rem;
    color: var(--ink-soft);
}

.valuebar {
    margin-top: clamp(44px, 6vw, 72px);
    display: grid; grid-template-columns: repeat(3, 1fr);
    background: var(--navy-900);
    border-radius: var(--radius);
    overflow: hidden;
}
.valuebar__item {
    padding: 26px 28px;
    color: rgba(255, 255, 255, .78);
}
.valuebar__item + .valuebar__item { border-left: 1px solid rgba(255, 255, 255, .12); }
.valuebar__item strong {
    display: block;
    font-family: var(--ff-display);
    font-size: 1.22rem; font-weight: 600; color: #fff;
    margin-bottom: 3px;
}
.valuebar__item span { font-size: .9rem; }

/* ---------- service area (dark) ---------- */
.section--area {
    background:
        radial-gradient(900px 500px at 90% 0%, rgba(47, 127, 191, .35), transparent 60%),
        var(--navy-900);
    color: #fff;
    padding-block: clamp(72px, 10vw, 132px);
    position: relative;
    overflow: hidden;
}
/* flowing "coastal" wave texture */
.section--area::before {
    content: "";
    position: absolute; inset: -8% -10%;
    z-index: 0;
    pointer-events: none;
    background: no-repeat center / cover
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 900' preserveAspectRatio='none'%3E%3Cpath d='M0 540 C320 460 560 640 920 550 C1240 470 1440 540 1600 520 L1600 900 L0 900 Z' fill='%232F7FBF' fill-opacity='0.12'/%3E%3Cpath d='M0 680 C300 760 620 600 980 690 C1280 765 1460 690 1600 720 L1600 900 L0 900 Z' fill='%2393C24A' fill-opacity='0.06'/%3E%3Cg fill='none' stroke-linecap='round' stroke-width='2'%3E%3Cpath d='M-80 280 C300 210 560 350 940 280 C1260 220 1440 290 1700 260' stroke='%235BA7DC' stroke-opacity='0.32'/%3E%3Cpath d='M-80 340 C320 430 640 280 1000 370 C1300 445 1460 360 1700 400' stroke='%2393C24A' stroke-opacity='0.20'/%3E%3Cpath d='M-80 430 C360 360 620 510 1020 420 C1320 350 1480 430 1700 405' stroke='%23FFFFFF' stroke-opacity='0.08'/%3E%3C/g%3E%3C/svg%3E");
    opacity: .3;
    animation: area-wave-drift 26s ease-in-out infinite alternate;
}
@keyframes area-wave-drift {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-3.5%, 1.2%, 0); }
}
.area__grid {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1.1fr;
    gap: clamp(36px, 6vw, 72px); align-items: center;
}
.area__text .h2 { margin-bottom: 18px; }
.area__list { display: grid; gap: 10px; margin: 22px 0 30px; }
.area__list li {
    position: relative; padding-left: 26px;
    font-weight: 600; color: rgba(255, 255, 255, .86);
}
.area__list li::before {
    content: ""; position: absolute; left: 0; top: 8px;
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--lime-500);
    box-shadow: 0 0 0 4px rgba(147, 194, 74, .18);
}
.area__media { display: grid; justify-items: center; }
.area__media-frame {
    position: relative;
    margin: 0;
    width: 100%;
    max-width: 620px;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: var(--shadow-lg);
}
.area__media-frame img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

/* ---------- FAQ ---------- */
.faq__grid {
    display: grid; grid-template-columns: .82fr 1.18fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: start;
}
.faq__grid .section__head { margin-bottom: 0; }
.faq__grid .lead a { color: var(--green-700); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.accordion { display: grid; gap: 12px; }
.ac {
    background: var(--paper);
    border: 1px solid var(--sand-200);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.ac summary {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 20px 22px;
    font-weight: 700; font-size: 1.02rem;
    color: var(--navy-900);
    list-style: none;
}
.ac summary::-webkit-details-marker { display: none; }
.ac__mk { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.ac__mk::before, .ac__mk::after {
    content: ""; position: absolute; background: var(--green-600); border-radius: 2px;
    transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.ac__mk::before { left: 0; right: 0; top: 8px; height: 2.5px; }
.ac__mk::after  { top: 0; bottom: 0; left: 8px; width: 2.5px; }
.ac[open] .ac__mk::after { transform: scaleY(0); opacity: 0; }
.ac[open] summary { color: var(--green-700); }
.ac__body { padding: 0 22px 20px; }
.ac__body p { color: var(--ink-soft); font-size: .96rem; }
.ac[open] .ac__body { animation: acReveal .3s var(--ease); }
@keyframes acReveal { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

/* ==========================================================================
   CTA + FORM
   ========================================================================== */
.cta {
    position: relative;
    background:
        radial-gradient(800px 460px at 12% 110%, rgba(94, 138, 36, .4), transparent 60%),
        var(--navy-800);
    color: #fff;
    padding-block: clamp(64px, 9vw, 120px);
    overflow: hidden;
}
.cta__grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 68px);
    align-items: center;
}
.cta__pitch .h2 { margin-bottom: 18px; }
.cta__list { display: grid; gap: 10px; margin: 22px 0 26px; }
.cta__list li {
    position: relative; padding-left: 28px;
    color: rgba(255, 255, 255, .84); font-weight: 600;
}
.cta__list li::before {
    content: ""; position: absolute; left: 0; top: 6px;
    width: 16px; height: 16px; border-radius: 50%;
    background: var(--lime-500);
}
.cta__list li::after {
    content: ""; position: absolute; left: 5px; top: 10px;
    width: 6px; height: 4px;
    border-left: 2px solid var(--navy-900); border-bottom: 2px solid var(--navy-900);
    transform: rotate(-45deg);
}
.cta__phone {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--ff-display);
    font-size: 1.5rem; font-weight: 600; color: #fff;
}
.cta__phone svg { width: 24px; height: 24px; fill: none; stroke: var(--lime-500); stroke-width: 2; }
.cta__phone:hover { color: var(--lime-300); }

.formcard {
    background: var(--paper);
    color: var(--ink);
    border: 1px solid var(--sand-200);
    border-radius: var(--radius);
    padding: clamp(26px, 3.5vw, 40px);
    box-shadow: var(--shadow-lg);
}
.formcard__title {
    font-family: var(--ff-display);
    font-size: 1.5rem; font-weight: 600; color: var(--navy-900);
    margin-bottom: 6px;
}
.formcard__sub { font-size: .95rem; color: var(--ink-soft); margin-bottom: 22px; }
.formcard__alert {
    background: #FCECEC; color: #9B2C2C;
    border: 1px solid #F3C9C9; border-radius: 10px;
    padding: 10px 14px; font-size: .88rem; font-weight: 700;
    margin-bottom: 16px;
}

.qform { display: grid; gap: 14px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 6px; }
.field label { font-size: .82rem; font-weight: 800; letter-spacing: .03em; color: var(--navy-800); }
.field input {
    font: inherit;
    padding: 13px 15px;
    border: 1.5px solid var(--sand-300);
    border-radius: 11px;
    background: var(--paper);
    color: var(--ink);
    transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field input::placeholder { color: var(--ink-faint); }
.field input:focus { outline: none; border-color: var(--green-600); box-shadow: 0 0 0 4px rgba(111, 162, 46, .16); }
.field input[aria-invalid="true"] { border-color: #D3524B; box-shadow: 0 0 0 4px rgba(211, 82, 75, .14); }
.field__err { font-size: .8rem; font-weight: 700; color: #C0392B; }
.qform button { margin-top: 6px; }
.qform__privacy {
    display: flex; align-items: center; gap: 8px;
    font-size: .8rem; font-weight: 600; color: var(--ink-faint);
    margin-top: 4px;
}
.qform__privacy svg { width: 15px; height: 15px; fill: none; stroke: var(--green-600); stroke-width: 1.8; flex-shrink: 0; }

.formcard__done { text-align: center; padding: 12px 4px; }
.formcard__check {
    display: grid; place-items: center;
    width: 66px; height: 66px; margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--lime-100);
    box-shadow: inset 0 0 0 2px var(--green-600);
}
.formcard__check svg { width: 32px; height: 32px; fill: none; stroke: var(--green-700); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.formcard__done h3 {
    font-family: var(--ff-display);
    font-size: 1.5rem; font-weight: 600; color: var(--navy-900);
    margin-bottom: 8px;
}
.formcard__done p { color: var(--ink-soft); margin-bottom: 18px; }
.formcard__done strong { color: var(--green-700); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.foot {
    position: relative;
    background: var(--paper);
    color: var(--ink-soft);
    padding-top: clamp(56px, 8vw, 96px);
    padding-bottom: 28px;
}
.foot__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.3fr 1fr;
    gap: 40px 32px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--sand-200);
}
.foot__logo { display: inline-block; margin-bottom: 20px; }
.foot__logo img { width: auto; height: 88px; max-width: 100%; display: block; }
.foot__brand p { font-size: .92rem; max-width: 42ch; margin-bottom: 12px; }
.foot__tag { font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: .74rem; color: var(--green-700); }

.foot__col h4, .foot__cta h4 {
    color: var(--navy-900); font-size: .8rem; font-weight: 800;
    letter-spacing: .14em; text-transform: uppercase;
    margin-bottom: 16px;
}
.foot__col a {
    display: flex; align-items: center; gap: 10px;
    padding: 6px 0; font-size: .92rem; font-weight: 600;
    transition: color .15s var(--ease);
}
.foot__col a:hover { color: var(--green-700); }
.foot__col svg { width: 17px; height: 17px; fill: none; stroke: var(--green-600); stroke-width: 1.8; flex-shrink: 0; }
.foot__cta p { font-size: .9rem; margin-bottom: 16px; }

.foot__legal {
    display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px;
    padding-top: 22px;
    font-size: .82rem; color: var(--ink-faint);
}

/* ==========================================================================
   FLOATING CALL BUTTON (mobile)
   ========================================================================== */
.fab {
    position: fixed; right: 16px; bottom: 16px; z-index: 90;
    width: 56px; height: 56px; border-radius: 50%;
    display: none; place-items: center;
    background: var(--green-600); color: #fff;
    box-shadow: var(--shadow-md);
}
.fab svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; }
@media (max-width: 720px) { .fab { display: grid; } }

/* ==========================================================================
   REVEAL ANIMATION  — enhancement only; content stays visible without JS
   ========================================================================== */
html.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}
html.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    html.js .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1000px) {
    .about__grid { grid-template-columns: 1fr; gap: clamp(48px, 10vw, 80px); }
    .about__media { max-width: 520px; margin-right: clamp(40px, 10vw, 72px); }
    .metrics { grid-template-columns: 1fr 1fr; }
    .cards { grid-template-columns: 1fr 1fr; }
    .area__grid { grid-template-columns: 1fr; }
    .faq__grid { grid-template-columns: 1fr; }
    .cta__grid { grid-template-columns: 1fr; }
    .valuebar { grid-template-columns: 1fr; }
    .valuebar__item + .valuebar__item { border-left: 0; border-top: 1px solid rgba(255, 255, 255, .12); }
    .foot__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
    /* smaller buttons across mobile */
    .btn      { padding: 12px 20px; font-size: .87rem; }
    .btn--lg  { padding: 14px 22px; font-size: .9rem; }
    .btn--sm  { padding: 9px 15px;  font-size: .78rem; }
    .btn svg  { width: 1em; height: 1em; }
}
@media (max-width: 620px) {
    body { font-size: 16px; }
    .cards { grid-template-columns: 1fr; }
    .metrics { grid-template-columns: 1fr 1fr; gap: 12px; }
    .metric { padding: 18px 16px; }
    .about__media { margin-right: 44px; margin-bottom: 44px; }
    .about__media-inset { width: 66%; right: -20px; bottom: -24px; border-width: 5px; }
    .field-row { grid-template-columns: 1fr; }
    .hero { padding-bottom: 152px; }
    .hero__cta .btn { width: 100%; }
    .foot__grid { grid-template-columns: 1fr; }
    .foot__legal { flex-direction: column; }
}
