:root {
    --bg: #eef8fc;
    --bg-accent: #def2fb;
    --surface: rgba(255, 255, 255, 0.38);
    --surface-soft: rgba(255, 255, 255, 0.55);
    --line: rgba(34, 56, 74, 0.14);
    --line-strong: rgba(34, 56, 74, 0.22);
    --glass-border: rgba(16, 33, 46, 0.18);
    --glass-highlight: rgba(255, 255, 255, 0.95);
    --liquid-sheen: rgba(255, 255, 255, 0.6);
    --text: #0b2233;
    --muted: #456273;
    --accent: #168bd0;
    --accent-strong: #006ca8;
    --danger: #a8524b;
    --shadow-lg: 0 30px 80px rgba(0, 104, 160, 0.18);
    --shadow-md: 0 16px 38px rgba(0, 104, 160, 0.1);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    letter-spacing: 0.01em;
    background:
        radial-gradient(circle at 12% 18%, rgba(31, 198, 210, 0.12), transparent 38%),
        radial-gradient(circle at 78% 10%, rgba(124, 197, 255, 0.12), transparent 42%),
        linear-gradient(180deg, var(--bg-accent) 0%, var(--bg) 32%, #ffffff 100%);
    position: relative;
    overflow-x: hidden;
}

body.has-modal-open,
body.has-flash-toast-open {
    overflow: hidden;
}

body::before,
body::after {
    content: '';
    position: fixed;
    z-index: 0;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.25;
    pointer-events: none;
}

body::before {
    top: -140px;
    left: -120px;
    background: radial-gradient(circle, rgba(85, 214, 225, 0.45), transparent 65%);
}

body::after {
    bottom: -180px;
    right: -140px;
    background: radial-gradient(circle, rgba(106, 196, 255, 0.42), transparent 70%);
}

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

button,
input,
select,
textarea {
    font: inherit;
}

dt,
dd,
p,
ul,
ol {
    margin: 0;
}

.page-shell {
    max-width: none;
    margin: 0;
    padding: 24px 0 44px;
    position: relative;
    z-index: 1;
}

.page-shell--home {
    padding-top: 0;
}

.page-shell--standard {
    padding-top: 0;
}

.page-body-shell {
    width: min(1240px, calc(100% - clamp(28px, 5vw, 72px)));
    margin: 34px auto 0;
    display: grid;
    gap: 24px;
}

.page-body-shell--home {
    margin-top: 0;
}

.topbar,
.panel {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.3));
    border: 1px solid var(--glass-border);
    outline: 1px solid rgba(255, 255, 255, 0.55);
    outline-offset: -2px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(22px) saturate(150%);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
    position: relative;
}

.hero-nav {
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    z-index: 5;
    padding-inline: clamp(18px, 3vw, 44px);
}

.hero-nav .topbar {
    background: transparent;
    border: 0;
    outline: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding-inline: 0;
}

.hero-nav .topbar::before,
.hero-nav .topbar::after {
    display: none;
}

.hero-nav .brand-copy strong,
.hero-nav .brand-copy small,
.hero-nav .nav-link,
.hero-nav .ghost-link,
.hero-nav .button-primary {
    color: #fff;
}

.hero-nav .brand-copy small {
    color: rgba(255, 255, 255, 0.7);
}

.hero-nav .nav-link:hover,
.hero-nav .nav-link.is-active {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.hero-nav .ghost-link {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.12);
}

.hero-nav .button-primary {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: none;
}

.topbar::before,
.panel::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    border: 1px solid rgba(16, 33, 46, 0.08);
    pointer-events: none;
}

.topbar::after,
.panel::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.25), transparent 60%);
    pointer-events: none;
}

h1,
h2,
h3 {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}

.lead,
.section-head p,
.summary-header p,
.info-note,
.mini-note,
.footer-copy,
.submit-note,
.note-card p,
.amount-card p,
.info-card p,
.info-block p,
.reason-item p,
.simple-item p,
.summary-subline,
.overview-grid small,
.field > span,
.compact-field > span,
.summary-list dt,
.meta-list dt {
    color: var(--muted);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.topbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 16px 18px;
    border-radius: 22px;
    margin-inline: 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.brand-mark img,
.hero-brand__mark img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-mark--logo,
.hero-brand__mark--logo {
    overflow: hidden;
    padding: 2px;
    background: #fff;
    color: transparent;
}

.brand-mark--logo img,
.hero-brand__mark--logo img {
    border-radius: 6px;
}

.brand-copy {
    display: grid;
    gap: 2px;
}

.brand-copy strong {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.brand-copy small {
    color: var(--muted);
    font-size: 0.84rem;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
}

.nav-link {
    padding: 10px 12px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: color 160ms ease, background-color 160ms ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--text);
    background: rgba(22, 125, 127, 0.08);
}

.top-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.ghost-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 14px;
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.35));
    color: var(--muted);
    font-weight: 600;
}

.panel {
    padding: clamp(22px, 2.4vw, 32px);
    border-radius: var(--radius-xl);
}

h1,
h2,
h3,
.amount-card strong,
.summary-accommodation,
.pricing-row span,
.overview-grid strong {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.01em;
}

.eyebrow {
    color: var(--accent-strong);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.lead,
.section-head p,
.summary-header p,
.info-note,
.mini-note,
.footer-copy,
.submit-note,
.note-card p,
.amount-card p,
.info-card p,
.info-block p,
.reason-item p,
.simple-item p,
.summary-subline,
.overview-grid small,
.field > span,
.compact-field > span,
.summary-list dt,
.meta-list dt {
    color: var(--muted);
    letter-spacing: 0.005em;
    line-height: 1.65;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        background-color 160ms ease,
        border-color 160ms ease,
        color 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #fff;
    box-shadow: 0 10px 24px rgba(22, 125, 127, 0.18);
}

.button-secondary {
    background: #fff;
    border-color: var(--line);
    color: var(--text);
}

.button-compact {
    min-height: 42px;
    padding-inline: 16px;
}

.text-link {
    color: var(--accent-strong);
    font-weight: 700;
}

.pill,
.info-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid rgba(22, 125, 127, 0.12);
    border-radius: 999px;
    background: rgba(22, 125, 127, 0.07);
    color: var(--accent-strong);
    font-size: 0.82rem;
    font-weight: 700;
}

.marketing-page,
.content-page {
    display: grid;
    gap: 24px;
    margin-top: 24px;
    padding-inline: 0;
}

.marketing-page--home {
    margin-top: 0;
    gap: 36px;
}

.content-page--inner,
.booking-page--inner,
.confirmation-page--inner {
    margin-top: 0;
}

.home-hero-grid,
.home-feature-grid,
.cards-grid,
.dual-section,
.contact-page-grid,
.booking-page,
.confirmation-page,
.overview-grid {
    display: grid;
    gap: 26px;
    row-gap: 28px;
}

.home-hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
}

.hero-card,
.quick-book-card,
.reasons-panel,
.feature-panel,
.province-panel,
.page-intro,
.info-card,
.info-block,
.booking-main,
.booking-sidebar,
.confirmation-main,
.sidebar-panel,
.site-footer {
    display: grid;
    gap: 22px;
}

.hero-scene {
    position: relative;
    overflow: hidden;
    background: var(--hero-image, url('/images/ezal/home-hero.jpg')) center center / cover no-repeat;
    min-height: 100svh;
}

.hero-scene--page {
    min-height: clamp(440px, 70svh, 640px);
}

.hero-scene::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(4, 20, 32, 0.74) 0%, rgba(5, 28, 43, 0.52) 34%, rgba(5, 28, 43, 0.44) 58%, rgba(4, 20, 32, 0.8) 100%),
        radial-gradient(circle at 18% 22%, rgba(0, 0, 0, 0.24), transparent 34%),
        radial-gradient(circle at 82% 24%, rgba(8, 40, 62, 0.22), transparent 38%);
    pointer-events: none;
}

.hero-scene__overlay {
    position: relative;
    z-index: 1;
    min-height: inherit;
    padding: 24px clamp(22px, 4vw, 48px) 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;
}

.hero-scene--page .hero-scene__overlay {
    padding-bottom: 42px;
}

.hero-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(14px, 2vw, 26px);
    color: #fff;
}

.hero-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.hero-brand__mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(14, 132, 145, 0.92), rgba(8, 95, 104, 0.92));
    color: #fff;
    font-weight: 800;
    font-size: 1.35rem;
    box-shadow: 0 12px 28px rgba(3, 21, 34, 0.24);
}

.hero-brand__copy {
    display: block;
}

.hero-brand__copy strong {
    font-size: 1.02rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 8px rgba(4, 19, 29, 0.32);
}

.hero-nav-links {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: clamp(2px, 0.7vw, 10px);
    min-width: 0;
}

.hero-nav-link {
    padding: 8px 10px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.96);
    font-size: clamp(0.84rem, 0.98vw, 0.94rem);
    font-weight: 700;
    white-space: nowrap;
    text-shadow: 0 2px 8px rgba(4, 19, 29, 0.28);
    transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.hero-nav-link:hover,
.hero-nav-link.is-active {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.hero-header__actions {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.hero-header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    color: #fff;
    font-weight: 700;
    font-size: 0.94rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-header__cta {
    background: rgba(255, 255, 255, 0.16);
}

.hero-stage {
    width: min(1040px, 100%);
    margin: auto auto 0;
    display: grid;
    justify-items: center;
    gap: 14px;
    text-align: center;
    color: #fff;
}

.hero-stage--page {
    width: min(1120px, 100%);
    margin: auto 0 0;
    justify-items: start;
    text-align: left;
}

.hero-stage__eyebrow {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero-stage h1 {
    color: #fff;
    max-width: none;
    font-size: clamp(3rem, 5.5vw, 4.7rem);
    line-height: 1;
    text-wrap: balance;
    text-shadow: 0 8px 22px rgba(4, 19, 29, 0.46);
}

.hero-stage__headline span {
    display: block;
    white-space: nowrap;
}

.hero-stage__lead {
    max-width: 38ch;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1rem, 2vw, 1.28rem);
    line-height: 1.55;
    text-shadow: 0 2px 10px rgba(4, 19, 29, 0.4);
}

.hero-stage--page h1 {
    max-width: 16ch;
    font-size: clamp(2.35rem, 4.2vw, 4rem);
    line-height: 1.04;
}

.hero-stage--page .hero-stage__lead {
    max-width: 58ch;
}

.hero-stage--page .hero-actions {
    justify-content: flex-start;
}

.hero-stage .button-secondary {
    background: rgba(255, 255, 255, 0.92);
    border-color: transparent;
}

.hero-search-wrap {
    width: min(1520px, calc(100% - 28px));
    margin: auto auto 0;
    display: grid;
    gap: 16px;
}

.hero-search-bar {
    display: grid;
    grid-template-columns: minmax(140px, 1.05fr) minmax(160px, 1.2fr) minmax(200px, 1.28fr) minmax(200px, 1.22fr) minmax(140px, 0.9fr) 74px;
    gap: 8px;
    align-items: stretch;
    padding: 8px;
    border-radius: 36px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 251, 0.92));
    border: 1px solid rgba(21, 43, 58, 0.12);
    box-shadow: 0 18px 42px rgba(11, 33, 47, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-search-segment {
    display: grid;
    gap: 8px;
    min-width: 0;
    padding: 10px 12px;
    align-content: center;
    border: 1px solid rgba(21, 43, 58, 0.08);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(240, 246, 249, 0.94), rgba(255, 255, 255, 0.9));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.hero-search-segment > span {
    color: #334f62;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-transform: uppercase;
    padding-inline: 4px;
}

.hero-search-control {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid rgba(32, 55, 72, 0.14);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 252, 0.98));
    color: #142635;
    font-size: 0.92rem;
    font-weight: 500;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.96),
        0 8px 18px rgba(17, 53, 76, 0.05);
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease,
        background-color 160ms ease,
        transform 160ms ease;
}

.hero-search-control::placeholder {
    color: rgba(63, 85, 102, 0.72);
}

select.hero-search-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6.5 8 10.5 12 6.5' stroke='%23365063' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px 16px;
    padding-right: 38px;
    text-overflow: ellipsis;
}

.hero-search-control[type='date'] {
    color-scheme: light;
}

.hero-search-control[type='date']::-webkit-calendar-picker-indicator {
    opacity: 0.78;
    cursor: pointer;
}

.hero-search-control:focus {
    outline: none;
    border-color: rgba(15, 123, 132, 0.48);
    background: #fff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        0 0 0 4px rgba(15, 123, 132, 0.12),
        0 12px 22px rgba(17, 53, 76, 0.09);
    transform: translateY(-1px);
}

.hero-search-segment--pair {
    gap: 8px;
}

.hero-search-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 0;
    gap: 8px;
}

.hero-search-button {
    align-self: center;
    justify-self: center;
    width: 62px;
    height: 62px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #11345d, #2a4c89);
    color: #fff;
    box-shadow: 0 14px 28px rgba(17, 52, 93, 0.28);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.hero-search-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 30px rgba(17, 52, 93, 0.34);
}

.hero-search-button__icon {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
}

.hero-search-button__label {
    display: none;
    font-weight: 700;
    white-space: nowrap;
}

.hero-preview-card[hidden] {
    display: none !important;
}

.hero-preview-card {
    width: min(1240px, 100%);
    display: grid;
    gap: 18px;
    padding: 22px;
    border-radius: 32px;
    background: linear-gradient(145deg, rgba(7, 27, 42, 0.6), rgba(12, 39, 59, 0.42));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 56px rgba(4, 20, 32, 0.24);
    backdrop-filter: blur(18px) saturate(145%);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
    color: #fff;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.hero-preview-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-preview-card .eyebrow,
.hero-preview-item span {
    color: rgba(227, 240, 248, 0.78);
}

.hero-preview-card__intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: end;
}

.hero-preview-card__copy {
    display: grid;
    gap: 10px;
}

.hero-preview-card__copy h2 {
    color: #fff;
    font-size: clamp(1.6rem, 2.2vw, 2rem);
    line-height: 1.06;
}

.hero-preview-card__lead,
.hero-preview-card__note {
    color: rgba(227, 240, 248, 0.86);
    line-height: 1.7;
}

.hero-preview-card__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.hero-preview-card__button.button-secondary {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.hero-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.hero-preview-item {
    display: grid;
    gap: 8px;
    padding: 16px 18px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
}

.hero-preview-item span {
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-preview-item strong {
    color: #fff;
    font-size: 1rem;
    line-height: 1.5;
}

.hero-card h1 {
    max-width: 14ch;
    font-size: clamp(2.1rem, 3.3vw, 3.4rem);
    line-height: 1.12;
    text-wrap: balance;
    margin-bottom: 8px;
}

.hero-card .lead {
    margin-bottom: 8px;
}

.hero-actions {
    margin-top: 6px;
}

.page-intro h1,
.intro-stack h1,
.confirmation-main h1 {
    max-width: 16ch;
    font-size: clamp(2.05rem, 3.6vw, 3.6rem);
    line-height: 1.12;
    text-wrap: balance;
}

.quick-book-card h2,
.feature-panel h2,
.reasons-panel h2,
.summary-header h2,
.section-head h2,
.info-card h2,
.info-card h3,
.info-block h2 {
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    line-height: 1.1;
}

.hero-card .lead {
    max-width: 44ch;
    font-size: 1rem;
}

.quick-book-card .lead {
    font-size: 0.98rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 6px;
}

.hero-card--horizontal .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.hero-image-panel {
    padding: 0;
    overflow: hidden;
}

.page-hero-media {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.2));
}

.page-hero-media--compact {
    border-radius: var(--radius-md);
}

.page-hero-image,
.page-hero-media img {
    display: block;
    width: 100%;
    height: clamp(220px, 36vw, 360px);
    object-fit: cover;
}

.page-hero-media--compact img {
    height: clamp(180px, 30vw, 260px);
}

.quick-book-bar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
    align-items: end;
}

.quick-book-card--horizontal {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
    gap: 24px;
}

.quick-book-card__copy {
    display: grid;
    gap: 12px;
}

.quick-book-card--horizontal .quick-book-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quick-book-card--horizontal .compact-field--wide {
    grid-column: span 2;
}

.quick-book-card--horizontal .compact-submit {
    grid-column: 3;
}

.quick-book-card--slim {
    padding: clamp(18px, 2.4vw, 26px);
    gap: 16px;
}

.quick-book-card--slim .quick-book-card__copy {
    gap: 8px;
}

.quick-book-card--slim h2 {
    margin-bottom: 2px;
}

.quick-book-card--slim .mini-note {
    font-size: 0.9rem;
}

.quick-book-bar--slim {
    gap: 12px 16px;
}

.quick-book-bar--slim .compact-field > span {
    font-size: 0.82rem;
}

.quick-book-bar--slim .compact-field input,
.quick-book-bar--slim .compact-field select {
    min-height: 44px;
    padding: 10px 12px;
}

.quick-book-bar--slim .compact-field textarea {
    min-height: 44px;
    padding: 10px 12px;
    resize: vertical;
}

.quick-book-bar--slim .compact-submit {
    min-height: 44px;
    padding-inline: 16px;
}

.quick-book-bar--embedded {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px 14px;
}

.quick-book-bar--embedded .compact-field--wide {
    grid-column: span 2;
}

.quick-book-bar--embedded .compact-submit {
    grid-column: 1 / -1;
    justify-self: end;
    width: clamp(200px, 22vw, 240px);
    min-height: 46px;
    box-shadow: 0 12px 24px rgba(12, 42, 62, 0.2);
}

.booking-bar--stretched {
    border-radius: 999px;
    padding: 16px 18px 18px;
}

.quick-book-bar--stretched {
    padding: 10px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(16, 33, 46, 0.08);
}

.quick-book-bar--stretched .compact-field {
    background: transparent;
}

.quick-book-bar--stretched .compact-field input,
.quick-book-bar--stretched .compact-field select,
.quick-book-bar--stretched .compact-field textarea {
    border-radius: 999px;
    background: rgba(245, 249, 252, 0.9);
    border: 1px solid rgba(16, 33, 46, 0.1);
}

.section-copy {
    display: grid;
    gap: 10px;
    max-width: 64ch;
}

.reasons-grid,
.cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 26px;
    column-gap: 20px;
}

.reasons-panel {
    gap: 20px;
}

.reason-item,
.simple-item,
.province-item,
.overview-grid article {
    padding: 20px 22px;
    border: 1px solid var(--glass-border);
    outline: 1px solid rgba(255, 255, 255, 0.55);
    outline-offset: -2px;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.28));
    backdrop-filter: blur(20px) saturate(160%);
}

.reason-item {
    display: grid;
    gap: 10px;
    position: relative;
    overflow: hidden;
    margin-bottom: 6px;
}

.reason-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0)),
        radial-gradient(circle at top left, rgba(17, 123, 132, 0.12), transparent 55%);
    opacity: 0.7;
    pointer-events: none;
}

.reason-item strong,
.reason-item p {
    position: relative;
    z-index: 1;
}

.reason-item strong {
    font-size: 1.1rem;
}

.reason-item p {
    font-size: 1rem;
    line-height: 1.7;
}

.reason-item strong,
.simple-item strong,
.province-item strong,
.pricing-row strong,
.summary-list dd,
.meta-list dd,
.overview-grid span {
    font-weight: 700;
}

.item-header {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.icon-badge {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(17, 123, 132, 0.2), rgba(17, 123, 132, 0.08));
    border: 1px solid rgba(17, 123, 132, 0.2);
    box-shadow: 0 10px 20px rgba(17, 53, 76, 0.12);
}

.icon-badge img {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.6));
}

.home-feature-grid,
.dual-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-page-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    align-items: start;
}

.contact-form-panel,
.contact-side-panel {
    display: grid;
    gap: 20px;
}

.contact-channel-list {
    display: grid;
    gap: 14px;
}

.contact-channel {
    display: grid;
    gap: 10px;
    padding: 18px 20px;
    border: 1px solid var(--glass-border);
    outline: 1px solid rgba(255, 255, 255, 0.55);
    outline-offset: -2px;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.28));
    backdrop-filter: blur(20px) saturate(160%);
}

.contact-channel__copy {
    display: grid;
    gap: 8px;
}

.contact-channel__copy strong {
    font-size: 1.2rem;
    line-height: 1.15;
}

.simple-list,
.pricing-list,
.stack-list,
.steps-list,
.bullet-list {
    display: grid;
    gap: 12px;
}

.simple-item {
    display: grid;
    gap: 6px;
}

.pricing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    border-top: 1px solid var(--line);
}

.pricing-row:first-child {
    padding-top: 0;
    border-top: 0;
}

.pricing-row div {
    display: grid;
    gap: 4px;
}

.pricing-row span {
    font-size: 1.35rem;
    color: var(--accent-strong);
}

.compact-pricing .pricing-row {
    padding-block: 12px;
}

.province-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    row-gap: 22px;
}

.province-item {
    display: grid;
    gap: 6px;
}

.province-item span {
    color: var(--muted);
    font-size: 0.92rem;
}

.province-item small {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.55;
}

.shop-page {
    display: grid;
    gap: 28px;
}

.shop-market-strip,
.shop-filter-panel,
.shop-cart-panel,
.shop-flow-section {
    display: grid;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow-md);
}

.shop-market-strip {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    padding: 26px;
}

.shop-market-strip--shop {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
}

.shop-market-copy {
    display: grid;
    gap: 8px;
}

.shop-market-copy h2 {
    max-width: 18ch;
    font-size: 2rem;
    line-height: 1.08;
}

.shop-market-stats {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    gap: 8px;
}

.shop-market-stats span,
.shop-product-card__body > div:first-child span,
.shop-vendor-card__body > span {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid rgba(0, 128, 200, 0.16);
    border-radius: 8px;
    color: var(--accent-strong);
    background: #eef8fc;
    font-size: 0.78rem;
    font-weight: 700;
}

.shop-layout {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    align-items: start;
    gap: 20px;
}

.shop-layout--detail {
    grid-template-columns: 1fr;
}

.shop-layout--detail .shop-product-area {
    width: 100%;
    min-width: 0;
}

.shop-filter-panel {
    position: sticky;
    top: 18px;
    gap: 16px;
    padding: 20px;
}

.shop-flow-section {
    gap: 22px;
    padding: 26px;
}

.shop-filter-count {
    padding-top: 14px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.45;
}

.shop-filter-count span {
    color: var(--text);
    font-weight: 800;
}

.shop-product-area,
.shop-shop-section,
.shop-vendor-grid,
.shop-product-card__body,
.shop-cart-list {
    display: grid;
    gap: 18px;
}

.shop-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
}

.shop-section-head h2 {
    margin-top: 4px;
    font-size: 1.65rem;
    line-height: 1.1;
}

.shop-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.shop-product-showcase {
    display: grid;
    gap: 16px;
}

.shop-product-showcase + .shop-product-showcase {
    padding-top: 8px;
}

.shop-section-head--compact {
    align-items: flex-end;
}

.shop-section-head--compact h3 {
    margin: 4px 0 0;
    font-size: clamp(1.2rem, 1.8vw, 1.55rem);
    line-height: 1.15;
}

.shop-layout--detail .shop-product-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.shop-product-grid--featured {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.shop-product-grid--compact {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.shop-product-card,
.shop-vendor-card {
    display: grid;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.shop-product-card[hidden] {
    display: none;
}

.shop-product-card figure,
.shop-vendor-card figure {
    margin: 0;
}

.shop-product-card img,
.shop-vendor-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-product-card figure {
    aspect-ratio: 4 / 3;
}

.shop-vendor-card figure {
    aspect-ratio: 16 / 10;
}

.shop-product-card__body {
    grid-template-rows: minmax(132px, auto) auto auto;
    padding: 18px;
}

.shop-product-card h3,
.shop-vendor-card__body h3 {
    margin: 8px 0 6px;
    font-size: 1.08rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.shop-product-card p,
.shop-vendor-card p,
.shop-flow-list {
    color: var(--muted);
    line-height: 1.6;
}

.shop-product-card dl,
.shop-vendor-card dl,
.shop-detail-facts {
    display: grid;
    gap: 8px;
    margin: 0;
}

.shop-product-card dl div,
.shop-vendor-card dl div,
.shop-detail-facts div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-top: 8px;
    border-top: 1px solid var(--line);
}

.shop-product-card dt,
.shop-vendor-card dt,
.shop-detail-facts dt {
    color: var(--muted);
    font-size: 0.82rem;
}

.shop-product-card dd,
.shop-vendor-card dd,
.shop-detail-facts dd {
    max-width: 62%;
    color: var(--text);
    font-weight: 700;
    text-align: right;
}

.shop-product-card__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.shop-product-card__actions strong {
    font-size: 1.15rem;
    color: var(--accent-strong);
}

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

.shop-vendor-card__body {
    display: grid;
    gap: 12px;
    padding: 18px;
}

.shop-cart-panel {
    gap: 18px;
    padding: 22px;
}

.shop-cart-empty {
    padding: 16px;
    border: 1px dashed var(--line-strong);
    border-radius: 8px;
    color: var(--muted);
    background: var(--surface-soft);
    line-height: 1.55;
}

.shop-cart-item {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-soft);
}

.shop-cart-item img {
    width: 68px;
    height: 68px;
    border-radius: 8px;
    object-fit: cover;
}

.shop-cart-item__copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.shop-cart-item__copy strong,
.shop-cart-item__copy span {
    overflow-wrap: anywhere;
}

.shop-cart-item__copy span {
    color: var(--muted);
    font-size: 0.9rem;
}

.shop-cart-item__controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    font-weight: 800;
}

.shop-cart-quantity-button {
    min-height: 36px;
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--text);
    background: #fff;
    cursor: pointer;
}

.shop-cart-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.shop-cart-summary span {
    color: var(--muted);
}

.shop-cart-summary strong {
    font-size: 1.5rem;
    color: var(--accent-strong);
}

.button.is-disabled {
    opacity: 0.58;
    cursor: not-allowed;
}

.shop-flow-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding-left: 22px;
}

.shop-flow-list li::marker {
    color: var(--accent-strong);
    font-weight: 800;
}

.home-marketplace-panel {
    display: grid;
    gap: 22px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow-lg);
}

.home-marketplace-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.home-marketplace-grid article {
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-soft);
}

.home-marketplace-grid span {
    color: var(--accent-strong);
    font-size: 0.78rem;
    font-weight: 800;
}

.home-marketplace-grid strong {
    font-size: 1.02rem;
}

.home-marketplace-grid p {
    color: var(--muted);
    line-height: 1.55;
}

@media (max-width: 1120px) {
    .shop-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .shop-market-strip,
    .shop-layout,
    .shop-layout--detail,
    .shop-product-grid,
    .shop-vendor-grid,
    .home-marketplace-grid {
        grid-template-columns: 1fr;
    }

    .shop-filter-panel {
        position: static;
    }

    .shop-market-stats {
        grid-template-columns: repeat(3, minmax(0, max-content));
    }
}

@media (max-width: 560px) {
    .shop-market-strip,
    .shop-filter-panel,
    .shop-cart-panel,
    .shop-flow-section,
    .shop-product-card__body,
    .shop-vendor-card__body,
    .home-marketplace-panel,
    .home-marketplace-grid article {
        padding: 16px;
    }

    .shop-market-stats {
        grid-template-columns: 1fr;
    }

    .shop-section-head,
    .shop-product-card__actions,
    .shop-cart-summary {
        flex-direction: column;
        align-items: stretch;
    }

    .shop-cart-item {
        grid-template-columns: 56px minmax(0, 1fr);
    }

    .shop-cart-item img {
        width: 56px;
        height: 56px;
    }

    .shop-cart-item__controls {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }

    .shop-product-card dl div,
    .shop-vendor-card dl div,
    .shop-detail-facts div {
        flex-direction: column;
        gap: 4px;
    }

    .shop-product-card dd,
    .shop-vendor-card dd,
    .shop-detail-facts dd {
        max-width: 100%;
        text-align: left;
    }
}

.content-section {
    display: grid;
    gap: 18px;
}

.stack-item {
    display: grid;
    gap: 8px;
    padding: 18px 20px;
    border-left: 3px solid rgba(22, 125, 127, 0.22);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.28));
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.steps-list,
.bullet-list {
    padding-left: 20px;
}

.steps-list li,
.bullet-list li {
    color: var(--muted);
    line-height: 1.7;
}

.site-footer {
    margin-top: 24px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.booking-page {
    grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
    align-items: start;
    margin-top: 24px;
}

.confirmation-page {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    align-items: start;
    margin-top: 24px;
}

.intro-stack {
    display: grid;
    gap: 12px;
    margin-bottom: 8px;
}

.info-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.info-chips--muted .info-chip {
    background: rgba(34, 56, 74, 0.05);
    border-color: rgba(34, 56, 74, 0.08);
    color: var(--muted);
}

.notice {
    padding: 14px 16px;
    border: 1px solid var(--glass-border);
    outline: 1px solid rgba(255, 255, 255, 0.55);
    outline-offset: -2px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4));
    line-height: 1.6;
}

.notice-error {
    border-color: rgba(168, 82, 75, 0.2);
    color: #7e4943;
    background: rgba(255, 246, 245, 0.92);
}

.flash-toast-stack {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 24px;
    transition: opacity 220ms ease;
}

.flash-toast-stack.is-dismissed {
    opacity: 0;
}

.flash-toast-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 20, 29, 0.18);
    backdrop-filter: blur(16px) saturate(85%);
    -webkit-backdrop-filter: blur(16px) saturate(85%);
}

.flash-toast {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: 14px;
    width: min(460px, calc(100vw - 32px));
    padding: 20px 20px 18px 18px;
    border: 1px solid rgba(15, 123, 132, 0.2);
    outline: 1px solid rgba(255, 255, 255, 0.6);
    outline-offset: -2px;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(247, 253, 251, 0.98), rgba(255, 255, 255, 0.92));
    box-shadow: 0 28px 70px rgba(11, 33, 47, 0.2);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    animation: flash-toast-in 320ms cubic-bezier(0.22, 1, 0.36, 1);
    transition: opacity 220ms ease, transform 220ms ease;
}

.flash-toast.is-dismissed {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
}

.flash-toast__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(15, 123, 132, 0.18), rgba(8, 95, 104, 0.08));
    border: 1px solid rgba(15, 123, 132, 0.18);
    box-shadow: 0 10px 22px rgba(17, 53, 76, 0.08);
}

.flash-toast__icon img {
    width: 20px;
    height: 20px;
}

.flash-toast__copy {
    display: grid;
    gap: 6px;
}

.flash-toast__eyebrow {
    color: var(--accent-strong);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.flash-toast__copy strong {
    font-size: 1.32rem;
    line-height: 1.2;
    color: var(--text);
}

.flash-toast__message {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.6;
}

.flash-toast__meta {
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.4;
}

.flash-toast__close {
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid rgba(32, 55, 72, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.flash-toast__close:hover {
    background: #fff;
    color: var(--text);
    transform: translateY(-1px);
}

@keyframes flash-toast-in {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes booking-form-focus {
    0% {
        transform: translateY(8px);
        box-shadow:
            0 0 0 0 rgba(15, 123, 132, 0),
            0 12px 24px rgba(17, 53, 76, 0.08);
    }

    100% {
        transform: translateY(0);
        box-shadow:
            0 0 0 4px rgba(15, 123, 132, 0.12),
            0 18px 36px rgba(17, 53, 76, 0.12);
    }
}

.booking-form {
    display: grid;
    gap: 20px;
}

.section-block {
    display: grid;
    gap: 18px;
    padding: 24px;
    border: 1px solid rgba(24, 48, 64, 0.14);
    outline: 1px solid rgba(255, 255, 255, 0.68);
    outline-offset: -2px;
    border-radius: var(--radius-lg);
    background: linear-gradient(150deg, rgba(240, 247, 251, 0.94), rgba(255, 255, 255, 0.84));
    backdrop-filter: blur(18px) saturate(165%);
    box-shadow: 0 16px 34px rgba(17, 53, 76, 0.08);
}

#booking-form {
    scroll-margin-top: 28px;
}

#booking-form:target {
    border-color: rgba(15, 123, 132, 0.32);
    background: linear-gradient(150deg, rgba(235, 247, 248, 0.98), rgba(255, 255, 255, 0.88));
    box-shadow:
        0 0 0 4px rgba(15, 123, 132, 0.12),
        0 18px 36px rgba(17, 53, 76, 0.12);
    animation: booking-form-focus 680ms ease;
}

.section-block--quiet {
    background: linear-gradient(150deg, rgba(233, 243, 248, 0.96), rgba(255, 255, 255, 0.86));
}

.section-head {
    display: grid;
    gap: 8px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.field,
.compact-field {
    display: grid;
    gap: 10px;
}

.compact-field--wide,
.compact-submit {
    grid-column: 1 / -1;
}

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

.field > span,
.compact-field > span {
    font-size: 0.84rem;
    font-weight: 700;
    color: #365063;
    letter-spacing: 0.02em;
}

.field input,
.field select,
.field textarea,
.compact-field input,
.compact-field select {
    width: 100%;
    min-height: 50px;
    padding: 13px 15px;
    border: 1px solid rgba(32, 55, 72, 0.18);
    border-radius: var(--radius-sm);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 252, 0.98));
    color: #1a2d3d;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        0 8px 18px rgba(17, 53, 76, 0.05);
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease,
        background-color 160ms ease;
}

.compact-field input,
.compact-field select {
    min-height: 46px;
}

.field textarea {
    min-height: 120px;
    resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder,
.compact-field input::placeholder {
    color: rgba(63, 85, 102, 0.72);
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.compact-field input:focus,
.compact-field select:focus {
    outline: none;
    border-color: rgba(15, 123, 132, 0.52);
    background: #fff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.96),
        0 0 0 4px rgba(15, 123, 132, 0.12),
        0 10px 20px rgba(17, 53, 76, 0.08);
}

.field small {
    font-size: 0.82rem;
    line-height: 1.45;
}

.field small:not(.helper-text) {
    color: var(--danger);
}

.helper-text {
    color: var(--muted);
}

.submit-row,
.actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.booking-modal[hidden] {
    display: none !important;
}

.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: grid;
    place-items: center;
    padding: 20px;
}

.booking-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 22, 33, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.booking-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(760px, calc(100% - 24px));
    max-height: min(88vh, 920px);
    overflow: auto;
    display: grid;
    gap: 20px;
    padding: 24px;
    border-radius: 28px;
    border: 1px solid rgba(24, 48, 64, 0.14);
    outline: 1px solid rgba(255, 255, 255, 0.68);
    outline-offset: -2px;
    background: linear-gradient(150deg, rgba(240, 247, 251, 0.98), rgba(255, 255, 255, 0.92));
    box-shadow: 0 28px 80px rgba(7, 22, 33, 0.24);
}

.booking-modal__header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.booking-modal__close {
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(32, 55, 72, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    font-weight: 700;
    cursor: pointer;
}

.booking-modal__body {
    display: grid;
    gap: 18px;
}

.booking-modal__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
}

.booking-sidebar,
.sidebar-panel {
    position: sticky;
    top: 24px;
}

.summary-topline {
    display: grid;
    gap: 4px;
}

.summary-accommodation {
    font-size: 1.3rem;
}

.summary-subline {
    font-size: 0.95rem;
}

.amount-card,
.note-card {
    display: grid;
    gap: 10px;
    padding: 22px;
    border: 1px solid var(--glass-border);
    outline: 1px solid rgba(255, 255, 255, 0.55);
    outline-offset: -2px;
    border-radius: var(--radius-lg);
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.32));
    backdrop-filter: blur(20px) saturate(170%);
}

.amount-card strong {
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.amount-card span,
.note-card span {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
}

.summary-list,
.meta-list {
    display: grid;
    gap: 0;
}

.summary-list > div,
.meta-list > div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
}

.summary-list > div:first-child,
.meta-list > div:first-child {
    padding-top: 0;
    border-top: 0;
}

.summary-list dd,
.meta-list dd {
    max-width: 58%;
    text-align: right;
    color: var(--text);
    line-height: 1.5;
}

.summary-supported {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.summary-supported span {
    color: var(--text);
    font-weight: 700;
}

.summary-hidden {
    display: none;
}

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

.overview-grid article {
    display: grid;
    gap: 6px;
}

.overview-grid strong {
    font-size: 1.05rem;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 280ms ease, transform 280ms ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .topbar,
    .home-hero-grid,
    .home-feature-grid,
    .contact-page-grid,
    .booking-page,
    .confirmation-page,
    .dual-section,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .main-nav,
    .top-actions,
    .footer-links {
        justify-content: flex-start;
    }

    .booking-sidebar,
    .sidebar-panel {
        position: static;
    }

    .hero-header {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .hero-nav-links,
    .hero-header__actions {
        justify-content: flex-start;
    }

    .hero-stage {
        margin-inline: 0;
        justify-items: start;
        text-align: left;
    }

    .hero-stage h1,
    .hero-stage__lead {
        max-width: 100%;
    }

    .hero-search-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        padding: 14px;
        border-radius: 28px;
    }

    .hero-search-segment {
        padding: 14px 16px;
        border-radius: 20px;
    }

    .hero-search-button {
        grid-column: 1 / -1;
        width: 100%;
        height: 56px;
        border-radius: 999px;
    }

    .hero-search-button__label {
        display: inline;
    }

    .hero-preview-card__intro {
        grid-template-columns: 1fr;
    }

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

    .hero-preview-card__actions {
        justify-content: flex-start;
    }

    .page-body-shell {
        width: min(1240px, calc(100% - 28px));
        margin-top: 28px;
    }
}

@media (max-width: 980px) {
    .hero-scene {
        min-height: auto;
    }

    .hero-scene__overlay {
        padding-top: 18px;
    }

    .hero-stage__headline span {
        display: inline;
        white-space: normal;
    }

    .hero-stage__headline span:not(:last-child) {
        margin-right: 0.24em;
    }
}

@media (max-width: 820px) {
    .quick-book-bar,
    .reasons-grid,
    .cards-grid,
    .province-list,
    .overview-grid,
    .form-grid,
    .hero-preview-grid {
        grid-template-columns: 1fr;
    }

    .summary-list dd,
    .meta-list dd {
        max-width: 100%;
        text-align: left;
    }

    .summary-list > div,
    .meta-list > div,
    .pricing-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-search-bar,
    .hero-search-pair {
        grid-template-columns: 1fr;
    }

    .page-body-shell {
        width: calc(100% - 20px);
        margin-top: 20px;
    }

}

@media (max-width: 680px) {
    .page-shell {
        padding: 16px 14px 32px;
    }

    .page-shell--home {
        padding: 0 0 32px;
    }

    .panel {
        padding: 18px 16px;
        border-radius: 22px;
    }

    .topbar {
        padding: 14px;
    }

    .hero-card h1,
    .page-intro h1,
    .intro-stack h1,
    .confirmation-main h1 {
        max-width: 100%;
        font-size: clamp(2rem, 12vw, 3rem);
    }

    .hero-card {
        padding: 0;
    }

    .hero-actions,
    .submit-row,
    .actions,
    .top-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ghost-link,
    .button {
        width: 100%;
    }

    .booking-modal {
        padding: 12px;
    }

    .booking-modal__dialog {
        width: 100%;
        max-height: calc(100vh - 24px);
        padding: 18px 16px;
        border-radius: 22px;
    }

    .booking-modal__actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .flash-toast-stack {
        padding: 14px;
    }

    .flash-toast {
        width: min(100%, 420px);
        grid-template-columns: auto 1fr;
    }

    .flash-toast__close {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .hero-scene__overlay {
        padding: 16px 14px 18px;
    }

    .hero-stage h1 {
        font-size: clamp(2rem, 10vw, 3.2rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    .flash-toast {
        animation: none;
        transition: none;
    }
}

/* Clean visual pass */
:root {
    --bg: #eef8fc;
    --bg-accent: #dff2fb;
    --surface: #ffffff;
    --surface-soft: #f7fbfe;
    --line: rgba(7, 67, 105, 0.12);
    --line-strong: rgba(7, 67, 105, 0.22);
    --glass-border: rgba(7, 67, 105, 0.12);
    --text: #0b2233;
    --muted: #456273;
    --accent: #168bd0;
    --accent-strong: #006ca8;
    --action: #20a8e5;
    --action-strong: #087fc7;
    --shadow-lg: 0 24px 54px rgba(0, 104, 160, 0.12);
    --shadow-md: 0 14px 32px rgba(0, 104, 160, 0.1);
    --radius-xl: 8px;
    --radius-lg: 8px;
    --radius-md: 8px;
    --radius-sm: 8px;
}

*,
*::before,
*::after {
    letter-spacing: 0 !important;
}

body {
    background: linear-gradient(180deg, var(--bg-accent) 0%, var(--bg) 46%, #ffffff 100%);
}

body::before,
body::after,
.topbar::before,
.topbar::after,
.panel::before,
.panel::after,
.reason-item::before {
    display: none;
}

h1,
h2,
h3,
.lead,
.section-head p,
.summary-header p,
.info-note,
.mini-note,
.footer-copy,
.submit-note,
.note-card p,
.amount-card p,
.info-card p,
.info-block p,
.reason-item p,
.simple-item p,
.summary-subline,
.overview-grid small,
.field > span,
.compact-field > span,
.summary-list dt,
.meta-list dt {
    text-shadow: none;
}

.topbar,
.panel,
.reason-item,
.simple-item,
.province-item,
.overview-grid article,
.contact-channel,
.stack-item,
.notice,
.section-block,
.amount-card,
.note-card,
.booking-modal__dialog,
.flash-toast {
    border-radius: 8px;
    border-color: var(--line);
    outline: 0;
    background: var(--surface);
    box-shadow: var(--shadow-md);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.panel {
    box-shadow: var(--shadow-lg);
}

.reasons-panel .reason-item,
.feature-panel .simple-item,
.province-panel .province-item {
    padding: 16px 0;
    border-width: 1px 0 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.reasons-panel .reason-item:first-child,
.feature-panel .simple-item:first-child,
.province-panel .province-item:first-child {
    border-top: 0;
}

.button,
.ghost-link,
.nav-link,
.hero-nav-link,
.hero-header__cta,
.pill,
.info-chip,
.brand-mark,
.hero-brand__mark,
.icon-badge,
.hero-search-bar,
.hero-search-segment,
.hero-search-control,
.hero-search-button,
.hero-preview-card,
.hero-preview-item,
.field input,
.field select,
.field textarea,
.compact-field input,
.compact-field select,
.booking-modal__close,
.flash-toast__close {
    border-radius: 8px;
}

.button-primary,
.hero-search-button {
    background: linear-gradient(135deg, var(--action), var(--action-strong));
    box-shadow: 0 12px 28px rgba(0, 128, 200, 0.22);
}

.button-secondary,
.ghost-link {
    background: #fff;
}

.text-link {
    color: var(--accent-strong);
    text-decoration: underline;
    text-decoration-color: rgba(0, 128, 200, 0.28);
    text-underline-offset: 4px;
}

.hero-scene {
    min-height: clamp(640px, 92svh, 820px);
}

.hero-scene--page {
    min-height: 560px;
}

.hero-scene::before {
    background:
        linear-gradient(180deg, rgba(5, 18, 20, 0.72) 0%, rgba(5, 18, 20, 0.44) 42%, rgba(5, 18, 20, 0.78) 100%),
        linear-gradient(90deg, rgba(5, 18, 20, 0.4), rgba(5, 18, 20, 0.08) 52%, rgba(5, 18, 20, 0.34));
}

.hero-scene__overlay {
    padding: 22px clamp(22px, 4vw, 54px) 30px;
}

.hero-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
}

.hero-brand__mark {
    width: 38px;
    height: 38px;
    font-size: 1.08rem;
    background: rgba(8, 124, 116, 0.92);
}

.hero-brand__copy strong {
    font-size: 0.98rem;
}

.hero-nav-links {
    gap: 6px;
}

.hero-nav-link {
    padding: 8px 10px;
    font-size: 0.88rem;
}

.hero-nav-link:hover,
.hero-nav-link.is-active,
.hero-header__cta {
    background: rgba(255, 255, 255, 0.16);
}

.hero-stage {
    gap: 16px;
}

.hero-stage h1 {
    max-width: 16ch;
    font-size: 4.25rem;
    line-height: 0.98;
}

.hero-stage--page h1 {
    max-width: 18ch;
    font-size: 3.45rem;
}

.hero-stage__eyebrow {
    font-size: 0.78rem;
}

.hero-stage__lead {
    max-width: 46ch;
    font-size: 1.08rem;
}

.hero-search-wrap {
    width: min(1380px, calc(100% - 18px));
}

.hero-search-bar {
    padding: 10px;
    gap: 10px;
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(255, 255, 255, 0.76);
    box-shadow: 0 20px 44px rgba(6, 18, 20, 0.2);
}

.hero-search-segment {
    gap: 7px;
    padding: 10px 12px;
    background: #f8faf9;
    border-color: rgba(17, 39, 44, 0.1);
    box-shadow: none;
}

.hero-search-segment > span,
.eyebrow {
    letter-spacing: 0 !important;
}

.hero-search-control {
    min-height: 44px;
    background: #fff;
    box-shadow: none;
}

.hero-preview-card {
    background: rgba(9, 28, 29, 0.92);
    box-shadow: 0 24px 54px rgba(5, 18, 20, 0.22);
}

.hero-preview-item {
    background: rgba(255, 255, 255, 0.08);
}

.page-body-shell {
    gap: 28px;
}

.home-feature-grid,
.dual-section,
.contact-page-grid,
.booking-page,
.confirmation-page {
    gap: 22px;
}

.reasons-grid,
.cards-grid,
.province-list,
.overview-grid {
    gap: 14px;
}

.quick-book-card h2,
.feature-panel h2,
.reasons-panel h2,
.summary-header h2,
.section-head h2,
.info-card h2,
.info-card h3,
.info-block h2 {
    font-size: 1.65rem;
}

.page-intro h1,
.intro-stack h1,
.confirmation-main h1 {
    font-size: 3rem;
}

.icon-badge {
    background: rgba(8, 124, 116, 0.08);
    box-shadow: none;
}

.pricing-row span {
    color: var(--action-strong);
}

.flash-toast-backdrop,
.booking-modal__backdrop {
    background: rgba(6, 18, 20, 0.54);
}

@media (max-width: 1100px) {
    .hero-header {
        grid-template-columns: auto minmax(0, 1fr) auto;
        justify-items: stretch;
    }

    .hero-stage {
        justify-items: center;
        text-align: center;
    }

    .hero-stage--page {
        justify-items: start;
        text-align: left;
    }
}

@media (max-width: 820px) {
    .hero-scene {
        min-height: auto;
    }

    .hero-scene--page {
        min-height: 500px;
    }

    .hero-header {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: start;
        gap: 12px;
    }

    .hero-nav-links {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: flex-start;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .hero-nav-links::-webkit-scrollbar {
        display: none;
    }

    .hero-header__actions {
        grid-column: 2;
        grid-row: 1;
        justify-content: end;
    }

    .hero-header__cta {
        min-height: 36px;
        padding: 0 10px;
        font-size: 0.78rem;
    }

    .hero-brand {
        gap: 9px;
    }

    .hero-brand__mark {
        width: 34px;
        height: 34px;
    }

    .hero-brand__copy strong {
        font-size: 0.84rem;
    }

    .hero-nav-link {
        padding: 7px 9px;
        background: rgba(255, 255, 255, 0.12);
        font-size: 0.78rem;
    }

    .hero-stage {
        justify-items: start;
        text-align: left;
        gap: 12px;
    }

    .hero-stage h1,
    .hero-stage--page h1 {
        max-width: 12ch;
        font-size: 2.45rem;
        line-height: 1.03;
    }

    .hero-stage__lead {
        max-width: 32ch;
        font-size: 0.96rem;
    }

    .hero-search-wrap {
        width: 100%;
    }

    .hero-search-bar {
        padding: 10px;
    }

    .page-body-shell {
        width: calc(100% - 24px);
    }

    .page-intro h1,
    .intro-stack h1,
    .confirmation-main h1 {
        font-size: 2.25rem;
    }
}

@media (max-width: 520px) {
    .hero-scene__overlay {
        padding: 14px 12px 16px;
    }

    .hero-stage h1,
    .hero-stage--page h1 {
        font-size: 2.18rem;
    }

    .hero-actions,
    .submit-row,
    .actions,
    .top-actions {
        align-items: stretch;
    }

    .button,
    .ghost-link {
        width: 100%;
    }

    .panel {
        padding: 18px 14px;
    }
}

/* Mobile hero refinements */
@media (max-width: 620px) {
    .hero-scene {
        background-position: center top;
    }

    .hero-scene__overlay {
        justify-content: start;
        gap: 18px;
        padding: 14px 12px 16px;
    }

    .hero-header {
        gap: 8px 10px;
    }

    .hero-brand__mark {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
    }

    .hero-brand__copy strong {
        font-size: 0.78rem;
        white-space: nowrap;
    }

    .hero-header__cta {
        min-height: 34px;
        padding: 0 10px;
        font-size: 0.74rem;
    }

    .hero-nav-links {
        gap: 6px;
        margin-inline: -2px;
        padding: 2px 2px 4px;
    }

    .hero-nav-link {
        flex: 0 0 auto;
        min-height: 34px;
        padding: 7px 9px;
        background: rgba(255, 255, 255, 0.11);
        font-size: 0.74rem;
        line-height: 1;
        white-space: nowrap;
    }

    .hero-stage {
        margin: 12px 0 0;
        gap: 10px;
    }

    .hero-stage__eyebrow {
        max-width: 32ch;
        font-size: 0.68rem;
        line-height: 1.35;
    }

    .hero-stage h1,
    .hero-stage--page h1 {
        max-width: 13.5ch;
        font-size: 2rem;
        line-height: 1.06;
    }

    .hero-stage__headline span {
        display: inline;
        white-space: normal;
    }

    .hero-stage__headline span:not(:last-child)::after {
        content: ' ';
    }

    .hero-stage__lead {
        max-width: 31ch;
        font-size: 0.92rem;
        line-height: 1.55;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, max-content));
        gap: 8px;
        width: 100%;
    }

    .hero-actions .button {
        width: auto;
        min-height: 44px;
        padding: 10px 14px;
        font-size: 0.86rem;
    }

    .hero-search-wrap {
        width: 100%;
        gap: 10px;
    }

    .hero-search-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding: 8px;
        box-shadow: 0 14px 28px rgba(6, 18, 20, 0.14);
    }

    .hero-search-bar > :nth-child(-n + 4) {
        grid-column: 1 / -1;
    }

    .hero-search-bar > :nth-child(5) {
        grid-column: 1;
    }

    .hero-search-bar > :nth-child(6) {
        grid-column: 2;
        align-self: stretch;
    }

    .hero-search-segment {
        gap: 6px;
        padding: 8px;
    }

    .hero-search-segment > span {
        font-size: 0.64rem;
    }

    .hero-search-control {
        min-height: 42px;
        padding: 0 12px;
        font-size: 0.86rem;
    }

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

    .hero-search-control[type='date'] {
        padding-right: 8px;
    }

    select.hero-search-control {
        background-position: right 12px center;
        padding-right: 32px;
    }

    .hero-search-button {
        width: 100%;
        height: 48px;
        min-height: 48px;
        font-size: 0.88rem;
    }

    .page-body-shell {
        width: calc(100% - 20px);
        margin-top: 16px;
    }
}

@media (max-width: 380px) {
    .hero-brand__copy strong {
        max-width: 17ch;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero-stage h1,
    .hero-stage--page h1 {
        max-width: 12.5ch;
        font-size: 1.84rem;
    }

    .hero-actions {
        grid-template-columns: 1fr;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-search-bar {
        grid-template-columns: 1fr;
    }

    .hero-search-bar > :nth-child(n) {
        grid-column: 1;
    }

    .hero-search-pair {
        grid-template-columns: 1fr;
    }
}

/* Mobile menu */
.hero-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-weight: 800;
    font-size: 0.84rem;
    cursor: pointer;
}

.hero-menu-toggle__icon {
    position: relative;
    width: 16px;
    height: 12px;
    flex: 0 0 auto;
}

.hero-menu-toggle__icon::before,
.hero-menu-toggle__icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: top 180ms ease, transform 180ms ease;
}

.hero-menu-toggle__icon::before {
    top: 2px;
}

.hero-menu-toggle__icon::after {
    top: 9px;
}

.hero-header.is-menu-open .hero-menu-toggle__icon::before {
    top: 5px;
    transform: rotate(42deg);
}

.hero-header.is-menu-open .hero-menu-toggle__icon::after {
    top: 5px;
    transform: rotate(-42deg);
}

@media (max-width: 620px) {
    .hero-header {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 8px 10px;
        position: relative;
        z-index: 8;
    }

    .hero-header__actions {
        grid-column: 2;
        grid-row: 1;
        justify-content: end;
    }

    .hero-header__cta {
        display: none;
    }

    .hero-menu-toggle {
        display: inline-flex;
        min-height: 36px;
        padding: 0 11px;
        font-size: 0.78rem;
    }

    .hero-nav-links {
        display: grid;
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        grid-template-columns: 1fr;
        gap: 6px;
        width: 100%;
        max-height: 0;
        margin: 0;
        padding: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-4px);
        transition: max-height 220ms ease, opacity 160ms ease, transform 160ms ease, padding-top 160ms ease;
        scrollbar-width: auto;
    }

    .hero-nav-links::-webkit-scrollbar {
        display: initial;
    }

    .hero-header.is-menu-open .hero-nav-links {
        max-height: 280px;
        padding: 8px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 8px;
        background: rgba(5, 24, 36, 0.96);
        box-shadow: 0 16px 36px rgba(4, 16, 24, 0.18);
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .hero-nav-link {
        display: flex;
        align-items: center;
        min-height: 40px;
        padding: 0 12px;
        border: 1px solid transparent;
        background: transparent;
        font-size: 0.82rem;
        line-height: 1.2;
        white-space: nowrap;
    }

    .hero-nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .hero-nav-link.is-active {
        border-color: rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.18);
    }
}

.brand-mark--logo,
.hero-brand__mark--logo {
    background: #fff;
    box-shadow: 0 10px 22px rgba(4, 19, 29, 0.18);
}

.brand--image,
.hero-brand--image {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.site-brand-logo {
    display: block;
    width: auto;
    object-fit: contain;
}

.site-brand-logo--hero {
    height: 44px;
}

.site-brand-logo--standard {
    height: 42px;
}

.brand--connect,
.hero-brand--connect {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
    text-decoration: none;
}

.site-brand-mark {
    display: block;
    width: auto;
    height: 44px;
    flex: 0 0 auto;
    object-fit: contain;
}

.brand--connect .site-brand-mark {
    height: 40px;
}

.hero-brand--connect .site-brand-mark {
    filter: none;
}

.site-brand-wordmark {
    display: block;
    color: #50515a;
    font-size: 0.84rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    line-height: 1;
    white-space: nowrap;
}

.hero-brand--connect .site-brand-wordmark {
    color: #fff;
    text-shadow: 0 2px 8px rgba(4, 19, 29, 0.34);
}

@media (max-width: 620px) {
    .hero-brand--image {
        max-width: min(54vw, 180px);
    }

    .site-brand-logo--hero {
        max-width: 100%;
        width: auto;
        height: 42px;
    }

    .hero-brand--connect,
    .brand--connect {
        gap: 7px;
    }

    .hero-brand--connect .site-brand-mark {
        height: 38px;
    }

    .site-brand-wordmark {
        font-size: 0.72rem;
        letter-spacing: 0.12em;
    }
}

@media (max-width: 380px) {
    .hero-brand--image {
        max-width: 160px;
    }

    .site-brand-logo--hero {
        max-width: 100%;
        width: auto;
        height: 38px;
    }

    .hero-brand--connect .site-brand-mark {
        height: 34px;
    }

    .site-brand-wordmark {
        font-size: 0.66rem;
        letter-spacing: 0.1em;
    }
}

/* Tidy interface pass */
:root {
    --bg: #f4fbfe;
    --bg-accent: #e6f6fc;
    --surface: #ffffff;
    --surface-soft: #f8fcfe;
    --line: rgba(7, 67, 105, 0.1);
    --line-strong: rgba(7, 67, 105, 0.18);
    --shadow-lg: 0 16px 38px rgba(0, 104, 160, 0.1);
    --shadow-md: 0 8px 22px rgba(0, 104, 160, 0.08);
}

body {
    font-size: 15px;
}

.page-body-shell {
    width: min(1120px, calc(100% - clamp(24px, 4vw, 48px)));
    margin-top: 22px;
    gap: 18px;
}

.page-body-shell--home {
    margin-top: 0;
}

.panel,
.reason-item,
.simple-item,
.province-item,
.overview-grid article,
.contact-channel,
.stack-item,
.notice,
.section-block,
.amount-card,
.note-card,
.booking-modal__dialog,
.flash-toast,
.shop-market-strip,
.shop-filter-panel,
.shop-cart-panel,
.shop-product-card,
.shop-vendor-card,
.home-marketplace-panel,
.home-marketplace-grid article {
    border-radius: 8px;
    border-color: var(--line);
    box-shadow: var(--shadow-md);
}

.panel {
    padding: clamp(16px, 2vw, 24px);
    box-shadow: var(--shadow-lg);
}

.reasons-panel,
.feature-panel,
.province-panel,
.contact-form-panel,
.contact-side-panel,
.site-footer,
.content-page,
.marketing-page {
    gap: 16px;
}

.section-copy,
.section-head,
.summary-header {
    gap: 7px;
}

.lead,
.section-head p,
.summary-header p,
.info-note,
.mini-note,
.footer-copy,
.submit-note,
.note-card p,
.amount-card p,
.info-card p,
.info-block p,
.reason-item p,
.simple-item p {
    line-height: 1.55;
}

.feature-panel h2,
.reasons-panel h2,
.summary-header h2,
.section-head h2,
.info-card h2,
.info-card h3,
.info-block h2 {
    font-size: 1.45rem;
    line-height: 1.14;
}

.hero-scene {
    min-height: clamp(520px, 78svh, 680px);
}

.hero-scene--page {
    min-height: clamp(390px, 56svh, 500px);
}

.hero-scene__overlay {
    padding: 18px clamp(18px, 3vw, 42px) 24px;
}

.hero-header {
    gap: 10px;
}

.hero-nav-links {
    gap: 5px;
}

.hero-nav-link {
    min-height: 34px;
    padding: 7px 9px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
}

.hero-header__cta {
    min-height: 36px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 0.8rem;
}

.site-brand-mark {
    height: 36px;
}

.brand--connect .site-brand-mark {
    height: 34px;
}

.site-brand-wordmark {
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.08em !important;
}

.hero-stage {
    width: min(900px, 100%);
    gap: 12px;
}

.hero-stage h1 {
    max-width: 18ch;
    font-size: clamp(2.45rem, 4.4vw, 3.7rem);
    line-height: 1.03;
}

.hero-stage--page h1 {
    max-width: 20ch;
    font-size: clamp(2rem, 3.4vw, 3rem);
}

.hero-stage__lead {
    max-width: 44ch;
    font-size: 1rem;
    line-height: 1.56;
}

.hero-stage--page .hero-stage__lead {
    max-width: 50ch;
}

.hero-actions {
    gap: 8px;
    padding-top: 2px;
}

.button,
.ghost-link {
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.button-primary,
.hero-search-button {
    box-shadow: 0 8px 18px rgba(0, 128, 200, 0.16);
}

.hero-search-wrap {
    width: min(1120px, calc(100% - 18px));
}

.hero-search-bar {
    gap: 0;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(3, 42, 66, 0.18);
}

.hero-search-segment {
    min-height: 62px;
    padding: 9px 11px;
}

.hero-search-segment span {
    font-size: 0.72rem;
}

.hero-search-control {
    min-height: 36px;
    font-size: 0.88rem;
}

.hero-search-button {
    min-height: 54px;
    padding: 0 14px;
}

.hero-preview-card {
    padding: 16px;
    border-radius: 8px;
}

.hero-preview-grid {
    gap: 8px;
}

.hero-preview-item {
    padding: 12px;
}

.reasons-grid,
.cards-grid,
.home-marketplace-grid,
.home-feature-grid,
.province-list,
.contact-page-grid {
    gap: 14px;
}

.reasons-panel .reason-item,
.feature-panel .simple-item,
.province-panel .province-item {
    padding: 12px 0;
}

.home-marketplace-panel {
    padding: 20px;
    gap: 16px;
}

.home-marketplace-grid article {
    padding: 14px;
    gap: 8px;
}

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

.shop-page {
    gap: 20px;
}

.shop-market-strip {
    gap: 16px;
    padding: 18px;
}

.shop-market-copy h2 {
    font-size: 1.55rem;
    line-height: 1.12;
}

.shop-market-stats {
    gap: 6px;
}

.shop-market-stats span,
.shop-product-card__body > div:first-child span,
.shop-vendor-card__body > span {
    min-height: 26px;
    padding-inline: 8px;
    font-size: 0.72rem;
}

.shop-layout {
    grid-template-columns: minmax(210px, 240px) minmax(0, 1fr);
    gap: 16px;
}

.shop-filter-panel,
.shop-cart-panel {
    gap: 12px;
    padding: 16px;
}

.shop-section-head {
    align-items: center;
    gap: 12px;
}

.shop-section-head h2 {
    font-size: 1.35rem;
}

.shop-product-grid,
.shop-vendor-grid {
    gap: 14px;
}

.shop-product-card figure {
    aspect-ratio: 16 / 11;
}

.shop-product-card__body,
.shop-vendor-card__body {
    gap: 12px;
    padding: 14px;
}

.shop-product-card__body {
    grid-template-rows: auto auto auto;
}

.shop-product-card h3,
.shop-vendor-card__body h3 {
    margin: 6px 0 4px;
    font-size: 1rem;
}

.shop-product-card p,
.shop-vendor-card p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.shop-product-card dl,
.shop-vendor-card dl,
.shop-detail-facts {
    gap: 6px;
}

.shop-product-card dl div,
.shop-vendor-card dl div,
.shop-detail-facts div {
    padding-top: 6px;
}

.shop-product-card__actions {
    gap: 10px;
    padding-top: 10px;
}

.shop-product-card__actions strong {
    font-size: 1.02rem;
}

.shop-cart-item {
    grid-template-columns: 56px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 10px;
}

.shop-cart-item img {
    width: 56px;
    height: 56px;
}

.shop-cart-summary {
    padding-top: 12px;
}

.shop-cart-summary strong {
    font-size: 1.25rem;
}

.form-grid,
.booking-form,
.contact-channel-list {
    gap: 14px;
}

.field input,
.field select,
.field textarea,
.compact-field input,
.compact-field select {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 0.92rem;
}

@media (max-width: 1120px) {
    .hero-search-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-search-button {
        grid-column: 1 / -1;
        width: 100%;
    }

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

@media (max-width: 900px) {
    .page-body-shell {
        width: calc(100% - 24px);
        gap: 16px;
        margin-top: 18px;
    }

    .hero-scene {
        min-height: clamp(500px, 74svh, 620px);
    }

    .hero-scene--page {
        min-height: 390px;
    }

    .hero-stage {
        justify-items: start;
        text-align: left;
    }

    .hero-stage h1,
    .hero-stage--page h1 {
        max-width: 14ch;
        font-size: 2.35rem;
    }

    .hero-stage__lead {
        max-width: 36ch;
        font-size: 0.94rem;
    }

    .province-list,
    .shop-layout,
    .shop-market-strip--shop {
        grid-template-columns: 1fr;
    }

    .shop-filter-panel {
        position: static;
    }
}

@media (max-width: 620px) {
    .hero-scene,
    .hero-scene--page {
        min-height: auto;
    }

    .hero-scene__overlay {
        min-height: 430px;
        padding: 14px 12px 18px;
    }

    .hero-scene--page .hero-scene__overlay {
        min-height: 360px;
    }

    .hero-brand--connect .site-brand-mark {
        height: 30px;
    }

    .site-brand-wordmark {
        font-size: 0.62rem;
        letter-spacing: 0.06em !important;
    }

    .hero-menu-toggle {
        min-height: 34px;
        padding-inline: 10px;
        font-size: 0.76rem;
    }

    .hero-header.is-menu-open .hero-nav-links {
        max-height: 320px;
        padding: 6px;
    }

    .hero-nav-link {
        min-height: 36px;
        font-size: 0.78rem;
    }

    .hero-stage {
        margin-top: 28px;
        gap: 10px;
    }

    .hero-stage h1,
    .hero-stage--page h1 {
        max-width: 13ch;
        font-size: 2rem;
    }

    .hero-stage__lead {
        max-width: 31ch;
        font-size: 0.9rem;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-actions .button {
        width: auto;
        min-height: 40px;
        padding: 9px 12px;
        font-size: 0.84rem;
    }

    .hero-search-wrap {
        width: 100%;
        margin-top: 14px;
    }

    .hero-search-bar,
    .hero-preview-grid,
    .shop-product-grid,
    .shop-vendor-grid,
    .home-marketplace-grid,
    .home-feature-grid,
    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .hero-search-segment {
        min-height: auto;
        padding: 9px 10px;
    }

    .panel,
    .home-marketplace-panel,
    .shop-market-strip,
    .shop-filter-panel,
    .shop-cart-panel,
    .shop-product-card__body,
    .shop-vendor-card__body {
        padding: 14px;
    }

    .shop-section-head,
    .shop-product-card__actions,
    .shop-cart-summary {
        align-items: stretch;
    }
}

@media (max-width: 420px) {
    .page-body-shell {
        width: calc(100% - 18px);
        margin-top: 14px;
    }

    .hero-scene__overlay {
        min-height: 410px;
    }

    .hero-stage h1,
    .hero-stage--page h1 {
        max-width: 12.5ch;
        font-size: 1.78rem;
    }

    .hero-stage__lead {
        max-width: 30ch;
    }

    .button,
    .ghost-link {
        width: 100%;
    }
}

/* Ecommerce storefront */
.shop-storefront-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.shop-storefront-strip a {
    display: grid;
    gap: 4px;
    min-height: 74px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow-md);
}

.shop-storefront-strip span {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.3;
}

.shop-storefront-strip strong {
    color: var(--accent-strong);
    font-size: 1.25rem;
    line-height: 1;
}

.shop-featured-section,
.shop-shop-section--featured {
    display: grid;
    gap: 14px;
}

.shop-featured-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.8fr);
    gap: 14px;
    align-items: stretch;
}

.shop-spotlight-product {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1fr);
    min-height: 360px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow-md);
}

.shop-spotlight-product figure {
    margin: 0;
    min-height: 100%;
}

.shop-spotlight-product img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-spotlight-product__body {
    display: grid;
    align-content: center;
    gap: 12px;
    padding: clamp(18px, 3vw, 32px);
}

.shop-spotlight-product__body > span,
.shop-featured-product span,
.shop-featured-shop span {
    display: inline-flex;
    width: fit-content;
    min-height: 24px;
    align-items: center;
    padding: 0 8px;
    border-radius: 8px;
    color: var(--accent-strong);
    background: #eef8fc;
    font-size: 0.72rem;
    font-weight: 800;
}

.shop-spotlight-product__body h2 {
    max-width: 14ch;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.02;
}

.shop-spotlight-product__body p {
    max-width: 42ch;
    color: var(--muted);
    line-height: 1.56;
}

.shop-spotlight-product__meta {
    display: grid;
    gap: 2px;
}

.shop-spotlight-product__meta strong {
    color: var(--accent-strong);
    font-size: 1.45rem;
}

.shop-spotlight-product__meta small {
    color: var(--muted);
    font-weight: 700;
}

.shop-spotlight-product__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.shop-featured-list {
    display: grid;
    gap: 10px;
}

.shop-featured-product {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow-md);
}

.shop-featured-product img {
    width: 76px;
    height: 76px;
    border-radius: 8px;
    object-fit: cover;
}

.shop-featured-product div {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.shop-featured-product h3,
.shop-featured-shop h3 {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.22;
    overflow-wrap: anywhere;
}

.shop-featured-product p,
.shop-featured-shop p {
    margin: 0;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.35;
}

.shop-featured-product > strong {
    color: var(--accent-strong);
}

.shop-featured-product .button {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 36px;
}

.shop-featured-shop-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.shop-featured-shop {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 128px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow-md);
}

.shop-featured-shop figure {
    height: 108px;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
}

.shop-featured-shop img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-featured-shop div {
    display: grid;
    gap: 6px;
    min-width: 0;
}

@media (max-width: 1120px) {
    .shop-storefront-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shop-featured-layout {
        grid-template-columns: 1fr;
    }

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

    .shop-featured-product {
        grid-template-columns: 1fr;
    }

    .shop-featured-product img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 900px) {
    .shop-spotlight-product {
        grid-template-columns: 1fr;
    }

    .shop-spotlight-product figure {
        aspect-ratio: 16 / 10;
    }

    .shop-featured-shop-grid,
    .shop-featured-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .shop-storefront-strip {
        grid-template-columns: 1fr;
    }

    .shop-spotlight-product {
        min-height: 0;
    }

    .shop-spotlight-product__body {
        padding: 16px;
    }

    .shop-spotlight-product__body h2 {
        font-size: 1.75rem;
    }

    .shop-spotlight-product__actions {
        display: grid;
    }

    .shop-featured-shop {
        grid-template-columns: 92px minmax(0, 1fr);
    }

    .shop-featured-shop figure {
        height: 92px;
    }
}

/* Professional cart and shop cards */
.shop-cart-panel {
    background: linear-gradient(180deg, #ffffff 0%, #f8fcfe 100%);
}

.shop-cart-count {
    display: inline-flex;
    width: fit-content;
    min-height: 26px;
    align-items: center;
    margin-top: 6px;
    padding: 0 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--accent-strong);
    background: #eef8fc;
    font-size: 0.76rem;
    font-weight: 800;
}

.shop-cart-list {
    gap: 10px;
}

.shop-cart-item {
    grid-template-columns: 64px minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-color: rgba(7, 67, 105, 0.1);
    background: #fff;
    box-shadow: 0 8px 18px rgba(0, 104, 160, 0.06);
}

.shop-cart-item img {
    width: 64px;
    height: 64px;
    background: #eef8fc;
}

.shop-cart-item__copy strong {
    font-size: 0.95rem;
    line-height: 1.25;
}

.shop-cart-item__copy span {
    font-size: 0.78rem;
}

.shop-cart-item__subtotal {
    color: var(--accent-strong);
    font-size: 0.98rem;
    white-space: nowrap;
}

.shop-cart-item__controls {
    min-width: 156px;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-soft);
}

.shop-cart-quantity-button {
    min-width: 32px;
    min-height: 30px;
    padding: 5px 8px;
    border-color: transparent;
    font-size: 0.82rem;
    font-weight: 800;
}

.shop-cart-quantity-button:not(.is-remove) {
    background: #fff;
}

.shop-cart-quantity-button.is-remove {
    margin-left: auto;
    color: #8a3d38;
    background: transparent;
}

.shop-cart-empty {
    border-color: rgba(0, 128, 200, 0.18);
    color: var(--muted);
    background: #f7fbfe;
}

.shop-cart-summary {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.shop-cart-checkout {
    display: grid;
    gap: 8px;
}

.shop-cart-checkout p {
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.45;
}

.shop-vendor-card {
    grid-template-rows: auto 1fr;
    background: #fff;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.shop-vendor-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 128, 200, 0.24);
    box-shadow: 0 16px 34px rgba(0, 104, 160, 0.12);
}

.shop-vendor-card figure {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #eef8fc;
}

.shop-vendor-card img {
    transition: transform 220ms ease;
}

.shop-vendor-card:hover img {
    transform: scale(1.035);
}

.shop-vendor-card__body {
    grid-template-rows: auto auto 1fr auto auto;
}

.shop-vendor-card__body > span {
    color: #075985;
    background: #eaf7fd;
}

.shop-vendor-card dl {
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-soft);
}

.shop-vendor-card dl div:first-child {
    padding-top: 0;
    border-top: 0;
}

.shop-vendor-card .button {
    width: 100%;
}

.shop-featured-shop {
    background: #fff;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.shop-featured-shop:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 128, 200, 0.24);
    box-shadow: 0 16px 34px rgba(0, 104, 160, 0.12);
}

@media (max-width: 700px) {
    .shop-cart-item {
        grid-template-columns: 58px minmax(0, 1fr) auto;
    }

    .shop-cart-item img {
        width: 58px;
        height: 58px;
    }

    .shop-cart-item__controls {
        grid-column: 1 / -1;
        width: 100%;
        min-width: 0;
        justify-content: flex-start;
    }
}

@media (max-width: 420px) {
    .shop-cart-item {
        grid-template-columns: 52px minmax(0, 1fr);
    }

    .shop-cart-item img {
        width: 52px;
        height: 52px;
    }

    .shop-cart-item__subtotal {
        grid-column: 2;
    }
}

/* Shop clarity pass */
.hero-header__cart-button {
    position: relative;
    width: 48px;
    min-width: 48px;
    min-height: 42px;
    padding: 0;
    border-radius: 8px;
}

.hero-header__cart-button svg {
    width: 21px;
    height: 21px;
}

.hero-header__cart-button [data-header-cart-count] {
    position: absolute;
    top: -7px;
    right: -7px;
    display: inline-flex;
    min-width: 20px;
    min-height: 20px;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border: 2px solid rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    color: #fff;
    background: #0ea5e9;
    font-size: 0.68rem;
    font-weight: 900;
    line-height: 1;
}

.shop-page {
    gap: clamp(28px, 4vw, 48px);
}

.shop-category-line {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(11, 55, 79, 0.12);
}

.shop-category-line a {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    min-height: 34px;
    color: var(--text);
    font-weight: 800;
}

.shop-category-line span {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
}

.shop-category-line strong {
    color: var(--accent-strong);
    font-size: 1rem;
}

.shop-featured-section,
.shop-shop-section,
.shop-product-area {
    gap: 18px;
}

.shop-section-head {
    align-items: center;
}

.shop-section-head h2,
.section-copy h2 {
    max-width: 24ch;
    font-size: clamp(1.35rem, 2vw, 1.9rem);
    line-height: 1.12;
}

.shop-featured-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 22px;
}

.shop-spotlight-product,
.shop-featured-product,
.shop-featured-shop,
.shop-product-card,
.shop-vendor-card,
.shop-filter-panel {
    box-shadow: none;
    border-color: rgba(11, 55, 79, 0.12);
}

.shop-spotlight-product {
    min-height: 300px;
}

.shop-spotlight-product__body {
    align-content: center;
    gap: 10px;
    padding: clamp(18px, 2.5vw, 26px);
}

.shop-spotlight-product__body h2 {
    max-width: 18ch;
    font-size: clamp(1.7rem, 2.6vw, 2.35rem);
}

.shop-spotlight-product__body p {
    max-width: 48ch;
    line-height: 1.45;
}

.shop-featured-list {
    gap: 12px;
}

.shop-featured-product {
    grid-template-columns: 82px minmax(0, 1fr) auto;
    gap: 14px;
    padding: 12px;
}

.shop-featured-product img {
    width: 82px;
    height: 82px;
}

.shop-featured-product .button {
    grid-column: auto;
    width: auto;
    min-width: 64px;
}

.shop-featured-shop-grid {
    gap: 18px;
}

.shop-featured-shop {
    grid-template-columns: 104px minmax(0, 1fr);
    min-height: 116px;
    padding: 10px;
}

.shop-featured-shop figure {
    height: 96px;
}

.shop-layout {
    grid-template-columns: minmax(210px, 250px) minmax(0, 1fr);
    gap: 26px;
}

.shop-layout--detail {
    grid-template-columns: 1fr;
}

.shop-layout--detail .shop-product-area {
    width: 100%;
    min-width: 0;
}

.shop-filter-panel {
    gap: 14px;
    padding: 18px;
    background: #fff;
}

.shop-filter-panel .section-head {
    gap: 3px;
}

.shop-filter-panel .button {
    width: 100%;
}

.shop-product-grid,
.shop-vendor-grid {
    gap: 22px;
}

.shop-layout--detail .shop-product-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.shop-product-grid--featured {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.shop-product-grid--compact {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.shop-product-card {
    grid-template-rows: auto 1fr;
}

.shop-product-card figure {
    aspect-ratio: 1 / 1;
    background: #eef8fc;
}

.shop-product-card__body {
    grid-template-rows: 1fr auto;
    gap: 12px;
    padding: 14px;
}

.shop-product-card__body > div:first-child span,
.shop-vendor-card__body > span {
    min-height: 22px;
    padding-inline: 7px;
    font-size: 0.68rem;
}

.shop-product-card h3,
.shop-vendor-card__body h3 {
    margin: 8px 0 4px;
    font-size: 1rem;
}

.shop-product-card p,
.shop-vendor-card p {
    line-height: 1.43;
}

.shop-product-card__meta {
    display: grid;
    gap: 2px;
    color: var(--muted);
    font-size: 0.84rem;
}

.shop-product-card__meta a {
    color: var(--text);
    font-weight: 800;
}

.shop-product-card__meta span {
    width: auto;
    min-height: 0;
    padding: 0;
    border: 0;
    color: var(--muted);
    background: transparent;
    font-size: inherit;
    font-weight: 600;
}

.shop-product-card__actions {
    gap: 10px;
    padding-top: 2px;
    border-top: 0;
}

.shop-product-card__actions strong {
    font-size: 1.02rem;
}

.shop-product-card__actions .button {
    min-height: 38px;
    padding-inline: 12px;
}

.shop-vendor-card__body {
    grid-template-rows: auto auto minmax(56px, 1fr) auto;
    gap: 10px;
    padding: 14px;
}

.shop-vendor-card .button {
    width: auto;
}

.shop-vendor-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 4px;
}

.shop-vendor-card__footer strong {
    color: var(--accent-strong);
    font-size: 0.95rem;
}

.shop-detail-line {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(11, 55, 79, 0.12);
}

.shop-detail-line span {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 0 10px;
    border: 1px solid rgba(0, 128, 200, 0.14);
    border-radius: 8px;
    color: var(--accent-strong);
    background: #f7fbfe;
    font-size: 0.82rem;
    font-weight: 800;
}

body.has-cart-open {
    overflow: hidden;
}

.shop-cart-drawer[hidden] {
    display: none !important;
}

.shop-cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
}

.shop-cart-drawer__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(3, 18, 30, 0.52);
    cursor: pointer;
}

.shop-cart-drawer .shop-cart-panel {
    position: relative;
    grid-column: 2;
    width: 100%;
    height: 100svh;
    max-height: 100svh;
    overflow: auto;
    gap: 16px;
    padding: 22px;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: -24px 0 60px rgba(3, 18, 30, 0.24);
}

.shop-cart-close {
    min-height: 36px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--text);
    background: #fff;
    font-weight: 800;
    cursor: pointer;
}

.shop-cart-drawer .shop-section-head h2 {
    font-size: 1.35rem;
}

.shop-cart-drawer .shop-cart-item {
    grid-template-columns: 56px minmax(0, 1fr) auto;
}

.shop-cart-drawer .shop-cart-item img {
    width: 56px;
    height: 56px;
}

.shop-cart-drawer .shop-cart-item__controls {
    grid-column: 1 / -1;
    min-width: 0;
    justify-content: flex-start;
}

.shop-cart-drawer .shop-cart-summary {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
}

@media (max-width: 1120px) {
    .shop-featured-layout {
        grid-template-columns: 1fr;
    }

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

    .shop-featured-product {
        grid-template-columns: 1fr;
    }

    .shop-featured-product .button {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-filter-panel {
        position: static;
    }

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

@media (max-width: 700px) {
    .hero-header__cart-button {
        display: inline-flex !important;
        width: 42px;
        min-width: 42px;
        min-height: 36px;
    }

    .hero-header__cart-button svg {
        width: 19px;
        height: 19px;
    }

    .shop-category-line {
        gap: 8px 14px;
    }

    .shop-featured-product,
    .shop-featured-list,
    .shop-featured-shop-grid,
    .shop-product-grid,
    .shop-vendor-grid {
        grid-template-columns: 1fr;
    }

    .shop-spotlight-product {
        grid-template-columns: 1fr;
    }

    .shop-spotlight-product figure {
        aspect-ratio: 16 / 10;
    }

    .shop-cart-drawer {
        grid-template-columns: 1fr;
    }

    .shop-cart-drawer .shop-cart-panel {
        grid-column: 1;
    }
}

@media (max-width: 420px) {
    .hero-header__cart-button {
        min-height: 34px;
    }

    .shop-section-head,
    .shop-product-card__actions,
    .shop-vendor-card__footer {
        align-items: stretch;
    }

    .shop-product-card__actions,
    .shop-vendor-card__footer {
        flex-direction: column;
    }

    .shop-vendor-card .button,
    .shop-product-card__actions .button {
        width: 100%;
    }
}

/* Product page layout hardening for older mobile browsers. */
.shop-layout--detail {
    display: block;
}

.shop-layout--detail .shop-product-area,
.shop-product-showcase,
.shop-layout--detail .shop-product-grid {
    width: 100%;
    max-width: 100%;
}

.shop-layout--detail .shop-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: stretch;
}

.shop-layout--detail .shop-product-grid--compact {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.shop-layout--detail .shop-product-card {
    min-width: 0;
}

@media (max-width: 760px) {
    .shop-layout--detail .shop-product-grid,
    .shop-layout--detail .shop-product-grid--compact {
        grid-template-columns: 1fr;
    }
}

/* Checkout */
.checkout-page {
    display: grid;
    gap: 22px;
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    align-items: start;
    gap: 24px;
}

.checkout-form-panel,
.checkout-summary-panel {
    display: grid;
    gap: 22px;
    border-color: rgba(11, 55, 79, 0.12);
    box-shadow: none;
}

.checkout-payment-block {
    display: grid;
    gap: 14px;
    padding-top: 4px;
}

.checkout-payment-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.checkout-payment-option {
    display: grid;
    min-height: 118px;
    cursor: pointer;
}

.checkout-payment-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkout-payment-option > span {
    display: grid;
    align-content: start;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.checkout-payment-option strong {
    color: var(--text);
    font-size: 0.98rem;
    line-height: 1.25;
}

.checkout-payment-option small {
    color: var(--muted);
    line-height: 1.45;
}

.checkout-payment-option input:checked + span {
    border-color: rgba(0, 128, 200, 0.45);
    background: #eef8fc;
    box-shadow: inset 0 0 0 1px rgba(0, 128, 200, 0.18);
}

.field-error {
    color: var(--danger);
    font-size: 0.82rem;
}

.checkout-summary-panel {
    position: sticky;
    top: 18px;
}

.checkout-empty {
    display: grid;
    gap: 10px;
    padding: 16px;
    border: 1px dashed rgba(0, 128, 200, 0.24);
    border-radius: 8px;
    color: var(--muted);
    background: #f7fbfe;
    line-height: 1.55;
}

.checkout-empty[hidden],
.checkout-summary-list[hidden] {
    display: none;
}

.checkout-summary-list,
.checkout-confirmation-items {
    display: grid;
    gap: 10px;
}

.checkout-summary-item {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border: 1px solid rgba(11, 55, 79, 0.1);
    border-radius: 8px;
    background: #fff;
}

.checkout-summary-item img {
    width: 58px;
    height: 58px;
    border-radius: 8px;
    object-fit: cover;
    background: #eef8fc;
}

.checkout-summary-item div {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.checkout-summary-item strong,
.checkout-summary-item span,
.checkout-summary-item small {
    overflow-wrap: anywhere;
}

.checkout-summary-item > strong {
    color: var(--accent-strong);
    white-space: nowrap;
}

.checkout-summary-item span,
.checkout-summary-item small {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.35;
}

.checkout-total-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.checkout-total-line span {
    color: var(--muted);
    font-weight: 700;
}

.checkout-total-line strong {
    color: var(--accent-strong);
    font-size: 1.45rem;
}

@media (max-width: 980px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-summary-panel {
        position: static;
    }
}

@media (max-width: 760px) {
    .checkout-payment-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .checkout-summary-item {
        grid-template-columns: 52px minmax(0, 1fr);
    }

    .checkout-summary-item img {
        width: 52px;
        height: 52px;
    }

    .checkout-summary-item > strong {
        grid-column: 2;
    }

    .checkout-total-line {
        align-items: flex-start;
        flex-direction: column;
    }
}
