:root {
    --navy: #0e1e3a;
    --navy-dark: #081124;
    --navy-light: #1a2f54;
    --gold: #c9a66b;
    --gold-light: #e0c48a;
    --gold-dark: #a8874c;
    --beige: #f5efe3;
    --beige-dark: #e8dfce;
    --cream: #faf7f0;
    --text: #2a2a2a;
    --text-muted: #6a6a6a;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
}
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.02em;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* Navigation */
nav.site-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 1.25rem 2rem;
    background: rgba(14, 30, 58, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 166, 107, 0.2);
    transition: all 0.3s ease;
}
nav.site-nav .nav-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 600; color: var(--gold); letter-spacing: 0.15em; text-decoration: none; }
.logo span { color: var(--beige); font-weight: 400; font-size: 0.85rem; letter-spacing: 0.25em; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { color: var(--beige); text-decoration: none; font-size: 0.85rem; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; transition: color 0.3s; }
.nav-links a:hover { color: var(--gold); }
.nav-toggle { display: none; background: none; border: none; color: var(--gold); cursor: pointer; font-size: 1.5rem; }

/* Hero */
.hero {
    min-height: 100vh;
    background:
        linear-gradient(135deg, rgba(8, 17, 36, 0.85) 0%, rgba(14, 30, 58, 0.75) 100%),
        radial-gradient(ellipse at top right, rgba(201, 166, 107, 0.15) 0%, transparent 50%),
        var(--navy-dark);
    position: relative; display: flex; align-items: center; justify-content: center;
    text-align: center; color: var(--beige); overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(201, 166, 107, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(201, 166, 107, 0.06) 0%, transparent 40%);
    pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 900px; padding: 8rem 2rem 4rem; }
.hero-eyebrow { display: inline-block; font-size: 0.8rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; font-weight: 500; }
.hero-eyebrow::before, .hero-eyebrow::after {
    content: ''; display: inline-block; width: 2rem; height: 1px; background: var(--gold);
    vertical-align: middle; margin: 0 1rem;
}
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 400; margin-bottom: 1.5rem; color: var(--beige); }
.hero h1 .highlight { color: var(--gold); font-style: italic; }
.hero-tagline { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(1.1rem, 2vw, 1.4rem); color: var(--gold-light); margin-bottom: 2.5rem; letter-spacing: 0.05em; }
.hero-sub { font-size: 1.05rem; max-width: 640px; margin: 0 auto 3rem; color: rgba(245, 239, 227, 0.85); line-height: 1.8; }

.btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-block; padding: 1rem 2.5rem; font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; font-weight: 500; border: 1px solid var(--gold); transition: all 0.3s ease; cursor: pointer; }
.btn-primary { background: var(--gold); color: var(--navy-dark); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--gold); }
.btn-secondary:hover { background: rgba(201, 166, 107, 0.1); transform: translateY(-2px); }

/* Sections */
section { padding: 7rem 0; }
.section-eyebrow { display: block; font-size: 0.8rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 1rem; font-weight: 500; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--navy); margin-bottom: 1.5rem; }
.section-title.light { color: var(--beige); }
.section-divider { width: 60px; height: 2px; background: var(--gold); margin: 0 0 2rem; }
.section-divider.center { margin: 0 auto 2rem; }

/* USP */
.usp { background: var(--beige); position: relative; }
.usp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.usp-text p { margin-bottom: 1.25rem; color: var(--text); font-size: 1.05rem; }
.usp-visual { display: flex; flex-direction: column; gap: 1.5rem; }
.usp-card { background: var(--cream); padding: 2rem; border-left: 3px solid var(--gold); box-shadow: 0 4px 20px rgba(14, 30, 58, 0.08); }
.usp-card h3 { color: var(--navy); font-size: 1.5rem; margin-bottom: 0.5rem; }
.usp-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin: 0; }

/* Values */
.values { background: var(--navy); color: var(--beige); text-align: center; }
.values-header { max-width: 700px; margin: 0 auto 4rem; }
.values-header p { color: rgba(245, 239, 227, 0.8); font-size: 1.1rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.value-item { position: relative; padding: 2rem 1.5rem; }
.value-number { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-style: italic; color: var(--gold); line-height: 1; margin-bottom: 1rem; display: block; }
.value-item h3 { font-size: 1.75rem; margin-bottom: 1rem; color: var(--gold-light); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.value-item p { color: rgba(245, 239, 227, 0.75); font-size: 0.95rem; line-height: 1.7; }

/* Experience */
.experience { background: var(--cream); }
.experience-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: center; }
.experience-text p { margin-bottom: 1.25rem; font-size: 1.05rem; }
.portrait-frame { position: relative; padding: 14px; }
.portrait-frame::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; border: 1px solid var(--gold); pointer-events: none; }
.portrait-frame::after { content: ''; position: absolute; top: 28px; left: 28px; right: -14px; bottom: -14px; background: var(--navy); z-index: -1; }
.portrait-frame img { display: block; width: 100%; height: auto; filter: saturate(1.05) contrast(1.02); }
.portrait-caption { margin-top: 1.5rem; text-align: center; }
.portrait-caption .name { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--navy); font-weight: 500; display: block; }
.portrait-caption .role { font-size: 0.8rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-dark); margin-top: 0.35rem; display: block; }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--beige-dark); }
.stat-item { text-align: center; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--gold-dark); line-height: 1; font-weight: 500; display: block; }
.stat-label { display: block; font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.75rem; }

/* Speaking */
.speaking { background: var(--beige); text-align: center; }
.speaking-content { max-width: 800px; margin: 0 auto; }
.speaking-content p { font-size: 1.1rem; margin-bottom: 1.25rem; }
.speaking-topics { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin: 2.5rem 0; }
.topic { background: var(--cream); border: 1px solid var(--gold); padding: 0.75rem 1.5rem; font-family: 'Playfair Display', serif; font-size: 1.1rem; font-style: italic; color: var(--navy); }

/* CTA */
.cta {
    background:
        linear-gradient(135deg, rgba(14, 30, 58, 0.92) 0%, rgba(8, 17, 36, 0.92) 100%),
        radial-gradient(circle at center, var(--navy-light) 0%, var(--navy-dark) 100%);
    color: var(--beige); text-align: center; position: relative; overflow: hidden;
}
.cta::before {
    content: ''; position: absolute; top: 50%; left: 50%; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201, 166, 107, 0.1) 0%, transparent 60%);
    transform: translate(-50%, -50%); pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; color: var(--beige); }
.cta-highlight { display: inline-block; font-family: 'Playfair Display', serif; font-style: italic; color: var(--gold); font-size: 1.5rem; margin: 1.5rem 0 2.5rem; padding: 0.5rem 2rem; border-top: 1px solid var(--gold); border-bottom: 1px solid var(--gold); }

/* Contact */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-info h3 { color: var(--navy); font-size: 1.4rem; margin-bottom: 0.25rem; }
.contact-info .role { color: var(--gold-dark); font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 2rem; display: block; }
.contact-list { list-style: none; margin-top: 1rem; }
.contact-list li { padding: 0.9rem 0; border-bottom: 1px solid var(--beige-dark); display: flex; align-items: flex-start; gap: 1rem; }
.contact-list .icon { color: var(--gold-dark); width: 20px; height: 20px; flex-shrink: 0; margin-top: 0.25rem; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.contact-list a { color: var(--text); text-decoration: none; transition: color 0.2s; }
.contact-list a:hover { color: var(--gold-dark); }
.contact-card { background: var(--beige); padding: 3rem; border-top: 3px solid var(--gold); }
.contact-card h3 { font-family: 'Playfair Display', serif; color: var(--navy); font-size: 1.75rem; margin-bottom: 1.5rem; }
.contact-card p { margin-bottom: 1.5rem; color: var(--text); }

/* Footer */
footer.site-footer { background: var(--navy-dark); color: rgba(245, 239, 227, 0.6); padding: 3rem 0 2rem; text-align: center; }
footer.site-footer .footer-tagline { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.3rem; color: var(--gold); margin-bottom: 1.5rem; }
footer.site-footer p { font-size: 0.85rem; letter-spacing: 0.05em; }
footer.site-footer .company-info { margin-bottom: 1rem; color: rgba(245, 239, 227, 0.5); font-size: 0.8rem; }

/* Responsive */
@media (max-width: 900px) {
    nav.site-nav { padding: 0.9rem 1.25rem; }
    .logo { font-size: 1.2rem; letter-spacing: 0.1em; }
    .logo span { font-size: 0.7rem; letter-spacing: 0.18em; }
    .nav-toggle { display: block; }
    .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy-dark); flex-direction: column; padding: 1.5rem 2rem; gap: 1.25rem; border-bottom: 1px solid rgba(201, 166, 107, 0.2); }
    .nav-links.open { display: flex; }
    .usp-grid, .experience-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .values-grid { grid-template-columns: 1fr; gap: 2rem; }
    .stats-row { grid-template-columns: 1fr; gap: 2rem; margin-top: 3rem; padding-top: 2rem; }
    .portrait-frame { padding: 10px; }
    .portrait-frame::after { top: 20px; left: 20px; right: -10px; bottom: -10px; }
    section { padding: 5rem 0; }
    .hero-content { padding: 7rem 1.5rem 3rem; }
    .hero-eyebrow::before, .hero-eyebrow::after { width: 1rem; margin: 0 0.5rem; }
}

@media (max-width: 500px) {
    nav.site-nav { padding: 0.8rem 1rem; }
    .logo { font-size: 1.1rem; }
    .logo span { display: none; }
    .btn { padding: 0.9rem 1.75rem; font-size: 0.75rem; }
    .btn-group { flex-direction: column; align-items: stretch; }
    .contact-card { padding: 2rem; }
    .container { padding: 0 1.25rem; }
}
