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

:root {
    --bg:          #090909;
    --bg-2:        #0c0c0e;
    --text:        #f0ede8;
    --text-dim:    rgba(240, 237, 232, 0.6);
    --text-muted:  rgba(240, 237, 232, 0.52);
    --gold:        #e8c547;
    --gold-dim:    rgba(232, 197, 71, 0.12);
    --blue:        #4aadff;
    --blue-dim:    rgba(74, 173, 255, 0.10);
    --card:        rgba(255, 255, 255, 0.03);
    --border:      rgba(255, 255, 255, 0.07);
}

html { font-size: clamp(13px, 0.78vw, 18px); }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
}

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

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(232,197,71,0.25); border-radius: 2px; }

h1, h2, h3 {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
    line-height: 1.05;
}

/* ───────────── NAV ───────────── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.4rem clamp(1.5rem, 3.5vw, 3.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid transparent;
    transition: background 0.5s, border-color 0.5s;
}

nav.scrolled {
    background: rgba(9, 9, 9, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-color: var(--border);
}

.nav-logo {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.nav-logo span { color: var(--gold); }
.nav-logo-img {
    width: clamp(28px, 2.2vw, 36px);
    height: clamp(28px, 2.2vw, 36px);
    object-fit: contain;
    flex-shrink: 0;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 1.8vw, 1.8rem);
}

.nav-links {
    display: flex;
    gap: clamp(1.2rem, 1.8vw, 2.2rem);
    list-style: none;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: clamp(0.7rem, 0.75vw, 0.8rem);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

.lang-sw { display: flex; gap: 0.1rem; align-items: center; }
.lang-sw-btn { font-size: 0.65rem; letter-spacing: 0.1em; color: var(--text-muted); text-decoration: none; padding: 0.2rem 0.4rem; border-radius: 2px; transition: color 0.2s, background 0.2s; font-family: 'DM Sans', sans-serif; font-weight: 500; }
.lang-sw-btn:hover { color: var(--text); }
.lang-sw-btn.active { color: var(--gold); background: var(--gold-dim); }

.nav-cta {
    color: var(--gold) !important;
    border: 1px solid rgba(232,197,71,0.35) !important;
    padding: 0.5rem clamp(0.9rem, 1.2vw, 1.3rem);
    border-radius: 2px;
    font-size: clamp(0.7rem, 0.75vw, 0.8rem);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s !important;
    white-space: nowrap;
}
.nav-cta:hover {
    background: var(--gold-dim) !important;
    border-color: var(--gold) !important;
}

/* ── Mobile lang segment ── */
.nav-mob-right {
    display: none;
    align-items: center;
    gap: 0.75rem;
}
.lang-mob {
    display: flex;
    align-items: center;
    gap: 0;
}
.lang-mob-link {
    font-size: 0.62rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.25rem 0.4rem;
    transition: color 0.2s;
}
.lang-mob-link:hover { color: var(--text); }
.lang-mob-link.active { color: var(--gold); }
.lang-mob-sep {
    width: 1px;
    height: 10px;
    background: rgba(255,255,255,0.15);
}

/* hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 101;
}
.hamburger span {
    display: block;
    width: 22px; height: 1px;
    background: var(--text);
    transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(9,9,9,0.97);
    backdrop-filter: blur(30px);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }

/* ───────────── HERO ───────────── */
#hero {
    position: relative;
    display: grid;
    grid-template-columns: 55% 45%;
    height: 100dvh;
    height: 100vh; /* fallback */
    min-height: 0;
    overflow: hidden;
    align-items: stretch;
}

/* thin vertical separator between columns */
#hero::after {
    content: '';
    position: absolute;
    left: 55%;
    top: 12%;
    height: 76%;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(232,197,71,0.14) 25%,
        rgba(232,197,71,0.14) 75%,
        transparent
    );
    pointer-events: none;
    z-index: 3;
}

.orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.orb-gold-1 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(232,197,71,0.09) 0%, transparent 70%);
    top: -180px; right: -120px;
    animation: orbFloat 14s ease-in-out infinite;
}
.orb-blue-1 {
    width: 550px; height: 550px;
    background: radial-gradient(circle, rgba(74,173,255,0.07) 0%, transparent 70%);
    bottom: -80px; left: -120px;
    animation: orbFloat 18s ease-in-out infinite reverse;
}
.orb-gold-2 {
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(232,197,71,0.05) 0%, transparent 70%);
    top: 38%; left: 42%;
    animation: orbFloat 11s ease-in-out infinite 2s;
}

/* hero portrait */
.hero-photo-wrap {
    grid-column: 2;
    grid-row: 1;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: unset;
    z-index: 1;
    pointer-events: none;
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 88%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 88%,
        transparent 100%
    );
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: grayscale(10%);
}

.hero-ring {
    position: absolute;
    right: 16%;
    top: 50%;
    transform: translateY(-50%);
    width: 420px; height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(232,197,71,0.06);
    pointer-events: none;
}
.hero-ring::before {
    content: '';
    position: absolute;
    inset: 40px;
    border-radius: 50%;
    border: 1px solid rgba(74,173,255,0.05);
}
.hero-ring::after {
    content: '';
    position: absolute;
    inset: 80px;
    border-radius: 50%;
    border: 1px solid rgba(232,197,71,0.04);
}

.hero-content {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    z-index: 2;
    max-width: none;
    padding: 7vh 4rem 6vh 12vw;
    align-self: flex-start;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.82rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: clamp(0.8rem, 2vh, 2.2rem);
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 36px; height: 1px;
    background: var(--gold);
}

.hero-h1 {
    font-size: min(clamp(2.8rem, 7.5vw, 8rem), 18vh);
    font-weight: 300;
    line-height: 0.93;
    margin-bottom: clamp(1rem, 2.5vh, 2.5rem);
    opacity: 0;
    animation: fadeUp 1s 0.45s forwards;
}
.hero-h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-dim);
    max-width: 23vw;
    line-height: 1.75;
    margin-bottom: clamp(1.5rem, 3vh, 4rem);
    opacity: 0;
    animation: fadeUp 0.9s 0.6s forwards;
}

.hero-actions {
    display: flex;
    gap: 1.4rem;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.9s 0.75s forwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.05rem 2.1rem;
    background: var(--gold);
    color: #090909;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
    background: #f0d468;
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(232,197,71,0.28);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: var(--text-dim);
    font-size: 0.82rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    background: none;
    border-top: none; border-left: none; border-right: none;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover {
    color: var(--text);
    border-color: rgba(255,255,255,0.3);
}

/* hero stats row */
.hero-stats {
    display: flex;
    gap: 0;
    margin-top: clamp(1.2rem, 2.5vh, 3rem);
    padding-top: clamp(1rem, 2vh, 2rem);
    border-top: 1px solid rgba(255,255,255,0.07);
    opacity: 0;
    animation: fadeUp 0.9s 0.9s forwards;
}

.hero-stat {
    flex: 1;
    padding-right: 2rem;
    border-right: 1px solid rgba(255,255,255,0.06);
    margin-right: 2rem;
}
.hero-stat:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}

.hero-stat-num {
    display: block;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero-stat-lbl {
    display: block;
    font-size: 0.79rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-cue {
    position: absolute;
    bottom: 2.8rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    opacity: 0;
    animation: fadeIn 1s 1.4s forwards;
}
.scroll-cue-label {
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.scroll-cue-line {
    width: 1px;
    height: 56px;
    background: linear-gradient(to bottom, rgba(232,197,71,0.4), transparent);
    animation: linePulse 2.2s ease-in-out infinite;
}

/* ───────────── SHARED SECTION STYLES ───────────── */
section { padding: clamp(5rem, 8vh, 9rem) clamp(2rem, 3.5vw, 3.5rem); }

section + section {
    border-top: 1px solid var(--border);
}

.container { max-width: 1180px; margin: 0 auto; }

.sec-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.82rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.6rem;
}
.sec-label::before {
    content: '';
    display: block;
    width: 28px; height: 1px;
    background: var(--gold);
}

.sec-title {
    font-size: clamp(2.6rem, 5.2vw, 4.8rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
}
.sec-title em {
    font-style: italic;
    color: var(--gold);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1),
                transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s !important; }
.reveal-delay-2 { transition-delay: 0.2s !important; }
.reveal-delay-3 { transition-delay: 0.3s !important; }

/* ───────────── ABOUT ───────────── */
#about { background: var(--bg-2); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: center;
}

.photo-wrap { position: relative; }

.photo-frame {
    aspect-ratio: 3/4;
    background: linear-gradient(145deg, rgba(232,197,71,0.07), rgba(74,173,255,0.04));
    border: 1px solid var(--border);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.photo-frame::after {
    content: '';
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(232,197,71,0.1);
    border-radius: 1px;
    pointer-events: none;
}
.photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.photo-accent {
    position: absolute;
    bottom: -16px; right: -16px;
    width: 130px; height: 130px;
    border: 1px solid rgba(74,173,255,0.15);
    border-radius: 2px;
    pointer-events: none;
}

.credential-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 2.8rem;
}
.cred-tag {
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    padding: 0.38rem 0.9rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-dim);
    transition: border-color 0.2s, color 0.2s;
}
.cred-tag:hover { border-color: rgba(232,197,71,0.3); color: var(--gold); }

.bio-text {
    font-size: 1.05rem;
    color: var(--text-dim);
    line-height: 1.82;
    margin-bottom: 1.4rem;
}

.stat-row {
    display: flex;
    gap: 3rem;
    padding-top: 2.8rem;
    margin-top: 2.8rem;
    border-top: 1px solid var(--border);
}
.stat-num {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 3.2rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.35rem;
}
.stat-lbl {
    font-size: 0.84rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ───────────── SERVICES ───────────── */
#services { position: relative; overflow: hidden; }

.services-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    gap: 2rem;
    flex-wrap: wrap;
}
.services-intro {
    max-width: 360px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.35rem;
    font-style: italic;
    font-weight: 300;
    color: var(--text-dim);
    line-height: 1.7;
    padding-left: 1.4rem;
    border-left: 1px solid rgba(232, 197, 71, 0.45);
    align-self: flex-end;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--border);
    gap: 1px;
    border: 1px solid var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.svc-card {
    background: var(--bg);
    padding: 3.2rem 3rem;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.svc-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232,197,71,0), transparent);
    transition: background 0.4s;
}
.svc-card:hover { background: rgba(232,197,71,0.025); }
.svc-card:hover::before {
    background: linear-gradient(90deg, transparent, rgba(232,197,71,0.35), transparent);
}
.svc-card:hover .svc-icon {
    border-color: rgba(232,197,71,0.3);
    color: var(--gold);
}

.svc-icon {
    width: 50px; height: 50px;
    border: 1px solid var(--border);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 2.2rem;
    transition: border-color 0.3s, color 0.3s;
}

.svc-name {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.65rem;
    font-weight: 400;
    margin-bottom: 1.1rem;
    line-height: 1.2;
}
.svc-desc {
    font-size: 1.08rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 2.8rem;
    flex: 1;
}
.svc-price {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.5rem;
    color: var(--gold);
}
.svc-price small {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-left: 0.4rem;
}

/* ───────────── APPROACH ───────────── */
#approach { background: var(--bg-2); }

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: var(--border);
    gap: 1px;
    border: 1px solid var(--border);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 4rem;
}

.step-card {
    background: var(--bg-2);
    padding: 4rem;
    position: relative;
    transition: background 0.3s;
}
.step-card:hover { background: rgba(255,255,255,0.013); }

.step-num {
    position: absolute;
    top: 2rem; right: 2.8rem;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 5.5rem;
    font-weight: 300;
    color: rgba(232,197,71,0.11);
    line-height: 1;
    letter-spacing: -0.02em;
    user-select: none;
}

.step-index {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 1.4rem;
}
.step-name {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 1.1rem;
}
.step-desc {
    font-size: 1.08rem;
    color: var(--text-muted);
    line-height: 1.78;
}

/* ───────────── TESTIMONIALS ───────────── */
#testimonials { position: relative; overflow: hidden; }

.testi-header { text-align: center; margin-bottom: 4rem; }
.testi-header .sec-label { justify-content: center; }

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

.testi-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 3rem;
    transition: border-color 0.3s, background 0.3s;
}
.testi-card:hover {
    border-color: rgba(232,197,71,0.18);
    background: rgba(232,197,71,0.018);
}

.stars {
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    margin-bottom: 1.4rem;
}
.quote {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 6rem;
    line-height: 0.5;
    color: rgba(232,197,71,0.22);
    margin-bottom: 1.2rem;
    display: block;
}
.testi-text {
    font-size: 1.08rem;
    color: var(--text-dim);
    line-height: 1.78;
    font-style: italic;
    margin-bottom: 2.2rem;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}
.author-av {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(232,197,71,0.18), rgba(74,173,255,0.18));
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    color: var(--text-dim);
    flex-shrink: 0;
}
.author-name { font-size: 0.82rem; font-weight: 500; }
.author-detail { font-size: 0.84rem; color: var(--text-muted); margin-top: 0.15rem; }

/* ── Testimonials type label ── */
.testi-type-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
    opacity: 0.85;
}

/* ── Testimonials rotator slides (grid overlap cross-fade) ── */
.testi-slides {
    display: grid;
    margin-bottom: 1.4rem;
}
.testi-slide {
    grid-column: 1;
    grid-row: 1;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}
.testi-slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* ── Testimonials controls row (dots + arrows) ── */
.testi-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.testi-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}
.testi-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--border);
    transition: background 0.35s, transform 0.35s;
    cursor: default;
}
.testi-dot.active {
    background: var(--gold);
    transform: scale(1.4);
}

/* ── Testimonials arrows ── */
.testi-arrows {
    display: flex;
    gap: 6px;
}
.testi-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-dim);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.testi-arrow:hover {
    border-color: rgba(232,197,71,0.4);
    color: var(--gold);
    background: rgba(232,197,71,0.06);
}
.testi-arrow:active {
    background: rgba(232,197,71,0.1);
}

/* ── Services intro note ── */
.svc-intro-note {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 1rem;
    color: var(--text-dim);
    padding: 1rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--card);
}
.svc-intro-note strong {
    color: var(--gold);
    font-weight: 500;
}

/* ───────────── CONTACT ───────────── */
#contact { background: var(--bg-2); position: relative; overflow: hidden; }

.contact-orb {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,197,71,0.05) 0%, transparent 70%);
    top: -150px; right: -100px;
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 7rem;
    align-items: start;
    position: relative;
}

.contact-headline {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.6rem;
}
.contact-headline em { font-style: italic; color: var(--gold); }

.contact-body {
    font-size: 1.08rem;
    color: var(--text-dim);
    line-height: 1.78;
    margin-bottom: 3rem;
}

.contact-items { display: flex; flex-direction: column; gap: 1.4rem; }
.ci {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}
.ci-icon {
    width: 40px; height: 40px;
    border: 1px solid var(--border);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    color: var(--text-dim);
}
.ci-main { font-size: 0.88rem; color: var(--text-dim); }
.ci-sub { font-size: 0.77rem; color: var(--text-muted); margin-top: 0.12rem; }
.ci-link {
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s;
}
.ci-link:hover { opacity: 0.75; }
.ci-link:hover .ci-icon {
    border-color: rgba(232,197,71,0.35);
    color: var(--gold);
}
.ci-link .ci-icon { transition: border-color 0.2s, color 0.2s; }
.ci-muted { opacity: 0.38; }

/* ── Contact meta (email + hours, below the body text) ── */
.contact-meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

/* ── Social strip — full width below contact-grid ── */
.contact-social-strip {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2.2rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}
.css-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
}
.css-btns {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
}

/* ── Social buttons (shared, used in strip) ── */
.contact-socials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    margin-bottom: 1.6rem;
}
.ci-social-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--card);
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.25s cubic-bezier(0.4,0,0.2,1),
                background 0.25s cubic-bezier(0.4,0,0.2,1);
}
.ci-social-btn:hover {
    border-color: rgba(232,197,71,0.28);
    background: rgba(232,197,71,0.04);
}
.ci-social-btn:active {
    background: rgba(232,197,71,0.08);
}
.csb-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: border-color 0.25s, color 0.25s;
}
.ci-social-btn:hover .csb-icon {
    border-color: rgba(232,197,71,0.4);
    color: var(--gold);
}
.csb-label {
    font-size: 0.83rem;
    color: var(--text-dim);
    font-weight: 400;
    letter-spacing: 0.025em;
    transition: color 0.25s;
}
.ci-social-btn:hover .csb-label {
    color: var(--text);
}

/* ── button reset so Viber button matches <a> buttons exactly ── */
button.ci-social-btn {
    font-family: inherit;
    color: inherit;
    outline: none;
    margin: 0;
    line-height: inherit;
    -webkit-appearance: none;
    appearance: none;
}
button.soc {
    font-family: inherit;
    color: var(--text-muted);
    outline: none;
    margin: 0;
    background: transparent;
    line-height: inherit;
    -webkit-appearance: none;
    appearance: none;
}

/* ── Viber tooltip ── */
.viber-btn { position: relative; }
.viber-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: var(--bg-2);
    border: 1px solid rgba(232,197,71,0.28);
    color: var(--text);
    font-size: 0.78rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    padding: 0.38rem 0.8rem;
    border-radius: 2px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s, transform 0.22s;
    z-index: 20;
}
.viber-btn.open .viber-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}
.form-lbl {
    display: block;
    font-size: 0.79rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.55rem;
}
.form-inp,
.form-area {
    width: 100%;
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--border);
    border-radius: 2px;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    padding: 0.95rem 1.1rem;
    outline: none;
    transition: border-color 0.25s, background 0.25s;
}
.form-inp:focus,
.form-area:focus {
    border-color: rgba(232,197,71,0.38);
    background: rgba(232,197,71,0.018);
}
.form-inp::placeholder,
.form-area::placeholder { color: var(--text-muted); }
.form-area { min-height: 130px; resize: vertical; }

.form-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.1rem 2rem;
    background: var(--gold);
    color: #090909;
    border: none;
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 0.4rem;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.form-btn:hover {
    background: #f0d468;
    transform: translateY(-2px);
    box-shadow: 0 10px 34px rgba(232,197,71,0.22);
}

/* ───────────── FOOTER ───────────── */
footer {
    padding: 2.2rem 3.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.footer-logo {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
}
.footer-logo span { color: var(--gold); }
.footer-sub {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-wrap: wrap;
}
.footer-copy { font-size: 0.74rem; color: var(--text-muted); letter-spacing: 0.04em; }
.footer-dot { font-size: 0.74rem; color: var(--border); }
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.7rem;
}
.socials { display: flex; gap: 0.85rem; }
.soc {
    width: 34px; height: 34px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: border-color 0.2s, color 0.2s;
}
.soc:hover { border-color: var(--gold); color: var(--gold); }

.footer-dev {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 0.25rem;
}
.footer-dev-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}
.footer-dev-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.75rem;
    border: 1px solid rgba(232,197,71,0.25);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--gold);
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}
.footer-dev-badge:hover {
    border-color: rgba(232,197,71,0.55);
    background: rgba(232,197,71,0.06);
}
.footer-dev-icon {
    font-size: 0.65rem;
    opacity: 0.7;
    font-family: monospace;
}

/* ───────────── COOKIE BANNER ───────────── */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 500;
    width: 340px;
    background: rgba(14,14,14,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 1.8rem 1.8rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    transform: translateY(16px);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    pointer-events: none;
}
.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.cookie-banner-icon {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(232,197,71,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cookie-banner-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--gold);
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.cookie-banner-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text);
    margin: 0.1rem 0 0;
}
.cookie-banner-text {
    font-size: 0.76rem;
    color: var(--text-dim);
    line-height: 1.65;
    margin: 0;
}
.cookie-banner-text a {
    color: var(--gold);
    text-decoration: none;
}
.cookie-banner-text a:hover { text-decoration: underline; }
.cookie-accept {
    align-self: flex-start;
    padding: 0.5rem 1.4rem;
    border: 1px solid rgba(232,197,71,0.35);
    border-radius: 2px;
    background: transparent;
    color: var(--gold);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    margin-top: 0.2rem;
}
.cookie-accept:hover {
    background: rgba(232,197,71,0.08);
    border-color: var(--gold);
}

@media (max-width: 480px) {
    .cookie-banner { left: 1rem; right: 1rem; bottom: 1rem; width: auto; }
}

/* ───────────── PRIVACY PAGE ───────────── */
.privacy-section {
    padding: 10rem 0 6rem;
    min-height: 100vh;
}
.privacy-header { margin-bottom: 4rem; }
.privacy-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    margin: 0.5rem 0 1rem;
}
.privacy-updated {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
}
.privacy-body {
    max-width: 72ch;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.privacy-block h2 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.9rem;
}
.privacy-block p {
    font-size: 0.92rem;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 0.6rem;
}
.privacy-block ul {
    padding-left: 1.2rem;
    margin: 0.4rem 0 0.6rem;
}
.privacy-block li {
    font-size: 0.92rem;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 0.2rem;
}
.privacy-block a {
    color: var(--gold);
    text-decoration: none;
}
.privacy-block a:hover { text-decoration: underline; }
.footer-privacy {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.footer-privacy a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-privacy a:hover { color: var(--gold); }

@media (max-width: 768px) {
    .cookie-banner { padding: 1.2rem 1.5rem; flex-direction: column; align-items: flex-start; gap: 1rem; }
    .cookie-accept { width: 100%; text-align: center; }
}

/* ───────────── KEYFRAMES ───────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
}
@keyframes orbFloat {
    0%,100% { transform: translate(0,0) scale(1); }
    33%     { transform: translate(18px,-14px) scale(1.02); }
    66%     { transform: translate(-12px, 18px) scale(0.98); }
}
@keyframes linePulse {
    0%,100% { opacity: 0.25; transform: scaleY(1); }
    50%     { opacity: 0.7;  transform: scaleY(1.08); }
}

/* ───────────── RESPONSIVE ───────────── */
@media (max-width: 1024px) {
    .about-grid    { grid-template-columns: 1fr; gap: 3rem; }
    .photo-frame   { aspect-ratio: 4/3; max-width: 520px; }
    .services-grid { grid-template-columns: 1fr; }
    .approach-grid { grid-template-columns: 1fr; }
    .testi-grid    { grid-template-columns: 1fr; }
    .contact-grid  { grid-template-columns: 1fr; gap: 3.5rem; }
    .services-top  { flex-direction: column; gap: 1.5rem; }
    .services-intro {
        max-width: 100%;
        align-self: auto;
        border-left: none;
        border-top: 1px solid rgba(232,197,71,0.3);
        padding-left: 0;
        padding-top: 1.2rem;
    }
}

@media (max-width: 768px) {
    html { font-size: 15px; }

    nav { padding: 1.2rem 1.5rem; }
    .nav-right { display: none; }
    .nav-mob-right { display: flex; }
    .hamburger { display: flex; }

    section { padding: 5rem 1.5rem; }
    footer { padding: 2rem 1.5rem; flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .footer-right { align-items: flex-start; }

    /* ── Hero: photo as full-bleed background, text overlaid at bottom ── */
    #hero {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        padding: 0;
        position: relative;
    }
    #hero::after { display: none; }

    .hero-photo-wrap {
        display: block;
        grid-column: 1;
        grid-row: 1;
        position: absolute;
        inset: 0;
        z-index: 0;
        mask-image: none;
        -webkit-mask-image: none;
    }
    .hero-photo {
        object-position: center top;
    }
    /* dark gradient so text is readable */
    .hero-photo-wrap::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to bottom,
            rgba(9,9,9,0.35) 0%,
            rgba(9,9,9,0.2) 30%,
            rgba(9,9,9,0.75) 62%,
            rgba(9,9,9,0.97) 100%
        );
    }

    .hero-ring { display: none; }

    .hero-content {
        grid-column: 1;
        grid-row: 1;
        position: relative;
        z-index: 2;
        align-self: flex-end;
        padding: 0 1.5rem 5vh 1.5rem;
    }
    .hero-eyebrow { margin-bottom: 0.8rem; }
    .hero-sub {
        max-width: 100%;
        font-size: 1rem;
    }
    .hero-stats {
        gap: 0;
        flex-wrap: nowrap;
    }
    .hero-stat {
        padding-right: 1.2rem;
        margin-right: 1.2rem;
    }

    /* ── Sections: унифицировать выравнивание заголовков ── */
    .services-top { align-items: flex-start; }
    .testi-header { text-align: left; }
    .testi-header .sec-label { justify-content: flex-start; }

    /* About — circular portrait, editorial byline style */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }
    .photo-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .photo-frame {
        width: 180px;
        height: 180px;
        aspect-ratio: 1/1;
        border-radius: 50%;
        border: 1px solid rgba(232,197,71,0.35);
        background: none;
        box-shadow: 0 0 0 6px rgba(232,197,71,0.06),
                    0 0 0 12px rgba(232,197,71,0.03);
        max-width: none;
    }
    .photo-frame::after { display: none; }
    .photo-img {
        border-radius: 50%;
        object-position: center 12%;
    }
    .photo-accent { display: none; }

    .stat-row { gap: 1.5rem; flex-wrap: wrap; }
    .stat-num { font-size: 2rem; }

    /* Services — tighten gap above cards */
    .services-top { margin-bottom: 2rem; }
    .services-intro { font-size: 1.1rem; }

    /* Approach — timeline accent: left gold border shows progression */
    .step-num { display: none; }
    .approach-grid { gap: 0; border: 1px solid var(--border); border-radius: 2px; overflow: hidden; }
    .step-card {
        padding: 1.8rem 1.5rem 1.8rem 1.8rem;
        border-bottom: 1px solid var(--border);
        border-left: 3px solid rgba(232,197,71,0.35);
        border-radius: 0;
    }
    .step-card:last-child { border-bottom: none; }

    /* Testimonials — tighter cards */
    .testi-grid { gap: 0.8rem; }
    .testi-card { padding: 1.8rem 1.5rem; }
    .testi-header { margin-bottom: 2rem; }

    /* Contact */
    .contact-headline { font-size: clamp(1.8rem, 7vw, 2.8rem); }
    .contact-grid { gap: 2.5rem; }
}

@media (max-width: 480px) {
    html { font-size: 16px; }

    section { padding: 4rem 1.2rem; }

    .hero-content { padding: calc(68px + 5vh) 1.2rem 4vh 1.2rem; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .btn-primary  { justify-content: center; }

    .hero-stats { gap: 0; }
    .hero-stat  { padding-right: 1rem; margin-right: 1rem; }

    .svc-card { padding: 2rem 1.5rem; }
    .step-card { padding: 1.8rem 1.2rem; }
    .testi-card { padding: 2rem 1.5rem; }

    .stat-row { flex-wrap: wrap; gap: 1.5rem 2.5rem; }

    footer { gap: 1rem; }
}
