:root {
    --ink: #0b1420;
    --midnight: #101a24;
    --navy: #13283a;
    --espresso: #241c18;
    --walnut: #33251f;
    --teal: #4f7f7a;
    --copper: #b9784c;
    --amber: #d09a64;
    --cream: #f1eadf;
    --muted: #c4b9aa;
    --line: rgba(213, 180, 143, 0.22);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background:
        radial-gradient(circle at 15% 10%, rgba(48, 102, 117, .10), transparent 28rem),
        linear-gradient(180deg, #0b1420 0%, #111820 50%, #171814 100%);
    color: var(--cream);
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 300;
    line-height: 1.7;
}

a { color: inherit; }
.shell { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid rgba(255,255,255,.10);
    background: linear-gradient(180deg, rgba(7,12,18,.62), rgba(7,12,18,0));
}
.header-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(241,234,223,.55);
    border-radius: 50%;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.1rem;
    letter-spacing: .08em;
}
.brand-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.32rem;
    letter-spacing: .08em;
}
.header-link {
    text-decoration: none;
    color: rgba(241,234,223,.82);
    font-size: .86rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero {
    position: relative;
    min-height: 780px;
    height: 92vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--ink);
}
.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5,12,19,.88) 0%, rgba(5,12,19,.48) 38%, rgba(5,12,19,.08) 68%),
        linear-gradient(0deg, rgba(7,12,16,.82) 0%, rgba(7,12,16,0) 55%);
}
.hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 92px;
}
.hero-card {
    width: min(620px, 100%);
    padding: 38px 42px 40px;
    border: 1px solid rgba(236,220,197,.18);
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(23,24,23,.78), rgba(31,24,20,.54));
    box-shadow: var(--shadow);
    backdrop-filter: blur(11px);
}
.eyebrow {
    margin: 0 0 10px;
    color: #d8a979;
    font-size: .73rem;
    font-weight: 600;
    letter-spacing: .19em;
    text-transform: uppercase;
}
h1, h2 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 500;
    line-height: 1.02;
    margin: 0;
}
h1 { max-width: 550px; font-size: clamp(3.4rem, 7vw, 6.4rem); }
h2 { font-size: clamp(2.5rem, 4vw, 4.2rem); }
.hero-copy {
    margin: 20px 0 30px;
    color: rgba(241,234,223,.86);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.55rem;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border: 1px solid rgba(239,218,189,.38);
    border-radius: 999px;
    background: linear-gradient(180deg, #b9774a, #995d39);
    box-shadow: 0 10px 28px rgba(168, 99, 56, .22);
    color: #fff8ee;
    text-decoration: none;
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .10em;
    text-transform: uppercase;
    transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(168, 99, 56, .32); }

.intro { padding: 125px 0 110px; }
.intro-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: clamp(60px, 9vw, 130px);
    align-items: start;
}
.section-heading h2 { color: #f4ece1; max-width: 520px; }
.intro-copy {
    padding: 28px 0 0;
    color: #c7beb2;
    font-size: 1.03rem;
}
.intro-copy p { margin: 0 0 24px; }
.intro-copy .coming-soon {
    color: #e1b485;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.45rem;
}

.conversation { padding: 0 0 120px; }
.conversation-card {
    position: relative;
    overflow: hidden;
    padding: 78px clamp(28px, 7vw, 84px);
    border: 1px solid var(--line);
    border-radius: 34px;
    background:
        linear-gradient(130deg, rgba(37,28,24,.96), rgba(16,31,38,.92));
    box-shadow: var(--shadow);
}
.conversation-card > *:not(.glow) { position: relative; z-index: 2; }
.conversation-card h2 { max-width: 680px; }
.conversation-card p:last-child { color: #bfb6a9; margin: 18px 0 0; }
.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: .23;
}
.glow-one { width: 280px; height: 280px; background: #b77343; right: 9%; top: -90px; }
.glow-two { width: 330px; height: 330px; background: #245f70; right: -100px; bottom: -160px; }

.site-footer {
    border-top: 1px solid rgba(236,220,197,.12);
    background: #0b1116;
    color: #817a72;
}
.footer-inner {
    min-height: 94px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: .78rem;
    letter-spacing: .05em;
}

@media (max-width: 760px) {
    .header-link { display: none; }
    .hero { min-height: 720px; }
    .hero-shade {
        background:
            linear-gradient(0deg, rgba(5,12,19,.86) 0%, rgba(5,12,19,.34) 66%),
            linear-gradient(90deg, rgba(5,12,19,.55), rgba(5,12,19,.10));
    }
    .hero-content { padding-bottom: 42px; }
    .hero-card { padding: 30px 26px 32px; border-radius: 24px; }
    .intro { padding: 86px 0 78px; }
    .intro-grid { grid-template-columns: 1fr; gap: 34px; }
    .intro-copy { padding-top: 0; }
    .conversation { padding-bottom: 80px; }
    .footer-inner { min-height: 110px; flex-direction: column; justify-content: center; text-align: center; }
}
