:root {
    --cream: #f7f1e7;
    --paper: #fffdf8;
    --forest: #153f32;
    --forest-light: #235847;
    --red: #9f2e2e;
    --gold: #c49a55;
    --ink: #1e2924;
    --muted: #66716b;
    --border: rgba(30, 41, 36, 0.14);
    --serif: "Playfair Display", Georgia, serif;
    --sans: "DM Sans", Arial, sans-serif;
    --shadow: 0 24px 70px rgba(24, 49, 39, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--cream);
    font-family: var(--sans);
    line-height: 1.6;
}

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

.site-header {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
    padding: 24px 5vw;
    background: var(--cream);
}

.brand {
    display: flex;
    align-items: center;
    gap: 13px;
}

.brand-lockup {
    display: block;
    line-height: 1.15;
}

.brand-mark {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: white;
    border: 2px solid var(--gold);
    border-radius: 50%;
    background: var(--forest);
    font-family: var(--serif);
    font-weight: 700;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-family: var(--serif);
    font-size: 1.25rem;
}

.brand small {
    color: var(--muted);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 38px);
    font-size: 0.93rem;
    font-weight: 600;
}

.main-navigation > a.active:not(.button) { color: var(--red); }

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0 26px;
    color: white;
    border: 1px solid var(--red);
    border-radius: 999px;
    background: var(--red);
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(159, 46, 46, 0.24);
}

.button-small {
    min-height: 42px;
    padding: 0 20px;
}

.hero {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    color: white;
    background-color: #10251d;
    background-image: url("/assets/images/louisville-claus-hero.webp");
    background-position: center;
    background-size: cover;
}

.hero::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(7, 16, 12, 0.92) 0%,
        rgba(7, 16, 12, 0.74) 38%,
        rgba(7, 16, 12, 0.16) 67%,
        rgba(7, 16, 12, 0.02) 100%
    );
    content: "";
}

.hero-content {
    position: relative;
    z-index: 1;
    align-self: center;
    max-width: 760px;
    padding: 80px 5vw 110px;
}

.hero .eyebrow {
    color: #efc984;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--red);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--serif);
    line-height: 1.08;
}

h1 {
    max-width: 680px;
    margin-bottom: 25px;
    font-size: clamp(3.2rem, 6vw, 6.4rem);
    letter-spacing: -0.045em;
}

h2 {
    margin-bottom: 20px;
    font-size: clamp(2.3rem, 4vw, 4.1rem);
    letter-spacing: -0.035em;
}

h3 {
    font-size: 1.55rem;
}

.hero-introduction {
    max-width: 610px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.18rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 34px 0 44px;
}

.text-link {
    border-bottom: 1px solid currentColor;
    font-weight: 700;
}

.trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 28px;
    padding: 0;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.86rem;
    list-style: none;
}

.trust-list li::before {
    margin-right: 9px;
    color: var(--forest-light);
    content: "✓";
    font-weight: 700;
}

.section {
    max-width: 1240px;
    margin: 0 auto;
    padding: 110px 5vw;
}

.section-heading {
    max-width: 790px;
    margin-bottom: 52px;
}

.section-heading > p:last-child {
    color: var(--muted);
}

.service-grid,
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    display: flex;
    min-height: 330px;
    flex-direction: column;
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: white;
    box-shadow: 0 8px 30px rgba(28, 50, 41, 0.04);
}

.service-number {
    margin-bottom: 56px;
    color: var(--gold);
    font-family: var(--serif);
    font-size: 1.15rem;
}

.service-card p {
    color: var(--muted);
}

.service-meta {
    display: flex;
    justify-content: space-between;
    padding-top: 22px;
    margin-top: auto;
    border-top: 1px solid var(--border);
}

.santa-section {
    max-width: none;
    color: white;
    background: var(--forest);
}

.santa-section > * {
    max-width: 1100px;
    margin-right: auto;
    margin-left: auto;
}

.section-heading-light .eyebrow {
    color: #e3bd7c;
}

.santa-grid {
    display: grid;
    gap: 34px;
}

.santa-card {
    display: grid;
    overflow: hidden;
    grid-template-columns: minmax(260px, 0.8fr) 1.2fr;
    color: var(--ink);
    background: var(--paper);
    box-shadow: var(--shadow);
}

.santa-photo {
    display: grid;
    min-height: 420px;
    place-items: center;
    color: rgba(255, 255, 255, 0.65);
    background: linear-gradient(150deg, #b44b43, #6d2024);
}

.santa-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.santa-details {
    align-self: center;
    padding: clamp(34px, 6vw, 74px);
}

.santa-details h3 {
    margin-bottom: 22px;
    font-size: 2.5rem;
}

.santa-details > p:not(.eyebrow) {
    color: var(--muted);
}

.santa-footer {
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
    margin-top: 35px;
    border-top: 1px solid var(--border);
    font-weight: 700;
}

.santa-footer a {
    color: var(--red);
}

.steps-section {
    text-align: center;
}

.steps-section .section-heading {
    margin-right: auto;
    margin-left: auto;
}

.steps-grid article {
    padding: 30px;
}

.steps-grid article > span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin: 0 auto 25px;
    color: white;
    border-radius: 50%;
    background: var(--forest);
    font-family: var(--serif);
}

.steps-grid p {
    color: var(--muted);
}

.closing-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1160px;
    padding: 60px;
    margin: 0 auto 100px;
    color: white;
    background: var(--red);
}

.closing-callout .eyebrow {
    color: #f1cc8e;
}

.closing-callout h2 {
    margin: 0;
}

.button-light {
    color: var(--forest);
    border-color: white;
    background: white;
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 50px;
    padding: 55px 5vw;
    color: rgba(255, 255, 255, 0.72);
    background: #0d2d24;
    font-size: 0.9rem;
}

.site-footer strong {
    color: white;
    font-family: var(--serif);
    font-size: 1.3rem;
}

.site-footer p {
    margin-bottom: 0;
}

.site-footer div:nth-child(2) {
    display: flex;
    flex-direction: column;
}
.site-footer .footer-legal { gap: 6px; }
.signup-form .terms-check a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }

.signup-page { display: grid; grid-template-columns: minmax(320px, .8fr) minmax(520px, 1.2fr); min-height: 760px; background: var(--paper); }
.signup-intro { position: relative; display: flex; align-items: flex-start; padding: clamp(60px, 8vw, 110px) 6vw; overflow: hidden; color: white; background: linear-gradient(145deg, rgba(13,45,36,.98), rgba(21,63,50,.93)), url('/assets/images/louisville-claus-hero.webp') center/cover; }
.signup-intro > div { position: sticky; top: 70px; max-width: 510px; }
.signup-intro .eyebrow { color: #efc984; }
.signup-intro h1 { margin-bottom: 24px; font-size: clamp(3rem, 5vw, 5.2rem); }
.signup-intro > div > p:not(.eyebrow) { color: rgba(255,255,255,.78); font-size: 1.08rem; }
.signup-price { display: flex; align-items: center; gap: 18px; padding: 25px 0; margin: 30px 0; border-top: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
.signup-price strong { color: #efc984; font-family: var(--serif); font-size: 3.2rem; line-height: 1; }
.signup-price span { color: rgba(255,255,255,.74); font-size: .85rem; }
.signup-intro ul { display: grid; gap: 11px; padding: 0; list-style: none; }
.signup-intro li::before { margin-right: 10px; color: #efc984; content: '✓'; font-weight: 700; }
.signup-form-section { width: min(760px, 100%); padding: clamp(60px, 8vw, 100px) clamp(28px, 7vw, 90px); }
.signup-form-heading h2 { margin-bottom: 10px; font-size: clamp(2.4rem, 4vw, 3.5rem); }
.signup-form-heading p:last-child { color: var(--muted); }
.signup-form-heading a { color: var(--red); font-weight: 700; }
.signup-promotion { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; padding: 24px; margin: 28px 0; border: 1px solid rgba(196,154,85,.55); border-left: 5px solid var(--gold); background: #fff9e9; box-shadow: 0 10px 30px rgba(24,49,39,.06); }
.signup-promotion-label { color: var(--red); font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.signup-promotion h3 { margin: 5px 0 8px; font-size: 1.55rem; }
.signup-promotion p { margin: 0; color: var(--muted); font-size: .91rem; }
.signup-promotion p strong { color: var(--forest); }
.signup-promotion button { min-height: 42px; padding: 0 18px; white-space: nowrap; border: 1px solid var(--forest); border-radius: 999px; color: white; background: var(--forest); font: inherit; font-size: .82rem; font-weight: 700; cursor: pointer; }
.signup-form { display: grid; gap: 20px; margin-top: 34px; }
.signup-form label { display: grid; gap: 7px; font-size: .86rem; font-weight: 700; }
.signup-form label small, .signup-form legend + small { color: var(--muted); font-weight: 400; }
.signup-form input, .signup-form select { width: 100%; min-width: 0; padding: 13px 14px; border: 1px solid #c9cfcb; border-radius: 3px; background: white; color: var(--ink); font: inherit; font-weight: 400; }
.signup-form input:focus, .signup-form select:focus { outline: 2px solid rgba(196,154,85,.55); border-color: var(--gold); }
.signup-form fieldset { display: grid; gap: 18px; padding: 22px; border: 1px solid var(--border); }
.signup-form legend { padding: 0 8px; font-family: var(--serif); font-size: 1.15rem; font-weight: 700; }
.admin-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.subscription-summary { display: grid; grid-template-columns: 1fr auto; gap: 3px 16px; padding: 18px; border: 1px solid var(--border); background: var(--cream); }
.subscription-summary span { color: var(--red); font-weight: 700; }
.subscription-summary small { grid-column: 1 / -1; color: var(--muted); }
.signup-form .terms-check { display: grid; grid-template-columns: auto 1fr; align-items: start; font-weight: 400; }
.signup-form .terms-check input { width: auto; margin-top: 5px; }
.signup-form button { min-height: 54px; padding: 0 26px; border: 0; border-radius: 999px; color: white; background: var(--red); font: inherit; font-weight: 700; cursor: pointer; }
.form-alert { padding: 15px 17px; margin: 24px 0; border-left: 4px solid; }
.form-alert-error { color: #762020; border-color: var(--red); background: #fff0ee; }

.features-hero { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: clamp(50px,8vw,120px); align-items: center; max-width: 1240px; min-height: 610px; padding: 90px 5vw 110px; margin: 0 auto; }
.features-hero > div { max-width: 790px; }
.features-hero h1 { font-size: clamp(3.4rem,6vw,6rem); }
.features-hero > div > p:not(.eyebrow) { max-width: 680px; color: var(--muted); font-size: 1.12rem; }
.features-hero .hero-actions { margin-bottom: 0; }
.features-hero aside { padding: 35px; color: white; background: var(--forest); box-shadow: var(--shadow); }
.features-hero aside span { color: #efc984; font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.features-hero aside strong { display: block; margin-top: 20px; color: white; font-family: var(--serif); font-size: 4.4rem; line-height: 1; }
.features-hero aside p { color: rgba(255,255,255,.72); }
.features-hero aside small { display: block; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.76); }
.features-hero aside b { color: #efc984; }
.feature-overview { max-width: 1320px; border-top: 1px solid var(--border); }
.feature-detail-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px; }
.feature-detail-grid article { padding: clamp(28px,4vw,46px); border: 1px solid var(--border); background: white; box-shadow: 0 8px 30px rgba(28,50,41,.04); }
.feature-detail-grid article > span { color: var(--gold); font-family: var(--serif); font-size: 1.1rem; }
.feature-detail-grid h3 { margin: 28px 0 15px; font-size: 1.8rem; }
.feature-detail-grid p { color: var(--muted); }
.feature-detail-grid ul { display: grid; gap: 8px; padding: 20px 0 0; margin: 22px 0 0; border-top: 1px solid var(--border); list-style: none; }
.feature-detail-grid li::before { margin-right: 9px; color: var(--red); content: '✓'; font-weight: 700; }
.feature-mobile-callout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: center; padding: clamp(55px,8vw,95px); margin-bottom: 100px; color: white; background: var(--forest); }
.feature-mobile-callout > div { max-width: 720px; margin-left: auto; }
.feature-mobile-callout .eyebrow { color: #efc984; }
.feature-mobile-callout p:not(.eyebrow) { color: rgba(255,255,255,.72); }
.feature-mobile-callout ul { display: grid; gap: 14px; padding: 0; list-style: none; }
.feature-mobile-callout li::before { margin-right: 10px; color: #efc984; content: '✓'; }

@media (max-width: 900px) {
    .features-hero { grid-template-columns: 1fr; }
    .features-hero aside { max-width: 420px; }
    .feature-mobile-callout { grid-template-columns: 1fr; gap: 30px; }
    .feature-mobile-callout > div { margin-left: 0; }
    .signup-page { grid-template-columns: 1fr; }
    .signup-intro { min-height: auto; }
    .signup-intro > div { position: static; }
    .main-navigation > a:not(.button) {
        display: none;
    }

    .hero {
        min-height: 650px;
        background-position: 62% center;
    }

    .hero::before {
        background: linear-gradient(
            90deg,
            rgba(7, 16, 12, 0.94) 0%,
            rgba(7, 16, 12, 0.82) 48%,
            rgba(7, 16, 12, 0.28) 100%
        );
    }

    .service-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 280px;
    }

    .santa-card {
        grid-template-columns: 1fr;
    }

    .closing-callout {
        align-items: flex-start;
        flex-direction: column;
        gap: 30px;
        margin-right: 5vw;
        margin-left: 5vw;
    }

    .site-footer {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 560px) {
    .features-hero { padding: 60px 24px 80px; }
    .features-hero h1 { font-size: clamp(2.8rem,14vw,4rem); }
    .feature-detail-grid { grid-template-columns: 1fr; }
    .feature-mobile-callout { padding: 55px 24px; }
    .signup-promotion { grid-template-columns: 1fr; }
    .signup-promotion button { width: 100%; }
    .admin-form-row { grid-template-columns: 1fr; }
    .signup-intro { padding: 54px 24px; }
    .signup-form-section { padding: 54px 24px; }
    .site-header {
        padding: 16px 20px;
    }

    .brand small {
        display: none;
    }

    .button-small {
        padding: 0 14px;
        font-size: 0.8rem;
    }

    .hero-content,
    .section {
        padding-right: 24px;
        padding-left: 24px;
    }

    .hero-content {
        padding-top: 70px;
        padding-bottom: 80px;
    }

    .hero-actions,
    .santa-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .closing-callout {
        padding: 40px 28px;
    }
}

/* Shared 50px SleighBook logo and mobile refinements. */
.brand-lockup{display:block!important;width:256px;max-width:100%;height:50px;background:url('/assets/images/logo2.png') left center/contain no-repeat}.brand-lockup>strong,.brand-lockup>small{display:none!important}.brand-lockup>img{display:block;width:auto!important;max-width:100%;height:50px!important;object-fit:contain}
@media(max-width:900px){.site-header{flex-wrap:wrap;gap:14px}.main-navigation{max-width:100%;gap:16px;overflow-x:auto;padding-bottom:4px}.main-navigation>a:not(.button){display:inline-flex;white-space:nowrap}}
@media(max-width:560px){.site-header{align-items:flex-start;flex-direction:column}.main-navigation{width:100%}.hero h1{font-size:clamp(2.7rem,15vw,4rem)}input,select,textarea{max-width:100%}}
