:root {
    --maroon: #631b18;
    --saffron: #d36b22;
    --gold: #b88737;
    --cream: #fffaf0;
    --sand: #f3e8d2;
    --ink: #211817;
    --muted: #6e5d59;
    --line: #e5d5bd;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(70, 30, 18, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--cream);
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.7;
}

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

a {
    color: inherit;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--maroon);
    color: var(--white);
    padding: 10px 14px;
    z-index: 1000;
}

.skip-link:focus {
    left: 10px;
}

.site-shell {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

.contact-rail {
    background: var(--maroon);
    color: var(--white);
    font-size: 14px;
}

.contact-rail__inner {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.contact-rail__links {
    display: flex;
    align-items: center;
    gap: 18px;
    font-weight: 700;
}

.contact-rail a,
.site-footer a {
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 250, 240, 0.95);
    border-bottom: 1px solid rgba(184, 135, 55, 0.22);
    backdrop-filter: blur(14px);
}

.navbar {
    padding: 14px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--maroon);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 700;
    text-decoration: none;
}

.brand img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.nav-link {
    color: var(--ink);
    font-size: 15px;
    font-weight: 700;
    margin: 0 4px;
}

.nav-link:hover {
    color: var(--saffron);
}

.nav-cta,
.btn-solid,
.btn-soft,
.btn-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.nav-cta,
.btn-solid {
    background: var(--maroon);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(99, 27, 24, 0.2);
}

.btn-soft {
    color: var(--maroon);
    background: #f7e4c6;
    border: 1px solid var(--line);
}

.btn-line {
    color: var(--maroon);
    border: 1px solid var(--gold);
    background: transparent;
}

.nav-cta:hover,
.btn-solid:hover,
.btn-soft:hover,
.btn-line:hover {
    transform: translateY(-2px);
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 690px;
    display: grid;
    align-items: center;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(45, 13, 12, 0.92), rgba(74, 24, 18, 0.72), rgba(99, 27, 24, 0.3)),
        url('/img/banner_h.png') center/cover no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 140px;
    background: linear-gradient(0deg, var(--cream), transparent);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.58fr);
    gap: 48px;
    align-items: center;
    padding: 86px 0 130px;
}

.hero h1,
.section-header h2,
.split-copy h2,
.page-hero h1,
.closing-cta h2 {
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.1;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 840px;
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 700;
    margin: 0 0 24px;
}

.hero p {
    max-width: 710px;
    color: #f6dfc7;
    font-size: clamp(18px, 2vw, 22px);
    margin: 0 0 28px;
}

.hero-actions,
.closing-cta__actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-panel {
    background: rgba(255, 250, 240, 0.93);
    color: var(--ink);
    border: 1px solid rgba(255,255,255,0.5);
    padding: 28px;
    box-shadow: var(--shadow);
}

.hero-panel h2 {
    color: var(--maroon);
    font-size: 24px;
    margin-bottom: 18px;
}

.hero-panel ul,
.clean-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero-panel li,
.clean-list li {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 10px;
    padding: 12px 0;
    border-top: 1px solid var(--line);
}

.hero-panel li:first-child,
.clean-list li:first-child {
    border-top: 0;
}

.hero-panel li::before,
.clean-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    margin-top: 8px;
    background: var(--gold);
}

.quick-strip {
    transform: translateY(-58px);
    position: relative;
    z-index: 3;
}

.quick-strip__grid {
    background: var(--white);
    border: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    box-shadow: var(--shadow);
}

.quick-item {
    padding: 24px;
    border-left: 1px solid var(--line);
}

.quick-item:first-child {
    border-left: 0;
}

.quick-item strong {
    display: block;
    color: var(--maroon);
    font-size: 18px;
    margin-bottom: 6px;
}

.section {
    padding: 82px 0;
}

.section-alt {
    background: #f7efdf;
}

.section-header {
    max-width: 760px;
    margin-bottom: 42px;
}

.section-header.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-kicker {
    color: var(--saffron);
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 10px;
}

.section-header h2,
.split-copy h2,
.page-hero h1 {
    color: var(--maroon);
    font-size: clamp(34px, 4.2vw, 54px);
    margin: 0 0 16px;
}

.section-header p,
.split-copy p {
    color: var(--muted);
    font-size: 18px;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
    gap: 48px;
    align-items: center;
}

.split-media {
    border: 1px solid var(--line);
    background: var(--white);
    padding: 10px;
    box-shadow: var(--shadow);
    
}

.split-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

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

.service-card,
.place-card,
.faq-item,
.contact-panel,
.policy-card {
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 10px 26px rgba(90, 45, 22, 0.08);
}

.service-card {
    padding: 28px;
}

.service-card span,
.timeline-step span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    background: var(--maroon);
    color: var(--white);
    font-weight: 800;
}

.service-card h3,
.place-card h3,
.faq-item h3,
.contact-panel h2,
.policy-card h2 {
    color: var(--maroon);
    font-size: 22px;
    margin-bottom: 10px;
}

.timeline {
    display: grid;
    gap: 18px;
    counter-reset: process;
}

.timeline-step {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 22px;
    align-items: start;
    padding: 24px;
    background: var(--white);
    border-left: 4px solid var(--gold);
    box-shadow: 0 8px 24px rgba(70, 30, 18, 0.08);
}

.timeline-step span {
    margin: 0;
    background: var(--gold);
    color: #2a160f;
}

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

.place-card img {
    width: 100%;
    aspect-ratio: 10 / 10;
    object-fit:fill;
}

.place-card div {
    padding: 24px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.faq-item {
    padding: 24px;
}

.page-hero {    
    padding: 92px 0;
    border-bottom: 1px solid var(--line);
}

.page-hero p {
    max-width: 720px;
    color: var(--muted);
    font-size: 19px;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(300px, .8fr) 1fr;
    gap: 28px;
}

.contact-panel,
.policy-card {
    padding: 32px;
}

.form-control,
.form-select {
    min-height: 52px;
    border-radius: 6px;
    border-color: var(--line);
}

textarea.form-control {
    min-height: 150px;
}

.closing-cta {
    background: var(--maroon);
    color: var(--white);
    padding: 66px 0;
}

.closing-cta__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 30px;
    align-items: center;
}

.closing-cta h2 {
    font-size: clamp(30px, 3.6vw, 48px);
}

.closing-cta p {
    color: #f7dfc2;
    margin-bottom: 0;
}

.closing-cta .section-kicker {
    color: #ffd58c;
}

.closing-cta .btn-solid {
    background: var(--white);
    color: var(--maroon);
}

.closing-cta .btn-soft {
    background: #e59b49;
    color: #211817;
    border-color: transparent;
}

.site-footer {
    background: #1b1210;
    color: #e8d8c4;
    padding-top: 56px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr 1fr;
    gap: 34px;
}

.footer-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 16px;
}

.site-footer h2,
.site-footer h3 {
    color: var(--white);
    margin-bottom: 14px;
}

.site-footer a {
    display: block;
    color: #f2c783;
    margin-bottom: 9px;
}

.footer-bottom {
    margin-top: 36px;
    padding: 18px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.12);
    color: #ccb9aa;
}

.wa-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 50;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(0,0,0,.25);
}

@media (max-width: 991px) {
    .contact-rail__inner,
    .closing-cta__grid,
    .split,
    .contact-grid,
    .footer-grid,
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        padding: 70px 0 120px;
    }

    .quick-strip__grid,
    .service-grid,
    .places-grid,
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-cta {
        margin-top: 10px;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .site-shell {
        width: min(100% - 22px, 1160px);
    }

    .contact-rail__inner,
    .contact-rail__links {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
        padding: 8px 0;
    }

    .hero h1 {
        font-size: 40px;
    }

    .quick-strip {
        transform: none;
        padding-top: 20px;
    }

    .quick-strip__grid,
    .service-grid,
    .places-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .quick-item {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .quick-item:first-child {
        border-top: 0;
    }

    .section {
        padding: 58px 0;
    }

    .timeline-step {
        grid-template-columns: 1fr;
    }
}
