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

:root {
    --navy: #0a1a33;
    --navy-light: #1e3a6e;
    --gold: #c9a227;
    --gold-light: #f0d060;
    --white: #ffffff;
    --off-white: #f7f6f2;
    --gray: #e8e6e0;
    --text: #1a1a1a;
    --text-muted: #555;
}

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

body {
    font-family: 'Jost', sans-serif;
    color: var(--text);
    background: var(--white);
    font-weight: 300;
    line-height: 1.7;
}

/* ── HEADER ── */
header {
    background: var(--navy);
    padding: 0 48px;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(201,162,39,0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo img {
    height: 48px;
    width: auto;
    display: block;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 36px;
}

nav ul li a {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
    padding-bottom: 4px;
    border-bottom: 1px solid transparent;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--gold-light);
    border-bottom-color: var(--gold);
}

/* ── HERO (homepage) ── */
.hero {
    background: var(--navy);
    color: var(--white);
    padding: 100px 48px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201,162,39,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    max-width: 820px;
}

.hero-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 58px;
    font-weight: 600;
    line-height: 1.12;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.hero p {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    margin-bottom: 44px;
    line-height: 1.7;
}

.cta {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 14px 36px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

/* ── THREE COLUMNS ── */
.three-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--gray);
}

.three-columns div {
    padding: 56px 44px;
    border-right: 1px solid var(--gray);
}

.three-columns div:last-child {
    border-right: none;
}

.three-columns h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 14px;
}

.three-columns p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── PAGE HERO ── */
.page-hero {
    background: var(--navy);
    color: var(--white);
    padding: 72px 48px 64px;
    border-bottom: 3px solid var(--gold);
}

.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 16px;
    max-width: 760px;
}

.page-hero p {
    font-size: 17px;
    color: rgba(255,255,255,0.72);
    max-width: 560px;
    font-weight: 300;
}

/* ── CONTENT SECTION ── */
.content-section {
    max-width: 820px;
    margin: 0 auto;
    padding: 72px 48px;
}

.content-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--navy);
    margin-top: 52px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray);
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

.content-section ul {
    margin: 12px 0 20px 0;
    padding-left: 20px;
}

.content-section ul li {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 8px;
    line-height: 1.7;
}

.content-section strong {
    color: var(--text);
    font-weight: 500;
}

/* ── FOOTER ── */
footer {
    background: var(--navy);
    color: rgba(255,255,255,0.5);
    text-align: center;
    padding: 28px 48px;
    font-size: 13px;
    letter-spacing: 0.04em;
    border-top: 1px solid rgba(201,162,39,0.2);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    header { padding: 0 24px; }
    nav ul { gap: 18px; }
    nav ul li a { font-size: 11px; }
    .logo img { height: 36px; }
    .hero { padding: 64px 24px 56px; }
    .hero h1 { font-size: 36px; }
    .page-hero { padding: 48px 24px; }
    .page-hero h1 { font-size: 32px; }
    .three-columns { grid-template-columns: 1fr; }
    .three-columns div { border-right: none; border-bottom: 1px solid var(--gray); padding: 36px 24px; }
    .content-section { padding: 48px 24px; }
}
