/* =============================================================
   ZYNOVA AGENCY — Luxury Stylesheet
   Palette : Noir profond / Or / Crème
   ============================================================= */

:root {
    --bg: #0a0908;
    --bg-2: #111110;
    --bg-3: #161513;
    --line: rgba(212, 175, 55, 0.18);
    --line-soft: rgba(255, 255, 255, 0.06);

    --gold: #d4af37;
    --gold-2: #c9a961;
    --gold-3: #e8c878;
    --gold-soft: rgba(212, 175, 55, 0.10);

    --cream: #f5efe2;
    --cream-2: #ece4d2;
    --muted: #a39e93;
    --muted-2: #6f6a62;

    --serif: 'Cormorant Garamond', 'Times New Roman', serif;
    --display: 'Cinzel', 'Cormorant Garamond', serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --maxw: 1240px;
    --radius: 14px;
    --t: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--cream);
    font-weight: 300;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    min-height: 100dvh;
}
img, svg { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* ---------- Skip link (a11y) ---------- */
.skip-link {
    position: absolute;
    top: -40px; left: 0;
    background: var(--gold);
    color: #000;
    padding: 10px 16px;
    z-index: 10000;
    font-size: 13px;
    font-weight: 500;
    transition: top .3s var(--t);
}
.skip-link:focus { top: 0; }

/* ---------- Selection ---------- */
::selection { background: var(--gold); color: #000; }

/* ---------- Logo (kill the black background of the PNG) ----------
   The logo PNG has a solid black background. On dark backgrounds we
   simply use mix-blend-mode: screen so the black blends out and only
   the bright (cream/gold) parts of the artwork remain visible.
   ----------------------------------------------------------------- */
.logo-img {
    mix-blend-mode: screen;
    -webkit-filter: drop-shadow(0 0 1px rgba(0, 0, 0, .001));
    filter: drop-shadow(0 0 1px rgba(0, 0, 0, .001));
}

/* ---------- Container ---------- */
.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 32px;
}

/* ---------- Background gold glows ---------- */
.gold-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .35;
    pointer-events: none;
    z-index: 0;
}
.glow-1 { width: 520px; height: 520px; background: rgba(212, 175, 55, .25); top: -10%; right: -10%; }
.glow-2 { width: 420px; height: 420px; background: rgba(201, 169, 97, .12); top: 60%; left: -15%; }
.glow-3 { width: 600px; height: 600px; background: rgba(232, 200, 120, .07); bottom: -20%; right: 20%; }

/* ---------- Loader ---------- */
.loader {
    position: fixed; inset: 0;
    background: var(--bg);
    z-index: 9999;
    display: grid; place-items: center;
    transition: opacity .8s var(--t), visibility .8s var(--t);
}
.loader.hide { opacity: 0; visibility: hidden; }
.loader-content { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.loader-logo { width: 110px; opacity: .9; animation: pulse 2s ease-in-out infinite; }
.loader-bar {
    width: 180px; height: 1px;
    background: rgba(255,255,255,.1);
    overflow: hidden;
}
.loader-bar span {
    display: block; height: 100%;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: loader-line 1.4s ease-in-out infinite;
}
@keyframes loader-line { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
@keyframes pulse { 0%, 100% { opacity: .9; } 50% { opacity: .55; } }

/* ---------- Navigation ---------- */
.nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    transition: background .4s var(--t), backdrop-filter .4s var(--t), border-color .4s var(--t);
    border-bottom: 1px solid transparent;
}
.nav.scrolled {
    background: rgba(10, 9, 8, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom-color: var(--line);
}
.nav-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 18px 32px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-brand img {
    width: 56px; height: 56px;
    object-fit: contain;
    margin: -10px 0;
}
.nav-brand span {
    font-family: var(--display);
    letter-spacing: .35em;
    font-size: 14px;
    color: var(--cream);
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    position: relative;
    transition: color .3s var(--t);
}
.nav-links a::after {
    content: '';
    position: absolute; left: 0; right: 0; bottom: -6px;
    height: 1px; background: var(--gold);
    transform: scaleX(0); transform-origin: right;
    transition: transform .4s var(--t);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
    padding: 10px 22px;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    border-radius: 999px;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
    background: var(--gold);
    color: #000 !important;
}

/* Language switcher */
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 14px;
    padding-left: 22px;
    border-left: 1px solid var(--line);
    font-size: 11px;
    letter-spacing: .2em;
}
.lang-switch button {
    padding: 4px 6px;
    color: var(--muted);
    text-transform: uppercase;
    transition: color .3s var(--t);
    font-weight: 500;
    letter-spacing: .2em;
}
.lang-switch button:hover { color: var(--cream); }
.lang-switch button.active { color: var(--gold); }
.lang-switch span {
    color: var(--muted-2);
    font-weight: 300;
}

.nav-burger {
    display: none;
    flex-direction: column; gap: 5px;
    padding: 8px;
}
.nav-burger span {
    display: block; width: 24px; height: 1.5px;
    background: var(--cream);
    transition: transform .3s var(--t), opacity .3s var(--t);
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 500;
    transition: transform .35s var(--t), box-shadow .35s var(--t), background .35s var(--t), color .35s var(--t);
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold-3), var(--gold), var(--gold-2));
    color: #0a0908;
    box-shadow: 0 12px 40px -12px rgba(212, 175, 55, .55);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 50px -12px rgba(212, 175, 55, .75);
}
.btn-ghost {
    border-color: rgba(255, 255, 255, .15);
    color: var(--cream);
}
.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: grid; place-items: center;
    padding: 140px 32px 100px;
    text-align: center;
    overflow: hidden;
    z-index: 1;
}
.hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at top, rgba(212, 175, 55, .08), transparent 60%),
        radial-gradient(ellipse at bottom, rgba(212, 175, 55, .04), transparent 70%);
    pointer-events: none;
}
.hero-content { position: relative; max-width: 880px; }

.hero-tagline {
    display: inline-flex; align-items: center; gap: 18px;
    font-size: 11px;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
}
.hero-tagline .line {
    width: 36px; height: 1px;
    background: var(--gold);
    opacity: .55;
}

.hero-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(44px, 7.5vw, 96px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--cream);
    margin-bottom: 32px;
}
.hero-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--gold-3), var(--gold), var(--gold-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-sub {
    max-width: 600px;
    margin: 0 auto 48px;
    font-size: 17px;
    color: var(--muted);
    line-height: 1.75;
}

.hero-actions {
    display: flex; gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.hero-meta {
    display: flex; align-items: center; justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
    padding-top: 48px;
    border-top: 1px solid var(--line);
    max-width: 640px;
    margin: 0 auto;
}
.hero-meta > div { text-align: center; }
.hero-meta strong {
    display: block;
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 500;
    color: var(--gold);
    line-height: 1;
}
.hero-meta span {
    display: block;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin-top: 8px;
}
.hero-meta .sep {
    width: 1px; height: 32px;
    background: var(--line);
}

.hero-scroll {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    color: var(--muted);
    font-size: 10px;
    letter-spacing: .35em;
    text-transform: uppercase;
}
.hero-scroll span {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, transparent, var(--gold));
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%, 100% { transform: scaleY(.4); transform-origin: top; } 50% { transform: scaleY(1); } }

/* ---------- Marquee ---------- */
.marquee {
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
    background: var(--bg-2);
    position: relative; z-index: 2;
}
.marquee-track {
    display: flex; gap: 36px;
    align-items: center;
    width: max-content;
    animation: scroll 45s linear infinite;
    font-family: var(--serif);
    font-size: 22px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--cream);
    font-weight: 400;
}
.marquee-track .dot { color: var(--gold); font-size: 14px; }
@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ---------- Sections globals ---------- */
section { position: relative; z-index: 1; }
.eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line);
}
.section-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--cream);
    margin-bottom: 24px;
}
.section-title em {
    font-style: italic;
    color: var(--gold);
}
.section-lead {
    color: var(--muted);
    font-size: 17px;
    max-width: 580px;
    line-height: 1.75;
}
.section-head { margin-bottom: 80px; max-width: 720px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .section-lead { margin-left: auto; margin-right: auto; }

/* ---------- About ---------- */
.about { padding: 140px 0; }
.two-cols {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: center;
}
.about-visual { position: relative; }
.about-card {
    aspect-ratio: 4/5;
    border-radius: 4px;
    background:
        radial-gradient(ellipse at center, rgba(212, 175, 55, .1), transparent 70%),
        var(--bg-3);
    border: 1px solid var(--line);
    display: grid; place-items: center;
    position: relative;
    overflow: hidden;
}
.about-card::before {
    content: '';
    position: absolute; inset: 14px;
    border: 1px solid var(--line);
    pointer-events: none;
}
.about-card img {
    width: 80%;
    position: relative;
    z-index: 1;
}
.about-card .logo-img {
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 40px rgba(212, 175, 55, .35));
}
.about-badge {
    position: absolute;
    top: -20px; right: -20px;
    width: 110px; height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-3), var(--gold), var(--gold-2));
    color: #0a0908;
    display: grid; place-items: center;
    text-align: center;
    box-shadow: 0 20px 50px -10px rgba(212, 175, 55, .5);
    transform: rotate(-8deg);
}
.about-badge strong {
    display: block;
    font-size: 11px;
    letter-spacing: .25em;
}
.about-badge span {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 500;
}

.about-text p {
    color: var(--muted);
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.85;
}
.about-text strong { color: var(--cream); font-weight: 400; }

.about-points {
    margin-top: 40px;
    display: grid;
    gap: 16px;
}
.about-points li {
    display: flex; align-items: center; gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line-soft);
    color: var(--cream);
    font-size: 15px;
    transition: color .3s var(--t);
}
.about-points li:hover { color: var(--gold); }
.about-points li span {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--gold);
    min-width: 36px;
}
.about-points li em { font-style: normal; }

/* ---------- Services ---------- */
.services { padding: 140px 0; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.service-card {
    grid-column: span 1;
    padding: 36px 28px;
    background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
    border: 1px solid var(--line-soft);
    border-radius: 2px;
    transition: transform .5s var(--t), border-color .5s var(--t), background .5s var(--t);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, .08), transparent 60%);
    opacity: 0;
    transition: opacity .5s var(--t);
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(212, 175, 55, .04), rgba(255,255,255,0));
}
.service-card:hover::before { opacity: 1; }

.service-card.service-cta {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(212, 175, 55, .08), rgba(212, 175, 55, .02));
    border-color: var(--gold);
}

.service-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: grid; place-items: center;
    color: var(--gold);
    margin-bottom: 28px;
    background: rgba(212, 175, 55, .04);
    position: relative;
}
.service-icon svg { width: 26px; height: 26px; }

.service-card h3 {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 14px;
    letter-spacing: -.01em;
}
.service-card p {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.75;
}
.service-card p strong { color: var(--gold); font-weight: 500; }

/* ---------- Method ---------- */
.method { padding: 140px 0; }
.method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.method-card {
    padding: 48px 36px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: transform .5s var(--t), border-color .5s var(--t);
}
.method-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform .6s var(--t);
}
.method-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.method-card:hover::after { transform: scaleX(1); }

.method-num {
    font-family: var(--serif);
    font-size: 64px;
    font-style: italic;
    color: var(--gold);
    opacity: .35;
    line-height: 1;
    display: block;
    margin-bottom: 24px;
}
.method-card h3 {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 16px;
}
.method-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 28px;
}
.method-stat {
    padding-top: 20px;
    border-top: 1px solid var(--line-soft);
    font-size: 13px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted-2);
}
.method-stat strong {
    color: var(--gold);
    font-weight: 500;
    font-size: 18px;
    margin-right: 6px;
}

/* ---------- Numbers ---------- */
.numbers {
    padding: 100px 0;
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}
.num strong {
    font-family: var(--serif);
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 500;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -.02em;
}
.num span {
    font-family: var(--serif);
    font-size: 32px;
    color: var(--gold);
}
.num em {
    display: block;
    margin-top: 16px;
    font-style: normal;
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ---------- Testimonials ---------- */
.testimonials { padding: 140px 0; }
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testi {
    padding: 48px 36px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 4px;
    position: relative;
}
.testi .quote {
    font-family: var(--serif);
    font-size: 96px;
    color: var(--gold);
    line-height: 1;
    margin-bottom: -20px;
    opacity: .8;
}
.testi blockquote {
    font-family: var(--serif);
    font-style: italic;
    font-size: 19px;
    line-height: 1.7;
    color: var(--cream);
    margin-bottom: 24px;
}
.testi figcaption {
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    padding-top: 20px;
    border-top: 1px solid var(--line-soft);
}

/* ---------- FAQ ---------- */
.faq { padding: 140px 0; }
.faq-list {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}
.faq-item {
    background: var(--bg-2);
    border: 1px solid var(--line-soft);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color .4s var(--t), background .4s var(--t);
}
.faq-item[open] {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(212, 175, 55, .04), rgba(255,255,255,0));
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 26px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-family: var(--serif);
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 500;
    color: var(--cream);
    line-height: 1.4;
    transition: color .3s var(--t);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }
.faq-item summary em {
    font-style: normal;
    font-family: var(--sans);
    font-weight: 300;
    font-size: 28px;
    color: var(--gold);
    width: 32px; height: 32px;
    display: grid; place-items: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform .4s var(--t), background .4s var(--t), color .4s var(--t);
}
.faq-item[open] summary em {
    transform: rotate(45deg);
    background: var(--gold);
    color: #000;
}
.faq-answer {
    padding: 0 28px 26px;
}
.faq-answer p {
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.85;
}

/* ---------- Social ---------- */
.social {
    padding: 140px 0;
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.social-inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
}
.social-cards { display: grid; gap: 16px; }
.social-card {
    display: flex; align-items: center; gap: 24px;
    padding: 28px 32px;
    background: var(--bg-3);
    border: 1px solid var(--line-soft);
    border-radius: 4px;
    transition: transform .4s var(--t), border-color .4s var(--t), background .4s var(--t);
}
.social-card:hover {
    transform: translateX(8px);
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, .06), rgba(212, 175, 55, 0));
}
.social-ic {
    width: 56px; height: 56px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: grid; place-items: center;
    color: var(--gold);
    flex-shrink: 0;
    background: rgba(212, 175, 55, .05);
}
.social-ic svg { width: 24px; height: 24px; }
.social-card > div:nth-child(2) { flex: 1; }
.social-card strong {
    display: block;
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 2px;
}
.social-card span {
    font-size: 13px;
    color: var(--muted);
    letter-spacing: .05em;
}
.social-card .arrow {
    font-size: 22px;
    color: var(--gold);
    transition: transform .4s var(--t);
}
.social-card:hover .arrow { transform: translateX(6px); }

/* ---------- Join (form) ---------- */
.join { padding: 140px 0; }
.join-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}
.join-text p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.85;
    margin-bottom: 32px;
}
.join-bullets { display: grid; gap: 14px; margin-bottom: 32px; }
.join-bullets li {
    display: flex; align-items: center; gap: 14px;
    color: var(--cream);
    font-size: 15px;
}
.join-bullets li::before {
    content: '✦';
    color: var(--gold);
    font-size: 14px;
}
.join-bullets li strong { color: var(--gold); font-weight: 500; }

.join-disclaimer {
    padding: 20px 24px;
    background: rgba(212, 175, 55, .04);
    border-left: 2px solid var(--gold);
    border-radius: 0 4px 4px 0;
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.7;
}
.join-disclaimer strong { color: var(--gold); font-weight: 500; }

.join-form {
    padding: 48px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 4px;
    display: grid;
    gap: 22px;
    position: relative;
    overflow: hidden;
}
.join-form::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.join-form label {
    display: grid;
    gap: 8px;
}
.join-form label.full { grid-column: 1 / -1; }
.join-form label > span {
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
}
.join-form input,
.join-form select,
.join-form textarea {
    background: var(--bg-3);
    border: 1px solid var(--line-soft);
    color: var(--cream);
    padding: 14px 16px;
    font-family: var(--sans);
    font-size: 14px;
    border-radius: 2px;
    transition: border-color .3s var(--t), background .3s var(--t);
    font-weight: 300;
}
.join-form textarea { resize: vertical; min-height: 100px; }
.join-form select { cursor: pointer; }
.join-form select option { background: var(--bg-3); color: var(--cream); }
.join-form input:focus,
.join-form select:focus,
.join-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(212, 175, 55, .03);
}
.join-form input:invalid:not(:placeholder-shown):not(:focus) {
    border-color: rgba(255, 80, 80, .4);
}

.checkbox {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start;
    gap: 12px !important;
}
.checkbox input {
    margin-top: 2px;
    width: 16px; height: 16px;
    accent-color: var(--gold);
    cursor: pointer;
}
.checkbox span {
    font-size: 13px;
    color: var(--muted);
    text-transform: none !important;
    letter-spacing: 0 !important;
    line-height: 1.6;
}

.btn.full { width: 100%; }

.form-success {
    display: none;
    padding: 20px;
    background: rgba(212, 175, 55, .1);
    border: 1px solid var(--gold);
    border-radius: 2px;
    color: var(--gold);
    text-align: center;
    font-size: 14px;
    line-height: 1.7;
}
.form-success.show { display: block; }
.form-success.error {
    background: rgba(220, 80, 80, .08);
    border-color: rgba(220, 80, 80, .55);
    color: #e58f8f;
}

/* Honeypot anti-spam — visually hidden but reachable for bots */
.hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Disabled / loading state */
.btn[disabled] {
    opacity: .55;
    cursor: not-allowed;
    pointer-events: none;
}

/* ---------- Footer ---------- */
.footer {
    background: #050504;
    border-top: 1px solid var(--line);
    padding: 80px 0 0;
    position: relative;
    z-index: 1;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 80px;
    padding-bottom: 60px;
}
.footer-brand img {
    width: 80px;
    margin-bottom: 20px;
}
.footer-brand p {
    color: var(--muted);
    font-family: var(--serif);
    font-style: italic;
    font-size: 18px;
    max-width: 280px;
}
.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.footer-cols h4 {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 18px;
    letter-spacing: .05em;
}
.footer-cols a {
    display: block;
    padding: 6px 0;
    color: var(--muted);
    font-size: 14px;
    transition: color .3s var(--t), padding-left .3s var(--t);
}
.footer-cols a:hover {
    color: var(--gold);
    padding-left: 6px;
}
.footer-bottom {
    border-top: 1px solid var(--line-soft);
    padding: 24px 32px;
    display: flex; justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--muted-2);
    max-width: var(--maxw);
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom .signature {
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
    font-size: 11px;
}

/* ---------- Reveal animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--t), transform 1s var(--t);
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================================
   RESPONSIVE — Mobile-first additions on top of desktop defaults
   Breakpoints :
     ≤ 1280px : large laptops
     ≤ 1024px : tablets landscape
     ≤  900px : tablets portrait
     ≤  768px : large phones / small tablets (burger appears)
     ≤  640px : phones
     ≤  480px : small phones
     ≤  380px : very small phones
   ============================================================= */

/* ---------- ≤ 1280px (laptops) ---------- */
@media (max-width: 1280px) {
    .container { padding: 0 28px; }
    .services-grid { gap: 18px; }
    .two-cols { gap: 70px; }
    .join-grid { gap: 60px; }
}

/* ---------- ≤ 1024px (tablet landscape) ---------- */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card.service-cta { grid-column: span 2; }
    .method-grid { grid-template-columns: 1fr; gap: 20px; }
    .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 50px; }
    .testi-grid { grid-template-columns: 1fr; gap: 18px; }
    .two-cols { grid-template-columns: 1fr; gap: 60px; }
    .social-inner { grid-template-columns: 1fr; gap: 60px; }
    .join-grid { grid-template-columns: 1fr; gap: 50px; }
    .footer-inner { grid-template-columns: 1fr; gap: 50px; }
    .about-card { max-width: 420px; margin: 0 auto; }
    .about-points { max-width: 560px; }
    .nav-links { gap: 28px; }
    .nav-links a { font-size: 12px; }
}

/* ---------- ≤ 900px ---------- */
@media (max-width: 900px) {
    .nav-links { gap: 22px; }
    .lang-switch { margin-left: 8px; padding-left: 14px; }
    .hero-meta strong { font-size: 30px; }
}

/* ---------- ≤ 768px (burger appears) ---------- */
@media (max-width: 768px) {
    :root { --maxw: 100%; }
    .container { padding: 0 22px; }
    .nav-inner { padding: 14px 22px; }
    .nav-brand img { width: 46px; height: 46px; margin: -6px 0; }
    .nav-brand span { font-size: 12px; letter-spacing: .3em; }

    .nav-burger { display: flex; }
    .nav-links {
        position: fixed;
        top: 68px; left: 0; right: 0;
        max-height: calc(100vh - 68px);
        max-height: calc(100dvh - 68px);
        overflow-y: auto;
        background: rgba(10, 9, 8, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 24px 0 32px;
        border-bottom: 1px solid var(--line);
        transform: translateY(-120%);
        transition: transform .5s var(--t);
        align-items: stretch;
    }
    .nav-links.open { transform: translateY(0); }
    .nav-links a {
        padding: 16px 30px;
        text-align: center;
        border-bottom: 1px solid var(--line-soft);
        font-size: 14px;
        min-height: 48px;
    }
    .nav-cta { margin: 16px 30px 0; text-align: center; padding: 14px 22px; }
    .nav-links a::after { display: none; }

    .lang-switch {
        margin: 18px auto 0;
        padding: 14px 0 0;
        border-left: 0;
        border-top: 1px solid var(--line-soft);
        justify-content: center;
        width: calc(100% - 60px);
        gap: 10px;
    }
    .lang-switch button {
        padding: 8px 12px;
        min-height: 40px;
        font-size: 13px;
    }

    .hero { padding: 110px 22px 70px; min-height: auto; }
    .hero-tagline { gap: 12px; font-size: 10px; margin-bottom: 24px; }
    .hero-tagline .line { width: 24px; }
    .hero-actions { gap: 12px; margin-bottom: 60px; }
    .hero-meta { gap: 22px; padding-top: 32px; }
    .hero-meta .sep { display: none; }
    .hero-meta > div { flex: 1 1 30%; min-width: 90px; }
    .hero-meta strong { font-size: 26px; }
    .hero-meta span { font-size: 10px; letter-spacing: .15em; }
    .hero-scroll { display: none; }

    .marquee { padding: 18px 0; }
    .marquee-track { font-size: 16px; gap: 24px; }
    .marquee-track .dot { font-size: 11px; }

    .about, .services, .method, .testimonials, .faq, .social, .join { padding: 80px 0; }
    .section-head { margin-bottom: 50px; }

    .about-text p { font-size: 15.5px; }
    .about-points { margin-top: 32px; }
    .about-points li { font-size: 14px; gap: 14px; padding: 14px 0; }
    .about-points li span { font-size: 18px; min-width: 28px; }

    .services-grid { grid-template-columns: 1fr; gap: 14px; }
    .service-card.service-cta { grid-column: span 1; }
    .service-card { padding: 30px 24px; }
    .service-card h3 { font-size: 22px; }
    .service-card p { font-size: 14px; }
    .service-icon { width: 52px; height: 52px; margin-bottom: 22px; }

    .method-card { padding: 36px 28px; }
    .method-num { font-size: 52px; margin-bottom: 18px; }
    .method-card h3 { font-size: 26px; }
    .method-card p { font-size: 14.5px; margin-bottom: 22px; }

    .numbers { padding: 70px 0; }
    .numbers-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .num em { font-size: 11px; margin-top: 12px; }

    .testi { padding: 36px 28px; }
    .testi blockquote { font-size: 17px; }
    .testi .quote { font-size: 72px; margin-bottom: -12px; }

    .faq-item summary { padding: 22px 22px; gap: 16px; font-size: 17px; }
    .faq-item summary em { width: 28px; height: 28px; font-size: 22px; }
    .faq-answer { padding: 0 22px 22px; }
    .faq-answer p { font-size: 14.5px; }

    .social-card { padding: 22px 24px; gap: 18px; }
    .social-ic { width: 48px; height: 48px; }
    .social-ic svg { width: 22px; height: 22px; }
    .social-card strong { font-size: 19px; }
    .social-card span { font-size: 12.5px; word-break: break-word; }

    .join-text p { font-size: 15.5px; }
    .join-bullets li { font-size: 14px; }
    .form-row { grid-template-columns: 1fr; gap: 16px; }
    .join-form { padding: 32px 22px; gap: 18px; }
    .join-form input,
    .join-form select,
    .join-form textarea {
        padding: 14px 14px;
        font-size: 16px; /* prevents iOS zoom on focus */
    }
    .checkbox span { font-size: 12.5px; }

    .footer { padding: 60px 0 0; }
    .footer-cols { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer-cols h4 { font-size: 16px; }
    .footer-cols a { font-size: 13.5px; }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 22px;
    }
    .footer-bottom .signature { font-size: 10px; }
}

/* ---------- ≤ 640px (phones) ---------- */
@media (max-width: 640px) {
    .container { padding: 0 18px; }
    .nav-inner { padding: 12px 18px; }

    .hero { padding: 100px 18px 60px; }
    .hero-tagline { flex-direction: row; flex-wrap: wrap; justify-content: center; }
    .hero-tagline .line { display: none; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }

    .about, .services, .method, .testimonials, .faq, .social, .join { padding: 70px 0; }
    .section-head { margin-bottom: 40px; }

    .about-card { max-width: 320px; }
    .about-badge { width: 90px; height: 90px; top: -14px; right: -8px; }
    .about-badge span { font-size: 22px; }

    .numbers-grid { gap: 28px; }

    .footer-inner { padding-bottom: 40px; }
    .footer-cols { grid-template-columns: 1fr; gap: 24px; text-align: center; }
    .footer-brand img { margin: 0 auto 16px; }
    .footer-brand p { margin-left: auto; margin-right: auto; }
    .footer-cols a:hover { padding-left: 0; }
}

/* ---------- ≤ 480px (small phones) ---------- */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .btn { padding: 14px 22px; font-size: 11.5px; letter-spacing: .15em; }
    .service-card { padding: 28px 20px; }
    .method-card { padding: 32px 22px; }
    .testi { padding: 32px 22px; }
    .faq-item summary { padding: 20px 18px; font-size: 16px; }
    .faq-answer { padding: 0 18px 20px; }
    .join-form { padding: 28px 18px; }
    .social-card { flex-wrap: wrap; }
    .social-card .arrow { margin-left: auto; }
    .marquee-track { font-size: 14px; gap: 18px; }
    .hero-meta { gap: 14px; }
    .hero-meta strong { font-size: 22px; }
    .hero-meta span { font-size: 9px; }
}

/* ---------- ≤ 380px (very small phones) ---------- */
@media (max-width: 380px) {
    .container { padding: 0 14px; }
    .nav-brand span { display: none; }
    .nav-brand img { width: 42px; height: 42px; }
    .lang-switch button { padding: 6px 8px; font-size: 12px; }
    .hero-meta { flex-direction: column; gap: 18px; }
    .hero-meta > div { width: 100%; }
    .numbers-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- Landscape phones (low height) ---------- */
@media (max-height: 600px) and (max-width: 900px) and (orientation: landscape) {
    .hero { min-height: auto; padding: 100px 22px 60px; }
    .hero-meta { padding-top: 28px; }
}

/* ---------- High DPI ---------- */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img { image-rendering: -webkit-optimize-contrast; }
}

/* ---------- Reduce motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}

/* ---------- Print ---------- */
@media print {
    .nav, .loader, .hero-scroll, .gold-glow, .marquee, .lang-switch { display: none !important; }
    body { background: #fff; color: #000; }
    .section-title, .hero-title, .service-card h3, .method-card h3 { color: #000; }
}
