body {
    font-family: var(--font-ui);
    color: var(--charcoal);
    background: var(--off-white);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}

img { max-width: 100%; display: block; }

.wrap {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 640px) {
    .wrap { padding: 0 20px; }
}

/* ---------- reveal-on-scroll ---------- */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===================================================
   HERO
=================================================== */
.hero {
    padding: 88px 0 88px;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1.04;
    letter-spacing: -.01em;
    color: var(--charcoal-dark);
    max-width: 880px;
}
.hero h1 em {
    font-style: normal;
    color: var(--orange);
}

.hero-sub {
    margin-top: 26px;
    font-size: 19px;
    line-height: 1.6;
    color: #5B5B5B;
    max-width: 620px;
}

/* Scope badge — communicates project scale range, signature to this page */
.hero-scope {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 44px;
    flex-wrap: wrap;
}

.scope-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 3px;
    padding: 10px 16px;
}

.scope-pill .scope-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    flex: none;
}

.scope-pill .scope-label {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--charcoal-dark);
}

.hero-rule {
    margin-top: 56px;
    height: 1px;
    background: var(--rule);
}

/* ===================================================
   MANIFEST INTRO
=================================================== */
.manifest-intro {
    padding: 0 0 56px;
}

.manifest-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

@media (max-width: 800px) {
    .manifest-grid { grid-template-columns: 1fr; gap: 36px; }
}

.manifest-label {
    font-family: var(--font-mono);
    font-size: 12.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--orange-dark);
    margin-bottom: 18px;
}

.manifest-intro h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(28px, 3.4vw, 38px);
    line-height: 1.12;
    color: var(--charcoal-dark);
}

.manifest-copy p {
    font-size: 17px;
    line-height: 1.7;
    color: #4F4F4F;
}

/* ===================================================
   THE MANIFEST — job-ticket style checklist grid
=================================================== */
.manifest {
    padding: 24px 0 96px;
}

.manifest-board {
    border: 1px solid var(--rule);
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
}

.manifest-board-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 22px 28px;
    border-bottom: 1px solid var(--rule);
    background: var(--gray-faint);
}

.manifest-board-head .title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 21px;
    color: var(--charcoal-dark);
    letter-spacing: .01em;
}

.work-with-us {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 14px;
    color: var(--orange-dark);
    text-decoration: none;
    border-bottom: 1.5px solid transparent;
    transition: border-color .2s ease, color .2s ease;
}
.work-with-us:hover {
    color: var(--orange);
    border-color: var(--orange);
}
.work-with-us svg { flex: none; transition: transform .2s ease; }
.work-with-us:hover svg { transform: translateX(2px); }

.manifest-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 880px) {
    .manifest-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .manifest-list { grid-template-columns: 1fr; }
}

.manifest-item {
    padding: 26px 26px 24px;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    position: relative;
    transition: background .25s ease;
}

.manifest-list .manifest-item:nth-child(3n) { border-right: none; }
@media (max-width: 880px) {
    .manifest-list .manifest-item:nth-child(3n) { border-right: 1px solid var(--rule); }
    .manifest-list .manifest-item:nth-child(2n) { border-right: none; }
}
@media (max-width: 560px) {
    .manifest-item { border-right: none !important; }
}

.manifest-item:hover { background: var(--gray-faint); }

.manifest-item .code {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--orange-dark);
    letter-spacing: .06em;
    display: block;
    margin-bottom: 10px;
}

.manifest-item .name {
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 16.5px;
    color: var(--charcoal-dark);
    line-height: 1.35;
}

.manifest-item .check {
    position: absolute;
    top: 24px;
    right: 22px;
    width: 24px;
    height: 24px;
    border: 1.5px solid var(--gray-mid);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===================================================
   LOSS TYPE BAND — unique to this page
   Visual device showing covered loss categories
=================================================== */
.loss-band {
    padding: 0 0 80px;
}

.loss-band-inner {
    border: 1px solid var(--rule);
    border-radius: 4px;
    background: var(--white);
    overflow: hidden;
}

.loss-band-head {
    padding: 20px 28px;
    border-bottom: 1px solid var(--rule);
    background: var(--charcoal-dark);
}

.loss-band-head span {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gray-mid);
}

.loss-types {
    display: flex;
    flex-wrap: wrap;
}

.loss-type {
    flex: 1 1 200px;
    padding: 28px 28px 26px;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.loss-type:last-child { border-right: none; }

@media (max-width: 760px) {
    .loss-type { flex: 1 1 50%; }
    .loss-type:nth-child(2n) { border-right: none; }
}

@media (max-width: 440px) {
    .loss-type { flex: 1 1 100%; border-right: none; }
}

.loss-icon {
    width: 32px;
    height: 32px;
    color: var(--orange);
    flex: none;
}

.loss-type .loss-name {
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 15px;
    color: var(--charcoal-dark);
    line-height: 1.3;
}

/* ===================================================
   AUDIENCE BAND
=================================================== */
.audience {
    padding: 8px 0 120px;
}

.audience-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 460px;
    display: flex;
    align-items: center;
    isolation: isolate;
}

.audience-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../images/insurance-claim-repairs.avif');
    background-size: cover;
    background-position: center;
    background-color: var(--gray-light);
    z-index: 0;
}

.audience-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(34,34,34,.42) 0%, rgba(34,34,34,.18) 55%, rgba(34,34,34,.08) 100%);
    z-index: 1;
}

.audience-glass {
    position: relative;
    z-index: 2;
    margin: 40px;
    max-width: 540px;
    background: rgba(255,255,255,.46);
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 14px;
    padding: 44px 44px;
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    box-shadow: 0 18px 50px rgba(34,34,34,.16);
}

@media (max-width: 760px) {
    .audience-glass { margin: 22px; padding: 30px 26px; max-width: none; }
    .audience-frame { min-height: 420px; }
}

.audience-glass h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.2;
    color: var(--charcoal-dark);
}
.audience-glass h3 span { color: var(--orange-dark); }

.audience-glass p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.65;
    color: #3F3F3F;
}

.audience-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 15px;
    color: var(--white);
    text-decoration: none;
    background: var(--orange);
    padding: 13px 22px;
    border-radius: 3px;
    transition: background .2s ease;
}
.audience-cta:hover {
    background: var(--orange-dark);
}
.audience-cta svg { flex: none; }