:root {
    --navy: #081a2e;
    --navy-2: #102945;
    --red: #d7263d;
    --red-dark: #a91329;
    --green: #396b35;
    --cream: #f4efe6;
    --sand: #d9cfbe;
    --white: #ffffff;
    --ink: #10161d;
    --muted: #65707d;
    --line: rgba(16, 22, 29, .14);
    --shell: min(1180px, calc(100% - 40px));
    --shadow: 0 24px 80px rgba(4, 17, 31, .18);
    --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body.nav-open,
body.lightbox-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.shell { width: var(--shell); margin-inline: auto; }
.screen-reader-text,
.honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    white-space: nowrap !important;
}
.skip-link {
    position: fixed;
    z-index: 99999;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    background: var(--white);
    color: var(--navy);
    transform: translateY(-150%);
    transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.announcement-bar {
    position: relative;
    z-index: 1002;
    background: var(--red);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.announcement-bar__inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.announcement-bar a { margin-left: auto; border-bottom: 1px solid rgba(255,255,255,.65); }
.announcement-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 0 0 5px rgba(255,255,255,.18);
}

.site-header {
    position: absolute;
    z-index: 1000;
    left: 0;
    right: 0;
    top: 36px;
    color: var(--white);
    transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}
.site-header.is-scrolled {
    position: fixed;
    top: 0;
    color: var(--navy);
    background: rgba(255,255,255,.96);
    box-shadow: 0 10px 30px rgba(3, 16, 29, .1);
    backdrop-filter: blur(14px);
}
.site-header__inner {
    min-height: 94px;
    display: flex;
    align-items: center;
    gap: 34px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 245px;
}
.brand__mark {
    width: 62px;
    height: 46px;
    border: 2px solid rgba(255,255,255,.45);
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
    display: grid;
    place-items: center;
}
.site-header.is-scrolled .brand__mark { border-color: rgba(8,26,46,.16); }
.brand__mark img { width: 100%; height: 100%; object-fit: cover; }
.brand__text { line-height: .9; display: flex; flex-direction: column; }
.brand__text strong {
    font-family: var(--display);
    font-size: 24px;
    letter-spacing: .04em;
    transform: skewX(-6deg);
}
.brand__text small {
    margin-top: 7px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .28em;
}
.custom-logo-link { display: block; }
.custom-logo { max-width: 210px; max-height: 72px; width: auto; }
.site-nav { margin-left: auto; }
.site-nav__list {
    display: flex;
    align-items: center;
    gap: 29px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.site-nav a {
    position: relative;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase;
}
.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -7px;
    height: 2px;
    background: var(--red);
    transition: right .2s ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after { right: 0; }
.nav-toggle { display: none; }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 54px;
    padding: 0 25px;
    border: 1px solid transparent;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .075em;
    text-transform: uppercase;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover,
.button:focus-visible { transform: translateY(-2px); }
.button--header {
    min-height: 46px;
    padding-inline: 18px;
    background: var(--red);
    color: var(--white);
}
.button--header:hover { background: var(--red-dark); }
.button--primary { background: var(--red); color: var(--white); box-shadow: 0 16px 30px rgba(215,38,61,.24); }
.button--primary:hover { background: var(--red-dark); }
.button--ghost { color: var(--white); border-color: rgba(255,255,255,.52); background: rgba(255,255,255,.04); }
.button--ghost:hover { background: var(--white); color: var(--navy); }
.button--light { background: var(--white); color: var(--navy); }
.button--light:hover { background: var(--cream); }
.button--ghost-dark { border-color: rgba(8,26,46,.25); color: var(--navy); }

.hero {
    position: relative;
    min-height: 860px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
    color: var(--white);
}
.hero__media,
.hero__overlay {
    position: absolute;
    inset: 0;
}
.hero__media {
    background-image: url("https://static.wixstatic.com/media/3989c0_803c40772a8347e8badb44d2573642c7~mv2.jpeg/v1/fill/w_484%2Ch_363%2Cq_90%2Cenc_avif%2Cquality_auto/3989c0_803c40772a8347e8badb44d2573642c7~mv2.jpeg");
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
}
.hero__overlay {
    background:
        linear-gradient(90deg, rgba(4,15,28,.97) 0%, rgba(4,15,28,.91) 42%, rgba(4,15,28,.34) 72%, rgba(4,15,28,.62) 100%),
        linear-gradient(180deg, rgba(4,15,28,.46), transparent 45%, rgba(4,15,28,.64));
}
.hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 80px;
    align-items: end;
    padding-top: 155px;
    padding-bottom: 130px;
}
.hero__copy { max-width: 780px; }
.eyebrow {
    margin: 0 0 22px;
    display: flex;
    align-items: center;
    gap: 11px;
    color: rgba(255,255,255,.72);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .19em;
    text-transform: uppercase;
}
.eyebrow span { width: 34px; height: 2px; background: var(--red); }
.eyebrow--dark { color: var(--muted); }
.hero h1,
.section-heading h2,
.performance-copy h2,
.estimate-copy h2,
.page-header h1,
.not-found h1 {
    margin: 0;
    font-family: var(--display);
    line-height: .89;
    letter-spacing: -.025em;
    text-transform: uppercase;
}
.hero h1 { font-size: clamp(74px, 9vw, 136px); }
.hero h1 em,
.section-heading h2 em,
.estimate-copy h2 em {
    color: var(--red);
    font-style: normal;
}
.hero__lead {
    max-width: 640px;
    margin: 30px 0 0;
    color: rgba(255,255,255,.78);
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.55;
}
.hero__actions { margin-top: 38px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-card {
    align-self: end;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(5,20,36,.77);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
}
.scoreboard-label {
    padding: 14px 18px;
    background: var(--red);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.hero-card__row {
    display: grid;
    grid-template-columns: 62px 1fr;
    align-items: center;
    gap: 14px;
    padding: 20px 19px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.hero-card__row strong {
    color: var(--red);
    font-family: var(--display);
    font-size: 33px;
    letter-spacing: .05em;
}
.hero-card__row span { font-size: 13px; font-weight: 850; line-height: 1.3; text-transform: uppercase; letter-spacing: .055em; }
.hero-card > a {
    display: flex;
    justify-content: space-between;
    padding: 18px 19px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.hero-card > a:hover { background: rgba(255,255,255,.08); }
.hero__bottom {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: 0;
    border-top: 1px solid rgba(255,255,255,.18);
    background: rgba(5,19,34,.72);
}
.hero__bottom-inner {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: rgba(255,255,255,.65);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .18em;
}
.hero__bottom i { width: 5px; height: 5px; background: var(--red); transform: rotate(45deg); }

.section { padding: 120px 0; }
.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, .7fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 58px;
}
.section-heading h2,
.performance-copy h2,
.estimate-copy h2 { font-size: clamp(52px, 7vw, 88px); }
.section-heading > p {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 17px;
}
.services-section { background: var(--cream); overflow: hidden; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}
.service-card {
    position: relative;
    grid-column: span 4;
    min-height: 510px;
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(6,18,30,.07);
    transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:nth-child(4),
.service-card:nth-child(5),
.service-card:nth-child(6),
.service-card:nth-child(7) { grid-column: span 3; min-height: 455px; }
.service-card:hover { transform: translateY(-7px); box-shadow: 0 24px 55px rgba(6,18,30,.14); }
.service-card__image { height: 252px; overflow: hidden; background: #dfe6db; }
.service-card:nth-child(n+4) .service-card__image { height: 205px; }
.service-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.service-card:hover img { transform: scale(1.055); }
.service-card__body { position: relative; padding: 28px 27px 30px; }
.service-number {
    position: absolute;
    right: 24px;
    top: -31px;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    background: var(--red);
    color: var(--white);
    font-family: var(--display);
    font-size: 25px;
}
.service-card h3 { margin: 0; max-width: 80%; font-size: 21px; line-height: 1.15; text-transform: uppercase; }
.service-card p { margin: 15px 0 23px; color: var(--muted); font-size: 14px; }
.service-card a { display: inline-flex; gap: 10px; color: var(--red); font-size: 11px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }

.performance-section { background: var(--navy); color: var(--white); }
.performance-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: 90px; align-items: center; }
.performance-media { position: relative; min-height: 670px; }
.performance-media::before {
    content: "";
    position: absolute;
    inset: -18px 18px 18px -18px;
    border: 1px solid rgba(255,255,255,.16);
}
.performance-media img { position: relative; z-index: 1; width: 100%; height: 670px; object-fit: cover; }
.performance-stamp {
    position: absolute;
    z-index: 2;
    right: -28px;
    bottom: 55px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 8px solid var(--navy);
    box-shadow: 0 0 0 1px rgba(255,255,255,.3);
    transform: rotate(-8deg);
}
.performance-stamp strong { font-family: var(--display); font-size: 42px; line-height: .8; }
.performance-stamp span { margin-top: 10px; font-size: 10px; font-weight: 900; letter-spacing: .12em; line-height: 1.2; }
.performance-copy h2 { max-width: 720px; }
.performance-copy .lead { margin: 28px 0 10px; color: var(--red); font-size: 21px; font-weight: 850; }
.performance-copy > p:not(.eyebrow):not(.lead) { color: rgba(255,255,255,.68); font-size: 17px; }
.performance-points { margin: 34px 0 34px; border-top: 1px solid rgba(255,255,255,.14); }
.performance-points > div { display: grid; grid-template-columns: 46px 1fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.performance-points b { color: var(--red); font-family: var(--display); font-size: 25px; }
.performance-points span { color: rgba(255,255,255,.66); font-size: 14px; }
.performance-points strong { display: block; margin-bottom: 3px; color: var(--white); text-transform: uppercase; letter-spacing: .04em; }
.text-link { display: inline-flex; gap: 14px; padding-bottom: 7px; border-bottom: 2px solid var(--red); font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }

.work-section { background: #061422; color: var(--white); overflow: hidden; }
.section-heading--light > p { color: rgba(255,255,255,.6); }
.project-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; gap: 10px; }
.project-card {
    position: relative;
    padding: 0;
    border: 0;
    overflow: hidden;
    background: var(--navy-2);
}
.project-card:nth-child(1),
.project-card:nth-child(6) { grid-column: span 2; }
.project-card:nth-child(4) { grid-row: span 2; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease, filter .4s ease; }
.project-card::after {
    content: "+";
    position: absolute;
    inset: 14px 14px auto auto;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    color: var(--navy);
    font-size: 25px;
    opacity: 0;
    transform: scale(.75);
    transition: .25s ease;
}
.project-card > span {
    position: absolute;
    left: 16px;
    bottom: 12px;
    color: var(--white);
    font-family: var(--display);
    font-size: 28px;
    text-shadow: 0 2px 10px rgba(0,0,0,.6);
}
.project-card:hover img { transform: scale(1.06); filter: brightness(.8); }
.project-card:hover::after { opacity: 1; transform: scale(1); }
.work-cta { margin-top: 32px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.work-cta p { margin: 0; color: rgba(255,255,255,.68); font-size: 20px; }

.process-section { position: relative; background: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; }
.process-line { height: 1px; margin: 0 0 -17px; background: var(--line); }
.process-step { position: relative; padding-top: 54px; }
.process-step::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 14px;
    height: 14px;
    border: 4px solid var(--white);
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 1px var(--red);
}
.process-step span { font-family: var(--display); font-size: 50px; color: rgba(8,26,46,.12); }
.process-step h3 { margin: 6px 0 12px; font-size: 18px; text-transform: uppercase; }
.process-step p { margin: 0; color: var(--muted); font-size: 14px; }

.testimonial-section { padding: 90px 0; background: var(--red); color: var(--white); }
.testimonial-grid { display: grid; grid-template-columns: 130px 1fr 240px; gap: 55px; align-items: center; }
.testimonial-mark { font-family: Georgia, serif; font-size: 180px; line-height: .5; opacity: .28; }
.testimonial-grid blockquote { margin: 0; }
.testimonial-grid blockquote p { margin: 0; max-width: 780px; font-size: clamp(25px, 3vw, 38px); font-weight: 750; line-height: 1.25; letter-spacing: -.025em; }
.testimonial-grid blockquote footer { margin-top: 24px; display: flex; align-items: center; gap: 15px; }
.testimonial-grid blockquote footer span { color: rgba(255,255,255,.68); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.testimonial-rating { padding: 24px; border: 1px solid rgba(255,255,255,.3); text-align: center; }
.testimonial-rating span { display: block; letter-spacing: .14em; font-size: 18px; }
.testimonial-rating small { display: block; margin-top: 10px; font-size: 9px; font-weight: 900; letter-spacing: .14em; }

.estimate-section { position: relative; overflow: hidden; background: var(--navy); color: var(--white); }
.estimate-background {
    position: absolute;
    inset: 0;
    opacity: .16;
    background-image:
        linear-gradient(90deg, rgba(8,26,46,.2), rgba(8,26,46,.95)),
        url("https://static.wixstatic.com/media/3989c0_1a5da3aef2d54cfc87803c94ca7a478b~mv2.png/v1/fill/w_490%2Ch_490%2Cal_c%2Cq_85%2Cusm_0.66_1.00_0.01%2Cenc_avif%2Cquality_auto/3989c0_1a5da3aef2d54cfc87803c94ca7a478b~mv2.png");
    background-position: center;
    background-size: cover;
}
.estimate-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,.8fr) minmax(440px,1.2fr); gap: 90px; align-items: center; padding-top: 120px; padding-bottom: 120px; }
.estimate-copy > p:not(.eyebrow) { max-width: 560px; color: rgba(255,255,255,.7); font-size: 17px; }
.estimate-contact { margin-top: 38px; display: grid; gap: 15px; }
.estimate-contact a { display: block; }
.estimate-contact small { display: block; color: var(--red); font-size: 10px; font-weight: 900; letter-spacing: .15em; }
.estimate-contact strong { font-size: clamp(18px, 2vw, 27px); }
.estimate-form-wrap { padding: 42px; background: rgba(255,255,255,.98); color: var(--ink); box-shadow: 0 35px 90px rgba(0,0,0,.32); }
.estimate-form { display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.estimate-form label { display: grid; gap: 8px; font-size: 10px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.estimate-form input,
.estimate-form select,
.estimate-form textarea {
    width: 100%;
    border: 1px solid #d5dbe0;
    border-radius: 0;
    background: #f8f9fa;
    color: var(--ink);
    padding: 14px 15px;
    outline: 0;
    text-transform: none;
    letter-spacing: normal;
}
.estimate-form input:focus,
.estimate-form select:focus,
.estimate-form textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(215,38,61,.12); }
.estimate-form textarea { resize: vertical; min-height: 135px; }
.button--submit { width: 100%; border: 0; }
.form-fineprint { margin: -4px 0 0; color: var(--muted); font-size: 11px; text-align: center; }
.form-notice { margin-bottom: 20px; padding: 13px 15px; border-left: 4px solid var(--red); background: #fff1f3; color: #7f1423; font-size: 13px; }
.form-notice--success { border-left-color: var(--green); background: #edf7ea; color: #245121; }

.site-footer { background: #030d17; color: rgba(255,255,255,.68); }
.site-footer__grid { display: grid; grid-template-columns: 1.45fr .8fr 1fr 1.1fr; gap: 65px; padding-top: 74px; padding-bottom: 58px; }
.brand--footer { color: var(--white); }
.footer-brand p { max-width: 340px; margin: 24px 0 0; font-size: 14px; }
.footer-heading { margin: 3px 0 20px; color: var(--white); font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li + li { margin-top: 11px; }
.footer-links a:hover { color: var(--white); }
.footer-cta .button { width: 100%; margin-top: 8px; }
.site-footer__bottom { min-height: 64px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,.12); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.mobile-action-bar { display: none; }

.lightbox {
    position: fixed;
    z-index: 10000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 40px;
    background: rgba(1,8,14,.94);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(1200px, 92vw); max-height: 86vh; object-fit: contain; box-shadow: 0 30px 100px rgba(0,0,0,.55); }
.lightbox__close { position: fixed; top: 20px; right: 24px; width: 54px; height: 54px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: transparent; color: var(--white); font-size: 34px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.services-grid .reveal:nth-child(2),
.project-grid .reveal:nth-child(2),
.process-grid .reveal:nth-child(2) { transition-delay: .08s; }
.services-grid .reveal:nth-child(3),
.project-grid .reveal:nth-child(3),
.process-grid .reveal:nth-child(3) { transition-delay: .16s; }
.services-grid .reveal:nth-child(4),
.project-grid .reveal:nth-child(4),
.process-grid .reveal:nth-child(4) { transition-delay: .24s; }

.content-area { min-height: 65vh; padding: 180px 0 100px; background: var(--cream); }
.content-shell--narrow { max-width: 900px; }
.page-header { margin-bottom: 45px; }
.page-header h1 { font-size: clamp(54px, 8vw, 92px); color: var(--navy); }
.page-featured { margin-bottom: 36px; }
.page-featured img { width: 100%; height: auto; }
.entry-content { padding: 38px; background: var(--white); box-shadow: 0 20px 60px rgba(6,18,30,.08); }
.entry-content h2, .entry-content h3 { line-height: 1.2; color: var(--navy); }
.entry-content a { color: var(--red); text-decoration: underline; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { background: var(--white); box-shadow: 0 15px 45px rgba(6,18,30,.08); }
.post-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.post-card__body { padding: 24px; }
.post-card h2 { line-height: 1.2; }
.post-meta { color: var(--red); font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.not-found { min-height: 80vh; display: grid; place-items: center; padding: 150px 0 90px; background: var(--cream); text-align: center; }
.not-found__number { margin: 0; color: var(--red); font-family: var(--display); font-size: clamp(120px, 25vw, 300px); line-height: .7; opacity: .15; }
.not-found h1 { margin-top: -20px; font-size: clamp(48px, 7vw, 82px); color: var(--navy); }
.not-found p:not(.not-found__number) { color: var(--muted); }

@media (max-width: 1080px) {
    .site-nav__list { gap: 18px; }
    .site-nav a { font-size: 10px; }
    .button--header { display: none; }
    .hero__content { grid-template-columns: 1fr 285px; gap: 35px; }
    .service-card { grid-column: span 6; }
    .service-card:nth-child(n+4) { grid-column: span 6; }
    .service-card:last-child { grid-column: 4 / span 6; }
    .performance-grid { gap: 55px; }
    .performance-media, .performance-media img { min-height: 580px; height: 580px; }
    .project-grid { grid-template-columns: repeat(3, 1fr); }
    .project-card:nth-child(1), .project-card:nth-child(6) { grid-column: span 1; }
    .project-card:nth-child(4) { grid-row: span 1; }
    .testimonial-grid { grid-template-columns: 90px 1fr; }
    .testimonial-rating { grid-column: 2; width: 260px; }
    .estimate-grid { gap: 50px; }
    .site-footer__grid { grid-template-columns: 1.3fr 1fr 1fr; }
    .footer-cta { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,.12); }
    .footer-cta .button { width: auto; }
}

@media (max-width: 820px) {
    :root { --shell: min(100% - 28px, 680px); }
    .announcement-bar__inner { justify-content: flex-start; white-space: nowrap; overflow: hidden; }
    .announcement-bar a { display: none; }
    .site-header__inner { min-height: 76px; }
    .brand { min-width: 0; }
    .brand__mark { width: 52px; height: 39px; }
    .brand__text strong { font-size: 20px; }
    .brand__text small { font-size: 8px; }
    .nav-toggle {
        display: grid;
        gap: 5px;
        margin-left: auto;
        width: 46px;
        height: 46px;
        place-content: center;
        border: 1px solid rgba(255,255,255,.35);
        background: transparent;
    }
    .site-header.is-scrolled .nav-toggle { border-color: rgba(8,26,46,.2); }
    .nav-toggle span:not(.screen-reader-text) { width: 22px; height: 2px; background: currentColor; }
    .site-nav {
        position: fixed;
        inset: 0;
        z-index: -1;
        display: grid;
        place-items: center;
        margin: 0;
        background: var(--navy);
        color: var(--white);
        opacity: 0;
        visibility: hidden;
        transition: .25s ease;
    }
    .site-nav.is-open { z-index: -1; opacity: 1; visibility: visible; }
    .site-nav__list { flex-direction: column; gap: 26px; }
    .site-nav a { font-family: var(--display); font-size: 34px; }
    .hero { min-height: 900px; }
    .hero__media { background-position: 62% center; }
    .hero__overlay { background: linear-gradient(90deg, rgba(4,15,28,.97), rgba(4,15,28,.72)); }
    .hero__content { grid-template-columns: 1fr; align-items: center; gap: 45px; padding-top: 130px; padding-bottom: 115px; }
    .hero h1 { font-size: clamp(64px, 17vw, 105px); }
    .hero-card { max-width: 440px; }
    .hero__bottom-inner { justify-content: center; }
    .hero__bottom-inner span:nth-of-type(n+3),
    .hero__bottom-inner i:nth-of-type(n+2) { display: none; }
    .section { padding: 86px 0; }
    .section-heading { grid-template-columns: 1fr; gap: 25px; margin-bottom: 42px; }
    .section-heading h2, .performance-copy h2, .estimate-copy h2 { font-size: clamp(50px, 13vw, 78px); }
    .service-card, .service-card:nth-child(n+4), .service-card:last-child { grid-column: span 12; min-height: 0; }
    .service-card__image, .service-card:nth-child(n+4) .service-card__image { height: 300px; }
    .performance-grid { grid-template-columns: 1fr; }
    .performance-media, .performance-media img { min-height: 500px; height: 500px; }
    .performance-stamp { right: 5px; bottom: -40px; }
    .performance-copy { margin-top: 25px; }
    .project-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
    .process-line { display: none; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-step { padding-top: 20px; }
    .process-step::before { display: none; }
    .testimonial-grid { grid-template-columns: 1fr; gap: 26px; }
    .testimonial-mark { display: none; }
    .testimonial-rating { grid-column: auto; }
    .estimate-grid { grid-template-columns: 1fr; padding-top: 85px; padding-bottom: 85px; }
    .estimate-form-wrap { padding: 30px; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
    .footer-brand, .footer-cta { grid-column: 1 / -1; }
    .post-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
    body { padding-bottom: 64px; }
    .announcement-bar { font-size: 9px; }
    .announcement-dot { flex: 0 0 auto; }
    .brand__text strong { font-size: 17px; }
    .brand__text small { letter-spacing: .19em; }
    .hero { min-height: 850px; }
    .hero__content { padding-top: 112px; }
    .hero h1 { font-size: clamp(58px, 18.5vw, 86px); }
    .hero__lead { font-size: 16px; }
    .hero__actions { display: grid; }
    .hero__actions .button { width: 100%; }
    .hero-card { display: none; }
    .hero__bottom { display: none; }
    .section { padding: 70px 0; }
    .section-heading h2, .performance-copy h2, .estimate-copy h2 { font-size: 47px; }
    .service-card__image, .service-card:nth-child(n+4) .service-card__image { height: 235px; }
    .performance-media, .performance-media img { min-height: 390px; height: 390px; }
    .performance-stamp { width: 125px; height: 125px; right: -2px; bottom: -30px; }
    .performance-stamp strong { font-size: 34px; }
    .project-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; }
    .work-cta { align-items: stretch; flex-direction: column; }
    .work-cta .button { width: 100%; }
    .process-grid { grid-template-columns: 1fr; gap: 20px; }
    .process-step { padding: 23px; background: var(--cream); }
    .testimonial-section { padding: 65px 0; }
    .testimonial-grid blockquote p { font-size: 25px; }
    .estimate-grid { gap: 45px; }
    .estimate-contact strong { font-size: 17px; overflow-wrap: anywhere; }
    .estimate-form-wrap { padding: 22px 18px; margin-inline: -4px; }
    .form-row { grid-template-columns: 1fr; }
    .site-footer__grid { grid-template-columns: 1fr; gap: 38px; }
    .footer-brand, .footer-cta { grid-column: auto; }
    .footer-cta { display: block; }
    .footer-cta .button { width: 100%; }
    .site-footer__bottom { flex-direction: column; justify-content: center; gap: 4px; text-align: center; }
    .mobile-action-bar {
        position: fixed;
        z-index: 9999;
        left: 0;
        right: 0;
        bottom: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 64px;
        color: var(--white);
        box-shadow: 0 -10px 30px rgba(0,0,0,.25);
    }
    .mobile-action-bar a { display: flex; align-items: center; justify-content: center; gap: 9px; background: var(--navy); font-size: 12px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
    .mobile-action-bar a:last-child { background: var(--red); }
    .content-area { padding-top: 130px; }
    .entry-content { padding: 24px 18px; }
    .post-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
