/*
 Theme Name:   Food for Shot Studios
 Theme URI:    https://foodforshot.in
 Author:       Food for Shot Studios
 Author URI:   https://foodforshot.in
 Description:  Premium dark luxury one-page theme for Food for Shot Studios — commercial ad film production for food and FMCG brands. Features Vimeo reels, YouTube Shorts BTS section, animated reveals, mobile-first responsive layout.
 Version:      1.0.0
 Requires at least: 6.0
 Tested up to: 6.7
 Requires PHP: 7.4
 License:      GNU General Public License v2 or later
 License URI:  https://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  foodforshot
 Tags:         dark, one-page, portfolio, video, business, full-width-template
*/

/* ============================================================
   Food for Shot Studios — Professional Classic Luxury Theme
   Cormorant Garant (headings) + DM Sans (body)
   Warm near-black · Antique Gold · Editorial dark aesthetic
   ============================================================ */

/* ── Tokens ─────────────────────────────────────────────── */
:root {
    /* Backgrounds — lifted from near-black to rich warm dark */
    --bg:         #181410;
    --bg-2:       #211c14;
    --bg-3:       #271f16;

    /* Text — noticeably brighter and warmer */
    --cream:      #f6f0de;
    --body-txt:   #c4b49a;
    --muted:      #8c7d68;

    /* Gold — more vibrant and saturated */
    --gold:       #e9bc55;
    --gold-deep:  #c48c28;
    --gold-glow:  rgba(233, 188, 85, 0.28);

    /* Amber — warm orange accent for colour variety */
    --amber:      #e07848;
    --amber-glow: rgba(224, 120, 72, 0.2);

    /* Borders — more visible */
    --line:       rgba(246, 240, 222, 0.13);
    --line-gold:  rgba(233, 188, 85, 0.3);

    --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    /* Offset anchor links below the fixed 82px header */
    scroll-padding-top: 90px;
}

body {
    font-family: "DM Sans", system-ui, sans-serif;
    background: var(--bg);
    color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    /* Remove blue flash on tap (iOS / Android) */
    -webkit-tap-highlight-color: transparent;
}

img    { display: block; max-width: 100%; }
a      { color: inherit; text-decoration: none; cursor: pointer; touch-action: manipulation; }
button { cursor: pointer; font-family: inherit; touch-action: manipulation; }
ol, ul { list-style: none; }

/* ── Layout ─────────────────────────────────────────────── */
.container {
    width: min(1220px, 92%);
    margin-inline: auto;
}

.section { padding: clamp(80px, 10vw, 140px) 0; }

.section-dark {
    background:
        radial-gradient(ellipse at 90% 10%, rgba(233, 188, 85, 0.07), transparent 45%),
        radial-gradient(ellipse at 5%  90%, rgba(224, 120, 72, 0.06), transparent 40%),
        var(--bg-2);
}

/* ── Typography ─────────────────────────────────────────── */
h1, h2 {
    font-family: "Cormorant Garant", Georgia, serif;
    font-weight: 600;
    line-height: 1.08;
    color: var(--cream);
    letter-spacing: -0.01em;
}

h1   { font-size: clamp(3.2rem, 8.5vw, 7.8rem); }
h1 em { font-style: italic; color: var(--gold); }

h2   { font-size: clamp(2.2rem, 5.5vw, 4.4rem); }

h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: -0.01em;
}

p { color: var(--body-txt); }
p + p { margin-top: 1rem; }

.kicker {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 1rem;
}

.ornament {
    width: 44px;
    height: 1px;
    background: var(--gold);
    margin: 1.8rem 0;
    opacity: 0.55;
}

.section-hd {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-hd h2 { margin-top: 0.4rem; }

/* ── Custom Cursor ──────────────────────────────────────── */

/* ── Loader ─────────────────────────────────────────────── */
.loader {
    position: fixed;
    inset: 0;
    z-index: 8000;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s var(--ease-out);
}

.loader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner { text-align: center; }

.loader-wordmark {
    font-family: "Cormorant Garant", serif;
    font-size: 1.9rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--cream);
    text-transform: uppercase;
    margin-bottom: 1.8rem;
}

.loader-track {
    width: 160px;
    height: 1px;
    background: rgba(240, 234, 216, 0.12);
    margin: 0 auto;
    overflow: hidden;
}

.loader-fill {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--gold-deep), var(--gold));
    transition: width 0.1s linear;
}

/* ── Header ─────────────────────────────────────────────── */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 500;
    border-bottom: 1px solid transparent;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
}

.site-header.scrolled {
    background: rgba(22, 18, 13, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-color: var(--line);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 82px;
    gap: 1.5rem;
}

.logo {
    font-family: "Cormorant Garant", serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo span { color: var(--gold); }

/* Desktop nav */
.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(240, 234, 216, 0.65);
    position: relative;
    transition: color 0.2s;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -3px;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out);
}

.nav a:hover,
.nav a.active             { color: var(--cream); }
.nav a:hover::after,
.nav a.active::after      { width: 100%; }

/* CTA link inside nav */
.nav-cta-link {
    border: 1px solid rgba(201, 169, 122, 0.5) !important;
    color: var(--gold) !important;
    padding: 0.5rem 1.1rem !important;
    letter-spacing: 0.1em !important;
    transition: background 0.25s, color 0.25s, border-color 0.25s !important;
}

.nav-cta-link::after { display: none !important; }

.nav-cta-link:hover {
    background: var(--gold) !important;
    color: #0c0b09 !important;
    border-color: var(--gold) !important;
}

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    background: transparent;
    padding: 0;
    flex-shrink: 0;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--cream);
    border-radius: 2px;
    transition: transform 0.28s var(--ease-out), opacity 0.2s ease, width 0.2s ease;
}

/* Animate to × when nav is open */
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: clamp(60px, 8vw, 100px);
    padding-top: 82px;
    overflow: hidden;
}

/* Film grain overlay */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 220px 220px;
}

.hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 177.77vh;
    min-height: 100vh;
    width: 100vw;
    height: 56.25vw;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(18, 14, 10, 0.1)  0%,
            rgba(18, 14, 10, 0.42) 30%,
            rgba(18, 14, 10, 0.82) 65%,
            #181410                100%
        ),
        radial-gradient(ellipse at 68% 22%, rgba(233, 188, 85, 0.22), transparent 50%),
        radial-gradient(ellipse at 18% 75%, rgba(224, 120, 72, 0.16), transparent 45%);
}

.hero-body {
    position: relative;
    z-index: 3;
}

.hero-pre {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.rule-line {
    display: block;
    width: 38px;
    height: 1px;
    background: var(--gold);
    opacity: 0.65;
    flex-shrink: 0;
}

.hero-eyebrow {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 500;
    color: var(--gold);
}

.hero-h1 {
    line-height: 1.0;
    margin-bottom: 1.4rem;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 560px;
    margin-bottom: 2.5rem;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Scroll cue */
.scroll-cue {
    position: absolute;
    bottom: 2.5rem;
    right: 5%;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    writing-mode: vertical-rl;
}

.scroll-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(246, 240, 222, 0.55);
}

.scroll-track {
    width: 1px;
    height: 56px;
    background: rgba(240, 234, 216, 0.1);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 30%;
    background: var(--gold);
    animation: scrollDown 1.9s ease-in-out infinite;
}

@keyframes scrollDown {
    0%   { top: -30%; opacity: 1; }
    80%  { top: 100%; opacity: 0.3; }
    100% { top: 100%; opacity: 0; }
}

/* ── Buttons ────────────────────────────────────────────── */
.btn-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: #0c0b09;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border: 1px solid var(--gold);
    transition: background 0.25s, color 0.25s, transform 0.2s;
}

.btn-solid:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--cream);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border: 1px solid var(--line);
    transition: border-color 0.25s, color 0.25s;
}

.btn-line:hover {
    border-color: rgba(240, 234, 216, 0.5);
    color: var(--cream);
}

.w-full { width: 100%; }

/* ── Trust Strip ────────────────────────────────────────── */
.trust-strip {
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg);
}

.trust-inner {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    white-space: nowrap;
    min-width: max-content;
    padding: 1.1rem 0;
    animation: marquee 32s linear infinite;
}

.trust-inner span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(246, 240, 222, 0.65);
}

.trust-inner .trust-label { color: var(--gold); opacity: 1; }
.trust-inner .dot          { color: var(--amber); opacity: 0.75; font-size: 0.45rem; }

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── Story ──────────────────────────────────────────────── */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: center;
}

.story-stats {
    display: flex;
    gap: 0;
    margin-top: 2.4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.story-stats > div {
    flex: 1;
    padding-right: 1.5rem;
    border-right: 1px solid var(--line);
    margin-right: 1.5rem;
}

.story-stats > div:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}

.story-stats strong {
    display: block;
    font-family: "Cormorant Garant", serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0.2rem;
}

.story-stats span {
    font-size: 0.82rem;
    color: var(--muted);
}

/* Image with decorative offset border */
.story-img {
    position: relative;
}

.story-img::before {
    content: "";
    position: absolute;
    top: -18px;
    left: -18px;
    right: 18px;
    bottom: 18px;
    border: 1px solid rgba(233, 188, 85, 0.45);
    pointer-events: none;
    z-index: 0;
}

.story-img img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

/* ── Services ───────────────────────────────────────────── */
/* Gap-based border grid — cleanest approach */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);    /* gap shows as lines */
}

.svc-card {
    background: var(--bg-2);
    padding: 2.4rem 2rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.svc-card:hover { background: #2a2218; }

/* Big italic number */
.svc-card::before {
    content: attr(data-num);
    font-family: "Cormorant Garant", serif;
    font-size: 4rem;
    font-weight: 400;
    font-style: italic;
    color: rgba(233, 188, 85, 0.22);
    line-height: 1;
    display: block;
    margin-bottom: 1.4rem;
    transition: color 0.3s;
}

.svc-card:hover::before { color: rgba(233, 188, 85, 0.55); }

.svc-card h3 { margin-bottom: 0.6rem; }

/* Hover accent line — alternates gold / amber for colour variety */
.svc-card::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.4s var(--ease-out);
}

.svc-card:nth-child(even)::after { background: var(--amber); }

.svc-card:hover::after { width: 100%; }

/* ── Work / Reel Grid ───────────────────────────────────── */
.work-intro {
    max-width: 620px;
    margin-bottom: 0.5rem;
}

.reel-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-top: 2.8rem;
    margin-bottom: 1.1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--line);
    display: block;
}

.reel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.reel-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--bg-2);
    overflow: hidden;
    /* Subtle gold border that brightens on hover */
    border: 1px solid var(--line);
    transition: border-color 0.3s ease, transform 0.3s var(--ease-out);
}

.reel-frame:hover {
    border-color: rgba(233, 188, 85, 0.35);
    transform: translateY(-3px);
}

.reel-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    /* Custom player overlay handles all interaction */
    pointer-events: none;
}

/* ── BTS Shorts ─────────────────────────────────────────── */
.bts-section {
    position: relative;
    padding: 7rem 0 5rem;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg) 0%, #1a1108 50%, var(--bg) 100%);
}

.bts-bg-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 50% at 50% -10%, rgba(233, 188, 85, 0.07) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 15% 60%, rgba(224, 120, 72, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 85% 60%, rgba(233, 188, 85, 0.05) 0%, transparent 60%);
}

.bts-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: end;
    margin-bottom: 3rem;
}

.bts-intro {
    color: var(--body-txt);
    font-size: 1rem;
    line-height: 1.75;
    padding-bottom: 0.5rem;
}

/* ── Shorts horizontal row ── */
.shorts-row {
    display: flex;
    gap: 0.9rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1.6rem;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-deep) rgba(233, 188, 85, 0.08);
}

.shorts-row::-webkit-scrollbar        { height: 2px; }
.shorts-row::-webkit-scrollbar-track  { background: rgba(233, 188, 85, 0.06); border-radius: 999px; }
.shorts-row::-webkit-scrollbar-thumb  { background: var(--gold); border-radius: 999px; }

/* ── Individual short card ── */
.short-card {
    flex: 1 1 0;
    min-width: 168px;
    display: block;
    text-decoration: none;
    scroll-snap-align: start;
}

.short-img-wrap {
    position: relative;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(246, 240, 222, 0.07);
    background: var(--bg-2);
    transition: border-color 0.35s ease, transform 0.45s var(--ease-out), box-shadow 0.45s ease;
}

.short-card:hover .short-img-wrap {
    border-color: rgba(233, 188, 85, 0.45);
    transform: translateY(-8px) scale(1.01);
    box-shadow:
        0 28px 60px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(233, 188, 85, 0.1),
        0 0 40px rgba(233, 188, 85, 0.08);
}

.short-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: brightness(0.78) saturate(1.1);
    transition: transform 0.65s var(--ease-out), filter 0.45s ease;
}

.short-card:hover .short-img-wrap img {
    transform: scale(1.08);
    filter: brightness(0.52) saturate(1.15);
}

/* Gradient overlay */
.short-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8, 5, 0, 0.75) 0%,
        rgba(8, 5, 0, 0.15) 45%,
        transparent 70%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.35s ease;
}

.short-card:hover .short-overlay {
    background: linear-gradient(
        to top,
        rgba(8, 5, 0, 0.9) 0%,
        rgba(8, 5, 0, 0.45) 55%,
        rgba(8, 5, 0, 0.1) 100%
    );
}

/* Play button */
.short-play {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transform: scale(0.72);
    opacity: 0.55;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.4s var(--ease-out), opacity 0.3s ease;
}

.short-card:hover .short-play {
    background: #ff2020;
    border-color: #ff2020;
    transform: scale(1.05);
    opacity: 1;
    box-shadow: 0 0 28px rgba(255, 32, 32, 0.5);
}

.short-play svg {
    width: 20px;
    height: 20px;
    margin-left: 3px;
}

/* YouTube icon badge */
.yt-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.25s, background 0.25s;
}

.short-card:hover .yt-badge {
    color: #ff2020;
    background: rgba(0, 0, 0, 0.8);
}

.yt-badge svg { width: 14px; height: 14px; }

/* "Shorts" pill badge */
.short-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    font-size: 0.62rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 3px 8px;
    border-radius: 999px;
    transition: color 0.25s, border-color 0.25s;
}

.short-card:hover .short-badge {
    color: var(--gold);
    border-color: rgba(233, 188, 85, 0.3);
}

/* ── Bottom CTA row ── */
.bts-foot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.8rem;
    flex-wrap: wrap;
}

.bts-foot-text {
    font-size: 0.82rem;
    color: var(--muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.btn-solid {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: var(--gold);
    color: var(--bg);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
}

.btn-solid:hover {
    background: var(--cream);
    box-shadow: 0 8px 30px rgba(233, 188, 85, 0.3);
    transform: translateY(-2px);
}

/* ── Process ────────────────────────────────────────────── */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 3.5rem;
    position: relative;
}

/* Connecting line through step numbers */
.process-steps::before {
    content: "";
    position: absolute;
    top: 21px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        var(--line-gold) 15%,
        var(--line-gold) 85%,
        transparent
    );
    z-index: 0;
}

.process-step {
    padding: 0 2rem 0 0;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line-gold);
    background: var(--bg-2);
    font-family: "Cormorant Garant", serif;
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1.6rem;
    position: relative;
    z-index: 1;
}

.process-step h3 { margin-bottom: 0.5rem; }

/* ── Clients ────────────────────────────────────────────── */
.client-list {
    columns: 2;
    column-gap: 4rem;
    margin-top: 2.5rem;
}

.client-list li {
    font-size: 1rem;
    font-weight: 500;
    color: var(--cream);
    padding: 1rem 0;
    border-top: 1px solid var(--line);
    break-inside: avoid;
    transition: color 0.2s, padding-left 0.3s;
}

.client-list li:hover {
    color: var(--gold);
    padding-left: 0.5rem;
}

.client-list li:last-child { border-bottom: 1px solid var(--line); }

/* ── CTA Band ───────────────────────────────────────────── */
.cta-band {
    background:
        linear-gradient(135deg, #211c14 0%, #2c1e0c 50%, #211c14 100%);
    border-top: 1px solid rgba(233, 188, 85, 0.2);
    border-bottom: 1px solid rgba(233, 188, 85, 0.2);
    padding: clamp(55px, 8vw, 100px) 0;
    position: relative;
    overflow: hidden;
}

/* Rich dual-colour ambient glow */
.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, var(--amber-glow), transparent 50%),
        radial-gradient(ellipse at 80% 50%, var(--gold-glow),  transparent 50%);
    pointer-events: none;
}

.cta-band-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.cta-band-inner h2 {
    font-size: clamp(1.9rem, 4.5vw, 3.5rem);
}

/* ── Contact ────────────────────────────────────────────── */
.contact-wrap { align-items: start; }

.contact-left { padding-right: 1.5rem; }

.contact-links {
    margin-top: 2.2rem;
    display: flex;
    flex-direction: column;
}

.contact-links a {
    display: flex;
    align-items: baseline;
    gap: 1.2rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--cream);
    transition: color 0.2s, padding-left 0.3s;
}

.contact-links a:hover {
    color: var(--gold);
    padding-left: 0.4rem;
}

.contact-links span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    min-width: 5rem;
    flex-shrink: 0;
}

/* ── Form ───────────────────────────────────────────────── */
.form-card {
    background: var(--bg-3);
    border: 1px solid rgba(246, 240, 222, 0.14);
    padding: 2.5rem;
}

.form-field { margin-bottom: 1.4rem; }

label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--body-txt);
    margin-bottom: 0.45rem;
}

input,
textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line);
    color: var(--cream);
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
    padding: 0.6rem 0;
    outline: none;
    transition: border-color 0.25s;
}

input:focus,
textarea:focus { border-color: var(--gold); }

textarea { resize: vertical; }

/* Select wrapper */
.select-wrap { position: relative; }

.select-wrap::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 6px;
    background: var(--body-txt);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    pointer-events: none;
}

select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line);
    color: var(--cream);
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
    padding: 0.6rem 0;
    padding-right: 1.2rem;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: border-color 0.25s;
}

select:focus { border-color: var(--gold); }

select option { background: #271f16; color: var(--cream); }

.form-msg {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    min-height: 1.3rem;
}

.form-msg.error   { color: #f09090; }
.form-msg.success { color: #9fe7b0; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
    background: #110e09;
    border-top: 1px solid rgba(233, 188, 85, 0.18);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 3rem;
    padding: clamp(44px, 6vw, 72px) 0;
    border-bottom: 1px solid var(--line);
}

.footer-logo {
    font-family: "Cormorant Garant", serif;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 0.4rem;
}

.footer-logo span { color: var(--gold); }

.footer-tagline {
    font-size: 0.85rem;
    color: var(--body-txt);
}

.footer-nav,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 0.25rem;
}

.footer-nav a,
.footer-social a {
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--body-txt);
    opacity: 0.9;
    transition: color 0.2s, padding-left 0.3s;
}

.footer-nav a:hover,
.footer-social a:hover {
    color: var(--cream);
    padding-left: 0.3rem;
}

.footer-bottom { padding: 1.1rem 0; }

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--muted);
}

/* ── Video Modal ────────────────────────────────────────── */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 700;
    background: rgba(0, 0, 0, 0.94);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.video-modal.open { display: flex; }

.video-modal-inner {
    width: min(960px, 100%);
    position: relative;
}

.video-frame-wrap {
    aspect-ratio: 16 / 9;
}

.video-frame-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
}

.video-close svg { width: 15px; height: 15px; }

.video-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* ── Reveal Animations ──────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.75s var(--ease-out),
        transform 0.75s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
    .svc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .bts-header {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .process-steps::before { display: none; }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand { grid-column: span 2; }
}

/* ═══════════ 860 px — tablet / large phone ═══════════ */
@media (max-width: 860px) {

    /* ── Navigation ── */
    .menu-toggle { display: flex; }

    .nav {
        display: none;
        position: absolute;
        top: 82px;
        left: 0; right: 0;
        background: rgba(18, 14, 9, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-bottom: 1px solid var(--line);
        padding: 1.8rem 5%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        z-index: 400;
    }

    .nav.mobile-open { display: flex; }

    /* Give each nav link a full-width tap target */
    .nav a {
        width: 100%;
        padding: 0.85rem 0;
        border-bottom: 1px solid rgba(246, 240, 222, 0.06);
        font-size: 0.9rem;
    }

    .nav a:last-child { border-bottom: none; }

    .nav-cta-link {
        margin-top: 1rem;
        padding: 0.75rem 1.6rem !important;
        border-radius: 2px;
    }

    /* ── Hero ── */
    .hero-body { max-width: 95%; }
    .scroll-cue { display: none; }

    /* ── Grids ── */
    .split,
    .svc-grid,
    .reel-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    /* Keep reel at 2-col on tablet; drop to 1 at 560px */
    .reel-grid { grid-template-columns: repeat(2, 1fr); }

    /* ── Services ── */
    .svc-card { padding: 2rem 1.5rem; }

    /* ── BTS ── */
    .bts-section { padding: 4.5rem 0 3.5rem; }

    .bts-header {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .short-card {
        flex: 0 0 160px;
        min-width: 160px;
    }

    .bts-foot { gap: 1.2rem; }

    /* ── Story ── */
    .story-img { margin-top: 2rem; }
    .story-img::before { display: none; }

    /* ── Clients ── */
    .client-list { columns: 1; }

    /* ── CTA Band ── */
    .cta-band-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    /* ── Contact ── */
    .contact-left { padding-right: 0; }

    .form-card { padding: 1.8rem 1.4rem; }

    /* ── Footer ── */
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand { grid-column: span 1; }
}

/* ═══════════ 560 px — phone ═══════════ */
@media (max-width: 560px) {

    /* ── Hero ── */
    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-ctas .btn-solid,
    .hero-ctas .btn-line { text-align: center; }

    /* ── Reel drop to 1 col ── */
    .reel-grid { grid-template-columns: 1fr; }

    /* ── Story stats stack vertically ── */
    .story-stats {
        flex-direction: column;
        gap: 0;
    }

    .story-stats > div {
        border-right: none;
        border-bottom: 1px solid var(--line);
        margin-right: 0;
        padding-right: 0;
        padding-bottom: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .story-stats > div:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    /* ── Form ── */
    .form-card { padding: 1.4rem 1rem; }

    /* ── BTS ── */
    .shorts-row { gap: 0.6rem; }

    .short-card {
        flex: 0 0 145px;
        min-width: 145px;
    }

    /* ── CTA band ── */
    .cta-band-inner h2 { font-size: clamp(1.6rem, 7vw, 2.4rem); }

    /* ── Footer bottom bar ── */
    .footer-bottom {
        flex-direction: column;
        gap: 0.6rem;
        text-align: center;
    }
}

/* ═══════════ 420 px — small phone ═══════════ */
@media (max-width: 420px) {

    /* Shrink logo on tiny screens */
    .logo { font-size: 1.2rem; }

    /* Tighten hero text */
    h1 { font-size: clamp(2.6rem, 11vw, 3.2rem); }

    /* Nav height */
    .nav-wrap { height: 68px; }
    .nav { top: 68px; }

    /* Form full-bleed on tiny screens */
    .form-card { padding: 1.2rem 0.9rem; }

    /* Shorts even narrower */
    .short-card {
        flex: 0 0 130px;
        min-width: 130px;
    }

    /* Process step number smaller */
    .step-num { font-size: 2.2rem; }
}
