:root {
    --bg: #071118;
    --bg-deep: #02060b;
    --surface: rgba(10, 22, 31, 0.84);
    --surface-soft: rgba(255, 255, 255, 0.05);
    --line: rgba(255, 255, 255, 0.1);
    --text: #eef5f8;
    --muted: #a6bac4;
    --accent: #ff7a1a;
    --accent-bright: #00a5e1;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
    --radius-xl: 36px;
    --radius-lg: 28px;
    --radius-md: 20px;
    --content-width: min(1240px, calc(100vw - 48px));
    --header-width: min(1040px, calc(100vw - 96px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 122, 26, 0.18), transparent 24%),
        radial-gradient(circle at 82% 8%, rgba(29, 146, 174, 0.16), transparent 22%),
        linear-gradient(180deg, #08131b 0%, #04090f 100%);
    font-family: "Avenir Next", "Futura", "Trebuchet MS", sans-serif;
}

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

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

.page-shell {
    width: 100%;
    overflow: clip;
}

.hero-banner {
    position: relative;
    width: 100%;
    padding-top: 0;
}

.hero-banner img {
    width: 100%;
    height: auto;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    width: min(920px, calc(100vw - 120px));
    margin: 18px auto 0;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 999px;
    background: rgba(4, 10, 16, 0.16);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

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

.brand img {
    width: 34px;
    height: 34px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.brand-name,
.brand-tagline,
.eyebrow,
.hero-brand-tagline {
    text-transform: uppercase;
}

.brand-name,
.brand-tagline,
.eyebrow {
    letter-spacing: 0.08em;
}

.brand-name {
    font-size: 1.15rem;
    font-weight: 800;
}

.brand-tagline {
    color: var(--accent-bright);
    font-size: 0.95rem;
    font-weight: 700;
}

.site-nav {
    display: flex;
    gap: 18px;
    color: var(--muted);
    font-size: 0.92rem;
}

.site-nav a,
.button,
.contact-card a {
    transition: transform 180ms ease, color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.button:hover,
.contact-card a:hover {
    transform: translateY(-2px);
}

.site-nav a {
    font-weight: 700;
}

.hero-stage {
    position: relative;
    display: block;
    min-height: 100vh;
    min-height: 100svh;
    width: 100%;
    padding: 72px 0 44px;
}

.hero-stage-content,
.content-stack,
.site-footer {
    width: var(--content-width);
    margin: 0 auto;
}

.hero-stage-content {
    display: grid;
    grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1.05fr);
    gap: 32px;
    align-items: center;
    min-height: calc(100vh - 180px);
    min-height: calc(100svh - 180px);
}

.hero-stage-media,
.hero-stage-copy {
    min-height: 100%;
}

.hero-stage-media {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.hero-stage-media img {
    height: 100%;
    min-height: 640px;
    object-fit: cover;
}

.hero-stage-copy {
    padding: 28px 0;
}

.hero-brand {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 28px;
}

.hero-brand img {
    width: clamp(120px, 13vw, 170px);
    height: clamp(120px, 13vw, 170px);
    object-fit: cover;
    border-radius: 34px;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.44);
}

.hero-brand-copy {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-brand-name {
    font-family: "Gill Sans", "Avenir Next Condensed", "Trebuchet MS", sans-serif;
    font-size: clamp(3rem, 6vw, 5.6rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: 0.02em;
}

.hero-brand-tagline {
    color: var(--accent-bright);
    font-size: clamp(1.05rem, 1.8vw, 1.6rem);
    letter-spacing: 0.16em;
    font-weight: 700;
}

.hero-stage h1,
.hero h2,
.story h2,
.gallery-copy h2,
.highlight h2,
.site-footer h2 {
    margin: 0;
    font-family: "Gill Sans", "Avenir Next Condensed", "Trebuchet MS", sans-serif;
    font-weight: 700;
    line-height: 0.94;
}

.hero-stage h1 {
    max-width: 10ch;
    font-size: clamp(3.2rem, 5.2vw, 6rem);
    margin-bottom: 18px;
}

.hero-stage-text,
.hero-text,
.story-panel p,
.gallery-copy p,
.highlight-copy p,
.site-footer p,
.feature-card p,
.metric-card span {
    color: var(--muted);
    line-height: 1.7;
    font-size: 1.04rem;
}

.hero-stage-text {
    max-width: 58ch;
}

.eyebrow {
    margin: 0 0 12px;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent-bright);
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 14px 20px;
    border-radius: 999px;
    font-weight: 700;
}

.button-primary {
    color: #111;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
    box-shadow: 0 12px 30px rgba(255, 122, 26, 0.28);
}

.button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
}

.content-stack {
    padding-top: 40px;
}

.hero,
.story,
.highlight,
.site-footer {
    display: grid;
    gap: 28px;
}

.hero,
.story,
.immersive-gallery,
.highlight,
.site-footer {
    margin-bottom: 32px;
}

.hero-copy,
.story-panel,
.highlight-copy,
.site-footer,
.contact-card,
.feature-card {
    border: 1px solid var(--line);
    background: var(--surface);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
}

.hero {
    grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
    align-items: stretch;
}

.hero-copy,
.story-panel,
.highlight-copy {
    padding: 44px;
    border-radius: var(--radius-xl);
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.hero h2 {
    font-size: clamp(2.4rem, 4vw, 4.4rem);
    margin-bottom: 16px;
}

.metric-grid,
.feature-grid {
    display: grid;
    gap: 16px;
}

.metric-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
}

.metric-card,
.feature-card {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface-soft);
}

.metric-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.5rem;
    color: var(--text);
}

.hero-media,
.gallery-image,
.highlight-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.hero-media {
    min-height: 460px;
}

.hero-media::after,
.gallery-image::after,
.highlight-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.28));
    pointer-events: none;
}

.hero-media img,
.gallery-image img,
.highlight-image img {
    height: 100%;
    object-fit: cover;
}

.story {
    grid-template-columns: 0.92fr 1.08fr;
    align-items: start;
}

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

.feature-card h3 {
    margin: 0 0 10px;
    font-size: 1.28rem;
}

.immersive-gallery {
    display: grid;
    gap: 28px;
}

.gallery-row {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 28px;
    align-items: center;
}

.gallery-row:nth-child(even) .gallery-image {
    order: 2;
}

.gallery-copy {
    padding: 16px 10px;
}

.gallery-copy h2 {
    font-size: clamp(2.4rem, 4vw, 4.5rem);
    margin-bottom: 14px;
}

.highlight {
    grid-template-columns: 0.88fr 1.12fr;
    align-items: center;
}

.highlight-image {
    min-height: 460px;
}

.site-footer {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 40px;
    border-radius: var(--radius-xl);
}

.contact-card {
    min-width: 280px;
    padding: 26px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 122, 26, 0.18) 0%, rgba(16, 31, 43, 0.98) 100%);
    color: white;
}

.contact-card span {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.74rem;
}

.contact-card a {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.contact-mail {
    margin-bottom: 16px;
    color: var(--accent-bright);
    font-size: 1rem;
    font-weight: 600;
}

.site-legal-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    width: var(--content-width);
    margin: 0 auto 42px;
    padding: 18px 8px 0;
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.site-legal-bar p {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.76rem;
    font-weight: 800;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--text);
    font-size: 0.96rem;
    font-weight: 700;
}

.legal-links a {
    color: var(--accent-bright);
}

.legal-shell {
    padding-bottom: 48px;
}

.legal-page {
    width: min(920px, calc(100vw - 48px));
    margin: 0 auto;
    padding-top: 168px;
}

.legal-page-privacy {
    width: min(860px, calc(100vw - 48px));
}

.legal-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: var(--surface);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
    padding: 44px;
}

.legal-card h1,
.legal-card h2 {
    margin: 0;
    font-family: "Gill Sans", "Avenir Next Condensed", "Trebuchet MS", sans-serif;
    line-height: 0.98;
}

.legal-card h1 {
    font-size: clamp(2.2rem, 3.2vw, 3.6rem);
    margin-bottom: 22px;
}

.legal-lead {
    max-width: 62ch;
    margin: 0 0 30px;
    color: var(--text);
    font-size: 1.08rem;
    line-height: 1.8;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.legal-section {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
}

.legal-note {
    background: linear-gradient(180deg, rgba(0, 165, 225, 0.08), rgba(255, 255, 255, 0.04));
}

.legal-section p:last-child,
.legal-section ul:last-child {
    margin-bottom: 0;
}

.legal-card h2 {
    font-size: 1.4rem;
    margin: 28px 0 10px;
}

.legal-section h2 {
    margin-top: 0;
}

.legal-card p,
.legal-list {
    color: var(--muted);
    line-height: 1.75;
    font-size: 1.02rem;
}

.legal-list {
    margin: 0;
    padding-left: 20px;
}

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

.legal-card-privacy {
    max-width: 860px;
    margin: 0 auto;
    padding: 40px 44px;
}

.legal-prose {
    margin-top: 28px;
}

.legal-prose h2 {
    margin: 28px 0 10px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.legal-prose h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.legal-prose p,
.legal-prose .legal-list {
    max-width: 68ch;
}

.legal-page-privacy .eyebrow,
.legal-page-privacy h1,
.legal-page-privacy .legal-lead {
    text-align: left;
}

.legal-page-privacy .legal-actions {
    justify-content: flex-start;
}

.hero-stage-content,
.hero-copy,
.story-panel,
.feature-card,
.gallery-row,
.highlight,
.site-footer {
    animation: rise-in 800ms ease both;
}

@keyframes rise-in {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1100px) {
    .site-header,
    .hero-stage-content,
    .content-stack,
    .site-footer {
        width: min(100vw - 32px, 100%);
    }

    .site-header {
        width: min(100vw - 40px, 920px);
    }

    .hero,
    .story,
    .gallery-row,
    .highlight,
    .site-footer,
    .metric-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .hero-stage {
        min-height: 88svh;
        padding: 80px 0 32px;
    }

    .hero-banner {
        padding-top: 0;
    }

    .hero-stage-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-stage-media img {
        min-height: 360px;
    }

    .hero-copy,
    .story-panel,
    .highlight-copy,
    .site-footer {
        padding: 32px 24px;
    }

    .hero-media,
    .highlight-image {
        min-height: 320px;
    }

    .gallery-row:nth-child(even) .gallery-image {
        order: 0;
    }

    .site-legal-bar {
        width: min(100vw - 32px, 100%);
    }
}

@media (max-width: 720px) {
    .site-header {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        border-radius: 24px;
        padding: 8px 12px;
    }

    .site-nav {
        justify-content: space-between;
        width: 100%;
        font-size: 0.86rem;
    }

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

    .hero-stage {
        min-height: 78svh;
        padding-top: 92px;
    }

    .hero-banner {
        padding-top: 0;
    }

    .hero-brand {
        align-items: flex-start;
        gap: 18px;
    }

    .hero-brand img {
        width: 96px;
        height: 96px;
        border-radius: 24px;
    }

    .hero-stage h1 {
        font-size: clamp(2.4rem, 11vw, 3.8rem);
    }

    .contact-card {
        min-width: 100%;
    }

    .site-legal-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding-top: 16px;
    }

    .legal-page {
        width: min(100vw - 32px, 100%);
        padding-top: 158px;
    }

    .legal-card {
        padding: 32px 24px;
    }

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

    .legal-section {
        padding: 20px;
    }
}
