/* 3825968.com first structured draft */

:root {
    --cream: #fcecd9;
    --cream-soft: #fff4e7;
    --cream-deep: #f3e0c8;
    --ink: #24211d;
    --ink-soft: #5f5850;
    --muted: #80766d;
    --line: rgba(132, 95, 48, 0.16);
    --panel: rgba(255, 249, 240, 0.72);
    --panel-strong: rgba(255, 249, 240, 0.9);
    --gold: #b87526;
    --gold-bright: #f0aa3e;
    --gold-dark: #70400f;
    --footer: #171716;
    --footer-soft: #a98452;
    --shadow: 0 28px 80px rgba(68, 43, 15, 0.13);
    --glow: 0 0 34px rgba(239, 158, 45, 0.32);
    --serif: Georgia, "Times New Roman", serif;
    --sans: Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    margin: 0;
    min-height: 100%;
    font-family: var(--sans);
    color: var(--ink);
    background:
        radial-gradient(circle at 10% 16%, rgba(255, 255, 255, 0.48), transparent 23rem),
        radial-gradient(circle at 82% 10%, rgba(255, 255, 255, 0.34), transparent 25rem),
        linear-gradient(180deg, #fff5e8 0%, #fcecd9 42%, #f9e8d4 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(112, 64, 15, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(112, 64, 15, 0.02) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.45), transparent 72%);
}

a {
    color: inherit;
}

.site-shell {
    width: min(100%, 1500px);
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(112, 64, 15, 0.07);
    border-right: 1px solid rgba(112, 64, 15, 0.07);
    background: rgba(252, 236, 218, 0.72);
}

.site-header {
    position: relative;
    z-index: 2;
    min-height: 98px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 22px clamp(22px, 4vw, 56px);
    border-bottom: 1px solid var(--line);
    background: rgba(252, 236, 218, 0.78);
    backdrop-filter: blur(10px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    text-decoration: none;
}

.brand-mark {
    width: 52px;
    height: 52px;
    object-fit: contain;
    filter: drop-shadow(0 8px 14px rgba(76, 47, 12, 0.22));
}

.brand-text {
    font-size: clamp(1.05rem, 2vw, 1.55rem);
    letter-spacing: 0.08em;
    color: #67503a;
    text-shadow: 0 1px 0 rgba(255,255,255,0.7);
    white-space: nowrap;
}

.brand-text span,
.footer-brand span span {
    color: var(--gold);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(20px, 4vw, 62px);
}

.main-nav a {
    position: relative;
    padding: 12px 0;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.78rem;
    font-weight: 700;
    color: #4f4943;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -22px;
    width: 0;
    height: 2px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
    box-shadow: var(--glow);
    transition: width 180ms ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold-dark);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 68px;
}

main {
    flex: 1;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(18px, 2.6vw, 28px) clamp(18px, 5vw, 72px) 12px;
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: min(100%, 1240px);
    text-align: center;
}

.hero-logo {
    display: block;
    width: min(100%, 1100px);
    margin: 0 auto 6px;
    filter: drop-shadow(0 10px 18px rgba(98, 60, 15, 0.05));
    opacity: 0.995;

    /* Feather the hard rectangular perimeter so the banner blends into the page */
    -webkit-mask-image:
        linear-gradient(to right,
            transparent 0%,
            rgba(0, 0, 0, 1) 6%,
            rgba(0, 0, 0, 1) 94%,
            transparent 100%
        ),
        linear-gradient(to bottom,
            transparent 0%,
            rgba(0, 0, 0, 1) 10%,
            rgba(0, 0, 0, 1) 90%,
            transparent 100%
        );
    -webkit-mask-composite: source-in;

    mask-image:
        linear-gradient(to right,
            transparent 0%,
            rgba(0, 0, 0, 1) 6%,
            rgba(0, 0, 0, 1) 94%,
            transparent 100%
        ),
        linear-gradient(to bottom,
            transparent 0%,
            rgba(0, 0, 0, 1) 10%,
            rgba(0, 0, 0, 1) 90%,
            transparent 100%
        );
    mask-composite: intersect;
}

.eyebrow {
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.26em;
    color: rgba(184, 117, 38, 0.9);
    font-size: 0.68rem;
    font-weight: 700;
}

.hero h1,
.page-hero h1 {
    margin: 0;
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -0.03em;
    color: #2d2a26;
}

.hero h1 {
    font-size: clamp(2.65rem, 5.2vw, 4.7rem);
}

.hero-subtitle,
.page-hero p {
    max-width: 680px;
    margin: 8px auto 0;
    font-family: var(--serif);
    font-size: clamp(1.05rem, 1.9vw, 1.35rem);
    line-height: 1.5;
    color: var(--ink-soft);
}

.access-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    min-width: 240px;
    margin-top: 20px;
    padding: 16px 30px;
    border: 1px solid rgba(255, 214, 143, 0.42);
    border-radius: 8px;
    color: #fff9ee;
    background:
        linear-gradient(180deg, rgba(219, 143, 43, 0.92), rgba(126, 72, 16, 0.98)),
        #93560f;
    box-shadow:
        0 14px 28px rgba(104, 62, 15, 0.24),
        0 0 22px rgba(241, 165, 44, 0.22);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    font-size: 0.84rem;
    font-weight: 700;
}

.access-button:hover {
    transform: translateY(-1px);
    box-shadow:
        0 18px 32px rgba(104, 62, 15, 0.28),
        0 0 28px rgba(241, 165, 44, 0.30);
}

.hero-orbit {
    position: absolute;
    border: 1px solid rgba(184, 117, 38, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.hero-orbit::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(184, 117, 38, 0.14);
}

.hero-orbit-one {
    width: 720px;
    height: 720px;
    left: -130px;
    top: 24px;
}

.hero-orbit-one::after {
    right: 98px;
    top: 180px;
}

.hero-orbit-two {
    width: 900px;
    height: 900px;
    right: -260px;
    top: -160px;
}

.hero-orbit-two::after {
    left: 180px;
    bottom: 190px;
}

.feature-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    width: min(100% - 44px, 1320px);
    margin: 8px auto 24px;
}

.feature-card,
.content-card,
.access-panel {
    border: 1px solid rgba(132, 95, 48, 0.15);
    background:
        linear-gradient(135deg, rgba(255,255,255,0.52), rgba(255,249,239,0.72)),
        var(--panel);
    box-shadow: 0 20px 52px rgba(77, 46, 12, 0.07);
}

.feature-card {
    min-height: 278px;
    padding: 34px 30px 30px;
    border-radius: 12px;
    text-align: center;
}

.feature-icon {
    width: 66px;
    height: 66px;
    margin: 0 auto 22px;
    border: 1px solid rgba(184, 117, 38, 0.48);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gold);
}

.ring-icon {
    width: 30px;
    height: 30px;
    border: 3px double currentColor;
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(184, 117, 38, 0.08);
}

.keyhole-icon {
    position: relative;
    width: 18px;
    height: 30px;
}

.keyhole-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 3px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: currentColor;
}

.keyhole-icon::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 10px;
    width: 6px;
    height: 18px;
    background: currentColor;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.archive-icon {
    position: relative;
    width: 34px;
    height: 30px;
}

.archive-icon::before,
.archive-icon::after {
    content: "";
    position: absolute;
    left: 3px;
    width: 28px;
    height: 18px;
    border: 1px solid currentColor;
    transform: rotate(45deg) skew(-10deg, -10deg);
}

.archive-icon::before {
    top: 0;
}

.archive-icon::after {
    top: 10px;
    opacity: 0.55;
}

.feature-card h2 {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.34em;
    font-size: 0.95rem;
}

.feature-card h2::after {
    content: "";
    display: block;
    width: 42px;
    height: 1px;
    margin: 16px auto 0;
    background: var(--gold);
}

.feature-card p {
    min-height: 54px;
    max-width: 255px;
    margin: 18px auto 22px;
    line-height: 1.55;
    color: var(--ink-soft);
}

.feature-card a {
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
}

.feature-card a span {
    margin-left: 10px;
}

.content-page {
    width: min(100% - 44px, 980px);
    margin: 0 auto;
    padding: clamp(54px, 8vw, 96px) 0 clamp(64px, 8vw, 110px);
}

.page-hero {
    text-align: center;
    margin-bottom: 30px;
}

.page-hero h1 {
    font-size: clamp(2.6rem, 5.6vw, 4.9rem);
}

.content-card,
.access-panel {
    border-radius: 16px;
    padding: clamp(28px, 4vw, 44px);
}

.content-card h2,
.access-panel h2 {
    margin: 0 0 14px;
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.55rem);
    font-weight: 400;
}

.content-card p,
.access-panel p {
    color: var(--ink-soft);
    font-size: 1.03rem;
    line-height: 1.7;
}

.access-panel {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.access-lock {
    position: relative;
    width: 64px;
    height: 64px;
    margin: 0 auto 22px;
    border: 1px solid rgba(184, 117, 38, 0.5);
    border-radius: 50%;
}

.access-lock::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 16px;
    width: 20px;
    height: 18px;
    border: 3px solid var(--gold);
    border-bottom: 0;
    border-radius: 14px 14px 0 0;
}

.access-lock::after {
    content: "";
    position: absolute;
    left: 19px;
    top: 30px;
    width: 26px;
    height: 19px;
    border-radius: 4px;
    background: var(--gold);
}

.access-form {
    margin-top: 26px;
    text-align: left;
}

.access-form label {
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--gold-dark);
}

.access-input-row {
    display: flex;
    gap: 10px;
}

.access-input-row input,
.access-input-row button {
    min-height: 48px;
    border-radius: 8px;
    font: inherit;
}

.access-input-row input {
    flex: 1;
    min-width: 0;
    border: 1px solid rgba(132, 95, 48, 0.24);
    background: rgba(255,255,255,0.7);
    padding: 0 14px;
    color: var(--muted);
}

.access-input-row button {
    border: 1px solid rgba(184, 117, 38, 0.38);
    padding: 0 22px;
    background: rgba(184, 117, 38, 0.18);
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
}

.form-note {
    margin: 10px 0 0;
    font-size: 0.9rem;
}

.site-footer {
    min-height: 96px;
    margin-top: auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    padding: 24px clamp(24px, 5vw, 80px);
    border-top: 2px solid rgba(184, 117, 38, 0.44);
    color: var(--footer-soft);
    background:
        radial-gradient(circle at 12% 0%, rgba(184, 117, 38, 0.16), transparent 22rem),
        linear-gradient(135deg, #1f1f1d, var(--footer));
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    letter-spacing: 0.18em;
}

.footer-mark {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 8px 10px rgba(0,0,0,0.32));
}

.footer-line {
    margin: 0;
    font-family: var(--serif);
    font-style: italic;
    color: #c59a62;
}

.footer-copy {
    margin: 0;
    text-align: right;
    letter-spacing: 0.08em;
}

@media (max-width: 900px) {
    .site-header {
        flex-direction: column;
        justify-content: center;
        padding-bottom: 18px;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
        gap: clamp(16px, 6vw, 44px);
        flex-wrap: wrap;
    }

    .main-nav a::after {
        bottom: -8px;
    }

    .hero {
        min-height: auto;
        padding-top: 20px;
        padding-bottom: 14px;
    }

    .hero-logo {
        width: min(100%, 900px);
        margin-bottom: 6px;
    }

    .feature-section {
        grid-template-columns: 1fr;
        width: min(100% - 30px, 620px);
    }

    .feature-card {
        min-height: 0;
    }

    .feature-card p {
        min-height: 0;
    }

    .site-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-copy {
        text-align: center;
    }
}

@media (max-width: 560px) {
    .site-shell {
        border: 0;
    }

    .site-header {
        min-height: 0;
        gap: 18px;
        padding: 18px 16px;
    }

    .brand-mark {
        width: 44px;
        height: 44px;
    }

    .brand-text {
        font-size: 1.02rem;
        letter-spacing: 0.05em;
    }

    .main-nav {
        gap: 14px 22px;
    }

    .main-nav a {
        font-size: 0.72rem;
        letter-spacing: 0.16em;
    }

    .hero {
        padding-top: 16px;
        padding-left: 14px;
        padding-right: 14px;
        padding-bottom: 10px;
    }

    .hero-logo {
        width: min(112%, 580px);
        transform: translateX(-1%);
        margin-bottom: 4px;
    }

    .eyebrow {
        font-size: 0.62rem;
        letter-spacing: 0.22em;
    }

    .hero h1 {
        font-size: clamp(2.25rem, 10vw, 3.3rem);
    }

    .hero-subtitle {
        margin-top: 8px;
        font-size: 1.02rem;
    }

    .access-button {
        min-width: 0;
        width: min(100%, 250px);
        gap: 18px;
        margin-top: 18px;
        padding: 15px 24px;
        font-size: 0.8rem;
        letter-spacing: 0.24em;
    }

    .content-page {
        width: min(100% - 28px, 980px);
    }

    .access-input-row {
        flex-direction: column;
    }
}