:root {
    --deep: #071820;
    --navy: #102c38;
    --panel: #143743;
    --cream: #f3ead6;
    --muted: #c9c2b3;
    --gold: #e2b865;
    --coral: #c45d43;
    --green: #5b7e60;
    --border: rgba(243,234,214,.16);
    --shadow: 0 24px 65px rgba(0,0,0,.43);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--deep);
    color: var(--cream);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.68;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
    margin-top: 0;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.08;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 78px;
    padding: 10px clamp(18px, 5vw, 78px);
    background: rgba(7,24,32,.95);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: Georgia, serif;
    font-weight: 700;
}

.brand img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    color: var(--muted);
    font-size: .86rem;
}

nav a:hover { color: var(--gold); }

.buy-button {
    padding: 9px 15px;
    background: var(--coral);
    color: white;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
    align-items: center;
    gap: clamp(45px, 8vw, 110px);
    min-height: calc(100vh - 78px);
    padding: 84px clamp(22px, 8vw, 124px);
    background:
        linear-gradient(90deg, rgba(7,24,32,.99), rgba(7,24,32,.71)),
        radial-gradient(circle at 75% 31%, rgba(226,184,101,.18), transparent 32%);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .21em;
    text-transform: uppercase;
}

.hero h1 {
    margin-bottom: 20px;
    font-size: clamp(4rem, 9vw, 8rem);
}

.tagline {
    max-width: 720px;
    margin: 0 0 18px;
    font-family: Georgia, serif;
    font-size: clamp(1.35rem, 2.5vw, 1.9rem);
    font-style: italic;
}

.hero-description {
    max-width: 720px;
    color: var(--muted);
    font-size: 1.05rem;
}

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

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border: 1px solid var(--gold);
    font-weight: 700;
    transition: transform .2s ease;
}

.button:hover { transform: translateY(-3px); }
.button.primary { background: var(--coral); border-color: var(--coral); }
.button.secondary { background: transparent; }

.cover-frame {
    justify-self: center;
    width: min(430px, 87%);
    padding: 12px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.03);
    box-shadow: var(--shadow);
    transform: rotate(1deg);
}

.facts-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #11313d;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.facts-strip div {
    padding: 24px 17px;
    text-align: center;
}

.facts-strip div + div { border-left: 1px solid var(--border); }

.facts-strip strong {
    display: block;
    color: var(--gold);
    font-family: Georgia, serif;
    font-size: 1.45rem;
}

.facts-strip span {
    color: var(--muted);
    font-size: .85rem;
}

.section {
    padding: 100px clamp(20px, 8vw, 124px);
}

.section-heading {
    max-width: 860px;
    margin: 0 auto 54px;
    text-align: center;
}

.section-heading h2 {
    margin-bottom: 14px;
    font-size: clamp(2.7rem, 6vw, 4.8rem);
}

.section-heading > p:last-child { color: var(--muted); }

.synopsis {
    background:
        linear-gradient(135deg, rgba(196,93,67,.12), transparent 48%),
        #0d2933;
}

.synopsis-text {
    max-width: 930px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1.08rem;
}

.lead {
    color: var(--cream);
    font-family: Georgia, serif;
    font-size: 1.55rem;
    text-align: center;
}

.secret {
    margin: 30px 0;
    color: var(--coral);
    font-family: Georgia, serif;
    font-size: 2rem;
    text-align: center;
}

.closing-question {
    margin-top: 35px;
    color: var(--cream);
    font-family: Georgia, serif;
    font-size: 1.5rem;
    text-align: center;
}

.image-feature {
    position: relative;
    min-height: 700px;
    overflow: hidden;
}

.image-feature > img {
    width: 100%;
    min-height: 700px;
    object-fit: cover;
}

.overlay-card {
    position: absolute;
    right: clamp(22px, 7vw, 108px);
    bottom: 55px;
    width: min(610px, calc(100% - 44px));
    padding: 35px;
    background: rgba(7,24,32,.88);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    backdrop-filter: blur(9px);
}

.overlay-card h2 {
    margin-bottom: 14px;
    font-size: clamp(2.4rem, 5vw, 4rem);
}

.overlay-card p:last-child { color: var(--muted); }

.experiment {
    background:
        linear-gradient(135deg, rgba(91,126,96,.17), transparent 45%),
        #102d38;
}

.experiment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1260px;
    margin: 0 auto;
}

.experiment-grid article {
    min-height: 270px;
    padding: 26px;
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
}

.experiment-grid span {
    display: block;
    margin-bottom: 16px;
    color: var(--gold);
    font-family: Georgia, serif;
    font-size: 2.4rem;
    font-weight: 700;
}

.experiment-grid h3 { font-size: 1.45rem; }
.experiment-grid p { color: var(--muted); }

.cast-section { background: #06181f; }

.cast-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 27px;
    max-width: 1350px;
    margin: 0 auto;
}

.cast-card {
    display: grid;
    grid-template-columns: minmax(190px, .82fr) 1.18fr;
    overflow: hidden;
    background: var(--panel);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform .22s ease, border-color .22s ease;
}

.cast-card:hover {
    transform: translateY(-6px);
    border-color: rgba(226,184,101,.55);
}

.cast-card img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    object-position: top center;
}

.cast-card > div {
    align-self: center;
    padding: 26px;
}

.role {
    margin: 0 0 8px;
    color: var(--gold);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.cast-card h3, .staff-card h3, .location-card h3 {
    margin-bottom: 10px;
    font-size: 1.75rem;
}

.cast-card p, .staff-card p, .location-card p { color: var(--muted); }

.cast-card blockquote {
    margin: 20px 0 0;
    padding-left: 15px;
    border-left: 3px solid var(--coral);
    color: var(--cream);
    font-family: Georgia, serif;
    font-style: italic;
}

.staff-section {
    background:
        linear-gradient(135deg, rgba(196,93,67,.10), transparent 48%),
        #102b35;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 27px;
    max-width: 960px;
    margin: 0 auto;
}

.staff-card {
    overflow: hidden;
    background: #143641;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.staff-card img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: top center;
}

.staff-card > div { padding: 25px; }

.town-section {
    background:
        linear-gradient(135deg, rgba(91,126,96,.14), transparent 45%),
        #0c242d;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 27px;
    max-width: 1350px;
    margin: 0 auto;
}

.location-card {
    overflow: hidden;
    background: #12343e;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

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

.location-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.location-card.wide img { aspect-ratio: 16/7; }
.location-card > div { padding: 25px; }

.viewers-section {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(330px, .9fr);
    background: #06161d;
}

.viewers-section > img {
    width: 100%;
    height: 100%;
    min-height: 680px;
    object-fit: cover;
}

.viewers-section > div {
    align-self: center;
    padding: 65px clamp(30px, 7vw, 105px);
}

.viewers-section h2 {
    margin-bottom: 18px;
    font-size: clamp(2.7rem, 5vw, 4.6rem);
}

.viewers-section p { color: var(--muted); }

.final-question {
    padding: 110px 22px;
    background:
        linear-gradient(135deg, rgba(196,93,67,.14), transparent 50%),
        #102d38;
    text-align: center;
}

.final-question h2 {
    max-width: 950px;
    margin: 15px auto 22px;
    font-size: clamp(2.8rem, 6vw, 5rem);
}

.final-question p:last-child {
    max-width: 820px;
    margin: auto;
    color: var(--muted);
    font-family: Georgia, serif;
    font-size: 1.3rem;
}

footer {
    padding: 55px 20px;
    background: #041117;
    border-top: 1px solid var(--border);
    color: var(--muted);
    text-align: center;
}

footer img {
    width: 105px;
    margin: 0 auto 18px;
    border-radius: 50%;
}

footer p { margin: 8px 0; }
footer a { color: var(--gold); }

@media (max-width: 1100px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description, .tagline {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-actions { justify-content: center; }
    .experiment-grid { grid-template-columns: repeat(2, 1fr); }
    .cast-grid { grid-template-columns: 1fr; }
    .viewers-section { grid-template-columns: 1fr; }
    .viewers-section > img { min-height: auto; }
}

@media (max-width: 760px) {
    .site-header { align-items: flex-start; }

    .facts-strip { grid-template-columns: 1fr 1fr; }
    .facts-strip div:nth-child(odd) { border-left: 0; }
    .facts-strip div:nth-child(n+3) { border-top: 1px solid var(--border); }

    .overlay-card {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        border-left: 0;
        border-right: 0;
    }

    .image-feature > img { min-height: auto; }

    .cast-card {
        grid-template-columns: 1fr;
    }

    .cast-card img {
        min-height: auto;
        max-height: 650px;
    }

    .staff-grid, .location-grid { grid-template-columns: 1fr; }
    .location-card.wide { grid-column: auto; }
    .location-card.wide img { aspect-ratio: 16/10; }
}

@media (max-width: 520px) {
    .brand span { display: none; }
    .hero-actions { flex-direction: column; }
    .button { width: 100%; }
    .experiment-grid { grid-template-columns: 1fr; }
    .facts-strip { grid-template-columns: 1fr; }
    .facts-strip div + div { border-left: 0; border-top: 1px solid var(--border); }
}

/* Ada Forge logo aspect-ratio fix */
.brand img {
    width: auto !important;
    height: 50px !important;
    max-width: 180px;
    object-fit: contain !important;
    border-radius: 0 !important;
    flex-shrink: 0;
}

@media (max-width: 760px) {
    .brand img {
        width: auto !important;
        height: 42px !important;
        max-width: 150px;
        object-fit: contain !important;
    }
}

