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

:root {
    --bg-primary: #1a1a1a;
    --bg-secondary: #222222;
    --text-primary: #f5f5f0;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --accent: #c9a962;
    --accent-dim: rgba(201, 169, 98, 0.15);
    --divider: #2a2a2a;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-weight: 300;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Nav */
.nav {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 40px;
    max-width: 1080px;
    margin: 0 auto;
}

.nav-brand {
    font-family: 'Cormorant Garamond', Georgia, serif;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-primary);
    text-decoration: none;
}

.nav-links { display: flex; gap: 34px; }

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

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

.container { max-width: 760px; margin: 0 auto; padding: 0 40px; position: relative; z-index: 1; }

/* Hero */
.hero {
    min-height: 84vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 40px 80px;
    position: relative;
    z-index: 1;
}

.hero.hero-sm { min-height: 62vh; }

.logo-icon { width: 140px; height: auto; margin-bottom: 26px; opacity: 0.95; }

.company-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3.25rem;
    font-weight: 300;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.company-sub {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 52px;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 300;
    font-style: italic;
    color: var(--text-primary);
    max-width: 560px;
    line-height: 1.5;
}

.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-indicator::after {
    content: '';
    width: 1px; height: 36px;
    background: linear-gradient(to bottom, var(--text-muted), transparent);
}

/* Sections */
section { padding: 100px 40px; border-top: 1px solid var(--divider); position: relative; z-index: 1; }

.section-label {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 38px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.section-label::after { content: ''; flex: 1; height: 1px; background: var(--divider); }

.section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.25rem;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 30px;
    max-width: 620px;
}

.section-text { font-size: 1.05rem; color: var(--text-secondary); max-width: 600px; margin-bottom: 22px; }
.section-text:last-child { margin-bottom: 0; }
.section-text strong { color: var(--text-primary); font-weight: 400; }

/* Text link (CTA) */
.text-link {
    display: inline-block;
    margin-top: 14px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3rem;
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}
.text-link:hover { border-bottom-color: var(--accent); }

/* Focus / live-business grid */
.focus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 44px 60px;
    margin-top: 56px;
}

.focus-item { padding-left: 20px; border-left: 1px solid var(--divider); }

.focus-item h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.focus-item p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.65; }

/* Principles */
.principles-list { list-style: none; margin-top: 40px; }

.principles-list li {
    padding: 24px 0;
    border-bottom: 1px solid var(--divider);
    display: flex;
    align-items: baseline;
    gap: 24px;
}

.principles-list li:first-child { border-top: 1px solid var(--divider); }

.principle-number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    color: var(--accent);
    opacity: 0.7;
    min-width: 32px;
}

.principle-text { font-size: 1.05rem; color: var(--text-secondary); }
.principle-text b { color: var(--text-primary); font-weight: 400; }

/* Role / careers */
.role-meta {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 34px;
}

.req-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-primary);
    margin: 46px 0 18px;
}

.req-list { list-style: none; max-width: 620px; }

.req-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.req-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 13px;
    width: 6px; height: 6px;
    background: var(--accent);
    opacity: 0.6;
    border-radius: 50%;
}

.closing-line { font-style: italic; color: var(--text-primary); margin-top: 30px; font-size: 1.1rem; font-family: 'Cormorant Garamond', Georgia, serif; }

/* Apply */
.apply { text-align: center; padding: 120px 40px; background: var(--bg-secondary); }
.apply-intro { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.5rem; font-weight: 300; color: var(--text-secondary); margin-bottom: 26px; }
.apply-question { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.65rem; font-style: italic; font-weight: 300; color: var(--text-primary); max-width: 600px; margin: 0 auto 44px; line-height: 1.5; }
.apply-email { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.85rem; color: var(--accent); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.3s ease; }
.apply-email:hover { border-bottom-color: var(--accent); }
.apply-note { font-size: 0.85rem; color: var(--text-muted); margin: 26px auto 0; max-width: 520px; }

/* Contact */
.contact { text-align: center; padding: 140px 40px; background: var(--bg-secondary); }
.contact-intro { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.5rem; font-weight: 300; color: var(--text-secondary); margin-bottom: 30px; }
.contact-email { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 2rem; color: var(--accent); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.3s ease; }
.contact-email:hover { border-bottom-color: var(--accent); }

/* Footer */
footer { padding: 46px 40px; text-align: center; border-top: 1px solid var(--divider); position: relative; z-index: 1; }
.footer-location { font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }
.footer-copyright { font-size: 0.8rem; color: var(--text-muted); }

@media (max-width: 768px) {
    .nav { padding: 20px 22px; flex-direction: column; gap: 16px; }
    .nav-links { gap: 24px; }
    .company-name { font-size: 2.1rem; letter-spacing: 0.25em; }
    .hero-tagline { font-size: 1.5rem; }
    .section-title { font-size: 1.75rem; }
    .apply-question { font-size: 1.35rem; }
    .focus-grid { grid-template-columns: 1fr; gap: 36px; }
    section { padding: 66px 22px; }
    .container { padding: 0 22px; }
}
