: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;
}

.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;
}

@media (max-width: 900px) {
    .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) {
    .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%}}
