:root {
    --cream: #ecdec7;
    --red: #b82040;
    --white: #ffffff;
    --anthracite: #3d3d3d;
    --black: #000000;
    --line: rgba(61, 61, 61, 0.18);
    --max: 1240px;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    color: var(--anthracite);
    background: var(--white);
    line-height: 1.6;
}
a {
    color: var(--red);
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}
a:hover,
a:focus {
    color: var(--black);
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
.heb-hero-container {
    background-color: rgba(184,32,64,0.6);
}
.heb-shell {
    width: min(calc(100% - 40px), var(--max));
    margin: 0 auto;
}
.heb-skip-link {
    position: absolute;
    left: -9999px;
    top: 12px;
    background: var(--black);
    color: var(--white);
    padding: 10px 14px;
    z-index: 9999;
}
.heb-skip-link:focus {
    left: 12px;
}
.heb-topbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(61, 61, 61, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}
.heb-topbar .heb-nav-inner {
    width: min(calc(100% - 40px), var(--max));
    margin: 0 auto;
    min-height: 84px;
    display: grid;
    grid-template-columns: 220px 1fr auto;
    align-items: center;
    gap: 20px;
}
.heb-logo {
    width: 210px;
}
.heb-nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 26px;
}
.heb-nav-links a,
.heb-nav-brand a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}
.heb-nav-links a:hover,
.heb-nav-links a:focus {
    color: var(--cream);
}
.heb-nav-cta {
    display: flex;
    gap: 12px;
}
.heb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border: 1px solid currentColor;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: 0.2s ease;
}
.heb-btn:hover,
.heb-btn:focus {
    transform: translateY(-1px);
}
.heb-btn-accent {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}
.heb-btn-accent:hover,
.heb-btn-accent:focus {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
}
.heb-btn-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}
.heb-btn-light:hover,
.heb-btn-light:focus {
    background: var(--white);
    color: var(--black);
}
.heb-btn-dark {
    background: var(--anthracite);
    color: var(--white);
    border-color: var(--anthracite);
}
.heb-btn-dark:hover,
.heb-btn-dark:focus {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
}
.heb-btn-full {
    width: 100%;
}
.heb-hero {
    background: linear-gradient(135deg, rgba(61, 61, 61, 0.98), rgba(61, 61, 61, 0.88)),
        linear-gradient(0deg, rgba(184, 32, 64, 0.15), rgba(184, 32, 64, 0.15));
    color: var(--white);
    padding: 88px 0 72px;
}
.heb-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
    gap: 42px;
    align-items: stretch;
}
.heb-kicker,
.heb-overline,
.heb-panel-label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.82rem;
    font-weight: 800;
    margin: 0 0 14px;
}
.heb-kicker,
.heb-panel-label {
    color: var(--cream);
}
.heb-overline {
    color: var(--red);
}
.heb-hero h1,
.heb-section h2 {
    line-height: 1.05;
    margin: 0 0 18px;
}
.heb-hero h1 {
    font-size: clamp(2.5rem, 7vw, 5.3rem);
    max-width: 10ch;
}
.heb-section h2 {
    font-size: clamp(2rem, 4.2vw, 3.25rem);
}
.heb-lead {
    font-size: 1.15rem;
    max-width: 58ch;
    color: rgba(255, 255, 255, 0.9);
}
.heb-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 26px 0 24px;
}
.heb-trust-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.heb-trust-list li {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
}
.heb-hero-panel {
    display: flex;
}
.heb-panel-box {
    width: 100%;
    align-self: end;
    background: var(--cream);
    color: var(--black);
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 30px;
}
.heb-panel-box h2 {
    font-size: clamp(1.55rem, 3vw, 2.25rem);
    margin-bottom: 14px;
}
.heb-feature-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 24px;
}
.heb-feature-mini-grid div {
    border-top: 1px solid rgba(0, 0, 0, 0.18);
    padding-top: 14px;
}
.heb-feature-mini-grid strong,
.heb-mini-facts strong,
.heb-reason span {
    display: block;
}
.heb-feature-mini-grid span,
.heb-mini-facts span {
    color: rgba(0, 0, 0, 0.72);
}
.heb-section {
    padding: 84px 0;
}
.heb-intro {
    background: #f9f6f1;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.heb-intro-grid,
.heb-split-grid,
.heb-final-cta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
    align-items: start;
}
.heb-card-grid {
    display: grid;
    gap: 22px;
    margin-top: 28px;
}
.heb-card-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.heb-card-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.heb-card,
.heb-room-card,
.heb-map-card,
.heb-note-box,
.heb-action-panel,
.heb-reason {
    border: 1px solid var(--line);
    padding: 28px;
    background: var(--white);
}
.heb-rooms {
    background: var(--cream);
}
.heb-card h3,
.heb-room-card h3,
.heb-map-card h3,
.heb-reason h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.35rem;
}
.heb-note-box {
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}
.heb-check-list {
    padding-left: 18px;
}
.heb-mini-facts {
    display: grid;
    gap: 16px;
    margin-top: 22px;
    border-top: 1px solid var(--line);
    padding-top: 22px;
}
.heb-reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.heb-reason span {
    color: var(--red);
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
    font-size: 0.94rem;
}
.heb-final-cta {
    background: var(--anthracite);
    color: var(--white);
}
.heb-action-panel {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.16);
}
.heb-action-panel .heb-small {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 0;
}
.heb-footer-wrap {
    background: var(--black);
    color: var(--white);
    padding: 48px 0 120px;
}
.heb-footer-columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.heb-footer-column {
    padding-top: 10px;
}
.heb-footer-column h3 {
    margin-top: 0;
    color: var(--cream);
}
.heb-footer-column p,
.heb-footer-base p {
    margin: 0 0 12px;
}
.heb-footer-column a {
    color: var(--white);
}
.heb-footer-bottom {
    padding-top: 24px;
}
.heb-footer-base {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}
.heb-small {
    font-size: 0.92rem;
}
.heb-cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.94);
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px 0;
}
.heb-cookie-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
}
.heb-cookie-actions {
    display: flex;
    gap: 12px;
}
.heb-cookie-banner.is-hidden {
    display: none;
}
.heb-sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--red);
    grid-template-columns: repeat(3, 1fr);
}
.heb-sticky-mobile-cta a {
    color: var(--white);
    text-decoration: none;
    text-align: center;
    padding: 14px 10px;
    font-weight: 800;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.heb-sticky-mobile-cta a:last-child {
    border-right: 0;
}
.ccm-block-content {
    max-width: none;
}
@media (max-width: 1080px) {
    .heb-hero-grid,
    .heb-intro-grid,
    .heb-split-grid,
    .heb-final-cta-grid,
    .heb-card-grid-4,
    .heb-card-grid-3,
    .heb-reasons-grid,
    .heb-footer-columns,
    .heb-cookie-content {
        grid-template-columns: 1fr 1fr;
    }
    .heb-topbar .heb-nav-inner {
        grid-template-columns: 1fr;
        padding: 16px 0;
    }
    .heb-nav-links {
        justify-content: flex-start;
    }
    .heb-nav-cta {
        flex-wrap: wrap;
    }
    .heb-trust-list {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 767px) {
    .heb-hero,
    .heb-section {
        padding: 64px 0;
    }
    .heb-hero-grid,
    .heb-intro-grid,
    .heb-split-grid,
    .heb-final-cta-grid,
    .heb-card-grid-4,
    .heb-card-grid-3,
    .heb-reasons-grid,
    .heb-footer-columns,
    .heb-cookie-content {
        grid-template-columns: 1fr;
    }
    .heb-hero h1 {
        max-width: none;
    }
    .heb-feature-mini-grid {
        grid-template-columns: 1fr;
    }
    .heb-note-box,
    .heb-footer-base {
        display: block;
    }
    .heb-nav-links {
        gap: 16px;
    }
    .heb-btn {
        width: 100%;
    }
    .heb-nav-cta,
    .heb-cookie-actions,
    .heb-cta-row {
        width: 100%;
    }
    .heb-cookie-banner {
        padding-bottom: 76px;
    }
    .heb-sticky-mobile-cta {
        display: grid;
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .heb-btn {
        transition: none;
    }
}
