/* ── Reset & Base ───────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0a1628;
    --navy-light: #121f36;
    --gold: #c9a84c;
    --gold-light: #e2c97e;
    --white: #f5f5f5;
    --grey: #d0d0d0;
    --text: #e8e8e8;
    --text-muted: #a0a8b8;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ── Navbar ─────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 0;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-block;
    line-height: 0;
}

.logo img {
    height: 36px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-light);
}

/* ── Hero ───────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 8rem 2rem 4rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gold-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
}

/* ── Sections ───────────────────────────────────── */
.section {
    padding: 5rem 0;
}

.alt-bg {
    background: var(--navy-light);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto;
}

/* ── Content layouts ────────────────────────────── */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.content-block p,
.content-centre p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.content-centre p:last-child {
    margin-bottom: 0;
}

.tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gold-light);
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 1rem;
}

.content-centre {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

/* ── Content split (text + image) ───────────────── */
.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-split.reverse {
    direction: rtl;
}

.content-split.reverse > * {
    direction: ltr;
}

.content-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.content-text p:last-child {
    margin-bottom: 0;
}

.content-image img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* ── Values ─────────────────────────────────────── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    background: var(--navy-light);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 6px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.value-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.value-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ── Footer ─────────────────────────────────────── */
.footer {
    padding: 2rem 0;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    text-align: center;
}

.footer p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .content-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-split.reverse {
        direction: ltr;
    }

    .hero-content {
        padding: 7rem 1.5rem 3rem;
    }

    .section {
        padding: 3.5rem 0;
    }
}
