:root {
    --black: #050505;
    --ink: #151515;
    --muted: #666a70;
    --line: #d9dce1;
    --soft: #f4f5f7;
    --white: #ffffff;
    --blue: #0f67ff;
    --cyan: #23c5e8;
    --gold: #caa15a;
    --shadow: 0 18px 45px rgba(5, 5, 5, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    letter-spacing: 0;
}

body,
button,
input,
textarea {
    -webkit-text-size-adjust: 100%;
}

body.lightbox-open {
    overflow: hidden;
}

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

.zoomable-image {
    cursor: zoom-in;
}

a {
    color: inherit;
}

section {
    scroll-margin-top: 96px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 12px 32px;
    color: var(--white);
    background: rgba(5, 5, 5, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
    text-decoration: none;
    font-weight: 800;
}

.brand img {
    width: 52px;
    height: 52px;
    object-fit: cover;
}

.brand span {
    font-size: 1rem;
}

.main-nav {
    display: flex;
    justify-content: center;
    flex: 1 1 auto;
    gap: 6px;
}

.main-nav a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.82);
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.header-cta,
.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    overflow-wrap: anywhere;
}

.header-cta {
    flex: 0 0 auto;
    color: var(--black);
    background: var(--white);
}

.cta-short {
    display: none;
}

.button-primary {
    color: var(--white);
    background: var(--blue);
    box-shadow: 0 14px 34px rgba(15, 103, 255, 0.3);
}

.button-secondary {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.09);
}

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

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

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

.hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background: var(--black);
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.72) 40%, rgba(5, 5, 5, 0.2) 100%),
        linear-gradient(0deg, rgba(5, 5, 5, 0.65) 0%, rgba(5, 5, 5, 0) 45%);
}

.hero-content {
    position: relative;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 78px 0;
}

.eyebrow,
.section-label {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 0.86rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 800px;
    margin: 0;
    font-size: 4.6rem;
    line-height: 0.98;
}

.hero-lead {
    max-width: 650px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.25rem;
}

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

.hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 36px;
}

.hero-facts span {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 6px;
    background: rgba(5, 5, 5, 0.28);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    font-size: 0.92rem;
}

.section-pad {
    padding: 88px 32px;
}

.section-heading,
.section-heading-split {
    width: min(1180px, 100%);
    margin: 0 auto 36px;
}

.section-heading h2,
.pro-copy h2,
.contact-panel h2 {
    margin: 0;
    font-size: 2.6rem;
    line-height: 1.08;
}

.section-heading-split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
    gap: 42px;
    align-items: end;
}

.section-copy {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.intro {
    background: var(--white);
}

.intro-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.intro-card,
.pack-card,
.equipment-category,
.engagement-grid article,
.condition-grid article {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 10px 28px rgba(5, 5, 5, 0.06);
    overflow: hidden;
}

.intro-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    object-position: center;
}

.intro-card div,
.engagement-grid article {
    padding: 24px;
}

.intro-card h3,
.pack-card h3,
.equipment-category h3,
.engagement-grid h3,
.condition-grid h3,
.book-cta h3 {
    margin: 0 0 10px;
    font-size: 1.24rem;
    line-height: 1.2;
}

.intro-card p,
.pack-card p,
.equipment-category p,
.engagement-grid p,
.condition-grid p,
.book-cta p,
.contact-panel p,
.pro-copy p {
    margin: 0;
    color: var(--muted);
}

.packs,
.equipment,
.conditions,
.faq {
    background: var(--soft);
}

.service-area {
    background: var(--black);
    color: var(--white);
}

.service-area .section-copy {
    color: rgba(255, 255, 255, 0.72);
}

.area-list {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.area-list span {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
    font-weight: 800;
}

.pack-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
}

.pack-card {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
}

.pack-card:nth-child(-n+2) {
    grid-column: span 3;
}

.pack-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    object-position: center;
}

.pack-body {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 22px;
}

.pack-limit {
    color: var(--blue) !important;
    font-weight: 800;
    font-size: 0.9rem;
}

.pack-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.pack-footer strong {
    font-size: 1.08rem;
}

.pack-footer a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 6px;
    color: var(--white);
    background: var(--black);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 800;
}

.featured-pack {
    border-color: rgba(15, 103, 255, 0.38);
    box-shadow: var(--shadow);
}

.pro-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
    gap: 54px;
    align-items: center;
    color: var(--white);
    background: var(--black);
}

.pro-copy {
    justify-self: end;
    width: min(590px, 100%);
}

.pro-copy p {
    color: rgba(255, 255, 255, 0.78);
    margin-top: 22px;
}

.check-list {
    display: grid;
    gap: 10px;
    margin: 26px 0 30px;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 26px;
    color: rgba(255, 255, 255, 0.88);
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cyan);
}

.pro-visual {
    margin: 0;
    width: min(560px, 100%);
}

.pro-visual img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.pro-visual figcaption {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
}

.equipment-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.equipment-category {
    padding: 22px;
}

.equipment-head {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 18px;
    margin-bottom: 18px;
}

.equipment-head p {
    max-width: 230px;
    text-align: right;
}

.equipment-items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.equipment-items figure {
    position: relative;
    margin: 0;
    min-height: 120px;
    overflow: hidden;
    border-radius: 6px;
    background: var(--black);
}

.equipment-items img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    opacity: 0.88;
}

.equipment-items figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 10px 9px;
    color: var(--white);
    background: linear-gradient(0deg, rgba(5, 5, 5, 0.85), rgba(5, 5, 5, 0));
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1.15;
}

.book-cta {
    width: min(1180px, 100%);
    margin: 28px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 26px;
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
}

.book-cta div {
    max-width: 720px;
}

.engagements {
    background: var(--white);
}

.engagement-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.engagement-grid article {
    padding: 0;
}

.engagement-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center;
}

.engagement-grid h3,
.engagement-grid p {
    padding-left: 22px;
    padding-right: 22px;
}

.engagement-grid h3 {
    padding-top: 22px;
}

.engagement-grid p {
    padding-bottom: 24px;
}

.condition-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.condition-grid article {
    padding: 22px;
}

.faq-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.faq-grid article {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 10px 28px rgba(5, 5, 5, 0.05);
}

.faq-grid h3 {
    margin: 0 0 10px;
    font-size: 1.12rem;
    line-height: 1.25;
}

.faq-grid p {
    margin: 0;
    color: var(--muted);
}

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

.contact-panel {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.45fr);
    gap: 44px;
    align-items: center;
    padding: 44px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background:
        linear-gradient(120deg, rgba(15, 103, 255, 0.18), rgba(35, 197, 232, 0.06)),
        #0b0b0b;
}

.contact-panel p {
    color: rgba(255, 255, 255, 0.78);
    margin-top: 18px;
}

.contact-actions {
    display: grid;
    gap: 12px;
}

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

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 32px;
    color: rgba(255, 255, 255, 0.72);
    background: #000000;
    font-size: 0.92rem;
}

.site-footer p {
    margin: 0;
}

.site-footer a {
    color: var(--white);
    font-weight: 800;
    text-decoration: none;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-button {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 6px;
}

.legal-page {
    background: var(--soft);
}

.legal-hero {
    width: min(980px, calc(100% - 64px));
    margin: 0 auto;
    padding: 86px 0 38px;
}

.legal-hero h1 {
    margin: 0;
    font-size: 3.3rem;
    line-height: 1.05;
}

.legal-hero p:last-child {
    margin: 14px 0 0;
    color: var(--muted);
}

.legal-content {
    width: min(980px, calc(100% - 64px));
    margin: 0 auto;
    padding: 0 0 86px;
    display: grid;
    gap: 18px;
}

.legal-content article {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 10px 28px rgba(5, 5, 5, 0.05);
}

.legal-content h2 {
    margin: 0 0 14px;
    font-size: 1.35rem;
    line-height: 1.25;
}

.legal-content p {
    margin: 0 0 12px;
    color: var(--muted);
}

.legal-content p:last-child {
    margin-bottom: 0;
}

.legal-content ul {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
}

.legal-content li + li {
    margin-top: 6px;
}

.legal-content a {
    color: var(--blue);
    font-weight: 800;
}

.mobile-action-bar {
    display: none;
}

.lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(5, 5, 5, 0.92);
}

.lightbox-modal[hidden] {
    display: none;
}

.lightbox-full-image {
    max-width: min(96vw, 1400px);
    max-height: 88vh;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
    object-fit: contain;
}

.lightbox-close-button {
    position: absolute;
    top: 18px;
    right: 18px;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 6px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

@media (max-width: 1050px) {
    .site-header {
        flex-wrap: wrap;
        justify-content: center;
    }

    .brand {
        min-width: auto;
    }

    .main-nav {
        order: 3;
        flex-basis: 100%;
        flex-wrap: wrap;
    }

    .hero h1 {
        font-size: 3.6rem;
    }

    .intro-grid,
    .pack-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pack-card,
    .pack-card:nth-child(-n+2) {
        grid-column: auto;
    }

    .pack-card:last-child {
        grid-column: 1 / -1;
    }

    .engagement-grid,
    .condition-grid,
    .faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-heading-split,
    .pro-section,
    .contact-panel {
        grid-template-columns: 1fr;
    }

    .pro-copy {
        justify-self: start;
        width: 100%;
    }

    .pro-visual {
        width: 100%;
    }
}

@media (max-width: 760px) {
    html {
        scroll-padding-top: 0;
    }

    body {
        padding-bottom: 76px;
    }

    section {
        scroll-margin-top: 12px;
    }

    .site-header {
        position: static;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        padding: 9px 14px;
        gap: 8px;
    }

    .brand {
        width: auto;
        min-width: 0;
        justify-content: flex-start;
    }

    .brand img {
        width: 42px;
        height: 42px;
    }

    .brand span {
        font-size: 0.95rem;
    }

    .header-cta {
        width: auto;
        min-height: 44px;
        padding: 0 14px;
        grid-column: 2;
        grid-row: 1;
    }

    .cta-full {
        display: none;
    }

    .cta-short {
        display: inline;
    }

    .main-nav a {
        min-height: 36px;
        padding: 0 10px;
        font-size: 0.88rem;
    }

    .main-nav {
        order: 0;
        grid-column: 1 / -1;
        flex-basis: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: none;
    }

    .main-nav::-webkit-scrollbar {
        display: none;
    }

    .hero {
        min-height: 0;
    }

    .hero-shade {
        background:
            linear-gradient(90deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.56)),
            linear-gradient(0deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.08));
    }

    .hero-content {
        width: min(100% - 36px, 1180px);
        padding: 42px 0 44px;
    }

    .hero h1 {
        font-size: 2.55rem;
        line-height: 1.02;
    }

    .hero-lead {
        margin-top: 18px;
        font-size: 1.05rem;
        line-height: 1.58;
    }

    .eyebrow,
    .section-label {
        margin-bottom: 10px;
        font-size: 0.78rem;
    }

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

    .hero-actions {
        margin-top: 24px;
    }

    .hero-facts {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 26px;
    }

    .hero-facts span {
        min-height: 38px;
        justify-content: center;
    }

    .section-pad {
        padding: 54px 18px;
    }

    .section-heading h2,
    .pro-copy h2,
    .contact-panel h2 {
        font-size: 1.86rem;
        line-height: 1.14;
    }

    .section-heading,
    .section-heading-split {
        margin-bottom: 26px;
    }

    .intro-grid,
    .pack-grid,
    .equipment-grid,
    .engagement-grid,
    .condition-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .pack-card:last-child {
        grid-column: auto;
    }

    .pack-body {
        min-height: auto;
        padding: 20px;
    }

    .intro-card img,
    .pack-card img,
    .pro-visual img,
    .engagement-grid img {
        max-height: none;
    }

    .intro-card img,
    .pack-card img {
        height: 190px;
    }

    .pro-visual img {
        height: 220px;
    }

    .engagement-grid img {
        height: 160px;
    }

    .pack-footer,
    .book-cta,
    .site-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .pack-footer a,
    .book-cta .button {
        width: 100%;
    }

    .pack-footer strong {
        text-align: center;
    }

    .area-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .area-list span {
        justify-content: center;
        text-align: center;
        min-height: 40px;
        padding: 0 10px;
        font-size: 0.92rem;
    }

    .equipment-head {
        display: block;
    }

    .equipment-head p {
        max-width: none;
        text-align: left;
    }

    .equipment-items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .equipment-items figure {
        min-height: 0;
    }

    .equipment-items figcaption {
        font-size: 0.82rem;
    }

    .contact-panel {
        padding: 28px;
    }

    .contact-actions .button {
        min-height: 52px;
    }

    .site-footer {
        padding: 28px 18px 92px;
    }

    .footer-links {
        align-items: stretch;
    }

    .footer-links a {
        width: 100%;
        text-align: center;
    }

    .legal-hero,
    .legal-content {
        width: calc(100% - 36px);
    }

    .legal-hero {
        padding: 62px 0 28px;
    }

    .legal-hero h1 {
        font-size: 2.4rem;
    }

    .legal-content {
        padding-bottom: 62px;
    }

    .legal-content article {
        padding: 22px;
    }

    .mobile-action-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 30;
        display: grid;
        grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.75fr);
        gap: 10px;
        padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
        background: rgba(5, 5, 5, 0.94);
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .mobile-action-bar a {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 12px;
        border-radius: 6px;
        color: var(--white);
        text-decoration: none;
        font-weight: 800;
        text-align: center;
    }

    .mobile-action-bar a:first-child {
        background: var(--blue);
    }

    .mobile-action-bar a:last-child {
        border: 1px solid rgba(255, 255, 255, 0.42);
        background: rgba(255, 255, 255, 0.08);
    }

    .lightbox-modal {
        padding: 18px;
    }

    .lightbox-close-button {
        top: 14px;
        right: 14px;
    }

    .lightbox-full-image {
        max-width: 100%;
        max-height: 82vh;
    }
}

@media (max-width: 420px) {
    .hero h1 {
        font-size: 2.25rem;
    }
}
