:root {
    --bg: #faf8f5;
    --bg-alt: #f3efe7;
    --bg-deep: #1a1815;
    --ink: #1a1a1a;
    --ink-soft: #4a4a4a;
    --muted: #8a8580;
    --rule: #e3ddd1;
    --rule-soft: #ece6d9;
    --accent: #a65a3f;
    --accent-soft: #c97e62;
    --accent-pale: #e8c8ba;
    --gold: #b8923d;
    --serif: 'Playfair Display', Georgia, serif;
    --serif-alt: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 400;
    line-height: 1.65;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a { color: var(--ink); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--accent); }

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---------- Paper grain overlay ---------- */

.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.6;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='280' height='280'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- Typography ---------- */

.display {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -0.012em;
    line-height: 1.05;
    margin: 0 0 1.5rem;
}

.display em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
}

h1.display { font-size: clamp(2.8rem, 6.5vw, 5rem); }
h2.display { font-size: clamp(2.2rem, 5vw, 3.6rem); }

h3 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 1.55rem;
    line-height: 1.2;
    margin: 0 0 0.85rem;
    letter-spacing: -0.005em;
}

p { margin: 0 0 1.1rem; color: var(--ink-soft); }
p:last-child { margin-bottom: 0; }

.eyebrow {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--accent);
    margin: 0 0 1.25rem;
}

.eyebrow-light { color: var(--accent-pale); }

.overline {
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--muted);
    margin: 0 0 2rem;
}

.lede {
    font-size: 1.18rem;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 38rem;
}

/* ---------- Header ---------- */

.site-header {
    position: sticky;
    top: 0;
    background: rgba(250, 248, 245, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--rule);
    z-index: 50;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    line-height: 1;
}

.brand-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.brand-text { display: flex; flex-direction: column; }

.brand-mark {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: 0.005em;
}

.brand-sub {
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--muted);
    margin-top: 0.4rem;
}

.site-nav { display: flex; gap: 2.25rem; }

.site-nav a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-soft);
    position: relative;
}

.site-nav a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -6px;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.site-nav a:hover { color: var(--accent); }
.site-nav a:hover::after { transform: scaleX(1); }

/* ---------- Hero ---------- */

.hero {
    padding: 7rem 0 8rem;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 5rem;
    align-items: center;
}

.hero-text { max-width: 36rem; }

.hero-title { margin-bottom: 2rem; }

.hero .lede { margin-bottom: 2.75rem; }

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-mark {
    font-family: var(--serif-alt);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--muted);
    padding-top: 1.75rem;
    border-top: 1px solid var(--rule);
    max-width: 32rem;
}

.hero-mark em { font-style: italic; }

.hero-media {
    position: relative;
    padding: 1.5rem;
}

.hero-frame {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    box-shadow: 0 30px 80px -30px rgba(26, 24, 21, 0.35);
}

.hero-frame::before {
    content: '';
    position: absolute;
    inset: -14px;
    border: 1px solid var(--rule);
    z-index: -1;
}

.hero-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.95) contrast(1.02);
}

/* ---------- Buttons ---------- */

.btn {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 1rem 1.85rem;
    background: var(--ink);
    color: var(--bg);
    border: 1px solid var(--ink);
    transition: all 0.25s ease;
}

.btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
    transform: translateY(-1px);
}

.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* ---------- Ornament divider ---------- */

.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    padding: 2.5rem 2rem;
}

.ornament-line {
    flex: 0 0 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--rule) 30%, var(--rule) 70%, transparent);
}

.ornament-mark {
    color: var(--accent);
    font-size: 0.95rem;
    opacity: 0.85;
}

/* ---------- Sections ---------- */

.section { padding: 7rem 0; position: relative; }

.section-head { max-width: 46rem; margin-bottom: 4.5rem; }
.section-head-center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head-center .eyebrow { margin-left: auto; margin-right: auto; }
.section-head .display { margin-bottom: 1rem; }
.section-lede { font-size: 1.08rem; color: var(--ink-soft); margin-top: 1.25rem; }

/* ---------- Vision ---------- */

.two-col {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 5.5rem;
    align-items: center;
}

.dropcap::first-letter {
    font-family: var(--serif);
    float: left;
    font-size: 4.5rem;
    line-height: 0.85;
    padding-right: 0.6rem;
    padding-top: 0.4rem;
    color: var(--accent);
    font-weight: 500;
}

.pullquote {
    font-family: var(--serif-alt);
    font-style: italic;
    font-size: 1.55rem;
    line-height: 1.4;
    color: var(--ink);
    margin: 2.5rem 0;
    padding: 0 0 0 1.5rem;
    border-left: 2px solid var(--accent);
    quotes: "\201C" "\201D";
}

.pullquote::before { content: open-quote; color: var(--accent); margin-right: 0.1em; }
.pullquote::after { content: close-quote; color: var(--accent); margin-left: 0.1em; }

.image-frame {
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 70px -30px rgba(26, 24, 21, 0.3);
}

.image-frame img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    filter: saturate(0.92) contrast(1.02);
}

.image-frame-offset::before {
    content: '';
    position: absolute;
    inset: -16px -16px 16px 16px;
    border: 1px solid var(--accent);
    opacity: 0.5;
    z-index: -1;
}

.col-image { position: relative; }

/* ---------- Services ---------- */

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
}

.service-card {
    background: var(--bg);
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: background 0.3s ease;
}

.service-card:hover { background: var(--bg-alt); }

.service-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--accent);
    margin: 0 0 1.5rem;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 0.85rem;
}

.service-num::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 1px;
    background: var(--accent);
}

.service-card h3 { color: var(--ink); }

.service-card .meta {
    font-family: var(--serif-alt);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--muted);
    margin-top: 1.5rem;
    margin-bottom: 0;
    letter-spacing: 0.01em;
}

.card-link {
    display: inline-block;
    margin-top: 1.5rem;
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent);
}

.card-link:hover { color: var(--ink); }

/* ---------- Image strip ---------- */

.image-strip {
    position: relative;
    overflow: hidden;
    height: clamp(280px, 40vh, 460px);
    margin: 0;
}

.image-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.78) saturate(0.9);
}

.strip-caption {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.4rem, 3.5vw, 2.6rem);
    color: var(--bg);
    margin: 0;
    text-align: center;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.005em;
}

/* ---------- Ventures ---------- */

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

.ventures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.venture-card {
    display: flex;
    flex-direction: column;
    background: var(--bg);
    color: var(--ink);
    border: 1px solid var(--rule);
    transition: all 0.3s ease;
    overflow: hidden;
}

a.venture-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px -25px rgba(166, 90, 63, 0.4);
}

.venture-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--bg-alt);
}

.venture-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.92);
    transition: transform 0.6s ease;
}

a.venture-card:hover .venture-image img { transform: scale(1.04); }

.venture-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--accent-pale) 100%);
}

.placeholder-mark {
    font-size: 2.4rem;
    color: var(--accent);
    opacity: 0.7;
}

.venture-body { padding: 2rem 2rem 2.25rem; }

.venture-label {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--muted);
    margin: 0 0 0.85rem;
}

.venture-card h3 { margin-bottom: 0.85rem; }

.venture-cta {
    display: inline-block;
    margin-top: 1.5rem;
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent);
}

.venture-card-current { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.venture-card-current h3 { color: var(--bg); }
.venture-card-current p { color: rgba(250, 248, 245, 0.7); }
.venture-card-current .venture-label { color: var(--accent-soft); }
.venture-card-current .venture-cta { color: rgba(250, 248, 245, 0.45); }
.venture-card-current .venture-image img { filter: saturate(0.6) brightness(0.7); }

.venture-card-soon .venture-cta { color: var(--muted); font-style: italic; text-transform: none; letter-spacing: 0.04em; }

/* ---------- Support ---------- */

.section-support {
    background: var(--bg-deep);
    color: var(--bg);
    padding: 8rem 0;
}

.section-support::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(166, 90, 63, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(184, 146, 61, 0.1) 0%, transparent 55%);
    pointer-events: none;
}

.support-inner {
    max-width: 44rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.support-inner .eyebrow { margin-left: auto; margin-right: auto; }

.support-inner .display {
    color: var(--bg);
    font-size: clamp(2.4rem, 5.5vw, 4rem);
}

.support-inner .display em { color: var(--accent-soft); }

.support-lede {
    font-size: 1.18rem;
    color: rgba(250, 248, 245, 0.82);
    margin-bottom: 1.5rem;
    line-height: 1.65;
}

.support-meta {
    font-family: var(--serif-alt);
    font-style: italic;
    font-size: 1.05rem;
    color: rgba(250, 248, 245, 0.6);
}

.support-flourish {
    margin-top: 2.5rem;
    font-size: 1.15rem;
    color: var(--accent-soft);
    opacity: 0.7;
}

/* ---------- Footer ---------- */

.site-footer {
    background: var(--bg-deep);
    color: var(--bg);
    padding: 3rem 0;
    border-top: 1px solid rgba(250, 248, 245, 0.08);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--bg);
}

.footer-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.85);
}

.footer-brand .brand-mark { color: var(--bg); }
.footer-brand .brand-sub { color: rgba(250, 248, 245, 0.5); }

.footer-meta {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(250, 248, 245, 0.5);
    letter-spacing: 0.02em;
}

.footer-meta-block { text-align: right; }
.footer-powered {
    margin-top: 0.5rem;
    color: var(--bg);
    font-weight: 600;
    letter-spacing: 0.04em;
    opacity: 1;
}
.footer-powered a {
    color: var(--accent-pale);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-pale);
    padding-bottom: 1px;
    font-weight: 600;
    transition: color 0.2s, border-color 0.2s;
}
.footer-powered a:hover { color: var(--bg); border-bottom-color: var(--bg); }

@media (max-width: 960px) {
    .footer-meta-block { text-align: left; }
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-media { order: -1; max-width: 28rem; padding: 1rem; }
    .hero-frame { aspect-ratio: 5 / 4; }
    .two-col { grid-template-columns: 1fr; gap: 3rem; }
    .col-image { order: -1; max-width: 30rem; }
    .image-frame img { aspect-ratio: 5 / 4; }
    .ventures-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}

@media (max-width: 720px) {
    .container { padding: 0 1.5rem; }
    .site-nav { display: none; }
    .hero { padding: 4.5rem 0 5rem; }
    .section { padding: 4.5rem 0; }
    .section-head { margin-bottom: 2.75rem; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 2.5rem 1.75rem; }
    .venture-body { padding: 1.5rem 1.5rem 2rem; }
    .pullquote { font-size: 1.3rem; padding-left: 1rem; }
    .header-inner { padding-top: 0.85rem; padding-bottom: 0.85rem; }
    .brand-logo { width: 36px; height: 36px; }
    .brand-mark { font-size: 1.2rem; }
    .footer-inner { flex-direction: column; align-items: flex-start; }
    .ornament { padding: 1.5rem 1rem; }
    .ornament-line { flex: 0 0 50px; }
    .image-strip { height: 240px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}
