/* ═══════════════════════════════════════════
   ODYSSEY PRODUCTIONS — Black Minimal
   Playfair Display · DM Sans
═══════════════════════════════════════════ */

:root {
    --gold: #C9A84C;
    --gold-light: #E2C46A;
    --bg: #080808;
    --bg-alt: #0f0f0f;
    --white: #ffffff;
    --muted: rgba(255,255,255,0.45);
    --border: rgba(255,255,255,0.08);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--white);
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }

/* ─── NAV ─── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 48px;
    transition: background 0.3s, border-color 0.3s;
}
.nav.scrolled {
    background: rgba(8,8,8,0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-helmet {
    height: 42px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}
.logo-stack {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.logo-stack span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.24em;
    color: var(--white);
    text-transform: uppercase;
}

.nav-cta {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.22);
    padding: 9px 22px;
    border-radius: 100px;
    transition: border-color 0.2s, color 0.2s;
}
.nav-cta:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 48px 120px;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    text-align: center;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: saturate(0.7);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(4,3,6,0.55) 0%,
        rgba(4,3,6,0.75) 50%,
        rgba(4,3,6,0.92) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.eyebrow {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
}

.headline {
    font-family: 'Cormorant', serif;
    font-size: clamp(52px, 7.5vw, 110px);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 32px;
}

.sub {
    font-size: clamp(15px, 1.3vw, 18px);
    font-weight: 300;
    line-height: 1.8;
    color: var(--muted);
    max-width: 560px;
    margin-bottom: 52px;
}

.cta-link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 3px;
    transition: color 0.2s, border-color 0.2s;
}
.cta-link:hover {
    color: var(--gold-light);
    border-color: var(--gold);
}

/* ─── SECTIONS ─── */
.section {
    padding: 112px 48px;
    border-bottom: 1px solid var(--border);
}
.section-alt {
    background: var(--bg-alt);
}
.section-inner {
    max-width: 960px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 72px;
}

.label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.sec-heading {
    font-family: 'Cormorant', serif;
    font-size: clamp(36px, 4.2vw, 64px);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.01em;
    color: var(--white);
}
.sec-heading em {
    font-style: italic;
    font-weight: 600;
    color: var(--gold-light);
}

.sec-sub {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--muted);
    max-width: 520px;
    margin-top: 16px;
}

/* ─── DELIVERABLES ─── */
.delivers {
    display: flex;
    flex-direction: column;
}

.deliver-row {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 0 32px;
    padding: 40px 0;
    border-top: 1px solid var(--border);
    transition: border-color 0.3s;
}
.deliver-row:last-child {
    border-bottom: 1px solid var(--border);
}
.deliver-row:hover {
    border-top-color: rgba(201,168,76,0.3);
}

.d-num {
    font-family: 'Cormorant', serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.06em;
    padding-top: 4px;
}

.d-body h3 {
    font-family: 'Cormorant', serif;
    font-size: clamp(22px, 1.9vw, 28px);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.d-body p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--muted);
    max-width: 600px;
}

/* ─── PROCESS STEPS ─── */
.steps {
    display: flex;
    flex-direction: column;
}

/* ─── PROCESS STEP REDESIGN ─── */
.step {
    padding: 44px 0;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.step:last-child { border-bottom: 1px solid var(--border); }

.step-head {
    display: flex;
    align-items: baseline;
    gap: 20px;
}

.s-phase {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
    flex-shrink: 0;
}

.step-head h3 {
    font-family: 'Cormorant', serif;
    font-size: clamp(24px, 2.4vw, 34px);
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.01em;
    line-height: 1;
}

.s-body p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--muted);
    max-width: 640px;
    padding-left: 82px;
}

/* ─── SPEC SECTION ─── */
.spec-section { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.spec-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.spec-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 14px 28px;
    border-radius: 100px;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    white-space: nowrap;
}
.spec-btn:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    background: rgba(201,168,76,0.06);
}

.spec-note {
    font-size: 11px;
    font-weight: 300;
    color: rgba(255,255,255,0.25);
    margin-top: 12px;
    text-align: center;
    letter-spacing: 0.02em;
}

/* ─── NEWSLETTER SECTION ─── */
.newsletter-section {
    padding: 112px 48px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.newsletter-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.newsletter-heading {
    margin-top: 20px;
    margin-bottom: 16px;
}

.newsletter-sub {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--muted);
    max-width: 420px;
    margin-bottom: 40px;
}

.newsletter-form {
    width: 100%;
    max-width: 520px;
}

.newsletter-input-wrap {
    display: flex;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    overflow: hidden;
    transition: border-color 0.3s;
}
.newsletter-input-wrap:focus-within {
    border-color: var(--gold);
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 16px 24px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.02em;
}
.newsletter-input::placeholder {
    color: rgba(255,255,255,0.3);
}

.newsletter-btn {
    background: var(--gold);
    border: none;
    padding: 14px 28px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #080808;
    cursor: pointer;
    border-radius: 100px;
    margin: 4px;
    transition: background 0.2s;
    white-space: nowrap;
}
.newsletter-btn:hover {
    background: var(--gold-light);
}

.newsletter-note {
    font-size: 11px;
    font-weight: 300;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.04em;
    margin-top: 14px;
    padding-left: 4px;
}

@media (max-width: 768px) {
    .newsletter-section { padding: 80px 24px; }
    .newsletter-input-wrap { flex-direction: column; border-radius: 16px; }
    .newsletter-btn { border-radius: 12px; margin: 0 4px 4px; padding: 14px; }
}

/* ─── GUARANTEE SECTION ─── */
.guarantee-section {
    padding: 120px 48px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
    background: var(--bg-alt);
}

.guarantee-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.guarantee-heading {
    font-family: 'Cormorant', serif;
    font-size: clamp(22px, 2.6vw, 42px);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--white);
    max-width: 780px;
    margin-top: 20px;
}

.gold-guarantee {
    font-style: normal;
    font-weight: 700;
    color: var(--gold-light);
    display: block;
}

.guarantee-sub {
    font-size: 0.8em;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    font-style: normal;
    letter-spacing: 0.06em;
}

/* ─── PARTNER SECTION ─── */
.partner-section {
    padding: 120px 48px;
    border-top: 1px solid var(--border);
    text-align: center;
}
.partner-section .section-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partner-heading {
    font-family: 'Cormorant', serif;
    font-size: clamp(48px, 6.5vw, 96px);
    font-weight: 600;
    font-style: italic;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.partner-sub {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--muted);
    max-width: 480px;
    margin-bottom: 44px;
}

.partner-cta {
    margin-bottom: 52px;
}

.socials {
    display: flex;
    align-items: center;
    gap: 28px;
}

.social-link {
    color: rgba(255,255,255,0.35);
    transition: color 0.2s;
    display: flex;
    align-items: center;
}
.social-link:hover { color: var(--gold-light); }

/* ─── FOOTER ─── */
.footer {
    padding: 32px 48px;
}

.footer-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.02em;
}

/* ─── GOLD HEADLINE EM ─── */
.headline em.gold {
    font-style: normal;
    color: var(--gold-light);
}

/* ─── SERVICES ROW ─── */
.services-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 20px;
    justify-content: center;
    margin-bottom: 44px;
}
.services-row span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.88);
    text-transform: uppercase;
}
.services-row .dot {
    color: var(--gold);
    font-size: 16px;
    font-weight: 300;
}

/* ─── SPEC VIDEO GRID ─── */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.spec-video-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.spec-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    background: #111;
    object-fit: cover;
    outline: none;
    border: 1px solid rgba(255,255,255,0.07);
}

.spec-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    padding-left: 4px;
}

/* ─── YOUTUBE EMBED ─── */
.yt-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(255,255,255,0.07);
}

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

/* ─── VIDEO WRAP & UNMUTE ─── */
.video-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(255,255,255,0.07);
}

.video-wrap .spec-video {
    border-radius: 0;
    border: none;
    display: block;
}

.vid-overlay {
    position: absolute;
    bottom: 14px;
    right: 14px;
}

.unmute-btn {
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.75);
    border-radius: 100px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.unmute-btn:hover {
    background: rgba(201,168,76,0.18);
    border-color: var(--gold);
    color: var(--gold-light);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .spec-grid { grid-template-columns: 1fr; max-width: 600px; }
}

@media (max-width: 768px) {
    .nav { padding: 20px 24px; }
    .hero { padding: 120px 24px 80px; }
    .section { padding: 80px 24px; }
    .partner-section { padding: 80px 24px; }
    .footer { padding: 28px 24px; }
    .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
    .services-row { gap: 6px 10px; }
}

@media (max-width: 480px) {
    .headline { font-size: 36px; }
    .nav-cta { display: none; }
    .yt-grid { grid-template-columns: 1fr; }
    .services-row .dot { display: none; }
    .services-row { flex-direction: column; align-items: center; gap: 6px; }
}
