/* =====================================================
   Black & White Capital — Stylesheet
   ===================================================== */

:root {
    --gold: #b78a3c;
    --gold-light: #d4a558;
    --gold-soft: #c69846;
    --black: #0a0a0a;
    --near-black: #111111;
    --dark: #1a1a1a;
    --gray-900: #2a2a2a;
    --gray-700: #555;
    --gray-500: #888;
    --gray-300: #c5c5c5;
    --gray-100: #f4f1ec;
    --cream: #faf8f3;
    --white: #ffffff;
    --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --sans: 'Inter', system-ui, -apple-system, Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--white);
    color: var(--dark);
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* =====================================================
   SHARED ELEMENTS
   ===================================================== */
.eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.eyebrow .rule {
    height: 1px;
    width: 60px;
    background: var(--gold);
    display: inline-block;
}

.section-title {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 42px;
    line-height: 1.15;
    color: var(--dark);
    margin: 0 0 24px;
    letter-spacing: -0.5px;
}
.section-title.light { color: var(--white); }

.gold { color: var(--gold); }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 32px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
}
.btn-primary {
    background: var(--black);
    color: var(--gold);
    border: 1px solid var(--gold);
}
.btn-primary:hover {
    background: var(--gold);
    color: var(--black);
}
.btn .arrow {
    font-size: 16px;
    transition: transform 0.25s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 22px 0;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
    border-bottom: 1px solid transparent;
}
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
    padding: 14px 0;
    border-bottom-color: rgba(0, 0, 0, 0.05);
}
.site-header.scrolled .brand-monogram { font-size: 42px; }
.site-header.scrolled .brand-name { font-size: 16px; }
.site-header.scrolled .brand-sub { font-size: 10px; letter-spacing: 5px; }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.brand-monogram {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 56px;
    line-height: 1;
    letter-spacing: -2px;
    color: var(--dark);
    display: flex;
    align-items: baseline;
}
.brand-monogram.small { font-size: 38px; color: var(--white); }
.brand-monogram .amp {
    font-size: 0.5em;
    color: var(--gold);
    margin: 0 2px;
    transform: translateY(-6px);
    display: inline-block;
}
.brand-text { margin-top: 6px; }
.brand-name {
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--dark);
    line-height: 1;
}
.brand-sub {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 6px;
    color: var(--gray-700);
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid #ccc;
    display: inline-block;
    padding-right: 0;
    width: auto;
}

.nav {
    display: flex;
    gap: 42px;
}
.nav a {
    font-size: 12px;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: var(--dark);
    padding: 6px 0;
    position: relative;
    transition: color 0.2s;
}
.nav a:hover { color: var(--gold); }
.nav a.active { color: var(--gold); }
.nav a.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
    position: relative;
    min-height: 620px;
    padding: 130px 0 60px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f4f1ec 100%);
}
.hero-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 340px;
    background-image: url('https://images.unsplash.com/photo-1522083165195-3424ed129620?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center bottom;
    filter: grayscale(100%) contrast(0.85) brightness(1.15) blur(1px);
    opacity: 0.35;
    z-index: 1;
}
.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(255,255,255,0.85) 0%,
            rgba(255,255,255,0.55) 35%,
            rgba(244,241,236,0.35) 70%,
            rgba(244,241,236,0.55) 100%);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}
.hero-grid {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-copy {
    padding-top: 30px;
}
.hero-title {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 64px;
    line-height: 1.05;
    color: var(--gold);
    letter-spacing: -1px;
    margin: 0 0 28px;
}
.hero-lead {
    color: var(--dark);
    font-size: 15px;
    max-width: 460px;
    margin: 0 0 36px;
    line-height: 1.75;
}

.hero-portrait {
    position: relative;
    height: 560px;
    align-self: stretch;
}
.portrait-img {
    position: absolute;
    inset: 0;
    background-image: url('images/christine.png');
    background-size: cover;
    background-position: center 15%;
    filter: contrast(1.05) saturate(1.05);
}
.portrait-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 25%, rgba(0,0,0,0) 75%, rgba(0,0,0,0.25) 100%);
}

.license-badge {
    position: absolute;
    bottom: 30px;
    right: 0;
    background: var(--black);
    color: var(--white);
    padding: 18px 26px 18px 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    border: 1px solid var(--gold);
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.badge-seal { flex-shrink: 0; }
.badge-lines {
    display: flex;
    align-items: center;
    gap: 16px;
}
.badge-row { line-height: 1.25; }
.badge-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--white);
}
.badge-sub {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-top: 3px;
}
.badge-divider {
    width: 1px;
    height: 32px;
    background: var(--gold);
    opacity: 0.5;
}

/* =====================================================
   ABOUT + RELATIONSHIPS
   ===================================================== */
.about-strip {
    background: var(--white);
    padding: 0;
}
.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.2fr 1.5fr;
    gap: 60px;
    padding: 70px 40px;
    align-items: start;
}
.about-copy {
    padding-right: 20px;
}
.about-text p {
    color: var(--gray-700);
    font-size: 14.5px;
    margin: 0 0 18px;
    line-height: 1.85;
}

.relationships {
    background: var(--black);
    color: var(--white);
    padding: 40px 40px 36px;
    margin: -70px -40px -70px 0;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.rel-title {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-align: center;
    margin: 0 0 32px;
    color: var(--white);
}
.rel-icons {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    margin-bottom: 32px;
}
.rel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    color: var(--white);
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 600;
    line-height: 1.3;
}
.rel-svg {
    width: 44px;
    height: 44px;
}
.rel-text {
    color: var(--gray-300);
    font-size: 13px;
    line-height: 1.75;
    text-align: center;
    margin: 0;
    max-width: 640px;
    margin: 0 auto;
}

/* =====================================================
   PHILOSOPHY + INQUIRY
   ===================================================== */
.philosophy-strip {
    background: var(--cream);
    padding: 0;
}
.philo-grid {
    display: grid;
    grid-template-columns: 280px 1.2fr 1.5fr;
    gap: 50px;
    padding: 70px 40px;
    align-items: start;
}
.philo-image {
    background-image: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    min-height: 320px;
    filter: saturate(1.1);
}
.philo-copy {
    padding-top: 10px;
}
.philo-copy p {
    color: var(--gray-700);
    font-size: 14.5px;
    margin: 0 0 16px;
    line-height: 1.85;
}

.inquiry {
    background: var(--black);
    color: var(--white);
    padding: 40px 44px;
    margin: -70px -40px -70px 0;
    align-self: stretch;
}
.inquiry .eyebrow { color: var(--gold); }
.inquiry .eyebrow .rule { background: var(--gold); }
.inquiry-lead {
    color: var(--gray-300);
    font-size: 13.5px;
    margin: 0 0 26px;
    line-height: 1.7;
}
.inquiry-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.inquiry-form input,
.inquiry-form textarea {
    background: transparent;
    border: 1px solid #3a3a3a;
    color: var(--white);
    padding: 14px 16px;
    font-family: var(--sans);
    font-size: 13px;
    width: 100%;
    transition: border-color 0.2s;
}
.inquiry-form input:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}
.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
    color: #7a7a7a;
    font-family: var(--sans);
    letter-spacing: 0.3px;
}
.inquiry-form textarea {
    grid-column: span 2;
    min-height: 90px;
    resize: vertical;
    font-family: var(--sans);
}
.inquiry-form button {
    grid-column: span 2;
    margin-top: 4px;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 16px;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.25s ease;
}
.inquiry-form button:hover {
    background: var(--gold);
    color: var(--black);
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
    background: var(--black);
    color: var(--white);
    padding: 28px 0 18px;
}
.footer-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}
.footer-brand .brand-monogram { color: var(--white); font-size: 38px; }
.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-sub {
    color: var(--gray-300);
    border-color: #444;
}

.footer-contact {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 60px;
    flex-wrap: wrap;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    color: var(--white);
    letter-spacing: 0.3px;
}
.contact-icon {
    color: var(--gold);
    font-size: 16px;
}

.footer-copy {
    text-align: center;
    color: var(--gray-500);
    font-size: 11.5px;
    letter-spacing: 0.5px;
    padding-top: 14px;
    margin-top: 14px;
    border-top: 1px solid #1f1f1f;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
    .about-grid { grid-template-columns: 1fr 1fr; }
    .relationships { grid-column: span 2; margin: 30px 0 0; }
    .philo-grid { grid-template-columns: 240px 1fr; }
    .inquiry { grid-column: span 2; margin: 30px 0 0; }
}

@media (max-width: 820px) {
    .container { padding: 0 24px; }
    .nav { display: none; }
    .hero-grid { grid-template-columns: 1fr; gap: 30px; }
    .hero-portrait { height: 460px; }
    .hero-title { font-size: 48px; }
    .section-title { font-size: 32px; }
    .about-grid {
        grid-template-columns: 1fr;
        padding: 50px 24px;
        gap: 30px;
    }
    .relationships { grid-column: span 1; margin: 20px -24px -50px; padding: 36px 24px; }
    .rel-icons { grid-template-columns: repeat(3, 1fr); gap: 24px 8px; }
    .philo-grid {
        grid-template-columns: 1fr;
        padding: 50px 24px;
        gap: 30px;
    }
    .philo-image { min-height: 220px; }
    .inquiry { grid-column: span 1; margin: 20px -24px -50px; padding: 36px 24px; }
    .footer-inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
    .footer-brand { justify-content: center; }
    .footer-contact { justify-content: center; gap: 28px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 38px; }
    .hero { padding-top: 110px; }
    .license-badge {
        right: 10px;
        bottom: 10px;
        padding: 12px 14px;
    }
    .badge-lines { gap: 10px; }
    .badge-title { font-size: 11px; }
    .badge-sub { font-size: 10px; }
    .inquiry-form { grid-template-columns: 1fr; }
    .inquiry-form textarea,
    .inquiry-form button { grid-column: span 1; }
}
