@charset "UTF-8";
/* 
   THOR TRUST — thortr.com
   Private Administrative Trust · New York
*/

:root {
    --bg: #FFFFFF;
    --bg-alt: #F5F6F8;
    --nav-bg: #1A1F2E;
    --nav-text: #C8CDD8;
    --text: #1A1F2E;
    --text-mid: #3D4455;
    --text-dim: #6B7280;
    --text-muted: #9CA3AF;
    --accent: #2C3E6B;
    --rule: #CBD0DA;
    --card-border: #E2E5EC;
    --card-bg: #FAFBFC;
    --serif: Georgia, "Times New Roman", Times, serif;
    --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
            Helvetica, Arial, sans-serif;
}

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

html {
    font-size: 100%;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--serif);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Navigation */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 36px;
    height: 56px;
    background: var(--nav-bg);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

nav.scrolled {
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.nav-brand {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: normal;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #FFFFFF;
    text-decoration: none;
}

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

.nav-links a {
    font-family: var(--sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--nav-text);
    text-decoration: none;
}

.nav-links a:hover {
    color: #FFFFFF;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.25rem;
    cursor: pointer;
}

/* Hero */

.hero {
    padding: 160px 0 100px;
    text-align: center;
    background: var(--bg);
}

.hero-pre {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.hero h1 {
    font-family: var(--serif);
    font-weight: normal;
    font-size: 2.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 28px;
    padding-left: 0.3em;
}

.hero .rule {
    width: 56px;
    height: 1px;
    background: var(--rule);
    margin: 0 auto 24px;
}

.hero-designation {
    font-family: var(--serif);
    font-size: 1.125rem;
    font-style: italic;
    letter-spacing: 0.04em;
    color: var(--text-mid);
    margin-bottom: 4px;
}

.hero-jurisdiction {
    font-family: var(--sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.hero-tagline {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-dim);
    max-width: 720px;
    margin: 0 auto;
}

/* Sections */

.section {
    padding: 80px 0;
}

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

.section h2 {
    font-family: var(--serif);
    font-weight: normal;
    font-size: 1.625rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 12px;
}

.section h2::after {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin-top: 16px;
}

.section-intro {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dim);
    margin-bottom: 40px;
    max-width: 640px;
}

.section-body p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-mid);
    margin-bottom: 20px;
}

.section-body p:last-child {
    margin-bottom: 0;
}

/* Two-column layout for About */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 32px;
}

/* Services Grid */

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 28px 24px;
}

.service-card h3 {
    font-family: var(--sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--text-dim);
}

/* Contact */

.contact-body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    margin-top: 32px;
}

.contact-block h3 {
    font-family: var(--sans);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.contact-block p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-mid);
}

/* Footer */

footer {
    background: var(--nav-bg);
    padding: 40px 0;
}

.footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-copy {
    font-family: var(--sans);
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
}

.footer-legal p {
    font-family: var(--sans);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.8;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-family: var(--sans);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
}

.footer-links a:hover {
    color: rgba(255,255,255,0.7);
}

/* Mobile */

@media (max-width: 768px) {
    .two-col {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .contact-body {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-inner {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 600px) {
    nav {
        padding: 0 20px;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--nav-bg);
        padding: 16px 20px 20px;
        gap: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .nav-links.open {
        display: flex;
    }
    .nav-toggle {
        display: block;
    }
    .container {
        padding: 0 20px;
    }
    .hero {
        padding: 120px 0 64px;
    }
    .hero h1 {
        font-size: 1.75rem;
        letter-spacing: 0.2em;
        padding-left: 0.2em;
    }
    .hero-tagline {
        font-size: 1rem;
    }
    .section {
        padding: 56px 0;
    }
    .section h2 {
        font-size: 1.375rem;
    }
}

/* Selection */

::selection {
    background: rgba(44, 62, 107, 0.15);
    color: var(--text);
}
