@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Jost:wght@300;400;500;600&display=swap');

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

:root {
    --bg: #080b12;
    --bg2: #0d1220;
    --gold: #a07840;
    --gold-bright: #c9a060;
    --steel: #3a7a9c;
    --steel-bright: #5aa0c0;
    --white: #f0ebe3;
    --muted: rgba(240, 235, 227, 0.5);
    --border: rgba(192, 158, 96, 0.12);
    --card-bg: rgba(255, 255, 255, 0.028);
    --gradient: linear-gradient(135deg, #7a5c2e 0%, #c9a060 50%, #3a7a9c 100%);
    --gradient-text: linear-gradient(90deg, #c9a060 0%, #e0cfa0 45%, #5aa0c0 100%);
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg);
    color: var(--white);
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

/* ── Custom Cursor ── */
.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--gold-bright);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .25s ease, height .25s ease, background .25s ease;
    box-shadow: 0 0 8px rgba(201, 160, 96, .8), 0 0 20px rgba(201, 160, 96, .4);
}
.cursor-glow {
    position: fixed;
    width: 38px;
    height: 38px;
    border: 1.5px solid rgba(201, 160, 96, .55);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width .4s ease, height .4s ease, border-color .3s ease;
}

/* ── Navigation ── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.25rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background .4s ease, backdrop-filter .4s ease, border-color .4s ease;
}
nav.scrolled {
    background: rgba(8, 11, 18, 0.9);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
}
.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.5rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: .04em;
}
.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}
.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: color .3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
    padding: .6rem 1.6rem;
    background: var(--gradient);
    border: none;
    border-radius: 100px;
    color: white;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: .82rem;
    cursor: none;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: opacity .3s, transform .2s;
}
.nav-cta:hover { opacity: .88; transform: translateY(-2px); }

/* ── Hero ── */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 7rem 2rem 5rem;
}

/* Gradient orbs — deep, moody, sophisticated */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .42;
    will-change: transform;
}
.orb-1 { width: 700px; height: 700px; background: radial-gradient(circle, #1a3060, transparent 70%); top: -20%; left: -18%; animation: drift1 22s ease-in-out infinite; }
.orb-2 { width: 550px; height: 550px; background: radial-gradient(circle, #7a5010, transparent 70%); top: 15%; right: -12%; animation: drift2 27s ease-in-out infinite; }
.orb-3 { width: 450px; height: 450px; background: radial-gradient(circle, #0a3845, transparent 70%); bottom: -8%; left: 28%; animation: drift3 19s ease-in-out infinite; }
.orb-4 { width: 380px; height: 380px; background: radial-gradient(circle, #102040, transparent 70%); top: 55%; left: -8%; animation: drift1 24s ease-in-out infinite reverse; }

@keyframes drift1 {
    0%,100% { transform: translate(0,0) scale(1); }
    33%      { transform: translate(40px,-55px) scale(1.06); }
    66%      { transform: translate(-30px, 35px) scale(.95); }
}
@keyframes drift2 {
    0%,100% { transform: translate(0,0) scale(1); }
    40%      { transform: translate(-50px, 40px) scale(1.04); }
    70%      { transform: translate(30px,-30px) scale(.97); }
}
@keyframes drift3 {
    0%,100% { transform: translate(0,0) scale(1); }
    50%      { transform: translate(20px,-60px) scale(1.07); }
}

/* Grid texture */
.grid-overlay {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(192,158,96,.014) 1px, transparent 1px),
        linear-gradient(90deg, rgba(192,158,96,.014) 1px, transparent 1px);
    background-size: 64px 64px;
}

/* Rotating rings */
.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(192, 158, 96, .07);
    pointer-events: none;
}
.ring-1 { width: 500px; height: 500px; top: 5%; right: 2%; animation: spin 40s linear infinite; }
.ring-2 { width: 260px; height: 260px; bottom: 18%; right: 18%; animation: spin 28s linear infinite reverse; }
.ring-3 { width: 180px; height: 180px; bottom: 30%; left: 8%; animation: spin 20s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Hero content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 960px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .42rem 1.3rem;
    background: rgba(160, 120, 64, .12);
    border: 1px solid rgba(192, 158, 96, .28);
    border-radius: 100px;
    font-size: .72rem;
    font-weight: 500;
    color: var(--gold-bright);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 2.25rem;
    opacity: 0;
    transform: translateY(22px);
    animation: revealUp .9s ease forwards .15s;
}
.badge-dot {
    width: 7px; height: 7px;
    background: #4ade80;
    border-radius: 50%;
    animation: blink 2.2s ease infinite;
}
@keyframes blink {
    0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74,222,128,.5); }
    50%      { opacity: .55; box-shadow: 0 0 0 5px rgba(74,222,128,0); }
}

.hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(3.4rem, 8vw, 7.5rem);
    line-height: .96;
    letter-spacing: -.01em;
    margin-bottom: 1.75rem;
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp .95s ease forwards .35s;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.18rem);
    color: var(--muted);
    max-width: 580px;
    margin: 0 auto 3.25rem;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: .02em;
    opacity: 0;
    transform: translateY(28px);
    animation: revealUp .95s ease forwards .55s;
}

.hero-buttons {
    display: flex;
    gap: 1.1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(28px);
    animation: revealUp .95s ease forwards .75s;
}

.btn-primary {
    padding: 1rem 2.6rem;
    background: var(--gradient);
    border: none;
    border-radius: 100px;
    color: white;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: .9rem;
    cursor: none;
    letter-spacing: .08em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .3s ease;
}
.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%; left: -70%;
    width: 45%; height: 200%;
    background: rgba(255,255,255,.22);
    transform: skewX(-20deg);
    transition: left .55s ease;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 48px rgba(160,120,64,.38); }
.btn-primary:hover::after { left: 160%; }

.btn-secondary {
    padding: 1rem 2.6rem;
    background: transparent;
    border: 1px solid rgba(192,158,96,.2);
    border-radius: 100px;
    color: var(--white);
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: .9rem;
    cursor: none;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: border-color .3s, background .3s, transform .25s;
}
.btn-secondary:hover {
    border-color: rgba(192,158,96,.4);
    background: rgba(192,158,96,.07);
    transform: translateY(-3px);
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
    color: var(--muted);
    font-size: .68rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    opacity: 0;
    animation: revealUp 1s ease forwards 1.4s;
    z-index: 2;
}
.scroll-line {
    width: 1px;
    height: 52px;
    background: linear-gradient(to bottom, rgba(192,158,96,.4), transparent);
    animation: scrollAnim 2.2s ease infinite;
}
@keyframes scrollAnim {
    0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
    49%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
    50%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

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

/* ── Stats strip ── */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 5rem;
    padding: 3.5rem 2rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(192, 158, 96, .025);
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 3rem;
    line-height: 1;
    margin-bottom: .4rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label {
    font-size: .72rem;
    color: var(--muted);
    letter-spacing: .14em;
    text-transform: uppercase;
}

/* ── Reveal util ── */
.reveal {
    opacity: 0;
    transform: translateY(44px);
    transition: opacity .85s ease, transform .85s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .32s; }
.d4 { transition-delay: .44s; }

/* ── Section common ── */
section { padding: 9rem 2rem; }
.section-container { max-width: 1200px; margin: 0 auto; }
.section-tag {
    display: inline-block;
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 1rem;
}
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(2.6rem, 4.5vw, 4rem);
    line-height: 1.05;
    letter-spacing: -.01em;
    margin-bottom: 1.2rem;
}
.section-sub {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.8;
    letter-spacing: .02em;
}

/* ── Pricing ── */
#pricing {
    position: relative;
    overflow: hidden;
}
#pricing::before {
    content: '';
    position: absolute;
    top: 40%; left: 50%;
    transform: translate(-50%,-50%);
    width: 900px; height: 700px;
    background: radial-gradient(ellipse, rgba(160,120,64,.05) 0%, transparent 65%);
    pointer-events: none;
}
.pricing-header { text-align: center; margin-bottom: 5rem; }
.pricing-header .section-sub { margin: 0 auto; max-width: 480px; }

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

.pricing-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 2.75rem 2.5rem;
    transition: box-shadow .4s ease;
    overflow: hidden;
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
}
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity .4s ease;
}
.pricing-card.featured {
    border-color: rgba(192, 158, 96, .32);
    background: rgba(160, 120, 64, .05);
}
.pricing-card.featured::before { opacity: 1; }
.pricing-card:hover {
    box-shadow: 0 36px 72px rgba(0,0,0,.5);
}
.pricing-card:hover::before { opacity: 1; }

.featured-badge {
    position: absolute;
    top: 1.6rem; right: 1.6rem;
    background: var(--gradient);
    color: white;
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .32rem 1rem;
    border-radius: 100px;
}

.card-icon {
    width: 52px; height: 52px;
    border-radius: 16px;
    background: rgba(160, 120, 64, .15);
    border: 1px solid rgba(192, 158, 96, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.85rem;
    font-size: 1.4rem;
}
.card-tier {
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .45rem;
}
.card-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: .7rem;
    letter-spacing: -.01em;
}
.card-desc {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}
.card-price {
    display: flex;
    align-items: flex-end;
    gap: .3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}
.price-cur {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--muted);
    margin-bottom: .55rem;
}
.price-amount {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 4rem;
    line-height: 1;
    letter-spacing: -.02em;
}
.price-lbl {
    color: var(--muted);
    font-size: .82rem;
    margin-bottom: .55rem;
    letter-spacing: .04em;
}

.card-features {
    list-style: none;
    margin-bottom: 2.75rem;
    display: flex;
    flex-direction: column;
    gap: .95rem;
    flex: 1;
}
.card-features li {
    display: flex;
    align-items: center;
    gap: .8rem;
    font-size: .88rem;
    color: rgba(240,235,227,.8);
    letter-spacing: .02em;
}
.feat-check {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: rgba(160,120,64,.15);
    border: 1px solid rgba(192,158,96,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .62rem;
    color: var(--gold-bright);
}

.btn-card {
    width: 100%;
    padding: .95rem;
    border-radius: 100px;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: .82rem;
    cursor: none;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: all .3s ease;
    text-align: center;
    display: block;
}
.btn-outline {
    background: transparent;
    border: 1px solid rgba(192,158,96,.2);
    color: var(--white);
}
.btn-outline:hover {
    border-color: rgba(192,158,96,.45);
    background: rgba(192,158,96,.08);
}
.btn-filled {
    background: var(--gradient);
    border: none;
    color: white;
}
.btn-filled:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(160,120,64,.35);
}

/* ── Contact ── */
#contact { position: relative; }
#contact::before {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 600px; height: 600px;
    background: radial-gradient(ellipse, rgba(58,122,156,.04) 0%, transparent 65%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.55fr;
    gap: 5.5rem;
    align-items: start;
}
.contact-info { position: sticky; top: 8rem; }

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 3rem;
}
.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--muted);
    font-size: .92rem;
    letter-spacing: .03em;
    transition: color .3s;
}
.contact-link:hover { color: var(--white); }
.link-icon {
    width: 46px; height: 46px;
    border-radius: 13px;
    background: rgba(192,158,96,.05);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: background .3s, border-color .3s;
    flex-shrink: 0;
}
.contact-link:hover .link-icon {
    background: rgba(160,120,64,.12);
    border-color: rgba(192,158,96,.35);
}

.contact-form {
    background: rgba(192,158,96,.025);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 3.25rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 1.25rem;
}
.form-group:last-of-type { margin-bottom: 0; }
.form-group label {
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
}
.form-control {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: .95rem 1.3rem;
    color: var(--white);
    font-family: 'Jost', sans-serif;
    font-size: .95rem;
    outline: none;
    transition: border-color .3s, background .3s, box-shadow .3s;
    width: 100%;
    -webkit-appearance: none;
}
.form-control::placeholder { color: rgba(240,235,227,.18); }
.form-control:focus {
    border-color: rgba(192,158,96,.5);
    background: rgba(160,120,64,.05);
    box-shadow: 0 0 0 3px rgba(192,158,96,.1);
}
textarea.form-control { resize: vertical; min-height: 155px; }

/* ── Custom Select ── */
.custom-select {
    position: relative;
}
.cs-trigger {
    width: 100%;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: .95rem 1.3rem;
    color: var(--white);
    font-family: 'Jost', sans-serif;
    font-size: .95rem;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    transition: border-color .3s, background .3s, box-shadow .3s;
}
.cs-trigger:focus,
.custom-select.open .cs-trigger {
    border-color: rgba(192,158,96,.55);
    background: rgba(160,120,64,.05);
    box-shadow: 0 0 0 3px rgba(192,158,96,.1);
    outline: none;
}
.cs-value { color: rgba(240,235,227,.5); transition: color .2s; }
.cs-value.selected { color: var(--white); }
.cs-arrow {
    color: var(--muted);
    flex-shrink: 0;
    transition: transform .3s ease, color .2s;
}
.custom-select.open .cs-arrow { transform: rotate(180deg); color: var(--gold-bright); }

.cs-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    background: #0f1420;
    border: 1px solid rgba(192,158,96,.22);
    border-radius: 14px;
    list-style: none;
    overflow: hidden;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 48px rgba(0,0,0,.5);
}
.custom-select.open .cs-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.cs-dropdown li {
    padding: .85rem 1.3rem;
    font-family: 'Jost', sans-serif;
    font-size: .92rem;
    color: var(--muted);
    cursor: none;
    transition: background .2s, color .2s;
    border-bottom: 1px solid rgba(192,158,96,.07);
}
.cs-dropdown li:last-child { border-bottom: none; }
.cs-dropdown li:hover {
    background: rgba(160,120,64,.1);
    color: var(--white);
}
.cs-dropdown li.selected {
    color: var(--gold-bright);
    background: rgba(160,120,64,.08);
}

.form-submit-wrap { margin-top: 1.5rem; }
.btn-submit {
    width: 100%;
    padding: 1.15rem;
    background: var(--gradient);
    border: none;
    border-radius: 14px;
    color: white;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: .88rem;
    cursor: none;
    letter-spacing: .1em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .3s;
}
.btn-submit::after {
    content: '';
    position: absolute;
    top: -50%; left: -70%;
    width: 45%; height: 200%;
    background: rgba(255,255,255,.2);
    transform: skewX(-20deg);
    transition: left .55s ease;
}
.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 22px 44px rgba(160,120,64,.38); }
.btn-submit:hover::after { left: 160%; }
.btn-submit.success { background: linear-gradient(135deg, #4ade80, #22d3ee) !important; }

/* ── Footer ── */
footer {
    padding: 3rem 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--muted);
    font-size: .8rem;
    letter-spacing: .04em;
}
.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.3rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: .06em;
}

/* ── Services ── */
#services { position: relative; }
#services::before {
    content: '';
    position: absolute;
    top: 50%; right: 0;
    transform: translateY(-50%);
    width: 500px; height: 500px;
    background: radial-gradient(ellipse, rgba(58,122,156,.05) 0%, transparent 65%);
    pointer-events: none;
}

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

.service-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 2.25rem;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity .35s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 56px rgba(0,0,0,.4);
    border-color: rgba(192,158,96,.18);
}
.service-card:hover::before { opacity: 1; }

.service-icon-wrap {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: rgba(160,120,64,.12);
    border: 1px solid rgba(192,158,96,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--gold-bright);
    transition: background .35s ease, border-color .35s ease;
}
.service-card:hover .service-icon-wrap {
    background: rgba(160,120,64,.2);
    border-color: rgba(192,158,96,.4);
}

.service-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: -.01em;
    margin-bottom: .6rem;
    color: var(--white);
}
.service-desc {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.7;
    letter-spacing: .02em;
}

/* ── Portfolio ── */
#portfolio { position: relative; overflow: hidden; }
#portfolio::before {
    content: '';
    position: absolute;
    top: 20%; left: 0;
    width: 500px; height: 500px;
    background: radial-gradient(ellipse, rgba(160,120,64,.04) 0%, transparent 65%);
    pointer-events: none;
}

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

.portfolio-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 36px 72px rgba(0,0,0,.5);
    border-color: rgba(192,158,96,.2);
}

/* Visual area — CSS gradient art */
.portfolio-visual {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.portfolio-visual .pv-bar {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 30px;
    background: rgba(255,255,255,.05);
    border-bottom: 1px solid rgba(255,255,255,.06);
    z-index: 2;
}
.portfolio-visual .pv-bar::before {
    content: '';
    position: absolute;
    top: 50%; left: 14px;
    transform: translateY(-50%);
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(201,160,96,.5);
    box-shadow: 13px 0 0 rgba(255,255,255,.18), 26px 0 0 rgba(255,255,255,.1);
}
.portfolio-visual .pv-blocks {
    position: absolute;
    bottom: 16px; left: 16px; right: 16px;
    z-index: 2;
}
.portfolio-visual .pv-blocks::before {
    content: '';
    display: block;
    height: 5px;
    border-radius: 3px;
    background: rgba(255,255,255,.12);
    width: 65%;
    margin-bottom: 7px;
}
.portfolio-visual .pv-blocks::after {
    content: '';
    display: block;
    height: 5px;
    border-radius: 3px;
    background: rgba(255,255,255,.07);
    width: 40%;
}

/* Hover overlay with link */
.pv-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8,11,18,.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .35s ease;
    z-index: 3;
    backdrop-filter: blur(4px);
}
.portfolio-card:hover .pv-overlay { opacity: 1; }
.pv-link {
    color: var(--white);
    text-decoration: none;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: .7rem 1.8rem;
    border: 1px solid rgba(192,158,96,.5);
    border-radius: 100px;
    background: rgba(160,120,64,.15);
    transition: background .25s, border-color .25s;
}
.pv-link:hover {
    background: rgba(160,120,64,.3);
    border-color: rgba(192,158,96,.8);
}

/* The inner background of the visual scales on hover */
.portfolio-card:hover .portfolio-visual::after {
    transform: scale(1.06);
}
.portfolio-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    transition: transform .6s ease;
    z-index: 0;
}

/* Each project's unique gradient "screenshot" */
.pv-1 {
    background:
        radial-gradient(ellipse at 75% 20%, rgba(201,160,96,.55) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(120,70,10,.4) 0%, transparent 50%),
        linear-gradient(160deg, #1a1208 0%, #2d1c06 50%, #120c04 100%);
}
.pv-1::after {
    background:
        radial-gradient(ellipse at 75% 20%, rgba(201,160,96,.55) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(120,70,10,.4) 0%, transparent 50%),
        linear-gradient(160deg, #1a1208 0%, #2d1c06 50%, #120c04 100%);
}
.pv-2 {
    background:
        radial-gradient(ellipse at 25% 70%, rgba(90,160,192,.45) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(30,80,140,.35) 0%, transparent 55%),
        linear-gradient(150deg, #06101e 0%, #0d1e3a 55%, #060e18 100%);
}
.pv-2::after {
    background:
        radial-gradient(ellipse at 25% 70%, rgba(90,160,192,.45) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(30,80,140,.35) 0%, transparent 55%),
        linear-gradient(150deg, #06101e 0%, #0d1e3a 55%, #060e18 100%);
}
.pv-3 {
    background:
        radial-gradient(ellipse at 70% 30%, rgba(40,180,150,.35) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 75%, rgba(10,80,70,.3) 0%, transparent 50%),
        linear-gradient(135deg, #040f0e 0%, #0a2420 50%, #040c0a 100%);
}
.pv-3::after {
    background:
        radial-gradient(ellipse at 70% 30%, rgba(40,180,150,.35) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 75%, rgba(10,80,70,.3) 0%, transparent 50%),
        linear-gradient(135deg, #040f0e 0%, #0a2420 50%, #040c0a 100%);
}
.pv-4 {
    background:
        radial-gradient(ellipse at 20% 80%, rgba(100,120,210,.3) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 25%, rgba(58,122,156,.25) 0%, transparent 50%),
        linear-gradient(160deg, #090b18 0%, #111628 55%, #080a14 100%);
}
.pv-4::after {
    background:
        radial-gradient(ellipse at 20% 80%, rgba(100,120,210,.3) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 25%, rgba(58,122,156,.25) 0%, transparent 50%),
        linear-gradient(160deg, #090b18 0%, #111628 55%, #080a14 100%);
}
.pv-5 {
    background:
        radial-gradient(ellipse at 65% 30%, rgba(180,100,80,.35) 0%, transparent 50%),
        radial-gradient(ellipse at 15% 70%, rgba(201,160,96,.25) 0%, transparent 50%),
        linear-gradient(140deg, #180e0a 0%, #241610 50%, #120a06 100%);
}
.pv-5::after {
    background:
        radial-gradient(ellipse at 65% 30%, rgba(180,100,80,.35) 0%, transparent 50%),
        radial-gradient(ellipse at 15% 70%, rgba(201,160,96,.25) 0%, transparent 50%),
        linear-gradient(140deg, #180e0a 0%, #241610 50%, #120a06 100%);
}
.pv-6 {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(58,122,156,.35) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 85%, rgba(192,158,96,.18) 0%, transparent 50%),
        linear-gradient(180deg, #080e1c 0%, #0d1630 55%, #080e1c 100%);
}
.pv-6::after {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(58,122,156,.35) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 85%, rgba(192,158,96,.18) 0%, transparent 50%),
        linear-gradient(180deg, #080e1c 0%, #0d1630 55%, #080e1c 100%);
}

.portfolio-info {
    padding: 1.4rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: .45rem;
}
.portfolio-tag {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold-bright);
}
.portfolio-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -.01em;
    color: var(--white);
}

/* ── Testimonials ── */
#testimonials {
    position: relative;
    overflow: hidden;
}
#testimonials::before {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 400px;
    background: radial-gradient(ellipse, rgba(160,120,64,.04) 0%, transparent 65%);
    pointer-events: none;
}

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

.testimonial-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 2.5rem;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    display: flex;
    flex-direction: column;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 56px rgba(0,0,0,.4);
    border-color: rgba(192,158,96,.18);
}

.t-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    line-height: .7;
    color: var(--gold-bright);
    opacity: .4;
    margin-bottom: 1.25rem;
    font-weight: 700;
}
.t-text {
    font-size: .92rem;
    color: rgba(240,235,227,.78);
    line-height: 1.8;
    letter-spacing: .02em;
    flex: 1;
    margin-bottom: 1.75rem;
}
.t-stars {
    font-size: 1rem;
    color: var(--gold-bright);
    letter-spacing: .1em;
    margin-bottom: 1.25rem;
}
.t-author {
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}
.t-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: .02em;
    color: var(--white);
    margin-bottom: .2rem;
}
.t-role {
    font-size: .75rem;
    color: var(--muted);
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* ── Page Loader ── */
#loader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: opacity .7s ease .1s, visibility .7s ease .1s;
}
#loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 2.2rem;
    letter-spacing: .12em;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.loader-track {
    width: 160px;
    height: 1px;
    background: rgba(192,158,96,.15);
    border-radius: 1px;
    overflow: hidden;
}
.loader-fill {
    height: 100%;
    width: 0;
    background: var(--gradient);
    border-radius: 1px;
    animation: loaderFill 1.5s cubic-bezier(.4,0,.2,1) forwards .2s;
}
@keyframes loaderFill { to { width: 100%; } }

/* ── Hamburger ── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: none;
    padding: 4px;
    z-index: 101;
    position: relative;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: transform .3s ease, opacity .3s ease;
    transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile menu ── */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(8,11,18,.97);
    backdrop-filter: blur(24px);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease, visibility .4s ease;
}
.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}
.mobile-menu ul {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.mobile-menu ul a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: .02em;
    line-height: 1;
    transition: color .3s;
    display: block;
}
.mobile-menu ul a:hover,
.mobile-menu ul a.active { color: var(--gold-bright); }

/* ── Active nav link ── */
.nav-links a {
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 1px;
    background: var(--gold-bright);
    transform: scaleX(0);
    transition: transform .3s ease;
    transform-origin: left;
}
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { transform: scaleX(1); }

/* ── Back to top ── */
#backToTop {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(160,120,64,.12);
    border: 1px solid rgba(192,158,96,.28);
    color: var(--gold-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .35s ease, visibility .35s ease, transform .35s ease,
                background .3s ease, border-color .3s ease;
}
#backToTop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#backToTop:hover {
    background: rgba(160,120,64,.26);
    border-color: rgba(192,158,96,.55);
}

/* ── Responsive ── */
@media (max-width: 960px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 460px; }
    .contact-grid { grid-template-columns: 1fr; gap: 3.5rem; }
    .contact-info { position: static; }
    nav { padding: 1.25rem 1.5rem; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .hamburger { display: flex; }
    .stats-bar { gap: 2.5rem; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .portfolio-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}
@media (max-width: 640px) {
    section { padding: 5.5rem 1.25rem; }
    .contact-form { padding: 2rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .services-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
}
