/* ═══════════════════════════════════════════════
   ROOT TOKENS
═══════════════════════════════════════════════ */
:root {
    --black:         #020206;
    --black-mid:     #080810;
    --off-white:     #f0efec;
    --text-primary:  #ffffff;
    --text-muted:    rgba(255,255,255,0.55);
    --accent-sky:    #a1c4fd;
    --accent-gold:   #c8a96e;
    --accent-warm:   #e8d5b0;
    --glass-bg:      rgba(255,255,255,0.04);
    --glass-border:  rgba(255,255,255,0.08);
    --glass-hover:   rgba(255,255,255,0.08);
    --nav-glass:     rgba(2,2,6,0.75);
    --font-display:  'Cormorant Garamond', Georgia, serif;
    --font-ui:       'Syne', sans-serif;
    --font-body:     'DM Sans', sans-serif;
    --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out:   cubic-bezier(0.65, 0, 0.35, 1);
    --intro-dur:     4200ms;
}

/* ═══════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    background: var(--black);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration:none; color:inherit; transition: all 0.3s; }
img, svg { display:block; }

/* ═══════════════════════════════════════════════
   BACKGROUND
═══════════════════════════════════════════════ */
canvas#starfield {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -2;
}

.overlay-gradient {
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, transparent 0%, rgba(2,2,6,0.85) 80%);
    pointer-events: none;
    z-index: -1;
}

.noise-overlay {
    position: fixed;
    inset: 0;
    opacity: 0.028;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

/* ═══════════════════════════════════════════════
   CINEMATIC INTRO
═══════════════════════════════════════════════ */
#intro-overlay {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: introExit 0.9s var(--ease-in-out) var(--intro-dur) forwards;
}

@keyframes introExit {
    0%   { opacity: 1; transform: scale(1); }
    60%  { opacity: 1; transform: scale(1.04); }
    100% { opacity: 0; transform: scale(1.08); pointer-events: none; }
}

#intro-overlay.done { pointer-events: none; }

/* Scanlines */
.intro-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        to bottom,
        transparent,
        transparent 2px,
        rgba(255,255,255,0.012) 2px,
        rgba(255,255,255,0.012) 4px
    );
    pointer-events: none;
    animation: scanlinesMove 8s linear infinite;
}
@keyframes scanlinesMove { to { background-position: 0 100px; } }

.intro-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, #000 100%);
    pointer-events: none;
}

/* Corners */
.intro-corner {
    position: absolute;
    width: 40px; height: 40px;
    border-color: rgba(200,169,110,0.5);
    border-style: solid;
    animation: cornerAppear 0.6s var(--ease-out) 0.3s both;
}
.intro-corner.tl { top: 40px; left: 40px; border-width: 1px 0 0 1px; }
.intro-corner.tr { top: 40px; right: 40px; border-width: 1px 1px 0 0; }
.intro-corner.bl { bottom: 40px; left: 40px; border-width: 0 0 1px 1px; }
.intro-corner.br { bottom: 40px; right: 40px; border-width: 0 1px 1px 0; }
@keyframes cornerAppear { from { opacity:0; transform: scale(0.7); } to { opacity:1; transform: scale(1); } }

/* Content */
.intro-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.intro-pre-text {
    font-family: var(--font-ui);
    font-size: clamp(0.6rem, 1.5vw, 0.75rem);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent-gold);
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 0.5s forwards;
    margin-bottom: 28px;
}

.intro-title-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.intro-line-left,
.intro-line-right {
    height: 4px;
    background: linear-gradient(to right, transparent, rgba(200,169,110,0.4));
    width: 0;
    animation: lineExpand 1s var(--ease-out) 1s forwards;
    flex-shrink: 0;
}
.intro-line-right {
    background: linear-gradient(to left, transparent, rgba(200,169,110,0.4));
}
@keyframes lineExpand { to { width: clamp(30px, 5vw, 80px); } }

.intro-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 10vw, 8rem);
    font-weight: 300;
    letter-spacing: 0.12em;
    color: #fff;
    line-height: 1;
    display: flex;
    gap: 0.25em;
    white-space: nowrap;
    margin: 0 20px;
}

.intro-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px) skewY(2deg);
    animation: wordReveal 0.9s var(--ease-out) forwards;
}
.intro-word:nth-child(1) { animation-delay: 0.7s; }
.intro-word:nth-child(2) { animation-delay: 0.95s; color: var(--accent-gold); font-style: italic; }
.intro-word:nth-child(3) { animation-delay: 1.2s; }

@keyframes wordReveal {
    to { opacity: 1; transform: translateY(0) skewY(0); }
}

.intro-sub-text {
    font-family: var(--font-ui);
    font-size: clamp(0.65rem, 1.8vw, 0.85rem);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-top: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 1.8s forwards;
}

.intro-ticker {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    overflow: hidden;
    width: 100vw;
    font-family: var(--font-ui);
    font-size: clamp(0.6rem, 1.2vw, 0.7rem);
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.18);
    display: flex;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 2.2s forwards;
}
.intro-ticker span {
    animation: tickerScroll 8s linear infinite;
    padding-right: 60px;
}
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
#site-header {
    position: fixed;
    top: 0; width: 100%;
    z-index: 500;
    padding: 20px 0;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
#site-header.visible { opacity: 1; transform: translateY(0); }

.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 92%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 28px;
    background: var(--nav-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 60px;
    transition: background 0.3s, border-color 0.3s;
}
.glass-nav:hover { border-color: rgba(255,255,255,0.14); }

.logo {
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.03em;
    color: #fff;
    flex-shrink: 0;
}
.logo-mark {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--accent-gold);
    font-size: 1.3em;
}
.footer-logo { font-size: 1.4rem; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
}
.nav-link {
    font-family: var(--font-ui);
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.7);
    position: relative;
    padding-bottom: 3px;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--accent-gold);
    transition: width 0.35s var(--ease-out);
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    border-radius: 60px;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}
.cta-button.small { padding: 10px 22px; font-size: 0.75rem; }
.cta-button.primary {
    background: #fff;
    color: var(--black);
}
.cta-button.primary:hover {
    background: var(--accent-warm);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200,169,110,0.25);
}
.cta-button.ghost {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
}
.cta-button.ghost:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.5);
}
.cta-button.full-width { width: 100%; justify-content: center; }

.desktop-only { display: inline-flex; }
.mobile-cta   { display: none; }

/* ═══════════════════════════════════════════════
   SECTION UTILS
═══════════════════════════════════════════════ */
section {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 40px;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-ui);
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 20px;
}
.label-line {
    display: block;
    width: 30px;
    height: 1px;
    background: var(--accent-gold);
    flex-shrink: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}
.section-header .section-label { justify-content: center; }
.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 14px;
    color: #fff;
}
.section-header p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 420px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════
   SCROLL REVEAL SYSTEM
═══════════════════════════════════════════════ */
.scroll-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }
.delay-5 { transition-delay: 0.60s; }

/* Hero sequence reveal */
.reveal-seq {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-seq.active { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════ */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 140px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg-text {
    position: absolute;
    right: -2%;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: clamp(10rem, 22vw, 22rem);
    font-weight: 300;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.04);
    line-height: 1;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
}

.hero-content {
    max-width: 820px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(200,169,110,0.1);
    border: 1px solid rgba(200,169,110,0.25);
    border-radius: 60px;
    font-family: var(--font-ui);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 36px;
}
.badge-dot {
    width: 7px; height: 7px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0;
    font-family: var(--font-display);
    font-size: clamp(3.8rem, 9vw, 8.5rem);
    font-weight: 300;
    line-height: 1.0;
    margin-bottom: 30px;
    color: #fff;
}
.hero-line { display: block; }
.hero-accent {
    font-style: italic;
    background: linear-gradient(100deg, #fff 20%, var(--accent-sky) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 44px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}
.stat { text-align: left; }
.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1;
    color: #fff;
}
.stat-label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.12);
}

.hero-scroll-cue {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-ui);
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}
.scroll-line {
    width: 40px; height: 1px;
    background: rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}
.scroll-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #fff;
    transform: translateX(-100%);
    animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse { 40%,100%{transform:translateX(100%)} 0%{transform:translateX(-100%)} }

/* ═══════════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════════ */
.about-section { padding: 140px 40px; }

.about-layout {
    display: grid;
    grid-template-columns: 160px 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 60px 60px;
    align-items: start;
}

.about-label {
    grid-column: 1;
    grid-row: 1;
    padding-top: 8px;
}

.about-main {
    grid-column: 2;
    grid-row: 1;
}
.about-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 300;
    line-height: 1.2;
    color: #fff;
}
.about-heading em {
    font-style: italic;
    color: var(--accent-gold);
}

.about-body {
    grid-column: 3;
    grid-row: 1;
}
.about-body p {
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 20px;
    font-size: 0.97rem;
}
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-sky);
    font-family: var(--font-ui);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    font-weight: 600;
    transition: gap 0.3s;
}
.text-link:hover { gap: 14px; }

.about-card-wrap {
    grid-column: 2 / span 2;
    grid-row: 2;
}

.about-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: border-color 0.3s;
}
.about-card:hover { border-color: rgba(200,169,110,0.25); }

.about-card-inner {
    padding: 50px 60px;
    position: relative;
    overflow: hidden;
}

.card-orb {
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(161,196,253,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.card-eyebrow {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 20px;
}
.card-quote {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 20px;
}
.card-sig {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════════════ */
.services-section { padding: 140px 40px; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 44px 40px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.35s, transform 0.35s var(--ease-out), background 0.35s;
    cursor: default;
}
.service-card:hover {
    background: rgba(255,255,255,0.065);
    border-color: rgba(255,255,255,0.16);
    transform: translateY(-6px);
}

.service-number {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.15);
    letter-spacing: 0.2em;
    margin-bottom: 28px;
}

.service-icon-wrap { margin-bottom: 22px; }
.service-icon {
    width: 52px; height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    color: rgba(255,255,255,0.75);
    transition: all 0.35s;
}
.service-card:hover .service-icon {
    background: rgba(200,169,110,0.12);
    border-color: rgba(200,169,110,0.3);
    color: var(--accent-gold);
}

.service-card h3 {
    font-family: var(--font-ui);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 24px;
}

.service-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.service-tags span {
    font-family: var(--font-ui);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 60px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5);
}

.service-hover-glow {
    position: absolute;
    bottom: -80px; right: -80px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(161,196,253,0.08) 0%, transparent 70%);
    pointer-events: none;
    transform: scale(0);
    transition: transform 0.5s var(--ease-out);
}
.service-card:hover .service-hover-glow { transform: scale(1); }

/* ═══════════════════════════════════════════════
   PROCESS SECTION
═══════════════════════════════════════════════ */
.process-section {
    padding: 140px 40px;
    max-width: 900px;
}

.process-track {
    position: relative;
    padding-left: 60px;
}

.process-line {
    position: absolute;
    left: 18px;
    top: 20px;
    bottom: 20px;
    width: 1px;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
    opacity: 0.3;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    align-items: start;
    padding: 40px 0;
    border-bottom: 1px solid var(--glass-border);
    position: relative;
}
.process-step:last-child { border-bottom: none; }
.process-step::before {
    content: '';
    position: absolute;
    left: -50px;
    top: 48px;
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--accent-gold);
    box-shadow: 0 0 16px rgba(200,169,110,0.6);
}

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: rgba(255,255,255,0.1);
    line-height: 1;
}

.step-content h3 {
    font-family: var(--font-ui);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    padding-top: 6px;
}
.step-content p {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ═══════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════ */
.contact-section { padding: 140px 40px; }

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 70px;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}
.contact-info h2 em {
    font-style: italic;
    color: var(--accent-gold);
}
.contact-info > p {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 44px;
}

.contact-methods { margin-bottom: 40px; }
.method {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}
.method:hover { color: #fff; }
.method-icon {
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    flex-shrink: 0;
    color: rgba(255,255,255,0.5);
}

.contact-socials {
    display: flex;
    gap: 12px;
}
.social-link {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.4);
    transition: all 0.3s;
}
.social-link:hover {
    border-color: rgba(255,255,255,0.3);
    color: #fff;
    background: rgba(255,255,255,0.05);
}

/* Form */
.glass-form { display: flex; flex-direction: column; gap: 0; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}
.form-group label {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

.glass-form input,
.glass-form select,
.glass-form textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 14px 18px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.93rem;
    transition: all 0.3s;
    appearance: none;
}
.glass-form input::placeholder,
.glass-form textarea::placeholder { color: rgba(255,255,255,0.2); }
.glass-form input:focus,
.glass-form select:focus,
.glass-form textarea:focus {
    outline: none;
    border-color: rgba(200,169,110,0.5);
    background: rgba(255,255,255,0.07);
    box-shadow: 0 0 0 3px rgba(200,169,110,0.08);
}
.glass-form select option { background: #020206; }
.glass-form textarea { resize: none; }

.select-wrap { position: relative; }
.select-wrap select { cursor: pointer; }
.select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: rgba(255,255,255,0.4);
}

.form-note {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
    margin-top: 12px;
    letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer {
    border-top: 1px solid var(--glass-border);
    background: var(--black);
    padding: 60px 40px 40px;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
}

.footer-brand .logo { margin-bottom: 10px; }
.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: right;
}
.footer-links a {
    font-family: var(--font-ui);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    transition: color 0.3s;
}
.footer-links a:hover { color: #fff; }

.footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.25);
}

.socials { display: flex; gap: 24px; }
.socials a {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    transition: color 0.3s;
}
.socials a:hover { color: #fff; }

/* ═══════════════════════════════════════════════
   HAMBURGER / MOBILE NAV  ← UPDATED
═══════════════════════════════════════════════ */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 600;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 26px; height: 3px;
    background: rgba(255,255,255,0.9);
    border-radius: 3px;
    transition: all 0.35s var(--ease-out);
    transform-origin: center;
}
/* Lines turn gold when menu is open */
.hamburger.open span {
    background: var(--accent-gold);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-label, .about-main, .about-body { grid-column: 1; grid-row: auto; }
    .about-card-wrap { grid-column: 1; grid-row: auto; }

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

    .contact-layout { grid-template-columns: 1fr; gap: 50px; padding: 50px; }

    section { padding: 100px 30px; }
    .about-section, .services-section, .process-section, .contact-section { padding: 100px 30px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE  ← z-index FIXED
═══════════════════════════════════════════════ */
@media (max-width: 768px) {
    section { padding: 80px 20px; }
    .about-section, .services-section, .process-section, .contact-section { padding: 80px 20px; }

    /* Nav mobile */
    .glass-nav { padding: 12px 20px; width: 92%; }
    .hamburger { display: flex; }
    .desktop-only { display: none; }
    .mobile-cta { display: block; }

    .nav-links {
        position: fixed;
        top: 0; left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(2, 2, 10, 0.85);
        backdrop-filter: blur(32px) saturate(1.6);
        -webkit-backdrop-filter: blur(32px) saturate(1.6);
        list-style: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        z-index: 550;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.4s var(--ease-out), visibility 0.4s;
    }
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
    .nav-links li {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 18px 0;
        border-bottom: 1px solid rgba(200, 169, 110, 0.12);
    }
    .nav-links li:first-child { border-top: 1px solid rgba(200, 169, 110, 0.12); }
    .nav-link {
        font-family: var(--font-display);
        font-size: clamp(1.8rem, 7vw, 2.4rem);
        font-weight: 300;
        color: rgba(255, 255, 255, 0.8);
        letter-spacing: 0.1em;
        padding: 0;
        width: auto;
        display: inline-block;
        transition: color 0.3s;
    }
    .nav-link::after { display: none; }
    .nav-link:hover,
    .nav-link:active { color: var(--accent-gold); }
    .mobile-cta {
        border-bottom: none !important;
        padding-top: 28px !important;
    }
    .mobile-cta .cta-button {
        font-size: 0.8rem;
        padding: 14px 40px;
    }

    /* Hero mobile */
    .hero-section { padding-top: 120px; align-items: center; text-align: center; }
    .hero-title { font-size: clamp(2.8rem, 11vw, 5rem); align-items: center; }
    .hero-subtitle { max-width: 100%; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-badge { justify-content: center; }
    .hero-bg-text { font-size: 45vw; opacity: 0.5; }
    .hero-scroll-cue { left: 50%; transform: translateX(-50%); }

    /* About mobile */
    .about-layout { gap: 30px; }
    .about-card-inner { padding: 30px; }

    /* Services mobile */
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 32px 26px; }

    /* Process mobile */
    .process-section { padding-left: 20px; padding-right: 20px; max-width: 100%; }
    .process-track { padding-left: 40px; }
    .process-step { grid-template-columns: 1fr; gap: 8px; }
    .step-number { font-size: 2rem; }

    /* Contact mobile */
    .contact-layout { padding: 30px 24px; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }

    /* Footer mobile */
    .footer-inner { grid-template-columns: 1fr; text-align: center; }
    .footer-links { flex-direction: row; justify-content: center; flex-wrap: wrap; text-align: center; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

    /* Intro mobile */
    .intro-title { font-size: clamp(2rem, 12vw, 4rem); flex-wrap: wrap; justify-content: center; }
    .intro-corner.tl, .intro-corner.tr { top: 20px; }
    .intro-corner.bl, .intro-corner.br { bottom: 20px; }
    .intro-corner.tl, .intro-corner.bl { left: 20px; }
    .intro-corner.tr, .intro-corner.br { right: 20px; }
}

@media (max-width: 420px) {
    .cta-button { padding: 12px 22px; font-size: 0.75rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .cta-button { width: 100%; justify-content: center; }
    .hero-stats { gap: 20px; }
    .stat-divider { height: 30px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    #intro-overlay { display: none; }
    #site-header { opacity: 1; transform: none; }
    .reveal-seq { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════
   STAMP ANIMATION
═══════════════════════════════════════════════ */
.intro-stamp {
    position: absolute;
    right: 0%;
    top: 40%;
    transform: translateY(-50%) scale(5);
    width: clamp(100px, 20vw, 180px);
    height: auto;
    opacity: 0;
    z-index: 10;
    pointer-events: none;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
    animation: putStamp 0.4s cubic-bezier(0.6, -0.28, 0.735, 0.045) 1.6s forwards;
}

@keyframes putStamp {
    0% {
        opacity: 0;
        transform: translateY(-50%) scale(5) rotate(20deg);
    }
    70% {
        opacity: 1;
        transform: translateY(-50%) scale(1) rotate(-5deg);
    }
    85% {
        transform: translateY(-50%) scale(1.1) rotate(-5deg);
    }
    100% {
        opacity: 0.9;
        transform: translateY(-50%) scale(1) rotate(-8deg);
    }
}

@media (max-width: 768px) {
    .intro-stamp {
        right: 10%;
        top: 60%;
    }
}