/* ===================================================================
   Fit e-motion — premium coming-soon landing
   Brand palette (from logo hex schema)
   =================================================================== */
:root {
    --bg:          #121316;  /* Primary charcoal */
    --bg-elev:     #1B1D22;  /* Deep charcoal (cards/sections) */
    --bg-elev-2:   #23262C;  /* Hover surface */
    --gold:        #D4B15A;  /* Accent gold */
    --gold-soft:   #E7CF89;  /* Soft gold (highlights) */
    --gold-grad:   linear-gradient(120deg, #D4B15A 0%, #E7CF89 45%, #C49B45 100%);
    --text:        #E7E9EE;  /* Silver white */
    --muted:       #8A8F99;  /* Graphite gray */
    --line:        rgba(212, 177, 90, 0.22);
    --line-soft:   rgba(231, 233, 238, 0.08);

    --maxw: 1140px;
    --radius: 14px;
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

    --font-head: 'Jost', 'Segoe UI', sans-serif;
    --font-body: 'Jost', 'Segoe UI', Arial, sans-serif;
    --font-num:  'Cormorant Garamond', Georgia, serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 300;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 400;
    letter-spacing: 0.04em;
    margin: 0;
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.container--narrow { max-width: 620px; }

.section { padding: clamp(64px, 11vw, 130px) 0; position: relative; }

.eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 18px;
    font-weight: 400;
}
.eyebrow--center { text-align: center; }

.section__title {
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    text-align: center;
    line-height: 1.15;
    margin-bottom: 20px;
}

.section__lead {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
    color: var(--muted);
    font-size: 1.08rem;
}

/* ---------- Buttons ---------- */
.btn {
    --pad-y: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: var(--pad-y) 34px;
    border: 1px solid var(--gold);
    border-radius: 999px;
    color: var(--gold);
    background: transparent;
    font-family: var(--font-head);
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color .4s var(--ease), background .4s var(--ease),
                box-shadow .4s var(--ease), transform .25s var(--ease);
}
.btn:hover {
    background: var(--gold-grad);
    color: #14110a;
    border-color: transparent;
    box-shadow: 0 10px 34px rgba(212, 177, 90, 0.28);
    transform: translateY(-2px);
}
.btn--ghost { border-color: var(--line-soft); color: var(--text); }
.btn--ghost:hover { background: rgba(231, 233, 238, 0.06); color: var(--text); box-shadow: none; }
.btn--small { --pad-y: 11px; padding: 11px 22px; font-size: 0.72rem; }
.btn--full { width: 100%; --pad-y: 16px; }

/* ===================================================================
   NAV
   =================================================================== */
.nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px clamp(16px, 4vw, 40px);
    background: rgba(18, 19, 22, 0);
    backdrop-filter: blur(0);
    transition: background .4s var(--ease), backdrop-filter .4s var(--ease),
                box-shadow .4s var(--ease), padding .4s var(--ease);
}
.nav.is-scrolled {
    background: rgba(18, 19, 22, 0.82);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--line-soft);
    padding-top: 10px;
    padding-bottom: 10px;
}
.nav__mark { height: 30px; width: auto; }
.nav.is-scrolled .nav__mark { height: 26px; }

.nav__links { display: flex; gap: 30px; }
.nav__links a {
    font-size: 0.84rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text);
    opacity: 0.8;
    position: relative;
    transition: opacity .3s;
}
.nav__links a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -6px;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width .35s var(--ease);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 18px; }

.lang { display: flex; align-items: center; gap: 6px; }
.lang__btn {
    background: none;
    border: none;
    color: var(--muted);
    font-family: var(--font-head);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    padding: 4px 2px;
    transition: color .3s;
}
.lang__btn.is-active { color: var(--gold); }
.lang__btn:hover { color: var(--gold-soft); }
.lang__sep { color: var(--line-soft); }

/* ===================================================================
   HERO
   =================================================================== */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
    background:
        radial-gradient(120% 90% at 50% -10%, rgba(212, 177, 90, 0.10), transparent 55%),
        var(--bg);
}
.hero__glow {
    position: absolute;
    width: 620px; height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 177, 90, 0.16), transparent 65%);
    filter: blur(30px);
    top: 18%;
    z-index: 0;
    animation: floatGlow 9s ease-in-out infinite;
}
@keyframes floatGlow {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.85; }
    50%      { transform: translateY(-24px) scale(1.06); opacity: 1; }
}
.hero__inner { position: relative; z-index: 1; max-width: 820px; }

.hero__logo {
    width: min(560px, 82vw);
    margin: 6px auto 26px;
    filter: drop-shadow(0 8px 40px rgba(212, 177, 90, 0.18));
}
.hero__tagline {
    font-size: clamp(1.05rem, 2.4vw, 1.4rem);
    color: var(--text);
    font-weight: 300;
    max-width: 580px;
    margin: 0 auto 38px;
}
.hero__cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.pulse-line { width: min(440px, 70vw); margin: 56px auto 0; opacity: 0.9; }
.pulse-line svg { width: 100%; height: 38px; display: block; }
.pulse-line path {
    fill: none;
    stroke: var(--gold);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    filter: drop-shadow(0 0 6px rgba(212, 177, 90, 0.5));
    animation: drawPulse 3.2s var(--ease) forwards 0.5s, pulseGlow 2.6s ease-in-out infinite 3.6s;
}
@keyframes drawPulse { to { stroke-dashoffset: 0; } }
@keyframes pulseGlow {
    0%, 100% { opacity: 0.7; }
    50%      { opacity: 1; }
}

.scroll-cue {
    position: absolute;
    bottom: 26px; left: 50%;
    transform: translateX(-50%);
    width: 26px; height: 42px;
    border: 1px solid var(--line);
    border-radius: 14px;
    z-index: 1;
}
.scroll-cue span {
    position: absolute;
    top: 8px; left: 50%;
    width: 4px; height: 8px;
    margin-left: -2px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot {
    0%   { opacity: 0; transform: translateY(0); }
    40%  { opacity: 1; }
    100% { opacity: 0; transform: translateY(16px); }
}

/* ===================================================================
   ABOUT
   =================================================================== */
.about { background: var(--bg); }
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}
.stat {
    text-align: center;
    padding: 30px 14px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: var(--bg-elev);
}
.stat__num {
    display: block;
    font-family: var(--font-num);
    font-size: clamp(2.6rem, 7vw, 3.6rem);
    line-height: 1;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.stat__num small { font-size: 0.34em; margin-left: 4px; color: var(--gold); -webkit-text-fill-color: var(--gold); }
.stat__label {
    display: block;
    margin-top: 12px;
    font-size: 0.86rem;
    letter-spacing: 0.06em;
    color: var(--muted);
    text-transform: uppercase;
}

/* ===================================================================
   SERVICES
   =================================================================== */
.services { background: linear-gradient(180deg, var(--bg) 0%, #0f1013 100%); }
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 56px;
}
.card {
    padding: 42px 30px;
    text-align: center;
    background: var(--bg-elev);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    transition: transform .4s var(--ease), border-color .4s var(--ease),
                box-shadow .4s var(--ease), background .4s var(--ease);
}
.card:hover {
    transform: translateY(-8px);
    border-color: var(--line);
    background: var(--bg-elev-2);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
}
.card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px; height: 62px;
    margin-bottom: 22px;
    font-size: 1.5rem;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: radial-gradient(circle at 30% 30%, rgba(212, 177, 90, 0.16), transparent 70%);
}
.card h3 {
    font-size: 1.3rem;
    color: var(--gold-soft);
    margin-bottom: 12px;
    letter-spacing: 0.06em;
}
.card p { color: var(--muted); margin: 0; font-size: 0.98rem; }

/* ===================================================================
   NOTIFY / FORM
   =================================================================== */
.notify { background: var(--bg); }
.notify .section__lead { margin-bottom: 40px; }

.lead-form {
    display: grid;
    gap: 18px;
    text-align: left;
}
.field { display: grid; gap: 7px; }
.field label {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}
.field input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-elev);
    border: 1px solid var(--line-soft);
    border-radius: 10px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color .3s, box-shadow .3s;
}
.field input::placeholder { color: var(--muted); }
.field input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 177, 90, 0.15);
}
.field input:invalid:not(:placeholder-shown) { border-color: #b5524e; }

.lead-form .btn--full { margin-top: 8px; }

/* Honeypot: invisible to humans, tempting to bots. Kept out of the
   accessibility tree and off-screen rather than display:none. */
.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.consent {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    cursor: pointer;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.5;
}
.consent input {
    appearance: none;
    -webkit-appearance: none;
    flex: 0 0 auto;
    width: 18px; height: 18px;
    margin-top: 2px;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: var(--bg-elev);
    cursor: pointer;
    position: relative;
    transition: background .25s, border-color .25s;
}
.consent input:checked {
    background: var(--gold-grad);
    border-color: transparent;
}
.consent input:checked::after {
    content: "";
    position: absolute;
    left: 5px; top: 1px;
    width: 5px; height: 10px;
    border: solid #14110a;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.consent input:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.form-msg {
    min-height: 1.2em;
    margin: 4px 0 0;
    text-align: center;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
}
.form-msg.is-ok    { color: var(--gold-soft); }
.form-msg.is-error { color: #e08a86; }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer { background: #0d0e11; border-top: 1px solid var(--line-soft); padding-top: 64px; }
.footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    padding-bottom: 48px;
}
.footer__logo { width: 240px; max-width: 60vw; margin-bottom: 16px; }
.footer__loc { color: var(--muted); letter-spacing: 0.08em; margin: 0; }

.footer__contact h4 {
    font-size: 0.82rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.footer__link {
    display: block;
    color: var(--text);
    opacity: 0.85;
    margin-bottom: 8px;
    transition: color .3s, opacity .3s;
}
.footer__link:hover { color: var(--gold-soft); opacity: 1; }

.socials { display: flex; gap: 14px; margin-top: 18px; }
.social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    border: 1px solid var(--line-soft);
    border-radius: 50%;
    color: var(--text);
    transition: color .3s, border-color .3s, transform .3s, background .3s;
}
.social:hover {
    color: var(--gold);
    border-color: var(--line);
    background: rgba(212, 177, 90, 0.08);
    transform: translateY(-3px);
}

.footer__bottom {
    border-top: 1px solid var(--line-soft);
    padding: 22px 24px;
    text-align: center;
    color: var(--muted);
    font-size: 0.82rem;
    letter-spacing: 0.06em;
}

/* ===================================================================
   Reveal-on-scroll
   =================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ===================================================================
   Responsive
   =================================================================== */
@media (max-width: 820px) {
    .nav__links { display: none; }
    .stats { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }
}

@media (max-width: 520px) {
    .nav { padding-inline: 16px; }
    .nav__actions { gap: 12px; }
    .btn--small { padding: 10px 16px; }
    .hero__cta { flex-direction: column; align-items: stretch; }
    .hero__cta .btn { width: 100%; }
    .footer__inner { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}