/*
    humanoidsforhotels.com
    Airbnb-flavored B2B hospitality directory.
    Manrope + Instrument Serif. Coral / teal / warm off-white.
    No shared vocabulary with any prior Seraphim project stylesheet.
*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Instrument+Serif:ital@0;1&display=swap');

:root {
    --hos-coral: #E5484D;
    --hos-coral-deep: #C93A3E;
    --hos-teal: #12B29A;
    --hos-gold: #F5A524;
    --hos-ink: #1F1F1F;
    --hos-body: #4A4A4A;
    --hos-soft: #F8F5F0;
    --hos-hairline: #E8E2D7;
    --hos-canvas: #FFFFFF;
    --hos-lift: 0 6px 20px -6px rgba(31, 31, 31, 0.14);
    --hos-lift-hover: 0 12px 32px -8px rgba(31, 31, 31, 0.22);
    --hos-radius-sm: 12px;
    --hos-radius: 20px;
    --hos-radius-lg: 32px;
    --hos-pill: 999px;
    --hos-display: "Instrument Serif", "Georgia", serif;
    --hos-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --hos-container: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--hos-sans);
    font-size: 16px;
    line-height: 1.55;
    color: var(--hos-ink);
    background: var(--hos-canvas);
    -webkit-font-smoothing: antialiased;
    position: relative;
}
/* Ornamental serif watermark that lives behind the hero */
.paper-mark {
    position: absolute;
    top: -3rem;
    right: -2rem;
    font-family: var(--hos-display);
    font-style: italic;
    font-size: clamp(18rem, 34vw, 30rem);
    line-height: 0.75;
    color: rgba(229, 72, 77, 0.05);
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.05em;
    z-index: 0;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Container */
.wrap { max-width: var(--hos-container); margin: 0 auto; padding: 0 1.5rem; }

/* Header */
.top-bar {
    background: var(--hos-canvas);
    border-bottom: 1px solid var(--hos-hairline);
    padding: 1.1rem 0;
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: saturate(180%) blur(10px);
    background: rgba(255, 255, 255, 0.92);
}

.top-bar .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    color: var(--hos-coral);
}

.brand-logo .glyph {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: var(--hos-coral);
    color: #fff;
    display: grid;
    place-items: center;
    font-family: var(--hos-display);
    font-style: italic;
    font-size: 1.15rem;
    box-shadow: var(--hos-lift);
}

.brand-logo .wordmark {
    color: var(--hos-ink);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.top-nav { display: flex; gap: 1.7rem; align-items: center; }
.top-nav a {
    color: var(--hos-body);
    font-weight: 500;
    font-size: 0.92rem;
    padding: 0.35rem 0;
    border-bottom: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s;
}
.top-nav a:hover { color: var(--hos-ink); border-bottom-color: var(--hos-ink); }

.cta-pill {
    background: var(--hos-coral);
    color: #fff !important;
    padding: 0.7rem 1.4rem !important;
    border-radius: var(--hos-pill);
    font-weight: 600;
    border-bottom: none !important;
    transition: background 0.15s, transform 0.15s;
}
.cta-pill:hover { background: var(--hos-coral-deep); transform: translateY(-1px); }

/* Hero */
.stay-hero {
    padding: 5rem 0 4rem;
    background:
        radial-gradient(ellipse at 15% 100%, rgba(229, 72, 77, 0.09) 0%, transparent 40%),
        radial-gradient(ellipse at 85% 20%, rgba(18, 178, 154, 0.06) 0%, transparent 40%),
        var(--hos-soft);
    border-bottom: 1px solid var(--hos-hairline);
    position: relative;
    overflow: hidden;
}
.stay-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 60% 40% at 15% 30%, rgba(229, 72, 77, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 85% 80%, rgba(18, 178, 154, 0.08) 0%, transparent 55%);
    pointer-events: none;
    opacity: 1;
}
.stay-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(31, 31, 31, 0.035) 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
}
.stay-hero .wrap { position: relative; z-index: 1; }

.stay-hero-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
}

.stay-hero-copy .kicker {
    display: inline-block;
    background: var(--hos-canvas);
    padding: 0.4rem 0.9rem;
    border-radius: var(--hos-pill);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--hos-coral);
    box-shadow: var(--hos-lift);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.stay-hero-copy h1 {
    font-family: var(--hos-display);
    font-weight: 400;
    font-size: clamp(2.6rem, 5.5vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
    color: var(--hos-ink);
}

.stay-hero-copy h1 em {
    font-style: italic;
    color: var(--hos-coral);
    font-weight: 400;
}

.stay-hero-copy .lede {
    font-size: 1.1rem;
    color: var(--hos-body);
    max-width: 520px;
    margin: 0 0 1.8rem;
}

/* Search pill */
.search-pill {
    background: var(--hos-canvas);
    border-radius: var(--hos-pill);
    box-shadow: var(--hos-lift);
    padding: 0.55rem 0.55rem 0.55rem 0;
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr auto;
    align-items: center;
    max-width: 620px;
    border: 1px solid var(--hos-hairline);
}

.search-pill .field {
    padding: 0.6rem 1.3rem;
    border-right: 1px solid var(--hos-hairline);
}

.search-pill .field:last-of-type { border-right: none; }

.search-pill .field-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--hos-ink);
    text-transform: uppercase;
    margin-bottom: 0.15rem;
}

.search-pill .field-value {
    font-size: 0.9rem;
    color: var(--hos-body);
}

.search-btn {
    background: var(--hos-coral);
    color: #fff;
    border: none;
    border-radius: var(--hos-pill);
    padding: 0.85rem 1.7rem;
    font-family: var(--hos-sans);
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: background 0.15s;
}
.search-btn:hover { background: var(--hos-coral-deep); }

.hero-art {
    aspect-ratio: 4/5;
    background:
        linear-gradient(135deg, #FBECE7 0%, #F1E3F4 55%, #E4F1EF 100%);
    border-radius: var(--hos-radius-lg);
    box-shadow: var(--hos-lift-hover);
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
}
.hero-art::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(255, 255, 255, 0.55) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 85%, rgba(229, 72, 77, 0.12) 0%, transparent 45%);
    z-index: 0;
}
.hero-art::after {
    content: "";
    position: absolute;
    top: 1.2rem;
    left: 1.4rem;
    padding: 0.35rem 0.7rem;
    background: var(--hos-canvas);
    color: var(--hos-ink);
    font-family: var(--hos-sans);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: var(--hos-pill);
    box-shadow: var(--hos-lift);
    z-index: 3;
    content: "&middot; live index";
}
.hero-art .glyph-large {
    font-family: var(--hos-display);
    font-style: italic;
    font-size: clamp(6rem, 12vw, 10rem);
    color: rgba(229, 72, 77, 0.65);
    position: relative;
    z-index: 1;
    letter-spacing: -0.06em;
    text-shadow: 0 6px 40px rgba(229, 72, 77, 0.25);
}
.hero-art .glyph-caption {
    position: absolute;
    bottom: 1.4rem;
    left: 1.4rem;
    right: 1.4rem;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    padding: 1rem 1.1rem;
    border-radius: var(--hos-radius-sm);
    font-size: 0.85rem;
    color: var(--hos-ink);
    z-index: 2;
    border-left: 3px solid var(--hos-coral);
    line-height: 1.5;
}

/* Category chips */
.category-strip {
    padding: 2rem 0 0.5rem;
    background: var(--hos-canvas);
    border-bottom: 1px solid var(--hos-hairline);
    overflow-x: auto;
}
.category-strip .wrap {
    display: flex;
    gap: 2.2rem;
    align-items: flex-start;
    padding-bottom: 1.5rem;
}
.category-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    min-width: 78px;
    padding: 0.4rem 0.4rem 0.7rem;
    color: var(--hos-body);
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s;
}
.category-chip:hover, .category-chip.active {
    color: var(--hos-ink);
    border-bottom-color: var(--hos-ink);
}
.category-chip .icon {
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 0.2rem;
}
.category-chip .label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-align: center;
}

/* Section */
section.block { padding: 3.5rem 0; }
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.4rem;
    gap: 2rem;
}
.section-head h2 {
    font-family: var(--hos-display);
    font-weight: 400;
    font-size: clamp(1.9rem, 3.6vw, 2.6rem);
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.1;
    max-width: 32ch;
}
.section-head h2 em { color: var(--hos-coral); font-style: italic; }
.section-head::before {
    content: "";
    position: absolute;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--hos-coral);
    margin-top: -1rem;
}
section.block { position: relative; }
section.block > .wrap > .section-head {
    padding-top: 1.6rem;
    border-top: 1px solid var(--hos-hairline);
}
section.block > .wrap > .section-head::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 4px;
    background: var(--hos-coral);
}
.section-head .see-more {
    color: var(--hos-ink);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-size: 0.92rem;
}

/* Property/platform cards */
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem 1.5rem;
}

.property-card {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    cursor: pointer;
    transition: transform 0.18s;
}
.property-card:hover { transform: translateY(-4px); }
.property-card:hover .property-photo { box-shadow: var(--hos-lift-hover); }

.property-photo {
    aspect-ratio: 1;
    border-radius: var(--hos-radius);
    overflow: hidden;
    box-shadow: var(--hos-lift);
    background: linear-gradient(135deg, #F1E3E4 0%, #E6E4F0 100%);
    display: grid;
    place-items: center;
    color: rgba(31, 31, 31, 0.32);
    font-family: var(--hos-display);
    font-size: 4rem;
    font-style: italic;
    letter-spacing: -0.06em;
    position: relative;
    transition: box-shadow 0.22s, transform 0.22s;
    isolation: isolate;
}
.property-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, transparent 40%);
    z-index: 0;
    transition: opacity 0.35s;
    opacity: 0.6;
}
.property-card:hover .property-photo::before { opacity: 1; }
.property-photo > span:last-child {
    position: relative;
    z-index: 1;
}

.photo-badge {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    background: var(--hos-canvas);
    padding: 0.35rem 0.75rem;
    border-radius: var(--hos-pill);
    font-family: var(--hos-sans);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--hos-ink);
    letter-spacing: 0.02em;
    box-shadow: var(--hos-lift);
}

.photo-heart {
    position: absolute;
    top: 0.7rem;
    right: 0.8rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: grid;
    place-items: center;
    color: var(--hos-coral);
    font-size: 1.1rem;
}

.property-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--hos-ink);
    line-height: 1.3;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: baseline;
}
.property-title .stars {
    font-size: 0.85rem;
    color: var(--hos-ink);
    font-weight: 600;
    white-space: nowrap;
}
.property-role {
    color: var(--hos-body);
    font-size: 0.9rem;
}
.property-price {
    font-size: 0.9rem;
    color: var(--hos-ink);
}
.property-price strong { font-weight: 700; }

/* Feature strip / testimonial band */
.feature-band {
    background: var(--hos-soft);
    padding: 4rem 0;
    border-top: 1px solid var(--hos-hairline);
    border-bottom: 1px solid var(--hos-hairline);
}

.feature-band-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-cell {
    background: var(--hos-canvas);
    padding: 2rem 1.8rem;
    border-radius: var(--hos-radius);
    box-shadow: var(--hos-lift);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.feature-cell .icon-pill {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--hos-soft);
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
}
.feature-cell.--teal .icon-pill { background: rgba(18, 178, 154, 0.14); color: var(--hos-teal); }
.feature-cell.--coral .icon-pill { background: rgba(229, 72, 77, 0.12); color: var(--hos-coral); }
.feature-cell.--gold .icon-pill { background: rgba(245, 165, 36, 0.15); color: var(--hos-gold); }
.feature-cell h3 {
    margin: 0 0 0.3rem;
    font-family: var(--hos-sans);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--hos-ink);
}
.feature-cell p { color: var(--hos-body); margin: 0; font-size: 0.95rem; }

/* Guides */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}
.guide-card {
    background: var(--hos-canvas);
    border: 1px solid var(--hos-hairline);
    border-radius: var(--hos-radius);
    padding: 1.6rem 1.8rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    transition: box-shadow 0.18s, transform 0.18s;
}
.guide-card:hover {
    box-shadow: var(--hos-lift-hover);
    transform: translateY(-3px);
}
.guide-card .guide-kicker {
    color: var(--hos-coral);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.guide-card h3 {
    font-family: var(--hos-display);
    font-weight: 400;
    font-size: 1.35rem;
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: var(--hos-ink);
}
.guide-card p { color: var(--hos-body); margin: 0.2rem 0 0.6rem; font-size: 0.94rem; }
.guide-card .read-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--hos-ink);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: var(--hos-coral);
}

/* Guide article layout */
.guide-article {
    padding: 3rem 0 5rem;
}
.guide-article-wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.guide-hero-label {
    display: inline-block;
    background: rgba(229, 72, 77, 0.12);
    color: var(--hos-coral);
    padding: 0.35rem 0.9rem;
    border-radius: var(--hos-pill);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.guide-article h1 {
    font-family: var(--hos-display);
    font-weight: 400;
    font-size: clamp(2.2rem, 4vw, 3rem);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0 0 0.5rem;
    color: var(--hos-ink);
}
.guide-article .subtitle {
    color: var(--hos-body);
    font-size: 1.1rem;
    margin: 0 0 2rem;
    max-width: 620px;
}
.guide-article h2 {
    font-family: var(--hos-sans);
    font-weight: 800;
    font-size: 1.45rem;
    margin: 2.6rem 0 0.8rem;
    letter-spacing: -0.01em;
    color: var(--hos-ink);
}
.guide-article h3 {
    font-family: var(--hos-sans);
    font-weight: 700;
    font-size: 1.1rem;
    margin: 1.8rem 0 0.5rem;
    color: var(--hos-ink);
}
.guide-article p { font-size: 1.02rem; line-height: 1.7; margin: 0 0 1rem; color: var(--hos-ink); }
.guide-article ul, .guide-article ol { padding-left: 1.4rem; margin: 0 0 1.2rem; }
.guide-article li { padding: 0.15rem 0; font-size: 1rem; line-height: 1.6; color: var(--hos-ink); }
.guide-article a { color: var(--hos-coral); text-decoration: underline; text-underline-offset: 3px; }
.guide-article a:hover { color: var(--hos-coral-deep); }

.pull-quote {
    background: var(--hos-soft);
    border-left: 4px solid var(--hos-coral);
    padding: 1.4rem 1.6rem;
    border-radius: 0 var(--hos-radius) var(--hos-radius) 0;
    margin: 1.8rem 0;
    font-family: var(--hos-display);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--hos-ink);
    line-height: 1.4;
}

.callout {
    background: rgba(18, 178, 154, 0.08);
    border-radius: var(--hos-radius);
    padding: 1.3rem 1.5rem;
    margin: 1.5rem 0;
    border: 1px solid rgba(18, 178, 154, 0.2);
}
.callout .callout-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--hos-teal);
    margin-bottom: 0.4rem;
}
.callout p { margin: 0; }

/* Directory */
.directory-header {
    padding: 3rem 0 1.5rem;
    background: var(--hos-canvas);
}
.directory-header h1 {
    font-family: var(--hos-display);
    font-weight: 400;
    font-size: clamp(2.2rem, 4vw, 3rem);
    letter-spacing: -0.02em;
    margin: 0 0 0.5rem;
}
.directory-header p { color: var(--hos-body); max-width: 640px; margin: 0 0 1.5rem; }

.filter-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding: 0.5rem 0 2rem;
}
.filter-chip {
    padding: 0.55rem 1.1rem;
    background: var(--hos-canvas);
    border: 1px solid var(--hos-hairline);
    border-radius: var(--hos-pill);
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--hos-body);
    cursor: pointer;
    transition: all 0.15s;
}
.filter-chip:hover { border-color: var(--hos-ink); color: var(--hos-ink); }
.filter-chip.active {
    background: var(--hos-ink);
    color: var(--hos-canvas);
    border-color: var(--hos-ink);
}

/* Discreet consulting CTA card, reused across info pages */
.help-cta {
    background: var(--hos-soft);
    border: 1px solid var(--hos-hairline);
    border-radius: var(--hos-radius);
    padding: 1.8rem 2rem;
    margin: 3rem 0 1rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    align-items: center;
}
.help-cta.--inline { grid-template-columns: 1fr auto; }
.help-cta .help-body { }
.help-cta .help-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--hos-coral);
    margin-bottom: 0.35rem;
}
.help-cta h4 {
    font-family: var(--hos-display);
    font-weight: 400;
    font-size: 1.35rem;
    margin: 0 0 0.35rem;
    letter-spacing: -0.01em;
    color: var(--hos-ink);
}
.help-cta p {
    margin: 0;
    color: var(--hos-body);
    font-size: 0.94rem;
    max-width: 520px;
}
.help-cta .help-action {
    display: inline-block;
    padding: 0.85rem 1.4rem;
    background: var(--hos-ink);
    color: #fff;
    border-radius: var(--hos-pill);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s;
}
.help-cta .help-action:hover { background: var(--hos-coral); }
@media (max-width: 700px) {
    .help-cta { grid-template-columns: 1fr; text-align: left; }
}

/* Footer */
.site-foot {
    background: var(--hos-soft);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--hos-hairline);
    color: var(--hos-body);
    font-size: 0.9rem;
}
.foot-cols {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 2rem;
}
.foot-cols h4 {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--hos-ink);
    margin: 0 0 0.8rem;
}
.foot-cols ul { list-style: none; padding: 0; margin: 0; }
.foot-cols li { padding: 0.28rem 0; }
.foot-cols a:hover { color: var(--hos-ink); text-decoration: underline; }
.foot-band {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--hos-hairline);
    font-size: 0.82rem;
    color: var(--hos-body);
}

/* Responsive */
@media (max-width: 900px) {
    .stay-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
    .hero-art { aspect-ratio: 5/4; }
    .feature-band-inner { grid-template-columns: 1fr; }
    .foot-cols { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .search-pill { grid-template-columns: 1fr 1fr; }
    .search-pill .field:nth-of-type(2) { border-right: none; }
    .search-btn { grid-column: 1 / -1; margin: 0.4rem 0.4rem 0; }
    .top-nav { display: none; }
    .top-nav.cta-only { display: flex; }
}
@media (max-width: 600px) {
    .foot-cols { grid-template-columns: 1fr; }
    .foot-band { flex-direction: column; gap: 0.6rem; }
    .stay-hero-copy h1 { font-size: 2.4rem; }
}
