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

:root {
    --ivory:   #F5F2EC;
    --parchment: #EDE8DE;
    --ink:     #1A1814;
    --ash:     #6B6560;
    --gold:    #B8922A;
    --gold-lt: #D4AC52;
    --rule:    #C8BFB0;
    --white:   #FDFCFA;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Archivo', sans-serif;
    background: var(--ivory);
    color: var(--ink);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main { flex-grow: 1; padding-top: 72px; }

/* ── NAV ── */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 4rem;
    height: 72px;
    background: var(--ivory);
    border-bottom: 1px solid var(--rule);
}
.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
}
.nav-logo .isk { text-transform: lowercase; color: var(--ink); }
.nav-logo span { color: var(--gold); }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
    font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--ash); text-decoration: none; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }

.nav-cta {
    font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
    color: var(--white); background: var(--ink); padding: 0.65rem 1.5rem; text-decoration: none; transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold); }

/* ── BUTTONS ── */
.btn-primary {
    display: inline-block; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500;
    color: var(--white); background: var(--ink); padding: 1rem 2.5rem; text-decoration: none; border: none; cursor: pointer; transition: 0.25s;
}
.btn-primary:hover { background: var(--gold); transform: translateY(-1px); }
.btn-primary:disabled { background: var(--ash); cursor: not-allowed; }

.btn-ghost {
    display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
    font-weight: 500; color: var(--ink); text-decoration: none; transition: color 0.2s;
}
.btn-ghost::after { content: '→'; transition: transform 0.2s; }
.btn-ghost:hover { color: var(--gold); }
.btn-ghost:hover::after { transform: translateX(4px); }

/* ── HERO ── */
.hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.hero-left { display: flex; flex-direction: column; justify-content: center; padding: 6rem 4rem 6rem 6rem; }
.hero-eyebrow { display: flex; align-items: center; gap: 1rem; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 2.5rem; }
.hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
.hero-h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(3.5rem, 6vw, 5.5rem); font-weight: 300; line-height: 1.08; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 2rem; }
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 1rem; line-height: 1.75; color: var(--ash); max-width: 420px; margin-bottom: 3rem; font-weight: 300; }
.hero-actions { display: flex; align-items: center; gap: 2rem; }

.hero-right { background: var(--parchment); position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 4rem; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(var(--rule) 1px, transparent 1px), linear-gradient(90deg, var(--rule) 1px, transparent 1px); background-size: 60px 60px; opacity: 0.4; }
.hero-deco-num { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: 'Cormorant Garamond', serif; font-size: 28vw; font-weight: 300; color: var(--rule); opacity: 0.25; line-height: 1; user-select: none; }
.hero-badge { position: relative; z-index: 2; background: var(--white); border: 1px solid var(--rule); padding: 2.5rem; max-width: 320px; }
.hero-badge-label { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 1rem; }
.hero-badge-stat { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 300; color: var(--ink); line-height: 1; margin-bottom: 0.5rem; }
.hero-badge-desc { font-size: 0.8rem; color: var(--ash); line-height: 1.6; }
.hero-right::after { content: ''; position: absolute; top: 4rem; bottom: 4rem; left: 0; width: 3px; background: linear-gradient(to bottom, transparent, var(--gold), transparent); }

/* ── SUBPAGE HEADERS ── */
.sub-header { padding: 6rem 6rem 3rem; text-align: center; border-bottom: 1px solid var(--rule); }
.sub-header h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 4vw, 4rem); font-weight: 300; color: var(--ink); margin-bottom: 1rem; }
.sub-header p { font-size: 1rem; color: var(--ash); font-weight: 300; max-width: 600px; margin: 0 auto; }

/* ── SECTIONS ── */
.section-authority { padding: 8rem 6rem; display: grid; grid-template-columns: 1fr 2fr; gap: 6rem; align-items: start; }
.section-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 500; padding-top: 0.35rem; }
.authority-h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 4vw, 3.8rem); font-weight: 300; line-height: 1.15; color: var(--ink); margin-bottom: 2rem; }
.authority-h2 em { font-style: italic; color: var(--gold); }
.authority-body { font-size: 1rem; line-height: 1.8; color: var(--ash); font-weight: 300; margin-bottom: 3rem; max-width: 560px; }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 2rem; background: var(--rule); }
.pillar { background: var(--ivory); padding: 2.5rem 2rem; transition: background 0.2s; }
.pillar:hover { background: var(--parchment); }
.pillar-num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: var(--rule); line-height: 1; margin-bottom: 1rem; }
.pillar-title { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.75rem; }
.pillar-text { font-size: 0.82rem; color: var(--ash); line-height: 1.65; font-weight: 300; }

.section-services { background: var(--ink); padding: 8rem 6rem; flex-grow: 1; }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(200,191,176,0.2); }
.services-h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 4vw, 3.8rem); font-weight: 300; color: var(--ivory); line-height: 1.1; }
.services-h2 em { font-style: italic; color: var(--gold); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(200,191,176,0.15); }
.service-card { background: var(--ink); padding: 3rem 2.5rem; border-top: 2px solid transparent; transition: border-color 0.3s, background 0.3s; }
.service-card:hover { border-color: var(--gold); background: #1f1d19; }
.service-icon { width: 40px; height: 40px; margin-bottom: 2rem; opacity: 0.6; }
.service-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; color: var(--ivory); margin-bottom: 1rem; line-height: 1.2; }
.service-text { font-size: 0.82rem; line-height: 1.75; color: var(--ash); font-weight: 300; }

/* ── TEAM & FAQ ── */
.team-grid { padding: 6rem; display: grid; gap: 6rem; }
.profile-row { display: grid; grid-template-columns: 350px 1fr; gap: 4rem; align-items: start; padding-bottom: 6rem; border-bottom: 1px solid var(--rule); }
.profile-row:last-child { border-bottom: none; }
.profile-img { width: 100%; height: 450px; object-fit: cover; border: 1px solid var(--rule); padding: 1rem; background: var(--parchment); }
.profile-title { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: var(--ink); margin-bottom: 0.5rem; }
.profile-role { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 2rem; }
.profile-bio { font-size: 0.95rem; line-height: 1.8; color: var(--ash); font-weight: 300; margin-bottom: 2rem; max-width: 700px; }

.faq-grid { padding: 6rem; max-width: 900px; margin: 0 auto; display: grid; gap: 2rem; }
.faq-item { background: var(--white); padding: 3rem; border: 1px solid var(--rule); border-left: 3px solid var(--gold); }
.faq-q { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; color: var(--ink); margin-bottom: 1rem; }
.faq-a { font-size: 0.9rem; line-height: 1.8; color: var(--ash); font-weight: 300; }

/* ── FORMS ── */
.form-section { padding: 6rem; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; background: var(--parchment); }
.form-box { background: var(--ivory); padding: 4rem; border: 1px solid var(--rule); }
.form-group { margin-bottom: 2rem; }
.form-label { display: block; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink); font-weight: 600; margin-bottom: 0.8rem; }
.form-input { width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--rule); padding: 0.8rem 0; font-family: 'Archivo', sans-serif; font-size: 1rem; color: var(--ink); transition: border-color 0.3s; }
.form-input:focus { outline: none; border-bottom-color: var(--gold); }
#thanks-message { display: none; background: var(--white); border: 1px solid var(--gold); padding: 2rem; margin-bottom: 2rem; text-align: center; }
#thanks-message h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--ink); margin-bottom: 0.5rem; }

/* ── MARQUEE & FOOTER ── */
.marquee-strip { background: var(--ink); padding: 1rem 0; overflow: hidden; white-space: nowrap; }
.marquee-inner { display: inline-block; animation: marquee 22s linear infinite; }
.marquee-inner span { display: inline-block; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rule); padding: 0 3rem; }
.marquee-inner span.gold { color: var(--gold); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

footer { background: var(--ink); padding: 3rem 6rem; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(200,191,176,0.1); }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ivory); text-decoration: none; }
.footer-logo .isk { text-transform: lowercase; }
.footer-logo span { color: var(--gold); }
.footer-copy { font-size: 0.72rem; color: var(--ash); letter-spacing: 0.06em; }

.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
    nav { padding: 0 1.5rem; }
    .hero, .section-authority, .form-section { grid-template-columns: 1fr; }
    .hero-right { min-height: 50vh; }
    .hero-left, .section-authority, .form-section, .sub-header, .team-grid, .faq-grid { padding: 4rem 2rem; }
    .pillars, .services-grid { grid-template-columns: 1fr; }
    .profile-row { grid-template-columns: 1fr; }
    .services-header { flex-direction: column; align-items: flex-start; gap: 2rem; }
    footer { flex-direction: column; gap: 1.5rem; text-align: center; padding: 3rem 2rem; }
}
