:root {
    --hg-bg: #fffdf8;
    --hg-bg-soft: #f7f1e8;
    --hg-sand: #ead7b8;
    --hg-sand-dark: #d2b27b;
    --hg-navy: #10253f;
    --hg-blue: #17395d;
    --hg-ink: #1d2c3b;
    --hg-muted: #66768a;
    --hg-gold: #c79335;
    --hg-gold-soft: #f0c36a;
    --hg-line: rgba(16, 37, 63, 0.12);
    --hg-white: #ffffff;
    --hg-shadow: 0 24px 60px rgba(16, 37, 63, 0.12);
    --hg-shadow-soft: 0 14px 40px rgba(16, 37, 63, 0.08);
    --hg-radius-xl: 34px;
    --hg-radius-lg: 24px;
    --hg-radius-md: 18px;
    --hg-radius-sm: 14px;
    --hg-container: 1240px;
}

html.hg-menu-open,
html.hg-menu-open body {
    overflow: hidden;
}

body {
    background:
        radial-gradient(circle at top left, rgba(240, 195, 106, 0.14), transparent 24%),
        linear-gradient(180deg, #fffdf8 0%, var(--hg-bg-soft) 26%, #ffffff 100%);
    color: var(--hg-ink);
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

.site-main {
    overflow: hidden;
}

.html-block,
.html-block > .container.py-5 {
    margin: 0 !important;
    padding: 0 !important;
    max-width: none !important;
    width: 100% !important;
}

.html-block {
    background: transparent !important;
    overflow: visible !important;
}

.html-block > .container.py-5 {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

.html-block > .container.py-5 > .hg-page {
    width: 100% !important;
}

.html-block > .container.py-5 > .hg-page > .hg-page-banner,
.html-block > .container.py-5 > .hg-page > .hg-hero {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

.container,
.hg-container {
    width: min(calc(100% - 32px), var(--hg-container));
    margin: 0 auto;
}

.hg-topbar {
    background: var(--hg-navy);
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
}

.hg-topbar-inner,
.hg-topbar-actions,
.hg-navbar,
.hg-nav,
.hg-hero-actions,
.hg-footer-bottom {
    display: flex;
}

.hg-topbar-inner {
    min-height: 42px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.hg-topbar-copy {
    letter-spacing: 0.02em;
}

.hg-topbar-actions {
    gap: 16px;
    align-items: center;
}

.hg-topbar a,
.hg-footer-links a,
.hg-nav a,
.hg-offcanvas-nav a,
.hg-offcanvas-contact a {
    color: inherit;
    text-decoration: none;
}

.hg-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 250, 242, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(16, 37, 63, 0.07);
}

.hg-navbar {
    min-height: 92px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.hg-brand {
    display: inline-flex;
    align-items: center;
}

.hg-brand img {
    width: 190px;
    max-width: 100%;
    display: block;
}

.hg-nav {
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.hg-nav a {
    position: relative;
    color: var(--hg-navy);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 12px 0;
}

.hg-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    background: linear-gradient(135deg, var(--hg-gold-soft), var(--hg-gold));
    transition: transform 0.2s ease;
}

.hg-nav a:hover::after,
.hg-nav a.is-active::after {
    transform: scaleX(1);
}

.hg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hg-btn:hover {
    transform: translateY(-2px);
}

.hg-btn-primary {
    color: var(--hg-navy);
    background: linear-gradient(135deg, var(--hg-gold-soft), var(--hg-gold));
    box-shadow: 0 18px 32px rgba(199, 147, 53, 0.26);
}

.hg-btn-secondary {
    color: var(--hg-navy);
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(16, 37, 63, 0.14);
}

.hg-nav-cta {
    display: inline-flex;
    align-items: center;
}

.hg-menu-toggle {
    display: none;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    border: 1px solid rgba(16, 37, 63, 0.12);
    background: linear-gradient(180deg, #ffffff, #f3efe7);
    box-shadow: var(--hg-shadow-soft);
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.hg-menu-toggle span,
.hg-menu-toggle span::before,
.hg-menu-toggle span::after {
    content: "";
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--hg-navy);
    position: relative;
}

.hg-menu-toggle span::before {
    position: absolute;
    top: -7px;
}

.hg-menu-toggle span::after {
    position: absolute;
    top: 7px;
}

.hg-offcanvas-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 16, 26, 0.54);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
    z-index: 1200;
}

.hg-offcanvas-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.hg-offcanvas {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(100%, 410px);
    background: linear-gradient(180deg, #071824 0%, #10253f 100%);
    color: #fff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
    transform: translateX(100%);
    transition: transform 0.24s ease;
    z-index: 1300;
    display: flex;
    flex-direction: column;
}

.hg-offcanvas.is-open {
    transform: translateX(0);
}

.hg-offcanvas-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 22px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hg-offcanvas-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hg-offcanvas-brand img {
    width: 118px;
    display: block;
}

.hg-offcanvas-brand span {
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
}

.hg-offcanvas-close {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.hg-offcanvas-body {
    padding: 24px 22px 30px;
    overflow-y: auto;
    display: grid;
    gap: 28px;
}

.hg-offcanvas-nav {
    display: grid;
    gap: 8px;
}

.hg-offcanvas-nav a {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    padding: 8px 0;
    color: #fff;
}

.hg-offcanvas-nav a.is-active,
.hg-offcanvas-nav a:hover {
    color: var(--hg-gold-soft);
}

.hg-offcanvas-contact {
    display: grid;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hg-offcanvas-contact-item strong {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

.hg-offcanvas-contact-item a {
    color: #fff;
    font-size: 15px;
}

.hg-page {
    padding-bottom: 90px;
}

.hg-page > .hg-page-banner:first-child,
.hg-page > .hg-hero:first-child {
    margin-top: 0;
}

.hg-section {
    padding: 86px 0;
}

.hg-section--tight {
    padding: 64px 0;
}

.hg-pill,
.hg-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    color: var(--hg-navy);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 12px 24px rgba(16, 37, 63, 0.08);
}

.hg-pill::before,
.hg-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hg-gold-soft), var(--hg-gold));
    box-shadow: 0 0 0 6px rgba(240, 195, 106, 0.18);
}

.hg-hero,
.hg-page-banner {
    position: relative;
    overflow: hidden;
    color: #fff;
}

.hg-hero {
    min-height: 100vh;
    display: grid;
    align-items: center;
}

.hg-page-banner {
    min-height: 420px;
    display: grid;
    align-items: end;
    width: 100%;
    margin: 0;
}

.hg-hero::before,
.hg-page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(8, 18, 31, 0.84), rgba(8, 18, 31, 0.42) 56%, rgba(8, 18, 31, 0.22)),
        var(--hg-hero-image, none) center/cover;
}

.hg-hero-video {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    opacity: 0.58;
}

.hg-hero-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    min-width: 100%;
    height: 56.25vw;
    min-height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hg-hero-inner,
.hg-page-banner-inner,
.hg-split,
.hg-checkout-grid,
.hg-band-grid,
.hg-gallery-layout {
    position: relative;
    z-index: 1;
    display: grid;
}

.hg-hero-inner {
    width: min(calc(100% - 32px), var(--hg-container));
    margin: 0 auto;
    padding: 108px 0 72px;
    align-items: end;
    gap: 34px;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 420px);
}

.hg-page-banner-inner {
    width: 100%;
    padding: 148px 0 56px;
    gap: 18px;
}

.hg-page-banner .hg-page-banner-content {
    width: min(calc(100% - 32px), var(--hg-container));
    margin: 0 auto;
    max-width: 780px;
}

.hg-page-banner .hg-page-banner-content h1,
.hg-page-banner .hg-page-banner-content p,
.hg-page-banner .hg-page-banner-content .hg-btn {
    position: relative;
    z-index: 2;
}

.hg-hero-copy h1,
.hg-page-banner h1,
.hg-section-head h2,
.hg-copy h2,
.hg-copy h3,
.hg-card h3,
.hg-plan h3,
.hg-band-copy h2,
.hg-footer-grid h3,
.hg-summary h3 {
    margin: 0;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.hg-hero-copy h1 {
    color: #fff;
    font-size: clamp(3rem, 5.8vw, 5.8rem);
    max-width: 10.5ch;
    margin-top: 18px;
}

.hg-page-banner h1 {
    color: #fff;
    font-size: clamp(2.4rem, 4.2vw, 4.3rem);
    max-width: 12ch;
    margin-top: 18px;
}

.hg-section-head h2,
.hg-copy h2,
.hg-band-copy h2 {
    font-size: clamp(2rem, 3.4vw, 3.5rem);
    color: var(--hg-navy);
}

.hg-card h3,
.hg-plan h3,
.hg-copy h3,
.hg-summary h3,
.hg-footer-grid h3 {
    font-size: clamp(1.25rem, 2vw, 1.9rem);
    color: var(--hg-navy);
}

.hg-summary h3,
.hg-band-copy h2,
.hg-band-copy p,
.hg-summary p {
    color: #fff;
}

.hg-hero-copy p,
.hg-page-banner p,
.hg-section-head p,
.hg-copy p,
.hg-card p,
.hg-plan p,
.hg-field span,
.hg-checkout-note,
.hg-footer-brand p,
.hg-footer-links li,
.hg-stat span {
    margin: 0;
    font-size: 1rem;
    line-height: 1.8;
}

.hg-hero-copy p,
.hg-page-banner p,
.hg-summary p,
.hg-summary .hg-field span {
    color: rgba(255, 255, 255, 0.9);
}

.hg-page-banner p,
.hg-hero-copy .hg-subtitle {
    max-width: 42rem;
    margin-top: 18px;
}

.hg-hero-actions {
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hg-mini-grid,
.hg-card-grid,
.hg-stat-grid,
.hg-plan-grid,
.hg-gallery-stack,
.hg-grid-2,
.hg-grid-3 {
    display: grid;
    gap: 18px;
}

.hg-mini-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 32px;
}

.hg-mini-card,
.hg-summary,
.hg-card,
.hg-plan,
.hg-gallery-card,
.hg-room-card,
.hg-band,
.hg-checkout-panel,
.hg-stat-grid {
    border-radius: var(--hg-radius-lg);
    border: 1px solid var(--hg-line);
    box-shadow: var(--hg-shadow);
}

.hg-mini-card {
    padding: 20px;
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
}

.hg-mini-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
}

.hg-mini-card span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.94rem;
    line-height: 1.65;
}

.hg-summary {
    padding: 28px;
    background: rgba(8, 20, 34, 0.78);
    border-color: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(20px);
}

.hg-field-grid {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.hg-field {
    padding: 15px 16px;
    border-radius: 16px;
    background: var(--hg-white);
    border: 1px solid rgba(16, 37, 63, 0.08);
}

.hg-summary .hg-field {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.hg-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--hg-blue);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hg-summary .hg-field label {
    color: rgba(255, 255, 255, 0.64);
}

.hg-field span {
    color: #2e4056;
    font-weight: 500;
}

.hg-section-head {
    display: grid;
    gap: 18px;
    margin-bottom: 34px;
    max-width: 920px;
}

.hg-section-head h2 {
    max-width: 13ch;
}

.hg-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hg-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hg-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hg-card,
.hg-room-card,
.hg-gallery-card {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
}

.hg-card img,
.hg-room-card img,
.hg-gallery-card img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.hg-card img {
    height: 300px;
}

.hg-room-card img {
    height: 260px;
}

.hg-gallery-card img {
    min-height: 360px;
    height: 100%;
}

.hg-copy {
    padding: 24px;
}

.hg-copy > * + * {
    margin-top: 14px;
}

.hg-stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    background: rgba(255, 255, 255, 0.92);
}

.hg-stat {
    padding: 26px 24px;
    border-right: 1px solid var(--hg-line);
}

.hg-stat:last-child {
    border-right: 0;
}

.hg-stat strong {
    display: block;
    margin-bottom: 8px;
    color: var(--hg-navy);
    font-size: 1.28rem;
    font-weight: 800;
    line-height: 1.3;
}

.hg-band {
    padding: 34px;
    background:
        linear-gradient(135deg, rgba(16, 37, 63, 0.92), rgba(23, 57, 93, 0.72)),
        var(--hg-band-image, none) center/cover;
    color: #fff;
}

.hg-booking-shell {
    position: relative;
    z-index: 2;
    margin-top: -18px;
    padding-bottom: 24px;
}

.hg-booking-bar {
    display: grid;
    grid-template-columns: 180px 180px minmax(280px, 1fr) 210px;
    align-items: end;
    gap: 12px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(16, 37, 63, 0.08);
    box-shadow: 0 24px 54px rgba(16, 37, 63, 0.16);
    backdrop-filter: blur(18px);
}

.hg-booking-field {
    display: grid;
    gap: 10px;
}

.hg-booking-label {
    display: block;
    color: var(--hg-navy);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hg-stepper {
    display: grid;
    grid-template-columns: 46px 1fr 46px;
    align-items: center;
    min-height: 60px;
    border-radius: 16px;
    border: 1px solid rgba(16, 37, 63, 0.08);
    overflow: hidden;
    background: #fff;
}

.hg-stepper-btn {
    height: 100%;
    border: 0;
    background: #eef2f6;
    color: var(--hg-blue);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.hg-stepper input,
.hg-period-grid input {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--hg-navy);
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

.hg-stepper input {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0 10px;
}

.hg-period-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.hg-period-grid input {
    min-height: 60px;
    border-radius: 16px;
    border: 1px solid rgba(16, 37, 63, 0.08);
    padding: 0 16px;
    background: #fff;
    font-size: 0.96rem;
    font-weight: 600;
}

.hg-booking-submit {
    min-height: 60px;
}

.hg-band-grid {
    align-items: center;
    gap: 24px;
    grid-template-columns: 1fr 1fr;
}

.hg-band .hg-card-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.hg-band .hg-card {
    padding: 22px;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.12);
}

.hg-band .hg-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
}

.hg-split,
.hg-checkout-grid {
    gap: 28px;
    grid-template-columns: 1fr 1fr;
}

.hg-checkout-panel {
    padding: 28px;
    background: rgba(255, 255, 255, 0.96);
}

.hg-checkout-panel .hg-field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hg-checkout-panel .hg-field.full {
    grid-column: 1 / -1;
}

.hg-plan-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hg-plan {
    padding: 26px;
    background: rgba(255, 255, 255, 0.95);
}

.hg-plan.is-featured {
    background: linear-gradient(180deg, #fffef7 0%, #f7ead2 100%);
    border-color: rgba(199, 147, 53, 0.22);
}

.hg-tag {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(16, 37, 63, 0.06);
    color: var(--hg-blue);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hg-plan.is-featured .hg-tag {
    background: rgba(199, 147, 53, 0.14);
    color: #8b6318;
}

.hg-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 14px;
    line-height: 1.5;
}

.hg-summary-row:last-child {
    border-bottom: 0;
}

.hg-site-footer {
    background: var(--hg-navy);
    color: rgba(255, 255, 255, 0.82);
    padding: 72px 0 26px;
}

.hg-footer-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.hg-footer-brand img {
    width: 190px;
    display: block;
    margin-bottom: 18px;
}

.hg-footer-grid h3 {
    color: #fff;
    margin-bottom: 16px;
}

.hg-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.hg-footer-links li,
.hg-footer-brand p {
    color: rgba(255, 255, 255, 0.78);
}

.hg-footer-bottom {
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: space-between;
    gap: 12px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 13px;
}

@media (max-width: 1366px) {
    .hg-nav-desktop,
    .hg-nav-cta {
        display: none;
    }

    .hg-menu-toggle {
        display: inline-flex;
    }

    .hg-navbar {
        min-height: 84px;
    }

    .hg-hero-inner,
    .hg-band-grid,
    .hg-split,
    .hg-checkout-grid {
        grid-template-columns: 1fr;
    }

    .hg-hero-inner {
        padding-top: 92px;
    }

    .hg-summary {
        max-width: 620px;
    }

    .hg-card-grid,
    .hg-plan-grid,
    .hg-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hg-booking-bar {
        grid-template-columns: 1fr 1fr;
    }

    .hg-booking-period,
    .hg-booking-submit {
        grid-column: 1 / -1;
    }

    .hg-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .hg-topbar-inner,
    .hg-topbar-actions,
    .hg-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .hg-topbar {
        padding: 8px 0;
    }

    .hg-hero,
    .hg-page-banner {
        min-height: auto;
    }

    .hg-hero-inner {
        padding: 78px 0 56px;
    }

    .hg-page-banner-inner {
        padding: 120px 0 42px;
    }

    .hg-card-grid,
    .hg-plan-grid,
    .hg-grid-2,
    .hg-grid-3,
    .hg-footer-grid,
    .hg-mini-grid,
    .hg-checkout-panel .hg-field-grid,
    .hg-booking-bar,
    .hg-period-grid {
        grid-template-columns: 1fr;
    }

    .hg-stat-grid {
        grid-template-columns: 1fr;
    }

    .hg-stat {
        border-right: 0;
        border-bottom: 1px solid var(--hg-line);
    }

    .hg-stat:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 760px) {
    .container,
    .hg-container {
        width: min(calc(100% - 24px), var(--hg-container));
    }

    .hg-page-banner .hg-page-banner-content {
        width: min(calc(100% - 24px), var(--hg-container));
    }

    .hg-brand img {
        width: 154px;
    }

    .hg-navbar {
        min-height: 76px;
    }

    .hg-btn {
        width: 100%;
    }

    .hg-hero-copy h1 {
        font-size: clamp(2.4rem, 12vw, 3.5rem);
        max-width: 8.8ch;
    }

    .hg-page-banner h1 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .hg-section-head h2,
    .hg-copy h2,
    .hg-band-copy h2 {
        font-size: clamp(1.7rem, 7vw, 2.5rem);
        max-width: 100%;
    }

    .hg-section {
        padding: 64px 0;
    }

    .hg-page {
        padding-bottom: 72px;
    }

    .hg-band,
    .hg-summary,
    .hg-checkout-panel {
        padding: 22px;
    }

    .hg-booking-bar {
        padding: 16px;
        border-radius: 20px;
    }

    .hg-copy {
        padding: 20px;
    }

    .hg-card img {
        height: 240px;
    }

    .hg-room-card img {
        height: 220px;
    }

    .hg-gallery-card img {
        min-height: 260px;
    }

    .hg-offcanvas {
        width: 100%;
    }
}
