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

html { scroll-behavior: smooth; }

body {
    font-family: Lato, Arial, sans-serif;
    color: #2c393f;
    background: #fff;
    overflow-x: hidden;
}

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #12181c;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 36px 24px 64px;
}

.hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 32%;
    filter: brightness(0.72) saturate(1.05);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 14, 18, 0.38) 0%, rgba(10, 14, 18, 0.12) 38%, rgba(10, 14, 18, 0.72) 100%);
}

.logo {
    position: relative;
    width: 118px;
    display: block;
    z-index: 2;
}

html:has(body.holding),
body.holding {
    height: 100dvh;
    overflow: hidden;
    overscroll-behavior: none;
}

.holding-hero {
    height: 100dvh;
    min-height: 0;
    justify-content: center;
    padding: 4dvh 24px;
}

.holding-stage {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 2.4dvh, 28px);
    width: min(720px, 92vw);
    text-align: center;
}

.holding-logo {
    width: min(354px, 42vmin);
    height: auto;
    display: block;
    pointer-events: none;
}

.holding .hero-copy h1 {
    font-size: clamp(28px, 4.6vw, 54px);
    margin: 8px 0 10px;
}

.holding .hero-lead {
    font-size: clamp(14px, 1.8vw, 18px);
    margin-bottom: 18px;
}

.hold-panel {
    position: fixed;
    inset: 0;
    z-index: 20;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(10, 14, 18, 0.62);
}

.hold-panel[hidden] { display: none; }

.hold-card {
    position: relative;
    width: min(720px, 94vw);
    max-height: min(88dvh, 820px);
    overflow: auto;
    background: #fff;
    color: #2c393f;
    padding: 36px 32px 32px;
}

.hold-card h2 {
    font-weight: 300;
    font-size: 34px;
    margin: 8px 0 16px;
}

.hold-card p {
    font-size: 16px;
    line-height: 1.65;
    color: #3a454b;
    margin-bottom: 14px;
}

.hold-close {
    position: absolute;
    top: 10px;
    right: 14px;
    border: 0;
    background: none;
    font-size: 32px;
    line-height: 1;
    color: #5b666c;
    cursor: pointer;
}

.site-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 22px 28px;
}

.nav-logo img { width: 140px; display: block; }

.hero-stage {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 22px;
}

.hero-logo {
    width: min(220px, 36vw);
    height: auto;
    display: block;
}

.site-hero {
    justify-content: center;
    padding: 110px 24px 64px;
}

.site-nav nav {
    display: flex;
    gap: 22px;
    align-items: center;
}

.site-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.06em;
}

.site-nav a:hover { color: #f37a1f; }

.nav-cta {
    border: 1px solid #f37a1f;
    padding: 8px 14px;
}

.nav-toggle {
    display: none;
    appearance: none;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.45);
    padding: 8px 14px;
    font: inherit;
    letter-spacing: 0.08em;
    cursor: pointer;
}

.media-card img,
.blog-card img,
.blog-hero-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    margin-bottom: 16px;
}

.blog-card { overflow: hidden; }
.blog-hero-img { height: 340px; margin: 18px 0 24px; }

.media-band {
    padding: 88px 28px;
    background: #f6f4f1;
}

.media-inner { max-width: 1080px; margin: 0 auto; }

.media-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 32px;
}

.media-head h2 {
    font-weight: 300;
    font-size: clamp(34px, 4vw, 48px);
    margin-top: 10px;
}

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

.media-card {
    background: #fff;
    padding: 24px;
    min-height: 180px;
}

.media-card h3 {
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 10px;
}

.media-card h3 a { color: #2c393f; text-decoration: none; }
.media-card h3 a:hover { color: #f37a1f; }
.media-card p { color: #3a454b; line-height: 1.55; }

.foot-links { margin-top: 10px; }
.foot-links a { color: #f37a1f; text-decoration: none; }

.blog-page .site-nav {
    position: static;
    background: #12181c;
    flex-direction: column;
    gap: 16px;
    padding: 28px 20px 22px;
}

.blog-page .nav-logo img { width: 160px; }
.blog-page .site-nav a { color: #fff; }

.logo img { width: 100%; display: block; }
.logo-dark { display: none; }
.logo:hover .logo-white { display: none; }
.logo:hover .logo-dark { display: block; }

.hero-copy {
    position: relative;
    width: min(720px, 100%);
    text-align: center;
    z-index: 2;
}

.hero-kicker,
.eyebrow {
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    color: #f37a1f;
}

.hero-copy h1 {
    font-weight: 300;
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1.05;
    margin: 14px 0 18px;
}

.hero-lead {
    font-size: 18px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    max-width: 560px;
    margin: 0 auto 28px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.holding .btn,
.holding .btn-ghost { appearance: none; }

.btn,
.btn-ghost,
.contact-form button {
    display: inline-block;
    padding: 13px 26px;
    text-decoration: none;
    font: inherit;
    letter-spacing: 0.04em;
    cursor: pointer;
    border: 0;
}

.btn,
.contact-form button {
    background: #f37a1f;
    color: #fff;
}

.btn:hover,
.contact-form button:hover { background: #d86612; }

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover { border-color: #fff; }

.scroll-hint {
    position: absolute;
    left: 50%;
    bottom: 36px;
    transform: translateX(-50%);
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    border-bottom: 1px solid #f37a1f;
    padding-bottom: 4px;
}

.scroll-hint:hover { color: #f37a1f; }

.film {
    background: #0f161b;
    padding: 72px 24px 80px;
    color: #fff;
}

.film h2 {
    font-weight: 300;
    font-size: clamp(34px, 4vw, 48px);
    margin: 10px 0 28px;
}

.film-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.video-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.facts {
    background: #1b262c;
    color: #fff;
}

.facts-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 36px 28px;
}

.facts-inner strong {
    display: block;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 6px;
}

.facts-inner span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
}

.story {
    padding: 88px 28px;
    background: #f6f4f1;
}

.story-inner {
    max-width: 780px;
    margin: 0 auto;
}

.story h2,
.enquire-intro h2 {
    font-weight: 300;
    font-size: clamp(34px, 4vw, 48px);
    margin: 10px 0 28px;
}

.story-copy p {
    font-size: 18px;
    line-height: 1.75;
    color: #3a454b;
    margin-bottom: 20px;
}

.enquire-band {
    padding: 88px 28px 96px;
    background: #fff;
}

.enquire-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 64px;
    align-items: start;
}

.enquire-intro p {
    font-size: 17px;
    line-height: 1.65;
    color: #3a454b;
}

.enquire-address {
    margin-top: 22px;
    color: #5b666c;
}

.contact-form {
    background: #f6f4f1;
    padding: 32px;
}

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

.contact-form label {
    display: block;
    font-size: 13px;
    color: #5b666c;
    margin-bottom: 14px;
}

.contact-form input,
.contact-form textarea {
    display: block;
    width: 100%;
    margin-top: 7px;
    padding: 12px 13px;
    border: 1px solid #d7d7d7;
    border-radius: 2px;
    font: inherit;
    color: #2c393f;
    background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #f37a1f;
}

.form-status { margin: 8px 0; font-size: 14px; }
.form-status.ok { color: #1a7a3a; }
.form-status.err { color: #b42318; }

.site-foot {
    background: #12181c;
    color: rgba(255, 255, 255, 0.62);
    text-align: center;
    padding: 36px 20px 40px;
}

.site-foot img {
    width: 72px;
    margin-bottom: 12px;
}

.site-foot p { font-size: 13px; }

.blog-page { background: #fff; min-height: 100vh; }
.blog-top { padding: 28px 24px 0; }
.blog-logo { position: static; transform: none; width: 88px; }
.blog-logo .logo-dark, .blog-logo img { display: block; }
.blog-wrap { max-width: 860px; margin: 0 auto; padding: 40px 24px 80px; }
.blog-wrap h1 { font-weight: 400; font-size: 34px; margin-bottom: 22px; }
.blog-status { color: #5b666c; }
.blog-card { margin-bottom: 28px; }
.blog-card h2 { font-weight: 400; font-size: 24px; margin-bottom: 8px; }
.blog-card a, .blog-article a { color: #f37a1f; }
.blog-kicker { letter-spacing: 0.14em; text-transform: uppercase; font-size: 12px; color: #f37a1f; margin-bottom: 10px; }
.blog-excerpt { font-size: 18px; line-height: 1.5; color: #3a454b; margin: 12px 0 24px; }
.blog-body p { font-size: 16px; line-height: 1.7; margin-bottom: 16px; color: #3a454b; }
.blog-source { margin: 28px 0; font-size: 14px; color: #5b666c; }
.draft-flag { display: inline-block; background: #f3e6d8; color: #9a4b0c; padding: 4px 8px; font-size: 12px; margin-bottom: 14px; }

@media (max-width: 860px) {
    .hero {
        min-height: 100dvh;
        padding: 20px 18px 32px;
        overflow: hidden;
    }

    .hero-photo {
        filter: brightness(0.48) saturate(1.04);
    }

    .hero-shade {
        background:
            linear-gradient(180deg, rgba(8, 12, 16, 0.62) 0%, rgba(8, 12, 16, 0.48) 42%, rgba(8, 12, 16, 0.82) 100%);
    }

    .site-hero {
        justify-content: center;
        min-height: 100dvh;
        height: auto;
        padding: 76px 18px 36px;
    }

    .hero-stage,
    .holding-stage,
    .hero-copy {
        width: 100%;
        max-width: 100%;
    }

    .hero-logo { width: min(148px, 42vw); }
    .hero-kicker,
    .eyebrow {
        font-size: 13px;
        letter-spacing: 0.12em;
        text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
    }
    .hero-copy h1 {
        font-size: clamp(30px, 8.4vw, 40px);
        margin: 8px 0 12px;
        line-height: 1.15;
        text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
    }
    .hero-lead {
        font-size: 17px;
        line-height: 1.55;
        color: #fff;
        margin-bottom: 18px;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
    }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn,
    .hero-actions .btn-ghost {
        text-align: center;
        font-size: 16px;
        padding: 14px 20px;
    }

    .site-nav {
        padding: 14px 16px;
        justify-content: flex-end;
    }

    .nav-toggle { display: block; z-index: 6; }

    .site-nav nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(12, 16, 20, 0.96);
        padding: 8px 0 12px;
    }

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

    .site-nav nav a {
        padding: 14px 20px;
        font-size: 16px;
        letter-spacing: 0.04em;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-cta {
        margin: 10px 20px 4px;
        text-align: center;
    }

    .blog-page .site-nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 16px;
    }

    .blog-page .nav-logo img { width: 72px; }

    .holding-hero {
        min-height: 0;
        height: 100dvh;
        padding: 20px 16px;
    }

    .holding-logo { width: min(168px, 40vw); }
    .holding .hero-copy {
        background: rgba(8, 12, 16, 0.58);
        padding: 18px 16px 20px;
        border-radius: 12px;
    }
    .holding .hero-copy h1 { font-size: 32px; display: block; }
    .holding .hero-lead { font-size: 17px; margin-bottom: 16px; }
    .holding-stage { gap: 14px; }

    .hold-panel { padding: 12px; align-items: end; }
    .hold-card {
        width: 100%;
        max-height: 92dvh;
        padding: 28px 20px 24px;
    }
    .hold-card h2 { font-size: 30px; }
    .hold-card p {
        font-size: 17px;
        line-height: 1.7;
        color: #2c393f;
    }

    .contact-form label { font-size: 15px; }
    .contact-form input,
    .contact-form textarea,
    .contact-form button { font-size: 16px; }

    .facts-inner,
    .enquire-inner,
    .contact-form .row,
    .media-grid { grid-template-columns: 1fr; }

    .story,
    .enquire-band,
    .media-band { padding: 48px 18px; }

    .story-copy p,
    .enquire-intro p {
        font-size: 17px;
        line-height: 1.7;
    }

    .contact-form { padding: 18px; }
    .film { padding: 36px 16px 48px; }
    .media-head { flex-direction: column; align-items: start; }
    .blog-hero-img { height: 200px; }
    .media-card img,
    .blog-card img { height: 160px; }
    .blog-wrap { padding: 28px 18px 56px; }
    .blog-wrap h1 { font-size: 28px; }
}

@media (max-width: 860px) and (max-height: 720px) {
    .holding-logo { width: min(120px, 30vw); }
    .holding .hero-copy { padding: 14px 14px 16px; }
    .holding .hero-copy h1 { font-size: 28px; display: block; }
    .holding .hero-lead { font-size: 16px; margin-bottom: 12px; }
}
