@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");
:root {
    --paper: #fff6ec;
    --paper-strong: #fde7d3;
    --ink: #3d2618;
    --ink-soft: #7b5d4a;
    --line: rgba(61, 38, 24, 0.12);
    --brand: #f29c63;
    --brand-deep: #db7136;
    --accent: #ffd489;
    --surface: rgba(255, 250, 245, 0.82);
    --shadow: 0 24px 80px rgba(175, 101, 43, 0.14);
    --panel-bg-strong: rgba(255, 253, 250, 0.88);
    --panel-border-strong: rgba(169, 84, 44, 0.1);
    --shadow-soft: 0 22px 48px rgba(61, 38, 24, 0.08);
    --map-pin-fill: #fffaf4;
    --map-pin-stroke: #db7136;
    --map-active-fill: #d88b52;
    --map-active-stroke: #ffd489;
    --map-label-text: #3d2618;
    --map-label-halo: #fffaf4;
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --app-viewport-height: 100dvh;
    --site-header-height: 4.5rem;
}

* {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

html {
    color-scheme: light;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top right, rgba(255, 212, 137, 0.45), transparent 30%),
        radial-gradient(circle at left center, rgba(242, 156, 99, 0.18), transparent 35%),
        linear-gradient(180deg, #fffaf4 0%, #fbe9d9 100%);
    color: var(--ink);
    font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
    line-height: 1.5;
}

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

img {
    max-width: 100%;
}

button,
input {
    font: inherit;
}

.shell {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.shell--wide {
    width: min(1380px, calc(100% - 2rem));
}

.shell--edge {
    width: calc(100% - 1.5rem);
    max-width: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(18px);
    background: rgba(255, 248, 240, 0.82);
    border-bottom: 1px solid rgba(61, 38, 24, 0.08);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: var(--site-header-height);
    padding: 0;
    gap: 1rem;
}

.site-header__spacer {
    display: none;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.brand__mark {
    display: inline-grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
    color: white;
}

.header-search {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    margin: 0;
    min-width: 0;
    max-width: 38rem;
    padding: 0.3rem 0.4rem 0.3rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(61, 38, 24, 0.08);
    box-shadow: 0 16px 36px rgba(106, 62, 33, 0.08);
}

.header-search .location-autocomplete {
    flex: 1;
    min-width: 0;
}

.header-search input[name="location"] {
    flex: 1;
    width: 100%;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
}

.header-search input[name="location"]:focus {
    outline: none;
}

.header-search button {
    padding: 0.65rem 0.9rem;
}

.site-header--with-search {
    background: rgba(255, 252, 248, 0.94);
}

.site-header--with-search .site-header__inner {
    display: grid;
    grid-template-columns: 1fr minmax(18rem, 38rem) 1fr;
    align-items: center;
    gap: 1rem;
}

.site-header--with-search .brand {
    justify-self: start;
}

.site-header--with-search .header-search {
    grid-column: 2;
    width: 100%;
    max-width: none;
}

.site-header--with-search .site-header__spacer {
    display: block;
    min-height: 1px;
}

.site-nav {
    display: flex;
    gap: 1.25rem;
    color: var(--ink-soft);
    white-space: nowrap;
}

.site-footer {
    margin-top: 2rem;
    border-top: 1px solid rgba(61, 38, 24, 0.08);
    background: rgba(255, 248, 240, 0.7);
}

.site-footer__inner {
    padding: 1.35rem 0 1.75rem;
}

.site-footer__inner p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.95rem;
    text-align: center;
}

.eyebrow {
    margin: 0 0 0.75rem;
    color: var(--brand-deep);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: inherit;
    line-height: 1.05;
}

h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    max-width: 11ch;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
}

h3 {
    font-size: 1.35rem;
}

button,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 0;
    border-radius: 999px;
    padding: 0.9rem 1.2rem;
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
    color: white;
    font-weight: 700;
    cursor: pointer;
}

.button--secondary {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--ink);
}

.section {
    padding: 0 0 4rem;
}

.text-link {
    font-weight: 700;
    color: var(--brand-deep);
}

.location-autocomplete {
    position: relative;
    min-width: 0;
}

.location-autocomplete__menu {
    position: absolute;
    z-index: 40;
    top: calc(100% + 0.45rem);
    left: 0;
    right: 0;
    display: grid;
    gap: 0.15rem;
    max-height: min(21rem, 70vh);
    overflow-y: auto;
    padding: 0.35rem;
    border: 1px solid rgba(61, 38, 24, 0.12);
    border-radius: 8px;
    background: rgba(255, 253, 250, 0.98);
    box-shadow: 0 18px 42px rgba(61, 38, 24, 0.16);
}

.location-autocomplete__option {
    display: grid;
    justify-content: stretch;
    gap: 0.18rem;
    width: 100%;
    padding: 0.72rem 0.78rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    box-shadow: none;
    text-align: left;
}

.location-autocomplete__option:hover,
.location-autocomplete__option--active {
    background: rgba(61, 38, 24, 0.06);
}

.location-autocomplete__option span,
.location-autocomplete__option small {
    display: block;
    overflow-wrap: anywhere;
}

.location-autocomplete__option span {
    font-weight: 800;
}

.location-autocomplete__option small {
    color: var(--ink-soft);
    font-size: 0.82rem;
    font-weight: 700;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 900px) {
    .header-search {
        order: 3;
        width: 100%;
        max-width: none;
    }

    .site-header__inner {
        height: auto;
        flex-wrap: wrap;
        padding: 1rem 0;
    }

    .site-header--with-search .site-header__inner {
        display: flex;
    }

    .site-header__spacer {
        display: none;
    }

}

@media (max-width: 640px) {
    .site-header__inner {
        height: auto;
        gap: 0.75rem;
        padding: 0.85rem 0;
    }

    .brand {
        gap: 0.55rem;
        min-width: 0;
    }

    .brand__mark {
        width: 2.15rem;
        height: 2.15rem;
    }

    .brand__text {
        font-size: 0.98rem;
    }

    h1 {
        font-size: 2.7rem;
    }
}
