
:root {
    --black: #0a0a0a;
    --gold: #c9a84c;
    --cream: #faf7f2;
    --white: #ffffff;
    --slate: #888;
    --mist: #e8e2d9;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    background: var(--cream);
    color: var(--black);
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 32px 72px;
    display: flex; align-items: center; justify-content: space-between;
    transition: all 0.4s;
}
nav.scrolled {
    background: rgba(250,247,242,0.96);
    backdrop-filter: blur(12px);
    padding: 20px 72px;
    border-bottom: 1px solid rgba(201,168,76,0.12);
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--white);
    text-decoration: none;
    transition: color 0.4s;
}
nav.scrolled .nav-logo { color: var(--black); }
.nav-logo em { font-style: italic; color: var(--gold); }

.nav-right { display: flex; align-items: center; gap: 40px; }

.nav-link {
    font-size: 11px; letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}
nav.scrolled .nav-link { color: var(--slate); }
.nav-link:hover { color: var(--gold); }

.nav-cta {
    font-size: 11px; letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.4);
    padding: 10px 24px;
    text-decoration: none;
    transition: all 0.3s;
}
.nav-cta:hover { background: var(--gold); color: var(--black); }

.hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none;
}
.hamburger span {
    display: block; width: 22px; height: 1px;
    background: var(--white); transition: background 0.4s;
}
nav.scrolled .hamburger span { background: var(--black); }

/* ── MOBILE MENU ── */
.mobile-menu {
    display: none; position: fixed; inset: 0;
    background: var(--black); z-index: 200;
    flex-direction: column; align-items: center; justify-content: center; gap: 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px; font-weight: 300; font-style: italic;
    color: var(--white); text-decoration: none; transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
    position: absolute; top: 28px; right: 32px;
    background: none; border: none; color: var(--white); font-size: 28px;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: var(--black);
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.06) 0%, transparent 70%);
}

.hero-inner {
    position: relative; z-index: 2;
    padding: 140px 40px 100px;
    max-width: 900px;
}

.hero-tag {
    font-size: 10px; letter-spacing: 0.35em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 48px;
    opacity: 0; animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(56px, 8vw, 110px);
    font-weight: 300; line-height: 1.0;
    color: var(--white);
    margin-bottom: 40px;
    opacity: 0; animation: fadeUp 0.9s ease 0.5s forwards;
}
.hero-title em { font-style: italic; color: var(--gold); display: block; }

.hero-line {
    width: 1px; height: 80px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin: 0 auto 40px;
    opacity: 0; animation: fadeIn 1s ease 0.7s forwards;
}

.hero-sub {
    font-size: 16px; line-height: 1.9;
    color: rgba(255,255,255,0.45);
    max-width: 520px; margin: 0 auto 52px;
    opacity: 0; animation: fadeUp 0.9s ease 0.9s forwards;
}

.hero-actions {
    display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
    opacity: 0; animation: fadeUp 0.9s ease 1.1s forwards;
}

.btn-gold {
    background: var(--gold); color: var(--black);
    padding: 16px 48px; font-size: 11px;
    letter-spacing: 0.2em; text-transform: uppercase;
    text-decoration: none; transition: all 0.3s; display: inline-block;
}
.btn-gold:hover { background: #e2c97e; }

.btn-outline {
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.6);
    padding: 16px 48px; font-size: 11px;
    letter-spacing: 0.2em; text-transform: uppercase;
    text-decoration: none; transition: all 0.3s; display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-note {
    margin-top: 32px; font-size: 13px;
    color: rgba(255,255,255,0.65); font-style: italic;
    opacity: 0; animation: fadeUp 0.9s ease 1.3s forwards;
}

/* ── WHAT I DO ── */
.what-section {
    background: var(--cream);
    padding: 160px 72px;
}

.what-inner {
    max-width: 1000px; margin: 0 auto; text-align: center;
}

.section-tag {
    font-size: 10px; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 40px; display: block;
}

.what-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 300; line-height: 1.1;
    color: var(--black); margin-bottom: 60px;
}
.what-title em { font-style: italic; color: var(--gold); }

.what-body {
    font-size: 18px; line-height: 2.1;
    color: #555; max-width: 680px;
    margin: 0 auto 80px;
}

.what-divider {
    display: flex; align-items: center; gap: 32px;
    margin: 0 auto 80px;
    max-width: 600px;
}
.what-divider-line { flex: 1; height: 1px; background: var(--mist); }
.what-divider-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; color: var(--gold); font-style: italic;
}

.what-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.what-item {
    padding: 52px 40px;
    background: var(--white);
    border-top: 1px solid var(--mist);
    transition: border-color 0.3s;
    text-align: left;
}
.what-item:hover { border-top-color: var(--gold); }

.what-item-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px; letter-spacing: 0.2em;
    color: var(--gold); margin-bottom: 20px;
}

.what-item-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px; font-weight: 300;
    color: var(--black); margin-bottom: 16px; line-height: 1.2;
}

.what-item-text {
    font-size: 14px; line-height: 1.9; color: #888;
}

/* ── TRUST ── */
.trust-section {
    background: var(--black);
    padding: 140px 72px;
    text-align: center;
}

.trust-inner { max-width: 800px; margin: 0 auto; }

.trust-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 300; color: var(--white);
    margin-top: 20px; margin-bottom: 80px; line-height: 1.2;
}
.trust-title em { font-style: italic; color: var(--gold); }

.testimonial {
    padding: 52px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: left;
}
.testimonial:last-child { border-bottom: 1px solid rgba(255,255,255,0.06); }

.t-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px; color: var(--gold);
    opacity: 0.3; line-height: 0.5;
    margin-bottom: 24px; display: block;
}

.t-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-style: italic;
    color: rgba(255,255,255,0.8);
    line-height: 1.75; margin-bottom: 24px;
}

.t-attr {
    font-size: 11px; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--gold);
}

/* ── CONTACT ── */
.contact-section {
    background: var(--cream);
    padding: 160px 72px;
}

.contact-inner {
    max-width: 900px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 100px; align-items: start;
}

.contact-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 5vw, 62px);
    font-weight: 300; line-height: 1.1;
    color: var(--black); margin-top: 16px; margin-bottom: 28px;
}
.contact-title em { font-style: italic; color: var(--gold); }

.contact-body {
    font-size: 16px; line-height: 1.9;
    color: #777; margin-bottom: 48px;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }

.c-item { display: flex; align-items: center; gap: 16px; }

.c-dot {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid var(--mist);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; flex-shrink: 0;
}

.c-label {
    font-size: 10px; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 2px;
}

.c-value { font-size: 15px; color: var(--black); }
.c-value a { color: var(--black); text-decoration: none; transition: color 0.2s; }
.c-value a:hover { color: var(--gold); }

.payment-note {
    font-size: 13px; color: #aaa; font-style: italic; line-height: 1.7;
    padding-top: 20px; border-top: 1px solid var(--mist);
}

.form-response {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px; font-style: italic;
    color: var(--gold); margin-bottom: 24px;
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.f-label {
    font-size: 10px; letter-spacing: 0.14em;
    text-transform: uppercase; color: #aaa;
    display: block; margin-bottom: 6px;
}

.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%; padding: 14px 16px;
    border: 1px solid var(--mist);
    background: var(--white);
    font-family: 'Jost', sans-serif;
    font-size: 14px; font-weight: 300;
    color: var(--black); outline: none;
    transition: border-color 0.2s;
    appearance: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { resize: vertical; min-height: 110px; }

.submit-btn {
    background: var(--black); color: var(--white);
    border: none; padding: 17px;
    font-family: 'Jost', sans-serif;
    font-size: 11px; letter-spacing: 0.2em;
    text-transform: uppercase; width: 100%;
    transition: background 0.3s;
}
.submit-btn:hover { background: var(--gold); color: var(--black); }

/* ── FOOTER ── */
footer {
    background: var(--black);
    padding: 40px 72px;
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px; font-weight: 300;
    color: var(--white);
    letter-spacing: 0.06em;
}
.footer-name em { font-style: italic; color: var(--gold); }

.footer-links { display: flex; gap: 24px; }
.footer-links a {
    font-size: 11px; letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-copy { font-size: 11px; color: rgba(255,255,255,0.2); }

.disclaimer {
    background: #050505; padding: 18px 72px; text-align: center;
}
.disclaimer p {
    font-size: 11px; color: rgba(255,255,255,0.6);
    line-height: 1.7; max-width: 800px; margin: 0 auto;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
}

.reveal {
    opacity: 0; transform: translateY(16px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE ── */
@media (max-width: 820px) {
    nav { padding: 20px 24px; }
    nav.scrolled { padding: 16px 24px; }
    .nav-right { display: none; }
    .hamburger { display: flex; }
    .hero-inner { padding: 120px 24px 80px; }
    .what-section { padding: 100px 24px; }
    .what-three { grid-template-columns: 1fr; }
    .trust-section { padding: 100px 24px; }
    .contact-section { padding: 100px 24px; }
    .contact-inner { grid-template-columns: 1fr; gap: 60px; }
    footer { padding: 32px 24px; flex-direction: column; gap: 20px; text-align: center; }
    .footer-links { justify-content: center; }
    .disclaimer { padding: 16px 24px; }
    .f-row { grid-template-columns: 1fr; }
}
