:root {
    --black: #111111;
    --black-soft: #1b1b1b;
    --charcoal: #242424;
    --charcoal-light: #343434;
    --yellow: #ffc400;
    --yellow-dark: #e6ae00;
    --white: #ffffff;
    --off-white: #f7f7f4;
    --gray-100: #eeeeea;
    --gray-300: #c8c8c2;
    --gray-500: #7a7a73;
    --text: #232323;
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.13);
    --container: 1180px;
    --header-height: 88px;
    --transition: 260ms cubic-bezier(.2, .7, .2, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

::selection {
    color: var(--black);
    background: var(--yellow);
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

svg {
    width: 1.25em;
    height: 1.25em;
    flex: 0 0 auto;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: inherit;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

h1 {
    font-size: clamp(3rem, 7vw, 6.6rem);
}

h2 {
    font-size: clamp(2.2rem, 4.7vw, 4.35rem);
}

h3 {
    font-size: 1.35rem;
}

p:last-child {
    margin-bottom: 0;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}

.section {
    position: relative;
    padding: clamp(80px, 10vw, 140px) 0;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    color: var(--black);
    background: var(--yellow);
    border-radius: 8px;
    transform: translateY(-150%);
    transition: transform var(--transition);
}

.skip-link:focus {
    transform: translateY(0);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--yellow-dark);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .16em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 34px;
    height: 2px;
    content: "";
    background: currentColor;
}

.eyebrow.light {
    color: var(--yellow);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: .92rem;
    font-weight: 800;
    line-height: 1;
    transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--black);
    background: var(--yellow);
    box-shadow: 0 12px 30px rgba(255, 196, 0, .22);
}

.button-primary:hover {
    background: #ffd028;
    box-shadow: 0 16px 34px rgba(255, 196, 0, .32);
}

.button-dark {
    color: var(--white);
    background: var(--black);
}

.button-dark:hover {
    color: var(--yellow);
    background: #000;
}

.button-ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, .42);
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(8px);
}

.button-ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, .13);
}

.button-small {
    min-height: 44px;
    padding: 12px 18px;
    font-size: .82rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 12px;
    color: var(--black);
    font-weight: 800;
}

.text-link svg {
    transition: transform var(--transition);
}

.text-link:hover svg {
    transform: translateX(5px);
}

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    color: var(--white);
    transition: height var(--transition), background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-header.is-scrolled {
    height: 74px;
    background: rgba(17, 17, 17, .94);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .18);
    backdrop-filter: blur(14px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img {
    width: 220px;
    height: auto;
    object-fit: contain;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: .88rem;
    font-weight: 700;
}

.primary-nav > a:not(.button) {
    position: relative;
    padding: 12px 0;
}

.primary-nav > a:not(.button)::after {
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
}

.primary-nav > a:hover::after,
.primary-nav > a.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
}

.nav-icon {
    display: grid;
    place-items: center;
}

.nav-icon-close {
    display: none;
}

.nav-toggle[aria-expanded="true"] .nav-icon-open {
    display: none;
}

.nav-toggle[aria-expanded="true"] .nav-icon-close {
    display: grid;
}

.hero {
    position: relative;
    min-height: 810px;
    color: var(--white);
    background: var(--black);
    overflow: hidden;
}

.hero-slides,
.hero-slide,
.hero-overlay,
.hero-pattern {
    position: absolute;
    inset: 0;
}

.hero-slide {
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.6s ease, transform 7s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(8, 8, 8, .94) 0%, rgba(8, 8, 8, .72) 46%, rgba(8, 8, 8, .34) 75%, rgba(8, 8, 8, .56) 100%),
        linear-gradient(0deg, rgba(8, 8, 8, .62) 0%, transparent 48%);
}

.hero-pattern {
    z-index: 2;
    opacity: .19;
    background-image: repeating-linear-gradient(135deg, transparent 0 13px, rgba(255,255,255,.09) 13px 14px);
    mask-image: linear-gradient(90deg, #000 0%, transparent 72%);
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    align-items: end;
    gap: 80px;
    min-height: 810px;
    padding-top: 170px;
    padding-bottom: 120px;
}

.hero-copy {
    max-width: 850px;
}

.hero-copy h1 {
    max-width: 850px;
    margin-bottom: 28px;
}

.hero-lead {
    max-width: 690px;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-contact-card {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius-md);
    background: rgba(17, 17, 17, .54);
    box-shadow: var(--shadow);
    backdrop-filter: blur(15px);
}

.hero-contact-label {
    display: block;
    margin-bottom: 14px;
    color: var(--yellow);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero-contact-card a {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 1.28rem;
    font-weight: 800;
}

.hero-contact-card a svg {
    color: var(--yellow);
}

.hero-contact-card small {
    color: rgba(255,255,255,.62);
}

.hero-scroll {
    position: absolute;
    z-index: 4;
    bottom: 30px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,.6);
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.hero-scroll i {
    display: block;
    width: 58px;
    height: 1px;
    background: rgba(255,255,255,.42);
}

.trust-strip {
    position: relative;
    z-index: 5;
    margin-top: -34px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    color: var(--white);
    border-radius: var(--radius-md);
    background: var(--charcoal);
    box-shadow: var(--shadow);
}

.trust-grid > div {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 118px;
    padding: 28px 34px;
    border-right: 1px solid rgba(255,255,255,.1);
}

.trust-grid > div:last-child {
    border-right: 0;
}

.trust-grid svg {
    width: 32px;
    height: 32px;
    color: var(--yellow);
}

.trust-grid span {
    color: rgba(255,255,255,.62);
    font-size: .83rem;
    line-height: 1.4;
}

.trust-grid strong {
    display: block;
    margin-bottom: 3px;
    color: var(--white);
    font-size: 1rem;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(55px, 8vw, 105px);
}

.content-block h2 {
    margin-bottom: 30px;
}

.content-block > p:not(.eyebrow) {
    color: #66665f;
}

.image-composition {
    position: relative;
    min-height: 620px;
}

.image-main {
    width: 80%;
    height: 560px;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.image-main img,
.image-float img,
.story-image img,
.angled-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-float {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 52%;
    height: 300px;
    margin: 0;
    overflow: hidden;
    border: 10px solid var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

.experience-badge {
    position: absolute;
    top: 35px;
    right: 8px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    color: var(--black);
    border-radius: 14px;
    background: var(--yellow);
    box-shadow: 0 16px 35px rgba(0,0,0,.18);
    font-size: .8rem;
    font-weight: 800;
    line-height: 1.35;
    transform: rotate(2deg);
}

.experience-badge svg {
    width: 28px;
    height: 28px;
}

.check-list {
    display: grid;
    gap: 14px;
    margin: 28px 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.check-list svg {
    width: 23px;
    height: 23px;
    padding: 4px;
    color: var(--black);
    border-radius: 50%;
    background: var(--yellow);
}

.services-section {
    background: var(--off-white);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(300px, .7fr);
    align-items: end;
    gap: 80px;
    margin-bottom: 58px;
}

.section-heading h2 {
    max-width: 800px;
    margin-bottom: 0;
}

.section-heading > p {
    margin-bottom: 5px;
    color: #686861;
}

.section-heading.centered {
    display: block;
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading.centered .eyebrow {
    justify-content: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    position: relative;
    min-height: 440px;
    overflow: hidden;
    color: var(--white);
    border-radius: var(--radius-md);
    background: var(--black);
    box-shadow: 0 16px 40px rgba(0,0,0,.11);
}

.service-card-wide {
    grid-column: 1 / -1;
    min-height: 360px;
}

.service-card img,
.service-card-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.service-card img {
    object-fit: cover;
    transition: transform 700ms cubic-bezier(.2,.7,.2,1), filter var(--transition);
}

.service-card-overlay {
    z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,.04) 20%, rgba(0,0,0,.92) 100%);
    transition: background var(--transition);
}

.service-card-content {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 30px;
}

.service-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: var(--black);
    border-radius: 50%;
    background: var(--yellow);
    place-items: center;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.55rem;
}

.service-card p {
    max-width: 420px;
    margin-bottom: 0;
    color: rgba(255,255,255,.68);
    font-size: .9rem;
}

.service-card:hover img {
    filter: saturate(.92) contrast(1.04);
    transform: scale(1.06);
}

.service-card:hover .service-card-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,.08) 12%, rgba(0,0,0,.95) 100%);
}

.video-section {
    position: relative;
    display: grid;
    min-height: 710px;
    color: var(--white);
    background: var(--black);
    place-items: center;
    overflow: hidden;
}

.video-section video,
.video-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video-section video {
    object-fit: cover;
}

.video-overlay {
    z-index: 1;
    background: linear-gradient(90deg, rgba(8,8,8,.9), rgba(8,8,8,.52)), linear-gradient(0deg, rgba(8,8,8,.5), transparent);
}

.video-content {
    position: relative;
    z-index: 2;
    margin-block: 110px;
}

.video-content h2 {
    max-width: 760px;
    margin-bottom: 24px;
}

.video-content > p:not(.eyebrow) {
    max-width: 650px;
    margin-bottom: 32px;
    color: rgba(255,255,255,.72);
    font-size: 1.08rem;
}

.round-icon {
    display: grid;
    width: 64px;
    height: 64px;
    margin-bottom: 36px;
    color: var(--black);
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 0 12px rgba(255,196,0,.16);
    place-items: center;
}

.round-icon svg {
    width: 28px;
    height: 28px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.process-card {
    position: relative;
    min-height: 330px;
    padding: 38px;
    overflow: hidden;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 12px 35px rgba(0,0,0,.05);
}

.process-number {
    position: absolute;
    top: 10px;
    right: 22px;
    color: #efefe9;
    font-size: 5.7rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.08em;
}

.process-icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 56px;
    color: var(--black);
    border-radius: 16px;
    background: var(--yellow);
    place-items: center;
}

.process-icon svg {
    width: 26px;
    height: 26px;
}

.process-card h3 {
    margin-bottom: 14px;
}

.process-card p {
    color: #6d6d66;
    font-size: .92rem;
}

.dark-section {
    color: var(--white);
    background: var(--charcoal);
}

.dark-section::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .12;
    background-image: repeating-linear-gradient(135deg, transparent 0 14px, rgba(255,255,255,.12) 14px 15px);
    mask-image: linear-gradient(90deg, #000, transparent 65%);
    pointer-events: none;
}

.dark-section .container {
    position: relative;
    z-index: 1;
}

.dark-section .content-block > p:not(.eyebrow) {
    color: rgba(255,255,255,.66);
}

.sector-list {
    display: grid;
    gap: 16px;
    margin-top: 34px;
}

.sector-list > div {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    background: rgba(255,255,255,.04);
}

.sector-list svg {
    width: 28px;
    height: 28px;
    color: var(--yellow);
}

.sector-list span {
    color: rgba(255,255,255,.58);
    font-size: .84rem;
    line-height: 1.4;
}

.sector-list strong {
    display: block;
    margin-bottom: 2px;
    color: var(--white);
    font-size: .98rem;
}

.angled-image {
    height: 620px;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    clip-path: polygon(8% 0, 100% 0, 100% 92%, 92% 100%, 0 100%, 0 8%);
}

.cta-section {
    padding-top: 90px;
    padding-bottom: 90px;
}

.cta-panel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: clamp(38px, 6vw, 72px);
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--yellow);
}

.cta-panel::after {
    position: absolute;
    top: -120px;
    right: -80px;
    width: 330px;
    height: 330px;
    content: "";
    border: 62px solid rgba(17,17,17,.08);
    border-radius: 50%;
}

.cta-panel > * {
    position: relative;
    z-index: 1;
}

.cta-panel .eyebrow {
    color: var(--black);
}

.cta-panel h2 {
    max-width: 720px;
    margin-bottom: 14px;
    font-size: clamp(2rem, 4vw, 3.6rem);
}

.cta-panel p:not(.eyebrow) {
    max-width: 620px;
    color: rgba(17,17,17,.68);
}

.cta-actions {
    display: grid;
    min-width: 280px;
    gap: 18px;
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
}

.cta-phone svg {
    width: 30px;
    height: 30px;
}

.cta-phone small {
    display: block;
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .62;
}

.page-hero {
    position: relative;
    display: flex;
    min-height: 620px;
    padding-top: var(--header-height);
    color: var(--white);
    background-image: var(--page-hero-image);
    background-position: center;
    background-size: cover;
    align-items: flex-end;
}

.page-hero.compact {
    min-height: 520px;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8,8,8,.9), rgba(8,8,8,.48)), linear-gradient(0deg, rgba(8,8,8,.62), transparent 65%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 890px;
    padding-top: 120px;
    padding-bottom: 90px;
}

.page-hero h1 {
    margin-bottom: 22px;
    font-size: clamp(3.1rem, 6.5vw, 6rem);
}

.page-hero-content > p:not(.eyebrow) {
    max-width: 690px;
    margin-bottom: 0;
    color: rgba(255,255,255,.72);
    font-size: 1.12rem;
}

.story-image {
    position: relative;
    height: 650px;
    margin: 0;
}

.story-image img {
    border-radius: var(--radius-lg);
}

.story-image figcaption {
    position: absolute;
    right: -20px;
    bottom: 40px;
    padding: 18px 22px;
    color: var(--black);
    border-radius: 12px;
    background: var(--yellow);
    font-size: .85rem;
    font-weight: 800;
    transform: rotate(-2deg);
}

.values-section {
    background: var(--off-white);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    padding: 34px;
    border: 1px solid #e6e6e0;
    border-radius: var(--radius-md);
    background: var(--white);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.value-card:hover {
    border-color: rgba(255,196,0,.8);
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
    transform: translateY(-6px);
}

.value-card > span {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 38px;
    color: var(--black);
    border-radius: 16px;
    background: var(--yellow);
    place-items: center;
}

.value-card > span svg {
    width: 27px;
    height: 27px;
}

.value-card p {
    color: #6b6b64;
    font-size: .9rem;
}

.number-list {
    display: grid;
    gap: 22px;
    margin: 36px 0 0;
    padding: 0;
    list-style: none;
}

.number-list li {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
}

.number-list li > span {
    color: var(--yellow);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
}

.number-list strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.06rem;
}

.number-list p {
    color: rgba(255,255,255,.58);
    font-size: .88rem;
}

.coverage-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.coverage-panel {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    align-items: center;
    gap: 34px;
    padding: 42px;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    background: var(--off-white);
}

.coverage-icon {
    display: grid;
    width: 82px;
    height: 82px;
    color: var(--black);
    border-radius: 24px;
    background: var(--yellow);
    place-items: center;
}

.coverage-icon svg {
    width: 34px;
    height: 34px;
}

.coverage-panel h2 {
    margin-bottom: 12px;
    font-size: clamp(1.9rem, 3.5vw, 3rem);
}

.coverage-panel p:not(.eyebrow) {
    max-width: 720px;
    color: #6b6b64;
}

.contact-cards-section {
    position: relative;
    z-index: 3;
    margin-top: -46px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 120px;
    padding: 24px;
    border: 1px solid #ecece7;
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: transform var(--transition), border-color var(--transition);
}

.contact-card:hover {
    border-color: var(--yellow);
    transform: translateY(-4px);
}

.contact-card > span {
    display: grid;
    width: 48px;
    height: 48px;
    color: var(--black);
    border-radius: 14px;
    background: var(--yellow);
    place-items: center;
}

.contact-card > svg {
    margin-left: auto;
}

.contact-card small,
.contact-card strong {
    display: block;
}

.contact-card small {
    margin-bottom: 4px;
    color: #76766f;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-card strong {
    overflow-wrap: anywhere;
    font-size: .93rem;
    line-height: 1.35;
}

.contact-layout {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: clamp(50px, 8vw, 100px);
    align-items: start;
}

.contact-intro h2 {
    margin-bottom: 26px;
}

.contact-intro > p:not(.eyebrow) {
    color: #66665f;
}

.contact-notes {
    display: grid;
    gap: 16px;
    margin-top: 38px;
}

.contact-notes > div {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-100);
}

.contact-notes svg {
    width: 24px;
    height: 24px;
    color: var(--yellow-dark);
}

.contact-notes span {
    color: #72726b;
    font-size: .86rem;
}

.contact-notes strong {
    display: block;
    margin-bottom: 2px;
    color: var(--text);
    font-size: .97rem;
}

.form-panel {
    padding: clamp(28px, 5vw, 52px);
    border-radius: var(--radius-lg);
    background: var(--off-white);
    box-shadow: 0 20px 55px rgba(0,0,0,.07);
}

.quote-form {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.field {
    display: grid;
    gap: 8px;
}

.field label {
    font-size: .78rem;
    font-weight: 800;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    color: var(--text);
    border: 1px solid #dcdcd5;
    border-radius: 12px;
    outline: 0;
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.field input,
.field select {
    height: 54px;
    padding: 0 16px;
}

.field textarea {
    min-height: 150px;
    padding: 14px 16px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--yellow-dark);
    box-shadow: 0 0 0 4px rgba(255,196,0,.15);
}

.field .field-error {
    border-color: #c9362d;
    box-shadow: 0 0 0 4px rgba(201,54,45,.1);
}

.button-submit {
    justify-self: start;
    border: 0;
}

.form-privacy {
    margin-bottom: 0;
    color: #7b7b74;
    font-size: .72rem;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.form-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
    padding: 16px;
    border-radius: 12px;
    font-size: .88rem;
}

.form-alert.success {
    color: #1e6037;
    border: 1px solid #bfe0c9;
    background: #eef8f1;
}

.form-alert.error {
    color: #8f2922;
    border: 1px solid #ebc0bc;
    background: #fff1ef;
}

.form-alert p {
    margin: 0;
}

.contact-faq {
    background: var(--off-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.faq-card {
    padding: 32px;
    border-radius: var(--radius-md);
    background: var(--white);
}

.faq-card p {
    color: #6b6b64;
    font-size: .9rem;
}

.site-footer {
    color: rgba(255,255,255,.67);
    background: #151515;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .65fr .95fr 1.2fr;
    gap: 60px;
    padding-top: 80px;
    padding-bottom: 58px;
}

.footer-logo img {
    width: 210px;
    margin-bottom: 24px;
}

.footer-brand p {
    max-width: 340px;
    font-size: .87rem;
}

.footer-tagline {
    color: var(--yellow);
    font-weight: 700;
}

.footer-heading {
    margin-bottom: 24px;
    color: var(--white);
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-links,
.footer-contact {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: .86rem;
}

.footer-links a,
.footer-contact a {
    transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--yellow);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    overflow-wrap: anywhere;
}

.footer-contact svg {
    margin-top: 4px;
    color: var(--yellow);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 24px;
    padding-bottom: 24px;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: .76rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 800;
}

.back-to-top {
    position: fixed;
    z-index: 800;
    right: 22px;
    bottom: 22px;
    display: grid;
    width: 46px;
    height: 46px;
    color: var(--black);
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 14px 30px rgba(0,0,0,.2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity var(--transition), transform var(--transition);
    place-items: center;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.error-section {
    display: grid;
    min-height: 82vh;
    padding-top: var(--header-height);
    color: var(--white);
    background: radial-gradient(circle at 70% 30%, #383838, #111 54%);
    place-items: center;
}

.error-content {
    padding: 100px 0;
    text-align: center;
}

.error-content > span {
    display: block;
    margin-bottom: -20px;
    color: rgba(255,255,255,.06);
    font-size: clamp(8rem, 25vw, 19rem);
    font-weight: 900;
    line-height: .7;
}

.error-content h1 {
    margin-bottom: 18px;
    font-size: clamp(2.4rem, 6vw, 5rem);
}

.error-content > p:not(.eyebrow) {
    margin-bottom: 30px;
    color: rgba(255,255,255,.66);
}

.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1);
}

.reveal-up {
    transform: translateY(34px);
}

.reveal-left {
    transform: translateX(-34px);
}

.reveal-right {
    transform: translateX(34px);
}

.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
    opacity: 1;
    transform: translate(0);
}

.delay-1 {
    transition-delay: 90ms;
}

.delay-2 {
    transition-delay: 180ms;
}

.delay-3 {
    transition-delay: 270ms;
}

@media (max-width: 1060px) {
    :root {
        --header-height: 78px;
    }

    .brand img {
        width: 190px;
    }

    .nav-toggle {
        display: grid;
        place-items: center;
    }

    .primary-nav {
        position: fixed;
        top: 0;
        right: 0;
        display: flex;
        width: min(420px, 88vw);
        height: 100dvh;
        padding: 110px 34px 40px;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        color: var(--white);
        background: #171717;
        box-shadow: -30px 0 70px rgba(0,0,0,.28);
        transform: translateX(105%);
        transition: transform var(--transition);
    }

    .primary-nav::before {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 6px;
        content: "";
        background: var(--yellow);
    }

    .primary-nav.is-open {
        transform: translateX(0);
    }

    .primary-nav > a:not(.button) {
        padding: 16px 4px;
        border-bottom: 1px solid rgba(255,255,255,.08);
        font-size: 1.05rem;
    }

    .nav-cta {
        margin-top: 22px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-top: 160px;
    }

    .hero-contact-card {
        max-width: 330px;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card-wide {
        grid-column: span 2;
    }

    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1.3fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .contact-card {
        min-height: 98px;
    }
}

@media (max-width: 820px) {
    .section {
        padding: 90px 0;
    }

    .hero,
    .hero-content {
        min-height: 760px;
    }

    .hero-content {
        padding-bottom: 90px;
    }

    .hero-scroll {
        display: none;
    }

    .trust-strip {
        margin-top: 0;
        background: var(--charcoal);
    }

    .trust-grid {
        grid-template-columns: 1fr;
        border-radius: 0;
        box-shadow: none;
    }

    .trust-grid > div {
        min-height: 92px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .split-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .reverse-mobile .content-block {
        order: 2;
    }

    .reverse-mobile .angled-image {
        order: 1;
    }

    .image-composition {
        min-height: 560px;
    }

    .image-main {
        height: 490px;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .process-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .cta-panel {
        align-items: flex-start;
        flex-direction: column;
    }

    .cta-actions {
        width: 100%;
    }

    .page-hero {
        min-height: 560px;
    }

    .story-image {
        height: 560px;
    }

    .coverage-panel {
        grid-template-columns: 72px 1fr;
    }

    .coverage-icon {
        width: 68px;
        height: 68px;
        border-radius: 18px;
    }

    .coverage-panel .button {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .contact-cards-section {
        margin-top: -24px;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    h1 {
        font-size: clamp(2.65rem, 13vw, 4.5rem);
    }

    h2 {
        font-size: clamp(2rem, 10vw, 3.2rem);
    }

    .site-header,
    .site-header.is-scrolled {
        height: 72px;
    }

    .brand img {
        width: 168px;
    }

    .nav-toggle {
        width: 44px;
        height: 44px;
    }

    .hero,
    .hero-content {
        min-height: 720px;
    }

    .hero-content {
        padding-top: 130px;
        padding-bottom: 70px;
    }

    .hero-copy h1 {
        margin-bottom: 22px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-contact-card {
        display: none;
    }

    .image-composition {
        min-height: 480px;
    }

    .image-main {
        width: 92%;
        height: 400px;
    }

    .image-float {
        width: 58%;
        height: 220px;
        border-width: 7px;
    }

    .experience-badge {
        top: 18px;
        right: 0;
        padding: 13px 15px;
        font-size: .7rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .service-card-wide {
        grid-column: auto;
        min-height: 390px;
    }

    .video-section {
        min-height: 650px;
    }

    .process-card {
        min-height: auto;
    }

    .angled-image {
        height: 450px;
    }

    .value-grid {
        grid-template-columns: 1fr;
    }

    .story-image {
        height: 470px;
    }

    .story-image figcaption {
        right: -4px;
        bottom: 20px;
    }

    .coverage-panel {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .coverage-panel .button {
        grid-column: auto;
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-panel {
        padding: 24px 18px;
    }

    .button-submit {
        width: 100%;
    }

    .contact-card {
        padding: 18px;
    }

    .contact-card > svg:last-child {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-top: 60px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

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

    .reveal-up,
    .reveal-left,
    .reveal-right {
        opacity: 1;
        transform: none;
    }
}
