:root {
    --forest: #173f2b;
    --forest-dark: #0b2a1c;
    --moss: #527246;
    --cream: #f4f0e5;
    --paper: #fbfaf6;
    --gold: #e9bd52;
    --ink: #18231d;
    --muted: #67716a;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "DM Sans", sans-serif;
}

a { color: inherit; }

.site-header {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px clamp(24px, 7vw, 110px);
    border-bottom: 1px solid #dcded7;
    background: rgba(251,250,246,.94);
}

.brand { text-decoration: none; display: inline-flex; flex-direction: column; line-height: 1; }
.brand span { color: var(--forest); font: 32px/1 "Kaushan Script", cursive; }
.brand small { margin: 5px 0 0 14px; color: var(--moss); font-weight: 700; letter-spacing: .24em; text-transform: uppercase; }

nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 42px); }
nav a { font-size: 14px; font-weight: 600; text-decoration: none; }
.nav-cta { padding: 12px 21px; color: #fff; border-radius: 99px; background: var(--forest); }

.hero {
    min-height: 700px;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: clamp(45px, 8vw, 130px);
    padding: 68px clamp(24px, 8vw, 125px) 82px;
    overflow: hidden;
    background: linear-gradient(115deg, #fbfaf6 68%, #edf0e8 68%);
}

.hero-copy { max-width: 700px; }
.eyebrow { display: flex; align-items: center; gap: 11px; color: var(--moss); font-size: 12px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow span { width: 35px; height: 2px; background: var(--gold); }

h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 670px; margin-bottom: 22px; font-size: clamp(52px, 6.4vw, 92px); line-height: .98; letter-spacing: -.055em; }
h1 em { color: var(--forest); font-family: "Kaushan Script", cursive; font-size: .92em; font-weight: 400; letter-spacing: -.03em; }
.intro { max-width: 610px; margin-bottom: 32px; color: var(--muted); font-size: 18px; line-height: 1.7; }

.availability { display: flex; gap: 38px; }
.availability div { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 0 12px; }
.availability div + div { padding-left: 38px; border-left: 1px solid #ced2ca; }
.availability strong { grid-row: 1 / 3; color: var(--forest); font-size: 43px; line-height: 1; }
.availability span { max-width: 100px; color: #4d5b53; font-size: 13px; font-weight: 700; line-height: 1.25; text-transform: uppercase; }
.due-note { margin: 12px 0 30px; color: #7a827d; font-size: 12px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 25px; border-radius: 4px; font-size: 14px; font-weight: 700; text-decoration: none; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--forest); }
.button-primary:hover { background: var(--forest-dark); }
.button-secondary { border: 1px solid #c6cbc3; background: transparent; }

.flyer-wrap { position: relative; justify-self: center; }
.flyer-wrap::before { content: ""; position: absolute; inset: 6% -19% -8% 18%; border: 1px solid #bac5b8; z-index: 0; }
.flyer-wrap img { position: relative; z-index: 1; display: block; width: min(295px, 70vw); border: 9px solid #fff; box-shadow: 0 30px 70px rgba(22,49,31,.25); }
.sun-glow { position: absolute; top: -50px; right: -75px; width: 160px; height: 160px; border-radius: 50%; background: var(--gold); opacity: .22; }
.location-chip { position: absolute; z-index: 2; right: -75px; bottom: 48px; display: flex; align-items: center; gap: 12px; min-width: 205px; padding: 14px 17px; color: #fff; background: var(--forest); box-shadow: 0 12px 30px rgba(10,35,23,.24); }
.location-chip .pin { color: var(--gold); }
.location-chip span:last-child { display: flex; flex-direction: column; font-size: 14px; font-weight: 700; }
.location-chip small { margin-bottom: 2px; color: #bbcabd; font-size: 10px; font-weight: 500; text-transform: uppercase; }

.details { padding: 100px clamp(24px, 8vw, 125px); }
.section-heading { max-width: 600px; margin: 0 auto 55px; text-align: center; }
.section-heading .eyebrow { justify-content: center; }
h2 { margin-bottom: 15px; font-size: clamp(38px, 4vw, 58px); line-height: 1.05; letter-spacing: -.04em; }
.section-heading > p:last-child { color: var(--muted); line-height: 1.7; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1200px; margin: auto; border: 1px solid #dfe2dc; }
.info-card { position: relative; min-height: 355px; padding: 42px 38px; border-right: 1px solid #dfe2dc; background: #fff; }
.info-card:last-child { border-right: 0; }
.info-card.featured { background: var(--cream); }
.card-number { position: absolute; top: 24px; right: 25px; color: #b1b8af; font-size: 12px; font-weight: 700; }
.icon { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 28px; color: var(--forest); border-radius: 50%; background: #e6ecdf; font-size: 22px; }
.info-card h3 { margin-bottom: 22px; font-size: 23px; }
.check-list { padding: 0; margin: 0; list-style: none; }
.check-list li { position: relative; padding: 9px 0 9px 25px; color: #4e5d54; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--moss); font-weight: 700; }
.included-note { margin: 16px 0 0; color: var(--forest); font-size: 13px; font-weight: 700; }
.fine-print { margin: 18px 0 0; color: #7b817d; font-size: 12px; font-style: italic; }
.contact-card p { color: var(--muted); line-height: 1.6; }
.contact-card a { display: block; width: fit-content; margin-top: 11px; color: var(--forest); font-weight: 700; text-decoration-color: #b9c4b8; text-underline-offset: 4px; }
.contact-card .card-contact-link { margin: 20px 0 17px; }

.contact-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(45px, 8vw, 110px); padding: 100px clamp(24px, 8vw, 125px); background: var(--cream); }
.contact-intro { max-width: 470px; }
.contact-intro > p:not(.eyebrow) { color: var(--muted); line-height: 1.7; }
.contact-form { display: grid; gap: 20px; max-width: 720px; padding: 38px; background: #fff; box-shadow: 0 18px 45px rgba(23,63,43,.09); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.contact-form label { display: grid; gap: 8px; color: var(--ink); font-size: 13px; font-weight: 700; }
.contact-form label span { color: #9c4c3e; }
.contact-form input, .contact-form textarea { width: 100%; padding: 13px 14px; color: var(--ink); border: 1px solid #cbd1c9; border-radius: 3px; background: var(--paper); font: inherit; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--moss); outline: 3px solid rgba(82,114,70,.16); }
.contact-form .button { width: fit-content; border: 0; cursor: pointer; }
.form-notice { margin: 0; padding: 13px 15px; border-radius: 3px; font-size: 14px; }
.form-notice.success { color: #174f30; background: #e2f2e7; }
.form-notice.error { color: #7e3028; background: #f8e7e4; }
.form-honeypot { position: absolute; left: -10000px; }

.location { display: flex; align-items: end; justify-content: space-between; gap: 30px; padding: 80px clamp(24px, 8vw, 125px); color: #fff; background: var(--forest); }
.location h2 { margin-bottom: 12px; }
.location > div > p:last-child { margin: 0; color: #c0cec4; }
.eyebrow.light { color: #c0cec4; }
.button-light { flex: 0 0 auto; color: var(--forest); background: var(--gold); }

footer { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 30px clamp(24px, 8vw, 125px); color: #aeb8b1; background: var(--forest-dark); font-size: 12px; }
.footer-brand span { color: #fff; font-size: 24px; }
.footer-brand small { color: #aeb8b1; font-size: 8px; }
footer p { margin: 0; }
footer > a:last-child { color: #fff; font-weight: 700; }

@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; padding-top: 55px; background: var(--paper); }
    .flyer-wrap { margin: 30px auto 10px; }
    .card-grid { grid-template-columns: 1fr; }
    .info-card { min-height: 0; border-right: 0; border-bottom: 1px solid #dfe2dc; }
    .info-card:last-child { border-bottom: 0; }
    .contact-section { grid-template-columns: 1fr; }
    .contact-intro { max-width: 620px; }
}

@media (max-width: 620px) {
    .site-header { min-height: 76px; }
    .brand span { font-size: 25px; }
    .brand small { font-size: 8px; }
    nav > a:not(.nav-cta) { display: none; }
    .hero { padding-bottom: 60px; }
    h1 { font-size: clamp(48px, 15vw, 68px); }
    .availability { gap: 18px; }
    .availability div + div { padding-left: 18px; }
    .availability strong { font-size: 34px; }
    .hero-actions .button { width: 100%; }
    .location-chip { right: -18px; }
    .details { padding-top: 75px; padding-bottom: 75px; }
    .contact-section { padding-top: 75px; padding-bottom: 75px; }
    .contact-form { padding: 25px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .location { align-items: stretch; flex-direction: column; }
    footer { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .button { transition: none; }
}
