:root {
    --ink: #073642;
    --ink-deep: #03242e;
    --sea: #0aa6ad;
    --sea-bright: #23c8c0;
    --sky: #b9f1eb;
    --coral: #f26e52;
    --coral-dark: #d9543d;
    --sun: #f7c964;
    --sand: #fff9ec;
    --paper: #fffefa;
    --muted: #59747a;
    --line: rgba(7, 54, 66, .13);
    --white: #fff;
    --shell: 1180px;
    --radius: 30px;
    --shadow: 0 26px 70px rgba(4, 54, 67, .13);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    overflow-x: hidden;
    color: var(--ink);
    background: var(--paper);
    font-family: "Montserrat", Arial, sans-serif;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

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

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

button,
summary { font: inherit; }

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

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 9999;
    padding: 10px 16px;
    color: var(--white);
    background: var(--ink-deep);
    border-radius: 10px;
    transform: translateY(-150%);
}

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

.site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 1000;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, .17);
    background: linear-gradient(to bottom, rgba(1, 30, 38, .63), rgba(1, 30, 38, .08));
}

.site-header.is-scrolled {
    position: fixed;
    background: rgba(3, 36, 46, .94);
    box-shadow: 0 10px 34px rgba(3, 36, 46, .18);
    backdrop-filter: blur(16px);
}

.navigation {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.brand img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, .52);
    border-radius: 15px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .2);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 28px);
    margin-left: auto;
    font-size: 13px;
    font-weight: 800;
}

.nav-links > a:not(.nav-cta) {
    position: relative;
    padding-block: 12px;
}

.nav-links > a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 7px;
    left: 0;
    height: 2px;
    background: var(--sun);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}

.nav-links > a:not(.nav-cta):hover::after,
.nav-links > a:not(.nav-cta):focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    padding: 11px 18px;
    color: var(--ink-deep);
    background: var(--sun);
    border-radius: 999px;
    transition: transform .2s ease, background .2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
    background: #ffe197;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    color: inherit;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 14px;
    cursor: pointer;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 10px;
    transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
    position: relative;
    min-height: 880px;
    display: grid;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background: var(--ink-deep);
}

.hero-media,
.hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-media {
    object-fit: cover;
    object-position: center;
    filter: saturate(1.04) contrast(1.01);
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(2, 28, 36, .91) 0%, rgba(2, 28, 36, .72) 39%, rgba(2, 28, 36, .13) 72%),
        linear-gradient(0deg, rgba(2, 28, 36, .64) 0%, transparent 33%),
        radial-gradient(circle at 78% 25%, transparent 0%, rgba(2, 28, 36, .14) 100%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(290px, .55fr);
    gap: clamp(36px, 6vw, 88px);
    align-items: end;
    padding-top: 148px;
    padding-bottom: 102px;
}

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

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--sea);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
}

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

.kicker-light { color: #9ff1e7; }

.kicker-light::before { background: var(--sun); }

.hero h1,
.section-heading h2,
.production-copy h2,
.reach-intro h2,
.faq-heading h2,
.cta-content h2 {
    font-family: "DM Serif Display", Georgia, serif;
    font-weight: 400;
    line-height: .98;
    letter-spacing: -.03em;
}

.hero h1 {
    max-width: 820px;
    margin-bottom: 26px;
    font-size: clamp(55px, 7.6vw, 102px);
    text-wrap: balance;
}

em {
    color: var(--sun);
    font-weight: 400;
}

.hero-lead {
    max-width: 680px;
    margin-bottom: 29px;
    color: rgba(255, 255, 255, .86);
    font-size: clamp(17px, 1.8vw, 21px);
    line-height: 1.66;
}

.hero-lead strong { color: var(--white); }

.hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-facts > span {
    display: grid;
    gap: 3px;
    min-width: 190px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 16px;
    background: rgba(255, 255, 255, .09);
    backdrop-filter: blur(10px);
}

.hero-facts small {
    color: rgba(255, 255, 255, .64);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero-facts strong { font-size: 14px; }

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.button {
    min-height: 53px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 23px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    text-align: center;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.button:hover,
.button:focus-visible { transform: translateY(-3px); }

.button:focus-visible,
.text-link:focus-visible,
.social-links a:focus-visible {
    outline: 3px solid var(--sun);
    outline-offset: 4px;
}

.button-coral {
    color: var(--white);
    background: linear-gradient(135deg, var(--coral), #ff9772);
    box-shadow: 0 18px 38px rgba(217, 84, 61, .3);
}

.button-coral:hover { box-shadow: 0 23px 48px rgba(217, 84, 61, .42); }

.button-glass {
    color: var(--white);
    background: rgba(255, 255, 255, .11);
    border-color: rgba(255, 255, 255, .32);
    backdrop-filter: blur(10px);
}

.button-glass:hover { background: rgba(255, 255, 255, .18); }

.hero-card {
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(6, 59, 69, .72), rgba(3, 36, 46, .86));
    box-shadow: 0 30px 80px rgba(0, 0, 0, .25);
    backdrop-filter: blur(18px);
}

.hero-card-label {
    color: rgba(255, 255, 255, .72);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.price {
    display: flex;
    align-items: flex-start;
    margin: 8px 0 18px;
    color: var(--sun);
    font-family: "DM Serif Display", Georgia, serif;
    line-height: 1;
}

.price span { font-size: clamp(58px, 6vw, 78px); }
.price sup { margin: 10px 0 0 4px; font-size: 25px; }

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

.check-list li {
    position: relative;
    padding-left: 30px;
    color: var(--muted);
    font-size: 15px;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    top: 1px;
    left: 0;
    width: 21px;
    height: 21px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--sea);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 900;
}

.check-list-compact {
    gap: 9px;
    margin: 0 0 22px;
}

.check-list-compact li {
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
}

.check-list-compact li::before {
    color: var(--ink-deep);
    background: var(--sun);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--sea);
    font-size: 13px;
    font-weight: 900;
}

.text-link span {
    transition: transform .2s ease;
}

.text-link:hover span { transform: translateX(4px); }
.hero-card .text-link { color: var(--sun); }

.scroll-cue {
    position: absolute;
    bottom: 25px;
    left: 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, .72);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.scroll-cue span {
    width: 1px;
    height: 27px;
    background: linear-gradient(var(--sun), transparent);
}

.quick-facts {
    position: relative;
    z-index: 2;
    color: var(--white);
    background: var(--ink-deep);
}

.quick-facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.quick-facts-grid > div {
    min-width: 0;
    padding: 25px clamp(16px, 3vw, 34px);
    border-right: 1px solid rgba(255, 255, 255, .12);
}

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

.quick-facts strong {
    display: block;
    margin-bottom: 1px;
    color: var(--sun);
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 31px;
    font-weight: 400;
}

.quick-facts span {
    color: rgba(255, 255, 255, .68);
    font-size: 11px;
    font-weight: 700;
}

.section { padding: clamp(78px, 9vw, 124px) 0; }

.package-section {
    position: relative;
    background:
        radial-gradient(circle at 90% 12%, rgba(35, 200, 192, .13), transparent 27%),
        linear-gradient(var(--paper), var(--sand));
}

.package-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: -100px;
    width: 330px;
    height: 330px;
    border: 58px solid rgba(242, 110, 82, .06);
    border-radius: 50%;
}

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

.split-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .65fr);
    gap: clamp(32px, 7vw, 90px);
    align-items: end;
    margin-bottom: 48px;
}

.section-heading h2,
.production-copy h2,
.reach-intro h2,
.faq-heading h2,
.cta-content h2 {
    font-size: clamp(42px, 5.8vw, 72px);
}

.section-heading em,
.production-copy em,
.faq-heading em { color: var(--coral); }

.split-heading > p,
.center-heading > p,
.production-copy .large-copy,
.faq-heading > p {
    color: var(--muted);
    font-size: clamp(16px, 1.6vw, 19px);
}

.service-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card {
    position: relative;
    min-height: 280px;
    padding: 29px;
    overflow: hidden;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(7, 54, 66, .1);
    border-radius: 25px;
    box-shadow: 0 18px 50px rgba(7, 54, 66, .07);
    transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.service-number {
    position: absolute;
    top: 23px;
    right: 24px;
    color: rgba(7, 54, 66, .21);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
}

.service-icon {
    width: 51px;
    height: 51px;
    display: grid;
    place-items: center;
    margin-bottom: 29px;
    color: var(--white);
    background: linear-gradient(145deg, var(--sea), var(--sea-bright));
    border-radius: 17px;
    box-shadow: 0 12px 25px rgba(10, 166, 173, .2);
    font-size: 20px;
    font-weight: 900;
}

.service-card h3 {
    margin-bottom: 10px;
    color: var(--ink-deep);
    font-size: 20px;
    line-height: 1.25;
}

.service-card p {
    color: var(--muted);
    font-size: 14px;
}

.service-card .text-link { margin-top: 18px; }

.service-card-highlight {
    color: var(--white);
    background:
        radial-gradient(circle at 100% 0%, rgba(247, 201, 100, .28), transparent 38%),
        linear-gradient(145deg, var(--ink), #0b6471);
}

.service-card-highlight .service-number { color: rgba(255, 255, 255, .32); }
.service-card-highlight .service-icon { color: var(--ink-deep); background: var(--sun); }
.service-card-highlight h3 { color: var(--white); }
.service-card-highlight p { color: rgba(255, 255, 255, .72); }
.service-card-highlight .text-link { color: var(--sun); }

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

.production-grid {
    display: grid;
    grid-template-columns: minmax(300px, .8fr) minmax(0, 1fr);
    gap: clamp(38px, 7vw, 88px);
    align-items: center;
}

.production-image {
    position: relative;
    width: 100%;
    max-width: 520px;
    justify-self: center;
    padding: 0 25px 25px 0;
}

.production-image::before {
    content: "";
    position: absolute;
    inset: 25px 0 0 25px;
    border-radius: var(--radius);
    background: linear-gradient(145deg, var(--sun), var(--coral));
}

.production-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 1080 / 1316;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.production-image figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    max-width: 245px;
    padding: 14px 18px;
    color: var(--white);
    background: var(--ink-deep);
    border-radius: 16px 0 24px 0;
    font-size: 11px;
    font-weight: 800;
}

.production-copy .large-copy { margin-top: 23px; }
.production-copy .check-list { margin-bottom: 0; }

.location-section {
    color: var(--white);
    background:
        radial-gradient(circle at 7% 12%, rgba(35, 200, 192, .17), transparent 29%),
        linear-gradient(145deg, var(--ink-deep), #064b59);
}

.center-heading {
    max-width: 820px;
    margin: 0 auto 48px;
    text-align: center;
}

.center-heading .kicker { color: #8ce8de; }
.center-heading h2 { margin-bottom: 20px; }
.center-heading h2 em { color: var(--sun); }
.center-heading > p { color: rgba(255, 255, 255, .7); }

.location-gallery {
    display: grid;
    grid-template-columns: 1.15fr .85fr .85fr;
    grid-template-rows: 330px 280px;
    gap: 16px;
}

.location-card {
    position: relative;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    border-radius: 24px;
    background: #0c5662;
}

.location-card-wide {
    grid-column: 1 / 3;
    grid-row: 1;
}

.location-card-tall {
    grid-column: 3;
    grid-row: 1 / 3;
}

.location-card:nth-of-type(3) {
    grid-column: 1;
    grid-row: 2;
}

.location-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2, .8, .2, 1);
}

.location-card-tall img { object-position: center 47%; }

.location-card:hover img { transform: scale(1.045); }

.location-card::after {
    content: "";
    position: absolute;
    inset: 35% 0 0;
    background: linear-gradient(transparent, rgba(2, 28, 36, .85));
}

.location-card figcaption {
    position: absolute;
    right: 22px;
    bottom: 19px;
    left: 22px;
    z-index: 2;
    display: grid;
}

.location-card figcaption strong {
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 24px;
    font-weight: 400;
}

.location-card figcaption span {
    color: rgba(255, 255, 255, .68);
    font-size: 11px;
    font-weight: 700;
}

.location-quote {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    color: var(--ink-deep);
    background: linear-gradient(145deg, var(--sun), #ffe6a0);
    border-radius: 24px;
}

.location-quote > span {
    height: 40px;
    color: var(--coral);
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 58px;
    line-height: .8;
}

.location-quote p {
    font-family: "DM Serif Display", Georgia, serif;
    font-size: clamp(22px, 2.4vw, 31px);
    line-height: 1.1;
}

.location-quote p em { color: var(--coral-dark); }

.location-quote small {
    margin-top: 17px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.reach-section {
    background:
        radial-gradient(circle at 100% 10%, rgba(242, 110, 82, .12), transparent 28%),
        var(--sand);
}

.reach-card {
    display: grid;
    grid-template-columns: minmax(300px, .83fr) minmax(0, 1.17fr);
    overflow: hidden;
    color: var(--white);
    background: var(--ink-deep);
    border-radius: 36px;
    box-shadow: var(--shadow);
}

.reach-intro {
    position: relative;
    padding: clamp(38px, 6vw, 72px);
    background:
        radial-gradient(circle at 9% 95%, rgba(247, 201, 100, .25), transparent 31%),
        linear-gradient(145deg, #075d69, #0a8a8f);
}

.reach-intro::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -70px;
    width: 180px;
    height: 180px;
    border: 32px solid rgba(255, 255, 255, .09);
    border-radius: 50%;
}

.reach-intro h2 {
    position: relative;
    z-index: 1;
    font-size: clamp(38px, 4.1vw, 56px);
}

.reach-intro h2 em { color: var(--sun); }

.reach-intro > p {
    position: relative;
    z-index: 1;
    margin-top: 22px;
    color: rgba(255, 255, 255, .74);
    font-size: 16px;
}

.value-badge {
    position: relative;
    z-index: 1;
    width: 155px;
    height: 155px;
    display: grid;
    place-content: center;
    margin-top: 32px;
    color: var(--ink-deep);
    background: var(--sun);
    border-radius: 50%;
    text-align: center;
    transform: rotate(-5deg);
    box-shadow: 0 18px 40px rgba(3, 36, 46, .22);
}

.value-badge small,
.value-badge span {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.value-badge strong {
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 43px;
    font-weight: 400;
    line-height: 1;
}

.reach-list {
    display: grid;
    align-content: center;
    padding: clamp(32px, 5vw, 62px);
}

.reach-list article {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 19px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.reach-list article:last-child { border-bottom: 0; }

.reach-index {
    color: var(--sun);
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 29px;
}

.reach-list h3 {
    margin-bottom: 6px;
    font-size: 19px;
}

.reach-list p {
    color: rgba(255, 255, 255, .65);
    font-size: 14px;
}

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

.process-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    list-style: none;
    counter-reset: steps;
}

.process-list li {
    position: relative;
    padding: 0 24px 0 0;
}

.process-list li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 24px;
    right: 14px;
    left: 62px;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--sea) 0 5px, transparent 5px 10px);
}

.process-list > li > span {
    position: relative;
    z-index: 1;
    width: 49px;
    height: 49px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    color: var(--white);
    background: var(--sea);
    border: 7px solid #dff6f3;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 900;
}

.process-list h3 {
    margin-bottom: 8px;
    color: var(--ink-deep);
    font-size: 17px;
}

.process-list p {
    color: var(--muted);
    font-size: 13px;
}

.faq-section {
    background: linear-gradient(145deg, #f3fbf9, var(--sand));
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
    gap: clamp(38px, 8vw, 100px);
    align-items: start;
}

.faq-heading {
    position: sticky;
    top: 120px;
}

.faq-heading > p { margin: 22px 0; }

.accordion {
    background: rgba(255, 255, 255, .78);
    border: 1px solid var(--line);
    border-radius: 25px;
    box-shadow: 0 18px 46px rgba(7, 54, 66, .06);
}

.accordion details { border-bottom: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 0; }

.accordion summary {
    position: relative;
    padding: 22px 62px 22px 25px;
    color: var(--ink-deep);
    font-size: 15px;
    font-weight: 800;
    list-style: none;
    cursor: pointer;
}

.accordion summary::-webkit-details-marker { display: none; }

.accordion summary span {
    position: absolute;
    top: 50%;
    right: 24px;
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--sea);
    border-radius: 50%;
    font-size: 19px;
    line-height: 1;
    transform: translateY(-50%);
    transition: transform .25s ease;
}

.accordion details[open] summary span { transform: translateY(-50%) rotate(45deg); }

.accordion details p {
    padding: 0 62px 22px 25px;
    color: var(--muted);
    font-size: 14px;
}

.cta-section {
    position: relative;
    min-height: 610px;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--white);
    text-align: center;
    background: var(--ink-deep);
}

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

.cta-image {
    object-fit: cover;
    object-position: center;
}

.cta-overlay {
    background:
        linear-gradient(rgba(3, 36, 46, .76), rgba(3, 36, 46, .82)),
        radial-gradient(circle at center, transparent, rgba(3, 36, 46, .75));
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
    padding-block: 90px;
}

.cta-content h2 {
    font-size: clamp(48px, 7vw, 84px);
}

.cta-content h2 em { color: var(--sun); }

.cta-content > p {
    max-width: 650px;
    margin: 23px auto 0;
    color: rgba(255, 255, 255, .78);
    font-size: 18px;
}

.actions-center { justify-content: center; }

.cta-contact {
    font-size: 12px !important;
    font-weight: 700;
}

.cta-contact a { color: var(--sun); }

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px 9px 9px;
    color: var(--white);
    background: #0a9d81;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 999px;
    box-shadow: 0 16px 42px rgba(3, 36, 46, .28);
}

.floating-whatsapp span {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    color: #0a765f;
    background: var(--white);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 900;
}

.floating-whatsapp strong { font-size: 11px; }

.site-footer {
    padding: 58px 0 24px;
    color: rgba(255, 255, 255, .72);
    background: #021c24;
}

.footer-main {
    display: grid;
    grid-template-columns: .8fr 1.2fr auto;
    gap: 35px;
    align-items: center;
    padding-bottom: 40px;
}

.brand-footer { color: var(--white); }
.brand-footer img { width: 48px; height: 48px; }

.footer-main > p {
    max-width: 440px;
    font-size: 13px;
}

.social-links {
    display: flex;
    gap: 18px;
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
}

.social-links a:hover { color: var(--sun); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 10px;
    font-weight: 700;
}

.footer-bottom div {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-bottom a:hover { color: var(--white); }

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .75s ease, transform .75s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1020px) {
    .site-header { position: fixed; background: rgba(3, 36, 46, .94); backdrop-filter: blur(16px); }

    .menu-toggle { display: inline-flex; }

    .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        right: 20px;
        left: 20px;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 14px;
        color: var(--white);
        background: rgba(3, 36, 46, .98);
        border: 1px solid rgba(255, 255, 255, .16);
        border-radius: 20px;
        box-shadow: 0 22px 60px rgba(0, 0, 0, .3);
    }

    .nav-links.is-open { display: flex; }

    .nav-links > a:not(.nav-cta) {
        padding: 13px 10px;
        border-bottom: 1px solid rgba(255, 255, 255, .09);
    }

    .nav-links > a:not(.nav-cta)::after { display: none; }
    .nav-cta { margin-top: 9px; text-align: center; }

    .hero { min-height: auto; }
    .hero-media { object-position: 60% center; }
    .hero-shade {
        background:
            linear-gradient(90deg, rgba(2, 28, 36, .92) 0%, rgba(2, 28, 36, .73) 55%, rgba(2, 28, 36, .35) 100%),
            linear-gradient(0deg, rgba(2, 28, 36, .75), transparent 45%);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        align-items: start;
        padding-top: 145px;
        padding-bottom: 90px;
    }

    .hero-copy { max-width: 720px; }
    .hero-card { width: min(560px, 100%); }
    .quick-facts-grid { grid-template-columns: repeat(2, 1fr); }
    .quick-facts-grid > div:nth-child(2) { border-right: 0; }
    .quick-facts-grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, .12); }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .production-grid { grid-template-columns: 1fr; }
    .production-image { max-width: 760px; }
    .location-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 320px 320px 260px; }
    .location-card-wide { grid-column: 1 / 3; grid-row: 1; }
    .location-card-tall { grid-column: 2; grid-row: 2 / 4; }
    .location-card:nth-of-type(3) { grid-column: 1; grid-row: 2; }
    .location-quote { grid-column: 1; grid-row: 3; }
    .reach-card { grid-template-columns: 1fr; }
    .reach-intro { min-height: 480px; }
    .process-list { grid-template-columns: repeat(2, 1fr); gap: 38px 20px; }
    .process-list li:nth-child(2)::after { display: none; }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .social-links { grid-column: 1 / 3; }
}

@media (max-width: 720px) {
    .shell { width: min(100% - 30px, var(--shell)); }
    .navigation { min-height: 74px; }
    .brand img { width: 45px; height: 45px; border-radius: 13px; }
    .brand span { font-size: 11px; }
    .hero-media { object-position: 64% center; }
    .hero-shade {
        background:
            linear-gradient(90deg, rgba(2, 28, 36, .93), rgba(2, 28, 36, .65)),
            linear-gradient(0deg, rgba(2, 28, 36, .87), transparent 60%);
    }
    .hero-grid { gap: 30px; padding-top: 124px; padding-bottom: 79px; }
    .hero h1 { font-size: clamp(47px, 15.5vw, 70px); }
    .hero-lead { font-size: 16px; }
    .hero-facts { display: grid; grid-template-columns: 1fr 1fr; }
    .hero-facts > span { min-width: 0; padding: 11px; }
    .hero-facts strong { font-size: 12px; }
    .button { width: 100%; }
    .scroll-cue { display: none; }
    .quick-facts-grid > div { padding: 19px 13px; }
    .quick-facts strong { font-size: 26px; }
    .quick-facts span { font-size: 9px; }
    .split-heading { grid-template-columns: 1fr; gap: 22px; }
    .section-heading h2,
    .production-copy h2,
    .reach-intro h2,
    .faq-heading h2,
    .cta-content h2 { font-size: clamp(39px, 12vw, 56px); }
    .service-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 240px; }
    .production-image { padding: 0 14px 14px 0; }
    .production-image::before { inset: 14px 0 0 14px; }
    .production-image figcaption { max-width: 215px; padding: 11px 14px; }
    .location-gallery {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 250px 430px 250px auto;
    }
    .location-card-wide,
    .location-card-tall,
    .location-card:nth-of-type(3),
    .location-quote {
        grid-column: 1;
    }
    .location-card-wide { grid-row: 1; }
    .location-card-tall { grid-row: 2; }
    .location-card:nth-of-type(3) { grid-row: 3; }
    .location-quote { grid-row: 4; min-height: 230px; }
    .reach-card { border-radius: 25px; }
    .reach-intro { min-height: 440px; }
    .reach-list article { grid-template-columns: 42px 1fr; gap: 12px; }
    .process-list { grid-template-columns: 1fr; gap: 28px; }
    .process-list li { display: grid; grid-template-columns: 49px 1fr; gap: 16px; padding: 0; }
    .process-list li::after { display: none; }
    .process-list > li > span { margin-bottom: 0; }
    .faq-grid { grid-template-columns: 1fr; }
    .faq-heading { position: static; }
    .accordion summary { padding: 20px 56px 20px 20px; font-size: 14px; }
    .accordion details p { padding: 0 20px 20px; }
    .cta-section { min-height: 620px; }
    .footer-main { grid-template-columns: 1fr; }
    .social-links { grid-column: 1; flex-wrap: wrap; }
    .footer-bottom { flex-direction: column; }
    .floating-whatsapp {
        right: 13px;
        bottom: 13px;
        width: 50px;
        height: 50px;
        padding: 7px;
    }
    .floating-whatsapp span { width: 34px; height: 34px; }
    .floating-whatsapp strong { display: none; }
}

@media (max-width: 400px) {
    .brand span { display: none; }
    .hero-facts { grid-template-columns: 1fr; }
    .quick-facts-grid { grid-template-columns: 1fr 1fr; }
}

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