/* =========================================================
   AUTO SOLVE — Trust. Red. Blue. Gold.

   Navy authority. Crimson commands. Gold earns its place.
   Two-tone headings. Bold weight contrast. Editorial rhythm.
   Cormorant (serif display) + Hanken Grotesk (geometric sans)
   ========================================================= */

:root {
    --bg:          #0c1120;
    --bg-alt:      #101726;
    --surface:     #151c2e;
    --border:      #1e2a42;
    --border-light:#2a3a56;
    --text:        #eceef1;
    --text-dim:    #9baab9;
    --text-muted:  #687b8e;
    --blue:        #2e6db4;
    --blue-deep:   #1a3a5c;
    --red:         #B91C1C;
    --red-bright:  #DC2626;
    --red-glow:    rgba(185, 28, 28, 0.35);
    --gold:        #E5A918;
    --gold-dim:    rgba(229, 169, 24, 0.4);
    --gold-light:  #f0c24d;
    --serif:       'Cormorant', Georgia, 'Times New Roman', serif;
    --sans:        'Hanken Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================================
   RESET & BASE
   ========================================================= */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dim);
    background: var(--bg);
    overflow-x: hidden;
}

::selection {
    background: var(--blue-deep);
    color: var(--text);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover { color: var(--text); }

strong {
    font-weight: 600;
    color: var(--text);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

/* =========================================================
   NOISE TEXTURE
   ========================================================= */

.noise {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    mix-blend-mode: overlay;
}

/* =========================================================
   TWO-TONE TYPOGRAPHY SYSTEM

   h1, h2 are white. <em> inside them is gold.
   That's the entire trick. White words anchor. Gold words lift.
   ========================================================= */

h1, h2 {
    font-family: var(--serif);
    color: var(--text);
    font-weight: 700;
    letter-spacing: -0.025em;
}

h1 em, h2 em {
    color: var(--gold);
    font-style: normal;
    font-weight: 700;
}

h3 {
    font-family: var(--serif);
    color: var(--text);
    font-weight: 600;
}

/* =========================================================
   EYEBROW — small, gold, uppercase, structural
   ========================================================= */

.eyebrow {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.eyebrow::before {
    content: '';
    width: 20px;
    height: 1.5px;
    background: var(--gold-dim);
    flex-shrink: 0;
}

/* =========================================================
   GRADIENT LINE — decorative separator under headings
   ========================================================= */

.gradient-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--red), var(--gold-dim));
    margin: 28px 0 32px;
    border-radius: 1px;
}

/* centered version for centered sections */
.section-header .gradient-line,
.cinematic-content .gradient-line {
    margin-left: auto;
    margin-right: auto;
}

/* =========================================================
   NAVIGATION
   ========================================================= */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 22px 40px;
    transition: padding 0.5s var(--ease-out),
                background 0.5s var(--ease-out),
                box-shadow 0.5s ease;
}

.nav.scrolled {
    background: rgba(12, 17, 32, 0.95);
    backdrop-filter: blur(24px) saturate(1.3);
    -webkit-backdrop-filter: blur(24px) saturate(1.3);
    padding: 14px 40px;
    box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0, 0, 0, 0.2);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 40px;
    width: auto;
    transition: opacity 0.3s ease;
}

.nav.scrolled .nav-logo img {
    height: 34px;
}

.nav-logo:hover img { opacity: 0.8; }

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-phone {
    color: var(--text-dim);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.nav-phone:hover { color: var(--text); }

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text);
    transition: all 0.35s var(--ease-out);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 12px 40px 28px;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(12, 17, 32, 0.98);
}

.mobile-menu a {
    padding: 16px 0;
    color: var(--text);
    font-size: 18px;
    font-weight: 400;
    border-bottom: 1px solid var(--border);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--gold);
    padding-left: 10px;
}

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

/* =========================================================
   BUTTONS — red primary, ghost secondary
   ========================================================= */

.btn {
    display: inline-block;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.35s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    padding: 18px 44px;
    background: var(--red);
    color: #fff;
    border: 1.5px solid var(--red);
}

.btn-primary:hover {
    background: var(--red-bright);
    border-color: var(--red-bright);
    color: #fff;
    box-shadow: 0 6px 32px var(--red-glow);
    transform: translateY(-3px);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 16px var(--red-glow);
}

/* animated sheen on primary button */
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.12),
        transparent
    );
    transition: none;
    animation: btnSheen 4s ease-in-out infinite;
}

@keyframes btnSheen {
    0%, 100% { left: -100%; }
    50%      { left: 150%; }
}

.btn-outline {
    padding: 18px 44px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--gold-dim);
    color: var(--gold);
    background: rgba(229, 169, 24, 0.04);
    box-shadow: none;
    transform: translateY(-3px);
}

.btn-sm {
    padding: 11px 24px;
    font-size: 11px;
    letter-spacing: 0.16em;
    background: var(--red);
    color: #fff;
    border: 1.5px solid var(--red);
    border-radius: 5px;
}

.btn-sm:hover {
    background: var(--red-bright);
    border-color: var(--red-bright);
    color: #fff;
    box-shadow: 0 4px 20px var(--red-glow);
    transform: translateY(-2px);
}

.btn-sm::after { display: none; }

/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: -10%;
    background-size: cover;
    background-position: center 25%;
    animation: heroZoom 30s ease-out forwards;
}

@keyframes heroZoom {
    from { transform: scale(1.15); }
    to   { transform: scale(1.0); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 55%, rgba(12, 17, 32, 0.35) 0%, rgba(12, 17, 32, 0.45) 50%),
        linear-gradient(to bottom, rgba(12, 17, 32, 0.1) 0%, rgba(12, 17, 32, 0.4) 45%, rgba(12, 17, 32, 0.88) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1060px;
    padding: 180px 28px 100px;
}

.hero h1 {
    font-size: clamp(40px, 6.2vw, 80px);
    line-height: 1.08;
    margin-bottom: 36px;
}

.hero-sub {
    font-size: 24px;
    font-weight: 400;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 10px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-tagline {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dim);
    letter-spacing: 0.02em;
    margin-bottom: 44px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

/* Trust bar — checkmarks instead of dots */
.trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: 11px;
    flex-shrink: 0;
}

/* =========================================================
   TRUST INDICATORS — boutique credibility, not volume metrics
   ========================================================= */

.status-bar {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 52px 28px;
}

.status-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.status-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    flex: 1;
    padding: 8px 16px;
    transition: transform 0.5s var(--ease-out);
}

.status-word {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 600;
    color: var(--gold-dim);
    line-height: 1;
    letter-spacing: -0.01em;
    transition: color 0.5s ease;
}

.status-label {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.5s ease;
}

.status-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
    flex-shrink: 0;
}

/* Emphasis on boxes 2 & 3 — subtle prominence */
.status-emphasis {
    transform: scale(1.06);
}

.status-emphasis .status-word {
    color: var(--gold);
    font-weight: 700;
}

.status-emphasis .status-label {
    color: var(--text-dim);
}

/* Brighter dividers flanking emphasis items */
.status-emphasis + .status-divider,
.status-divider:has(+ .status-emphasis) {
    background: var(--border-light);
    height: 40px;
}

/* =========================================================
   PHOTO STRIP
   ========================================================= */

.photo-strip {
    position: relative;
    overflow: hidden;
    overflow-x: auto;
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.photo-strip::-webkit-scrollbar { display: none; }

.strip-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 140px;
    z-index: 2;
    pointer-events: none;
}

.strip-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
}

.strip-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}

.strip-track {
    display: flex;
    gap: 3px;
    width: max-content;
    padding: 3px 0;
}

.strip-track img {
    height: 320px;
    width: auto;
    object-fit: cover;
    filter: saturate(0.5) contrast(1.1) brightness(0.88);
    transition: filter 0.6s ease, transform 0.6s var(--ease-out);
}

.strip-track img:hover {
    filter: saturate(0.85) contrast(1.05) brightness(1);
    transform: scale(1.03);
    z-index: 1;
    position: relative;
}

/* =========================================================
   SECTIONS
   ========================================================= */

.section {
    padding: 160px 28px;
    position: relative;
}

.section-alt {
    background: var(--bg-alt);
}

/* Section header */
.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-header .eyebrow {
    justify-content: center;
}

.section-header h2 {
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.08;
    margin-bottom: 24px;
}

.section-header p {
    color: var(--text-dim);
    font-size: 18px;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.8;
}

/* =========================================================
   SPLIT SECTIONS
   ========================================================= */

.split {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 90px;
    align-items: center;
}

.split-text h2 {
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.08;
    margin-bottom: 0;
}

.split-text p {
    font-size: 18px;
    margin-bottom: 18px;
    line-height: 1.8;
}

.split-text .accent-text {
    font-family: var(--serif);
    font-style: italic;
    font-size: 24px;
    font-weight: 500;
    color: var(--text);
    margin-top: 16px;
    line-height: 1.4;
}

.split-image {
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

.split-image::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    pointer-events: none;
}

.split-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    filter: saturate(0.7) contrast(1.08);
    transition: transform 0.9s var(--ease-out), filter 0.9s ease;
}

.split-image:hover img {
    transform: scale(1.04);
    filter: saturate(0.9) contrast(1.05);
}

.split-reverse {
    grid-template-columns: 1.15fr 1fr;
}

.split-reverse .split-image { order: -1; }

/* =========================================================
   TEAM PORTRAIT GRID — 2x2 headshots with names
   ========================================================= */

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    border-radius: 8px;
    overflow: hidden;
}

.split-reverse .team-grid { order: -1; }

.team-member {
    position: relative;
    overflow: hidden;
}

.team-member img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top center;
    filter: saturate(0.6) contrast(1.1) brightness(0.9);
    transition: filter 0.6s ease, transform 0.8s var(--ease-out);
}

.team-member:hover img {
    filter: saturate(0.85) contrast(1.05) brightness(1);
    transform: scale(1.04);
}

.team-name {
    position: absolute;
    bottom: 28px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s ease, transform 0.4s var(--ease-out);
}

.team-role {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s ease 0.05s, transform 0.4s var(--ease-out) 0.05s;
}

.team-member::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 17, 32, 0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.team-member:hover::after { opacity: 1; }
.team-member:hover .team-name,
.team-member:hover .team-role {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   CINEMATIC SECTIONS
   ========================================================= */

.cinematic-section {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 170px 28px;
}

.cinematic-tall { min-height: 660px; }

/* Emotional anchor — short, dramatic, single-line */
.cinematic-anchor {
    min-height: 380px;
    padding: 120px 28px;
}

.anchor-line {
    font-family: var(--serif);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 500;
    color: var(--text);
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.anchor-line em {
    color: var(--gold);
    font-style: normal;
    font-weight: 700;
}

.cinematic-bg {
    position: absolute;
    inset: -20%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.cinematic-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(12, 17, 32, 0.65) 0%, rgba(12, 17, 32, 0.9) 100%);
}

.cinematic-overlay-light {
    background:
        radial-gradient(ellipse at center, rgba(12, 17, 32, 0.5) 0%, rgba(12, 17, 32, 0.78) 100%);
}

.cinematic-content {
    position: relative;
    z-index: 2;
    max-width: 660px;
}

.cinematic-content .eyebrow { justify-content: center; }

.cinematic-content h2 {
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.08;
    margin-bottom: 28px;
}

.cinematic-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* =========================================================
   GALLERY — Tabs, Grid, Captions, Progressive Disclosure
   ========================================================= */

/* Category tabs */
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.gallery-tab {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 22px;
    border: 1px solid var(--border);
    border-radius: 50px;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.35s var(--ease-out);
}

.gallery-tab:hover {
    border-color: var(--border-light);
    color: var(--text-dim);
    background: rgba(255, 255, 255, 0.02);
}

.gallery-tab.active {
    border-color: var(--gold-dim);
    color: var(--gold);
    background: rgba(229, 169, 24, 0.06);
}

/* Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 4px;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.45) contrast(1.1) brightness(0.82);
    transition: transform 0.8s var(--ease-out), filter 0.8s ease;
}

/* Gradient overlay */
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(12, 17, 32, 0.55) 0%,
        rgba(12, 17, 32, 0.05) 40%,
        rgba(12, 17, 32, 0.1) 100%
    );
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.gallery-item:hover img {
    transform: scale(1.12);
    filter: saturate(0.9) contrast(1.05) brightness(1);
}

.gallery-item:hover::after { opacity: 0; }

/* Caption overlay */
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 16px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    z-index: 2;
    transform: translateY(4px);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s var(--ease-out);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Hidden items for progressive disclosure */
.gallery-hidden {
    display: none;
}

.gallery-hidden.gallery-revealed {
    display: block;
}

/* Filtered out items */
.gallery-item.gallery-filtered-out {
    display: none;
}

.gallery-wide  { grid-column: span 2; }
.gallery-tall  { grid-row: span 2; }

/* View More button container */
.gallery-more {
    text-align: center;
    margin-top: 48px;
}

/* =========================================================
   CTA
   ========================================================= */

.cta-section {
    background: var(--bg);
    text-align: center;
    padding: 180px 28px;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 72px;
    background: linear-gradient(to bottom, var(--border-light), transparent);
}

.cta-content .eyebrow { justify-content: center; }

.cta-content h2 {
    font-size: clamp(34px, 4.5vw, 58px);
    max-width: 720px;
    margin: 0 auto 28px;
    line-height: 1.15;
}

.cta-content > p {
    font-size: 18px;
    margin-bottom: 48px;
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    padding: 80px 28px 40px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1.2fr 1fr 1.2fr 0.8fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer h4 {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--text);
    letter-spacing: -0.01em;
}

.footer-tagline {
    color: var(--text-dim) !important;
    font-size: 16px !important;
    font-style: italic;
    margin-bottom: 16px;
    font-weight: 300;
}

.footer p,
.footer a {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 2;
    font-weight: 400;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 0.08em;
    font-weight: 500;
    opacity: 0.6;
}

/* =========================================================
   LIGHTBOX
   ========================================================= */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(6, 8, 16, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    cursor: pointer;
}

.lightbox-open {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 16px 80px rgba(0, 0, 0, 0.6);
    cursor: default;
    transition: transform 0.3s var(--ease-out), opacity 0.3s ease;
}

.lightbox-open .lightbox-img {
    animation: lbFadeIn 0.3s var(--ease-out);
}

@keyframes lbFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s var(--ease-out);
    font-family: var(--sans);
    z-index: 2;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: #fff;
}

.lightbox-close {
    top: 24px;
    right: 28px;
    font-size: 36px;
    line-height: 1;
    padding: 8px;
}

.lightbox-close:hover { transform: scale(1.1); }

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    font-size: 48px;
    line-height: 1;
    padding: 16px;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lightbox-next:hover { transform: translateY(-50%) translateX(3px); }

/* Clickable image cursors */
.strip-track img,
.split-image img,
.team-member img {
    cursor: pointer;
}

/* =========================================================
   ANIMATIONS
   ========================================================= */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.9s var(--ease-out),
                transform 0.9s var(--ease-out);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1024px) {
    .split {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .split-reverse { grid-template-columns: 1fr; }
    .split-reverse .split-image { order: -1; }
    .split-reverse .team-grid { order: -1; }

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

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 220px;
    }

    .gallery-tabs { gap: 4px; }
    .gallery-tab { padding: 8px 16px; font-size: 11px; }

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

@media (max-width: 768px) {
    .nav { padding: 18px 24px; }
    .nav.scrolled { padding: 14px 24px; }
    .mobile-menu { padding: 8px 24px 24px; }

    .nav-phone, .nav .btn { display: none; }
    .nav-toggle { display: flex; }
    .mobile-menu.open { display: flex; }

    .section { padding: 100px 24px; }

    .strip-track img { height: 240px; }
    .strip-fade { width: 60px; }

    .hero-content { padding: 140px 24px 80px; }
    .hero-sub { font-size: 21px; }
    .hero-tagline { font-size: 18px; }

    .trust-bar { gap: 16px; }
    .trust-item { font-size: 11px; letter-spacing: 0.1em; }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 190px;
        border-radius: 8px;
    }

    .gallery-wide { grid-column: span 2; }
    .gallery-tall { grid-row: span 1; }

    .gallery-caption { opacity: 1; transform: translateY(0); font-size: 10px; padding: 10px 12px; }
    .gallery-tabs { gap: 4px; margin-bottom: 32px; }
    .gallery-tab { padding: 7px 14px; font-size: 10px; letter-spacing: 0.08em; }

    /* Team grid: always show names on touch devices */
    .team-member::after { opacity: 1; }
    .team-name, .team-role { opacity: 1; transform: translateY(0); }
    .team-name { font-size: 15px; bottom: 24px; }
    .team-role { font-size: 9px; bottom: 10px; }

    .status-inner { gap: 0; }
    .status-word { font-size: 22px; }
    .status-label { font-size: 9px; letter-spacing: 0.1em; }
    .status-divider { height: 28px; }
    .status-emphasis { transform: scale(1.04); }

    .cta-section { padding: 100px 24px; }
    .cta-section::before { height: 48px; }

    .cinematic-section { min-height: 440px; padding: 100px 24px; }
    .cinematic-anchor { min-height: 300px; padding: 80px 24px; }
    .cinematic-tall { min-height: 500px; }

    .lightbox-prev, .lightbox-next { font-size: 36px; padding: 12px; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .lightbox-close { top: 16px; right: 16px; font-size: 30px; }
}

@media (max-width: 540px) {
    .footer-inner { grid-template-columns: 1fr; gap: 36px; }

    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
    .gallery-wide { grid-column: span 2; }

    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width: 300px; text-align: center; }

    .trust-bar { flex-direction: column; gap: 12px; }

    .status-inner { flex-wrap: wrap; gap: 0; }
    .status-divider { display: none; }
    .status-item { flex: 1 1 40%; padding: 12px 8px; }
    .status-word { font-size: 20px; }
    .status-emphasis { transform: scale(1.03); }

    .hero h1 { font-size: 34px; line-height: 1.12; }
    .hero-sub { font-size: 19px; }
    .hero-tagline { font-size: 16px; }

    .split-text h2,
    .section-header h2,
    .cinematic-content h2 { font-size: 34px; }

    .cta-content h2 { font-size: 30px; }

    .page-hero-content { padding: 120px 24px 60px; }
    .page-hero h1 { font-size: 30px; }
    .page-hero-sub { font-size: 17px; }

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

/* =========================================================
   NAV DROPDOWN — Services menu
   ========================================================= */

.nav-services {
    position: relative;
}

.nav-link {
    color: var(--text-dim);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 8px 0;
    cursor: pointer;
}

.nav-link:hover { color: var(--text); }

.nav-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 260px;
    background: rgba(12, 17, 32, 0.97);
    backdrop-filter: blur(24px) saturate(1.3);
    -webkit-backdrop-filter: blur(24px) saturate(1.3);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s var(--ease-out);
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.nav-services:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 11px 24px;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dim);
    transition: color 0.2s ease, padding-left 0.2s ease, background 0.2s ease;
}

.nav-dropdown a:hover {
    color: var(--gold);
    padding-left: 28px;
    background: rgba(255, 255, 255, 0.03);
}

/* =========================================================
   INNER PAGE HERO
   ========================================================= */

.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 60%, rgba(12, 17, 32, 0.4) 0%, rgba(12, 17, 32, 0.6) 60%),
        linear-gradient(to bottom, rgba(12, 17, 32, 0.15) 0%, rgba(12, 17, 32, 0.9) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 160px 28px 72px;
    width: 100%;
}

.page-hero h1 {
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.08;
    margin-bottom: 16px;
}

.page-hero-sub {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dim);
    max-width: 600px;
    line-height: 1.7;
}

/* Breadcrumb */
.breadcrumb {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--gold-dim);
    transition: color 0.2s ease;
}

.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--text-muted); }

/* =========================================================
   RELATED SERVICES GRID
   ========================================================= */

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.related-card {
    display: block;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.4s ease, transform 0.5s var(--ease-out), box-shadow 0.5s ease;
}

.related-card:hover {
    border-color: var(--border-light);
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
    color: var(--text);
}

.related-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: saturate(0.45) contrast(1.1) brightness(0.82);
    transition: filter 0.6s ease, transform 0.6s var(--ease-out);
}

.related-card:hover .related-card-img {
    filter: saturate(0.8) contrast(1.05) brightness(1);
    transform: scale(1.05);
}

.related-card-img-wrap {
    overflow: hidden;
}

.related-card-body {
    padding: 28px 24px;
}

.related-card-body h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.related-card-body p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Inline text links */
.text-link {
    color: var(--gold-dim);
    border-bottom: 1px solid rgba(229, 169, 24, 0.2);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.text-link:hover {
    color: var(--gold);
    border-color: var(--gold-dim);
}

/* =========================================================
   PRICING TIERS
   ========================================================= */

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.tier-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 44px 32px 40px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s ease, transform 0.5s var(--ease-out), box-shadow 0.5s ease;
}

.tier-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

/* Top accent line */
.tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--border-light), var(--border));
    border-radius: 12px 12px 0 0;
}

/* Featured tier */
.tier-featured {
    border-color: var(--gold-dim);
}

.tier-featured::before {
    background: linear-gradient(90deg, var(--gold), var(--gold-dim));
}

.tier-badge {
    display: inline-block;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--gold);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.tier-name {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.tier-product {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--gold-dim);
    margin-bottom: 4px;
}

.tier-type {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.tier-prices {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.tier-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}

.tier-price-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
}

.tier-price-value {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.02em;
}

.tier-features {
    list-style: none;
    margin-bottom: 24px;
}

.tier-features li {
    position: relative;
    padding: 7px 0 7px 24px;
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.5;
}

.tier-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-dim);
    font-size: 13px;
    font-weight: 700;
}

.tier-featured .tier-features li::before {
    color: var(--gold);
}

.tier-time {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.tier-reapply {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dim);
    letter-spacing: 0.02em;
}

.tier-featured .tier-reapply {
    color: var(--gold-dim);
}

/* =========================================================
   VEHICLE SIZING
   ========================================================= */

.sizing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.sizing-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.sizing-icon {
    font-size: 36px;
    margin-bottom: 14px;
    filter: grayscale(0.3);
}

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

.sizing-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* =========================================================
   FAQ ACCORDION
   ========================================================= */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
    transition: color 0.3s ease;
    gap: 20px;
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.35s var(--ease-out);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--text-muted);
    transition: transform 0.35s var(--ease-out), opacity 0.35s ease;
}

.faq-icon::before {
    width: 14px;
    height: 1.5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 1.5px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.faq-open .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
    padding: 0 0;
}

.faq-item.faq-open .faq-answer {
    max-height: 300px;
    padding: 0 0 24px;
}

.faq-answer p {
    font-size: 16px;
    color: var(--text-dim);
    line-height: 1.75;
}

/* =========================================================
   "WHICH ONE" GUIDE
   ========================================================= */

.guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.guide-card {
    padding: 36px 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.guide-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.guide-card p {
    font-size: 15px;
    color: var(--text-dim);
    line-height: 1.75;
}

/* =========================================================
   INNER PAGE RESPONSIVE
   ========================================================= */

@media (max-width: 1024px) {
    .related-grid { grid-template-columns: repeat(2, 1fr); }
    .tiers-grid { grid-template-columns: 1fr; max-width: 440px; }
    .sizing-grid { grid-template-columns: 1fr; max-width: 360px; }
    .guide-grid { grid-template-columns: 1fr; max-width: 500px; }
}

@media (max-width: 768px) {
    .nav-services { display: none; }
    .page-hero { min-height: 40vh; }
    .page-hero-content { padding: 140px 24px 56px; }
    .page-hero-sub { font-size: 18px; }
    .related-grid { grid-template-columns: 1fr; }
    .related-card-img { height: 180px; }
    .tier-card { padding: 36px 24px 32px; }
    .faq-question { font-size: 18px; }
}
