:root {
    --ocean-blue: #0d6ecf;
    --sand: #f3efe7;
    --coral-accent: #ff6b35;
    --palm-green: #1f7a2e;
    --ink: #121212;
    --ink-soft: #3a3a3a;
    --surface: #ffffff;
    --line: #d7d1c6;
    --shadow: 0 12px 28px rgba(16, 26, 40, 0.1);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--ink);
    background: radial-gradient(circle at top right, #fff8e5, var(--sand) 45%);
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
}

main {
    overflow: clip;
}

body.page-ready main {
    animation: page-in 0.42s ease;
}

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

@keyframes page-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-transition-layer {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: linear-gradient(135deg, var(--ocean-blue), var(--coral-accent));
    transform: scaleX(0);
    transform-origin: left;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
}

body.page-leaving .page-transition-layer {
    transform: scaleX(1);
    opacity: 0.65;
}

.section {
    padding: clamp(3rem, 6vw, 6rem) 0;
}

.container {
    width: min(2000px, 96vw);
    margin: 0 auto;
}

.section-head {
    max-width: 720px;
    margin-bottom: 1.6rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0 0 0.4rem;
    color: var(--ocean-blue);
    font-size: 0.87rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-weight: 700;
}

h1,
h2,
h3,
.brand {
    margin: 0 0 0.75rem;
    font-family: 'Baloo 2', cursive;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 0.98;
}

h1 {
    font-size: clamp(2.25rem, 6vw, 4.4rem);
}

h2 {
    font-size: clamp(1.85rem, 4vw, 3.1rem);
}

h3 {
    font-size: clamp(1.35rem, 3vw, 2rem);
}

p {
    margin: 0 0 1rem;
    color: var(--ink-soft);
}

.lead {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    max-width: 62ch;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    background: rgba(243, 239, 231, 0.9);
    border-bottom: 1px solid rgba(215, 209, 198, 0.75);
}

.header-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    text-decoration: none;
    font-size: clamp(1.2rem, 2vw, 1.85rem);
    color: var(--ocean-blue);
    white-space: nowrap;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--ocean-blue);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle:focus-visible {
    outline: 2px solid rgba(13, 110, 207, 0.35);
    outline-offset: 2px;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.main-nav {
    display: flex;
    gap: 0.75rem;
}

.main-nav a {
    text-decoration: none;
    font-weight: 700;
    color: var(--ink-soft);
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-current {
    color: var(--ocean-blue);
    background: rgba(13, 110, 207, 0.1);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 999px;
    border: 2px solid transparent;
    padding: 0.65rem 1.3rem;
    text-decoration: none;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(16, 26, 40, 0.16);
}

.btn:disabled,
.btn[aria-disabled="true"] {
    opacity: 0.58;
    cursor: not-allowed;
    pointer-events: none;
    transform: none;
    box-shadow: none;
}

.btn-small {
    min-height: 40px;
    padding-inline: 1rem;
}

.btn-ocean {
    background: var(--ocean-blue);
    color: #fff;
}

.btn-coral {
    background: var(--coral-accent);
    color: #fff;
}

.btn-outline {
    border-color: var(--ocean-blue);
    color: var(--ocean-blue);
    background: transparent;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: center;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.4rem;
}

.hero-highlights {
    list-style: none;
    padding: 0;
    margin: 1.4rem 0 0;
    display: grid;
    gap: 0.7rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
    align-items: start;
}

.hero-highlights li {
    display: grid;
    gap: 0.45rem;
    align-content: start;
    align-items: start;
    background: linear-gradient(130deg, rgba(13, 110, 207, 0.08), rgba(255, 255, 255, 0.98) 45%);
    border: 1px solid rgba(13, 110, 207, 0.2);
    border-radius: 16px;
    padding: 0.9rem;
    min-width: 0;
    box-shadow: 0 8px 18px rgba(16, 26, 40, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hero-highlights li:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 20px rgba(16, 26, 40, 0.1);
    border-color: rgba(13, 110, 207, 0.35);
}

.hero-highlight-badge {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    flex-shrink: 0;
    font-family: 'Baloo 2', cursive;
    font-size: 0.9rem;
    line-height: 1;
    letter-spacing: 0.02em;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(140deg, #0d6ecf, #2f92e7);
    box-shadow: 0 6px 14px rgba(13, 110, 207, 0.3);
}

.hero-highlight-copy {
    display: grid;
    gap: 0.32rem;
    min-width: 0;
}

.hero-highlight-copy strong {
    color: #10283f;
    font-size: clamp(0.96rem, 1.1vw, 1.12rem);
    line-height: 1.15;
}

.hero-highlight-copy > span {
    color: #3d566e;
    font-size: 0.9rem;
    line-height: 1.3;
}

.hero-media {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-media img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.page-hero {
    padding-bottom: 1.2rem;
}

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

.split-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.preview-card {
    overflow: hidden;
}

.preview-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.preview-card--combo .preview-combo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 2px;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: rgba(13, 110, 207, 0.12);
}

.preview-card--combo .preview-combo-gallery img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
}

.preview-content {
    padding: 1rem;
}

.cta-strip {
    padding-top: 0;
}

.cta-strip-inner {
    padding: 1.3rem;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1.1rem;
    background: linear-gradient(140deg, rgba(13, 110, 207, 0.06), rgba(255, 255, 255, 0.98) 44%);
}

.cta-copy {
    width: 100%;
}

.cta-copy h2 {
    margin-bottom: 0.55rem;
}

.cta-intro {
    margin-bottom: 0.8rem;
}

.cta-steps {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: booking-step;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.cta-steps li {
    position: relative;
    background: #fff;
    border: 1px solid rgba(13, 110, 207, 0.24);
    border-radius: 13px;
    min-height: 78px;
    padding: 0.78rem 0.82rem 0.78rem 2.5rem;
    display: block;
    color: var(--ink-soft);
    line-height: 1.3;
    box-shadow: none;
}

.cta-steps li::before {
    counter-increment: booking-step;
    content: counter(booking-step);
    position: absolute;
    left: 0.68rem;
    top: 0.76rem;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--ocean-blue);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 800;
}

.cta-steps strong {
    display: block;
    color: #10283f;
    font-size: 1.04rem;
    line-height: 1.18;
    margin-bottom: 0.16rem;
}

.cta-steps li > span {
    color: #3d566e;
    font-size: 0.93rem;
    line-height: 1.26;
}

.cta-action {
    margin-top: 0.35rem;
    display: inline-flex;
    margin-left: auto;
    margin-right: auto;
}

.cta-steps a {
    color: var(--ocean-blue);
    font-weight: 700;
}

.tours-section {
    padding-top: 1.3rem;
}

.tour-topbar {
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
}

.guest-control {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.tour-topbar .guest-control,
.calculator-controls .guest-control {
    flex: 1 1 auto;
    min-width: 0;
}

.guest-control > label {
    font-weight: 700;
}

.guest-native-input {
    width: 130px;
    min-height: 44px;
    border-radius: 999px;
    border: 1px solid var(--line);
    padding: 0.45rem 0.9rem;
    font-weight: 700;
}

.guest-control--enhanced .guest-native-input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
}

.guest-picker {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(42px, 1fr));
    gap: 0.35rem;
}

.guest-box {
    min-height: 40px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.guest-box:hover {
    border-color: rgba(13, 110, 207, 0.4);
}

.guest-box.is-active {
    background: var(--ocean-blue);
    border-color: var(--ocean-blue);
    color: #fff;
}

.tier-chip {
    margin: 0;
    display: inline-flex;
    background: rgba(13, 110, 207, 0.1);
    color: var(--ocean-blue);
    border: 1px solid rgba(13, 110, 207, 0.25);
    border-radius: 999px;
    padding: 0.35rem 0.8rem;
    font-size: 0.9rem;
    font-weight: 700;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1rem;
}

.chip {
    border: 1px solid var(--ocean-blue);
    border-radius: 999px;
    padding: 0.45rem 0.95rem;
    background: transparent;
    color: var(--ocean-blue);
    font-weight: 700;
    cursor: pointer;
}

.chip.is-active {
    background: var(--ocean-blue);
    color: #fff;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.activity-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.activity-card.is-selected {
    border-color: rgba(31, 122, 46, 0.4);
    box-shadow: 0 14px 30px rgba(31, 122, 46, 0.13);
}

.activity-card.is-disabled {
    opacity: 0.74;
}

.activity-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.activity-body {
    padding: 1rem;
    display: grid;
    gap: 0.55rem;
}

.activity-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.92rem;
    color: var(--ink-soft);
}

.activity-prices {
    font-size: 0.9rem;
    color: var(--ink-soft);
}

.activity-prices strong {
    color: var(--ink);
}

.activity-actions {
    display: flex;
    gap: 0.45rem;
    margin-top: 0.4rem;
    align-items: center;
}

.activity-actions .btn {
    flex: 0 0 auto;
    min-height: 34px;
    min-width: 92px;
    padding: 0.4rem 0.78rem;
    font-size: 0.9rem;
}

.activity-actions .btn.is-added {
    background: var(--palm-green);
}

.calculator {
    background: linear-gradient(165deg, #fef4df 10%, rgba(238, 248, 255, 0.9) 100%);
}

.calculator-controls {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: end;
}

.calc-summary {
    padding: 1rem;
}

.summary-note {
    margin: 0;
    font-size: 0.9rem;
}

.combos-layout {
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
    align-items: start;
}

.combos-main {
    min-width: 0;
    order: 2;
}

.combos-layout .summary-rail {
    order: 1;
}

.summary-rail {
    position: sticky;
    top: 98px;
}

.summary-compact {
    display: grid;
    gap: 0.7rem;
}

.summary-compact .btn {
    width: 100%;
}

.summary-label {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.summary-compact-selected {
    margin: 0;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.summary-compact-total {
    display: flex;
    justify-content: space-between;
    gap: 0.6rem;
    align-items: end;
    border-bottom: 1px dashed var(--line);
    padding-bottom: 0.4rem;
}

.summary-compact-total span {
    color: var(--ink-soft);
    font-size: 0.88rem;
}

.summary-compact-total .total {
    margin: 0;
    color: var(--ocean-blue);
    font-size: clamp(1.35rem, 2.6vw, 1.85rem);
    font-family: 'Baloo 2', cursive;
    line-height: 1;
}

.summary-accordion {
    border-top: 1px dashed var(--line);
    padding-top: 0.4rem;
}

.summary-accordion summary {
    list-style: none;
    cursor: pointer;
    font-weight: 700;
    color: var(--ocean-blue);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.55rem;
}

.summary-accordion summary::-webkit-details-marker {
    display: none;
}

.summary-accordion summary:focus-visible {
    outline: 2px solid rgba(13, 110, 207, 0.32);
    outline-offset: 2px;
    border-radius: 8px;
}

.summary-accordion summary::after {
    content: '+';
    font-size: 1.25rem;
    line-height: 1;
}

.summary-accordion[open] summary::after {
    content: '\2212';
}

.summary-accordion-content {
    margin-top: 0.55rem;
    display: grid;
    gap: 0.65rem;
}

.summary-accordion dl {
    margin: 0;
    display: grid;
    gap: 0.6rem;
}

.summary-accordion dl div {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    border-bottom: 1px dashed var(--line);
    padding-bottom: 0.36rem;
}

.summary-accordion dt {
    color: var(--ink-soft);
}

.summary-accordion dd {
    margin: 0;
    font-weight: 700;
    text-align: right;
}

.combos-main .lead {
    margin-bottom: 0;
}

.combos-main .combo-details-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.combos {
    background: linear-gradient(180deg, rgba(242, 250, 255, 0.9) 5%, rgba(243, 239, 231, 1) 85%);
}

.combo-blocks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.combo-card {
    padding: 1.2rem;
}

.combo-subtitle {
    margin-bottom: 0.65rem;
}

.combo-listing {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.55rem;
}

.combo-listing li {
    border-bottom: 1px dashed var(--line);
    padding-bottom: 0.5rem;
}

.combo-listing li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.combo-listing strong {
    color: var(--palm-green);
}

.combo-banner {
    margin: 1rem 0 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
}

.combo-details {
    padding-top: 1rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(245, 250, 255, 0.82) 100%);
}

.combo-details-grid {
    margin-top: 1.2rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.combo-preview-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    scroll-margin-top: 96px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, outline-color 0.2s ease;
}

.combo-preview-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(16, 26, 40, 0.14);
}

.combo-preview-card:focus-visible {
    outline: 3px solid rgba(13, 110, 207, 0.35);
    outline-offset: 2px;
}

.combo-preview-card.is-selected {
    border-color: var(--ocean-blue);
    box-shadow: inset 0 0 0 2px rgba(13, 110, 207, 0.14), 0 12px 24px rgba(16, 26, 40, 0.12);
}

.combo-preview-card.is-targeted {
    border-color: var(--ocean-blue);
    box-shadow: 0 0 0 2px rgba(13, 110, 207, 0.22), 0 14px 30px rgba(16, 26, 40, 0.14);
}

.combo-preview-media {
    display: grid;
    gap: 2px;
    min-height: 205px;
    background: rgba(13, 110, 207, 0.1);
}

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

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

.combo-preview-image {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    display: block;
}

.combo-preview-title {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.2rem, 2.05vw, 1.95rem);
    line-height: 1.06;
}

.combo-preview-content {
    padding: 1rem;
    display: grid;
    gap: 0.55rem;
}

.combo-preview-summary {
    margin: 0;
    color: var(--ink-soft);
}

.combo-preview-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.92rem;
    color: var(--ink-soft);
}

.combo-preview-prices {
    margin: 0.1rem 0 0;
    font-size: 0.9rem;
    color: var(--ink-soft);
}

.combo-preview-prices strong {
    color: var(--ink);
}

.combo-preview-tier {
    color: var(--ink-soft);
}

.combo-preview-tier.is-active {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ocean-blue);
}

.combo-preview-tier.is-active strong {
    color: var(--ocean-blue);
}

.combo-preview-tier-separator {
    padding: 0 0.1rem;
    color: var(--ink-soft);
}

.combo-preview-actions {
    margin-top: 0.35rem;
}

.combo-detail-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.combo-detail-gallery figure {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
}

.combo-detail-gallery img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.combo-landing-content {
    padding-top: 1rem;
}

.combo-landing-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.combo-landing-card {
    padding: 1.2rem;
}

.combo-content-list {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--ink-soft);
    display: grid;
    gap: 0.45rem;
}

.combo-landing-gallery-section {
    padding-top: 0.5rem;
}

.combo-landing-gallery {
    margin-bottom: 1rem;
}

.combo-landing-pricing {
    padding: 1rem;
}

.combo-landing-pricing p:last-child {
    margin-bottom: 0;
}

.combo-site-hero .lead {
    max-width: 860px;
}

.combo-hero-media {
    margin: 0.95rem 0 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 14px 28px rgba(16, 26, 40, 0.16);
    background: #fff;
}

.combo-hero-media img {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    display: block;
}

.combo-site-overview {
    padding-top: 0.7rem;
}

.combo-site-overview-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.95fr);
    align-items: start;
}

.combo-site-card,
.combo-site-pricing {
    padding: 1.2rem;
}

.combo-site-card h3 {
    margin: 1rem 0 0.45rem;
}

.combo-site-copy {
    color: var(--ink-soft);
    margin-bottom: 0.75rem;
}

.combo-site-add-on {
    margin: 1rem 0 0;
    padding: 0.65rem 0.75rem;
    border: 1px dashed rgba(13, 110, 207, 0.35);
    border-radius: 10px;
    background: rgba(13, 110, 207, 0.05);
}

.combo-price-card {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.8rem;
}

.combo-price-card--popular {
    background: rgba(255, 111, 60, 0.14);
    color: var(--coral);
}

.combo-tier-block {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.8rem;
    margin-bottom: 0.75rem;
    background: #fff;
}

.combo-tier-label {
    margin: 0 0 0.25rem;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: var(--ink-soft);
    letter-spacing: 0.03em;
}

.combo-tier-primary {
    margin: 0;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.1;
}

.combo-tier-secondary {
    margin: 0.25rem 0 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.combo-compare-text {
    margin: 0.35rem 0 0.7rem;
    font-weight: 700;
    color: var(--ink-soft);
}

.combo-price-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.combo-timeline-section {
    padding-top: 0.6rem;
}

.combo-timeline {
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink);
    padding: 1rem;
    display: grid;
    gap: 0.65rem;
}

.combo-timeline-row {
    display: grid;
    grid-template-columns: 120px 20px minmax(0, 1fr);
    gap: 0.75rem;
    align-items: start;
}

.combo-timeline-time {
    font-weight: 800;
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.combo-timeline-dot {
    width: 14px;
    height: 14px;
    margin-top: 0.18rem;
    border-radius: 999px;
    background: var(--palm-green);
    box-shadow: 0 0 0 8px rgba(43, 135, 74, 0.16);
}

.combo-timeline-copy h3 {
    margin: 0 0 0.15rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 1.08rem;
    color: var(--ink);
}

.combo-timeline-copy p {
    margin: 0;
    color: var(--ink-soft);
}

.combo-duration-note {
    margin-top: 0.75rem;
    padding: 0.8rem 0.9rem;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink);
    font-weight: 700;
}

.combo-site-gallery {
    display: grid;
    gap: 0.72rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.combo-site-gallery-item {
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.combo-site-gallery-item img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.combo-site-gallery-item--placeholder {
    border: 1px dashed rgba(13, 110, 207, 0.45);
    background: rgba(13, 110, 207, 0.05);
}

.combo-image-placeholder {
    min-height: 190px;
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--ink-soft);
    font-weight: 700;
    font-size: 0.92rem;
    padding: 0.8rem;
}

.faq-list {
    display: grid;
    gap: 0.65rem;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 0.95rem 1rem;
    font-weight: 700;
    position: relative;
    padding-right: 2.2rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 0.88rem;
    color: var(--palm-green);
    font-size: 1.35rem;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: '\2212';
}

.faq-answer {
    padding: 0 1rem 0.95rem;
}

.policies .card,
.policies.card {
    padding: 1.2rem;
}

.policies ul {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--ink-soft);
    display: grid;
    gap: 0.55rem;
}

.reserve-trust-strip {
    padding: clamp(1.5rem, 3vw, 2.3rem) 0;
    background: linear-gradient(180deg, rgba(13, 110, 207, 0.06) 0%, rgba(255, 248, 229, 0.88) 100%);
    border-top: 1px solid rgba(13, 110, 207, 0.12);
    border-bottom: 1px solid rgba(215, 209, 198, 0.85);
}

.reserve-trust-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.75rem;
}

.reserve-trust-card {
    background: #fff;
    border: 1px solid rgba(31, 122, 46, 0.22);
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(12, 18, 26, 0.14);
    padding: 0.85rem 0.9rem;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 0.7rem;
    align-items: center;
    min-width: 0;
}

.reserve-trust-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(31, 122, 46, 0.1) 0%, rgba(31, 122, 46, 0.16) 100%);
    border: 1px solid rgba(31, 122, 46, 0.2);
    color: var(--palm-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.reserve-trust-icon svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
}

.reserve-trust-card p {
    margin: 0;
    display: grid;
    gap: 0.1rem;
    min-width: 0;
}

.reserve-trust-card strong {
    color: #101216;
    font-family: 'Baloo 2', cursive;
    font-size: clamp(1rem, 1.25vw, 1.4rem);
    letter-spacing: 0.01em;
    line-height: 1.02;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.reserve-trust-card span {
    color: #66707a;
    font-weight: 700;
    font-size: 0.88rem;
    line-height: 1.15;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.reserve-grid {
    display: grid;
    grid-template-columns: minmax(280px, 340px) minmax(0, 1080px);
    gap: clamp(1rem, 2vw, 2rem);
    align-items: start;
    justify-content: center;
}

.reserve-grid > * {
    width: 100%;
}

.reserve-layout-2col {
    grid-template-columns: minmax(280px, 340px) minmax(0, 1080px);
}

.reserve-summary-rail {
    display: grid;
    gap: 1rem;
    align-content: start;
    max-width: 340px;
}

.reservation-summary-card {
    padding: 1rem;
}

.reserve-summary-rail .reservation-summary-card {
    position: sticky;
    top: 98px;
}

.summary-compact--reserve {
    gap: 0.8rem;
}

.summary-compact--reserve .summary-compact-total {
    margin-top: 0.1rem;
}

.summary-accordion--reserve .summary-accordion-content {
    gap: 0.75rem;
}

.summary-accordion--reserve #reservation-pricing {
    margin: 0;
}

.reservation-breakdown {
    margin: 0;
    display: grid;
    gap: 0.42rem;
}

.reservation-breakdown div {
    display: grid;
    grid-template-columns: minmax(0, 170px) minmax(0, 1fr);
    gap: 0.5rem;
    align-items: start;
    border-bottom: 1px solid var(--line);
    padding-bottom: 0.36rem;
}

.reservation-breakdown dt {
    margin: 0;
    font-size: 0.82rem;
    color: var(--ink-soft);
    font-weight: 700;
}

.reservation-breakdown dd {
    margin: 0;
    font-size: 0.92rem;
    color: var(--ink);
}

.selection-media-grid {
    margin-top: 0.75rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
}

.selection-media-grid[data-count="1"] {
    grid-template-columns: minmax(0, 320px);
}

.selection-media-grid[data-count="3"] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.selection-media-item {
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.selection-media-item img {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 170px;
    object-fit: cover;
    display: block;
}

.selection-media-item figcaption {
    padding: 0.45rem 0.55rem;
    font-size: 0.82rem;
    color: var(--ink-soft);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: grid;
    gap: 0.55rem;
}

.reserve-form {
    padding: clamp(0.95rem, 1.25vw, 1.25rem);
    max-width: 1080px;
    justify-self: start;
}

.form-grid {
    display: grid;
    gap: 0.45rem;
}

.form-grid label {
    font-weight: 700;
    font-size: 0.9rem;
}

.form-help {
    margin: -0.1rem 0 0.35rem;
    font-size: 0.82rem;
    color: var(--ink-soft);
}

.form-help--date-selected {
    margin: 0.45rem 0 0.15rem;
    color: var(--ink);
    font-weight: 700;
}

.form-grid input,
.form-grid textarea {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.6rem 0.7rem;
    font: inherit;
    color: var(--ink);
    background: #fff;
}

.form-grid input:focus,
.form-grid textarea:focus,
.guest-native-input:focus,
.guest-box:focus-visible {
    outline: 2px solid rgba(13, 110, 207, 0.25);
    border-color: var(--ocean-blue);
}

.reserve-form .flatpickr-input[readonly] {
    cursor: pointer;
    background: #fff;
}

.tour-date-input {
    font-weight: 700;
}

.tour-date-calendar-wrap {
    margin-top: 0.5rem;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(248, 252, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
    display: flex;
    justify-content: center;
}

.tour-date-calendar {
    width: 100%;
    display: flex;
    justify-content: center;
}

.tour-date-calendar .flatpickr-calendar.inline {
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 360px;
    margin: 0;
    border: 1px solid rgba(13, 110, 207, 0.18);
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(16, 26, 40, 0.1);
}

.tour-date-calendar .flatpickr-rContainer,
.tour-date-calendar .flatpickr-days,
.tour-date-calendar .dayContainer {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
}

.tour-date-calendar .flatpickr-day {
    max-width: none;
    height: 38px;
    line-height: 38px;
}

.flatpickr-calendar {
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 18px 36px rgba(16, 26, 40, 0.16);
    overflow: hidden;
    font-family: 'Manrope', sans-serif;
}

.flatpickr-months .flatpickr-month {
    background: linear-gradient(180deg, rgba(235, 246, 255, 1) 0%, rgba(246, 251, 255, 1) 100%);
    color: var(--ink);
    fill: var(--ink);
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    color: var(--ink);
    font-weight: 700;
}

.flatpickr-weekdays {
    background: rgba(240, 248, 255, 0.92);
}

span.flatpickr-weekday {
    color: var(--ink-soft);
    font-weight: 700;
}

.flatpickr-day {
    border-radius: 10px;
}

.flatpickr-day:hover,
.flatpickr-day:focus {
    background: rgba(13, 110, 207, 0.12);
    border-color: rgba(13, 110, 207, 0.24);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: var(--ocean-blue);
    border-color: var(--ocean-blue);
}

.flatpickr-day.today {
    border-color: rgba(13, 110, 207, 0.5);
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
    color: #bcc3ce;
    cursor: not-allowed;
    background: transparent;
    border-color: transparent;
}

.form-guest-control .guest-picker {
    width: 100%;
}

.reserve-guests-control {
    display: grid;
    gap: 0.55rem;
}

.reserve-guests-control .form-guest-control {
    width: 100%;
    min-width: 100%;
}

.reserve-guests-control .tier-chip {
    justify-self: start;
}

.reserve-guests-control .guest-picker {
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.ship-options {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.75rem 0.8rem 0.8rem;
    margin: 0.2rem 0 0.3rem;
}

.referral-options {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.75rem 0.8rem 0.8rem;
    margin: 0.2rem 0 0.3rem;
}

.ship-options legend {
    padding: 0 0.25rem;
    font-weight: 700;
    color: var(--ink);
}

.referral-options legend {
    padding: 0 0.25rem;
    font-weight: 700;
    color: var(--ink);
}

.ship-options legend span {
    color: #a02020;
}

.referral-options legend span {
    color: #a02020;
}

.ship-options .form-help {
    margin: 0.15rem 0 0.45rem;
}

.referral-options .form-help {
    margin: 0.15rem 0 0.45rem;
}

.ship-options-grid {
    display: grid;
    gap: 0.5rem;
}

.reserve-form .ship-options .ship-options-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.reserve-form .referral-options .ship-options-grid {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.ship-option {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-weight: 600;
    color: var(--ink-soft);
    line-height: 1.3;
}

.ship-option input[type="checkbox"],
.ship-option input[type="radio"] {
    margin-top: 0.1rem;
    width: 18px;
    height: 18px;
    accent-color: var(--palm-green);
    flex-shrink: 0;
}

.atv-vehicle-questions {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.75rem 0.8rem 0.8rem;
    margin: 0.2rem 0 0.3rem;
    background: rgba(13, 110, 207, 0.04);
}

.atv-vehicle-questions legend {
    padding: 0 0.25rem;
    font-weight: 700;
    color: var(--palm-green);
}

.atv-vehicle-questions .form-help {
    margin: 0.15rem 0 0.55rem;
    color: var(--ink-soft);
}

.atv-model-options {
    border: 1px solid rgba(31, 122, 46, 0.18);
    border-radius: 10px;
    background: rgba(31, 122, 46, 0.06);
    padding: 0.6rem 0.75rem;
    margin: 0 0 0.6rem;
}

.atv-model-options-title {
    margin: 0 0 0.35rem;
    font-weight: 700;
    color: var(--ink);
}

.atv-model-options-list {
    margin: 0;
    padding-left: 1.15rem;
    color: var(--ink-soft);
    line-height: 1.35;
}

.atv-model-options-list li + li {
    margin-top: 0.25rem;
}

.atv-vehicle-questions label span {
    color: #a02020;
}

.horseback-route-options {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.75rem 0.8rem 0.8rem;
    margin: 0.2rem 0 0.3rem;
    background: rgba(31, 122, 46, 0.05);
}

.horseback-route-options legend {
    padding: 0 0.25rem;
    font-weight: 700;
    color: var(--palm-green);
}

.horseback-route-options label > span {
    color: #a02020;
}

.spa-massage-questions {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.75rem 0.8rem 0.8rem;
    margin: 0.2rem 0 0.3rem;
    background: rgba(31, 122, 46, 0.05);
}

.spa-massage-questions legend {
    padding: 0 0.25rem;
    font-weight: 700;
    color: var(--palm-green);
}

.spa-massage-questions > label {
    display: block;
    margin: 0.2rem 0 0.35rem;
}

.spa-massage-questions textarea {
    display: block;
    width: 100%;
    margin-top: 0.3rem;
}

#spa-preparation-notes,
#notes {
    resize: vertical;
}

.confirmation-call-option {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.75rem 0.8rem 0.8rem;
    margin: 0.2rem 0 0.3rem;
}

.confirmation-call-option legend {
    padding: 0 0.25rem;
    font-weight: 700;
    color: var(--ink);
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.selection-preview {
    margin: 0.95rem 0;
    font-size: 0.92rem;
    color: var(--ink-soft);
}

.form-message {
    margin-top: 0.8rem;
    min-height: 1.3rem;
    font-weight: 700;
}

.form-message.error {
    color: #a02020;
}

.form-message.success {
    color: var(--palm-green);
}

.day-inspiration-section {
    background: linear-gradient(180deg, rgba(246, 251, 255, 0.92) 0%, rgba(243, 239, 231, 0.96) 100%);
    border-top: 1px solid rgba(13, 110, 207, 0.1);
    border-bottom: 1px solid rgba(215, 209, 198, 0.9);
    color: var(--ink);
}

.day-inspiration-head {
    max-width: 760px;
    margin: 0 auto 1.4rem;
    text-align: center;
}

.day-inspiration-section .eyebrow {
    color: var(--ocean-blue);
}

.day-inspiration-head h2 {
    color: var(--ink);
    margin-bottom: 0.4rem;
}

.day-inspiration-head .lead {
    color: var(--ink-soft);
}

.day-inspiration-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.95rem;
}

.day-inspiration-card {
    border: 1px solid rgba(13, 110, 207, 0.2);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 251, 255, 0.98) 100%);
    box-shadow: var(--shadow);
    padding: 0.95rem 1rem 1.05rem;
}

.day-inspiration-pill {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    margin: 0 0 0.8rem;
    background: rgba(31, 122, 46, 0.12);
    border: 1px solid rgba(31, 122, 46, 0.26);
    color: var(--palm-green);
    font-weight: 800;
    font-size: 0.92rem;
}

.day-inspiration-card h3 {
    margin: 0 0 0.85rem;
    font-size: clamp(1.35rem, 2.1vw, 1.85rem);
    line-height: 1.04;
    text-transform: uppercase;
    color: var(--ink);
}

.day-inspiration-timeline {
    list-style: none;
    margin: 0;
    padding: 0 0 0 1.05rem;
    position: relative;
}

.day-inspiration-timeline::before {
    content: '';
    position: absolute;
    left: 0.25rem;
    top: 0.2rem;
    bottom: 0.2rem;
    width: 2px;
    border-radius: 99px;
    background: rgba(13, 110, 207, 0.22);
}

.day-inspiration-timeline li {
    position: relative;
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 0.6rem;
    align-items: start;
    padding-left: 0.7rem;
}

.day-inspiration-timeline li + li {
    margin-top: 0.7rem;
}

.day-inspiration-timeline li::before {
    content: '';
    position: absolute;
    left: -0.15rem;
    top: 0.45rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--ocean-blue);
    box-shadow: 0 0 0 5px rgba(13, 110, 207, 0.14);
}

.day-inspiration-time {
    color: var(--ocean-blue);
    font-weight: 800;
    font-size: 0.96rem;
    letter-spacing: 0.01em;
}

.day-inspiration-copy {
    color: var(--ink-soft);
    font-size: 0.97rem;
    line-height: 1.35;
}

.day-inspiration-copy strong {
    color: var(--ink);
}

.site-footer {
    padding: 1.3rem 0 2rem;
    border-top: 1px solid rgba(215, 209, 198, 0.8);
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.8rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.trust-badges span {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.32rem 0.72rem;
    font-size: 0.82rem;
    color: var(--ink-soft);
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 32, 0.62);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 120;
}

.modal[aria-hidden="false"] {
    display: flex;
}

.modal-content {
    width: min(620px, 95vw);
    max-height: 92vh;
    overflow: auto;
    padding: 1rem;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 0.6rem;
    top: 0.6rem;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.66);
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
}

.modal-content img {
    border-radius: var(--radius-sm);
    margin-bottom: 0.8rem;
}

.modal-prices {
    margin-bottom: 1rem;
}

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

    .combos-layout {
        grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
    }

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

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

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

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

@media (max-width: 1320px) {
    .reserve-trust-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

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

@media (max-width: 960px) {
    .hero-grid,
    .reserve-grid,
    .combos-layout,
    .combo-blocks,
    .combo-landing-grid,
    .combo-site-overview-grid,
    .split-cards {
        grid-template-columns: 1fr;
    }

    .summary-rail,
    .reserve-summary-rail .reservation-summary-card {
        position: static;
        top: auto;
    }

    .combos-layout .summary-rail {
        order: -1;
    }

    .combos-main .combo-details-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .reserve-summary-rail {
        max-width: none;
    }

    .reserve-form .ship-options .ship-options-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reserve-form .referral-options .ship-options-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .day-inspiration-grid {
        grid-template-columns: 1fr;
    }

    .header-inner {
        --mobile-header-row-height: 72px;
        min-height: var(--mobile-header-row-height);
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        grid-template-rows: var(--mobile-header-row-height) auto;
        align-items: center;
        align-content: start;
        gap: 0.55rem;
    }

    .brand {
        grid-column: 2;
        grid-row: 1;
        justify-self: center;
        align-self: center;
        text-align: center;
        font-size: clamp(1.1rem, 5vw, 1.45rem);
    }

    .menu-toggle {
        display: inline-flex;
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
        align-self: center;
    }

    .main-nav {
        display: none;
        grid-column: 1 / -1;
        grid-row: 2;
        margin-top: 0.45rem;
        padding: 0.45rem;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: #fff;
        box-shadow: var(--shadow);
        gap: 0.35rem;
    }

    .site-header.is-menu-open .main-nav {
        display: grid;
        grid-template-columns: 1fr;
    }

    .main-nav a {
        display: block;
        padding: 0.62rem 0.72rem;
        border-radius: 10px;
    }

    .cta-steps li {
        min-height: 74px;
    }

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

    .combo-timeline-row {
        grid-template-columns: 100px 20px minmax(0, 1fr);
    }

    .combo-hero-media img {
        max-height: 300px;
    }
}

@media (max-width: 680px) {
    body {
        background: linear-gradient(180deg, #fbf8f2 0%, #f1ece0 100%);
    }

    .section {
        padding: 2.4rem 0;
    }

    .day-inspiration-card {
        padding: 0.9rem;
    }

    .reserve-trust-grid {
        grid-template-columns: 1fr;
    }

    .reserve-trust-card {
        grid-template-columns: 62px minmax(0, 1fr);
        padding: 0.8rem 0.75rem;
    }

    .reserve-trust-icon {
        width: 46px;
        height: 46px;
    }

    .reserve-trust-icon svg {
        width: 23px;
        height: 23px;
    }

    .day-inspiration-timeline {
        padding-left: 0;
    }

    .day-inspiration-timeline::before,
    .day-inspiration-timeline li::before {
        display: none;
    }

    .day-inspiration-timeline li {
        grid-template-columns: 1fr;
        gap: 0.22rem;
        padding-left: 0;
    }

    .activity-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .activity-actions {
        flex-direction: column;
    }

    .activity-actions .btn {
        width: 100%;
        min-width: 0;
    }

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

    .hero-highlights li {
        gap: 0.4rem;
        padding: 0.78rem 0.8rem;
        min-height: 0;
        aspect-ratio: auto;
    }

    .hero-highlight-copy strong {
        font-size: 0.92rem;
    }

    .hero-highlight-copy > span {
        font-size: 0.82rem;
    }

    .cta-strip-inner {
        padding: 1rem;
    }

    .cta-steps {
        grid-template-columns: 1fr;
    }

    .cta-steps li {
        min-height: 70px;
        padding: 0.72rem 0.62rem 0.72rem 2.25rem;
    }

    .cta-steps li::before {
        width: 1.25rem;
        height: 1.25rem;
        left: 0.62rem;
        top: 0.7rem;
    }

    .cta-steps strong {
        font-size: 0.95rem;
        margin-bottom: 0.12rem;
    }

    .cta-steps li > span {
        font-size: 0.82rem;
    }

    .btn {
        width: 100%;
    }

    .tour-topbar,
    .calculator-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .reserve-guests-control {
        gap: 0.6rem;
    }

    .guest-picker {
        width: 100%;
    }

    .reserve-guests-control .guest-picker {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .reserve-form .ship-options .ship-options-grid,
    .reserve-form .referral-options .ship-options-grid {
        grid-template-columns: 1fr;
    }

    .combo-details-grid,
    .combos-main .combo-details-grid {
        grid-template-columns: 1fr;
    }

    .combo-detail-gallery {
        grid-template-columns: 1fr;
    }

    .combo-site-gallery {
        grid-template-columns: 1fr;
    }

    .combo-hero-media img {
        max-height: 230px;
    }

    .combo-timeline-row {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }

    .combo-timeline-dot {
        display: none;
    }

    .combo-timeline-time {
        font-size: 0.9rem;
    }

    .selection-media-grid {
        grid-template-columns: 1fr;
    }

    .reservation-breakdown div {
        grid-template-columns: 1fr;
        gap: 0.15rem;
    }

    .header-inner {
        --mobile-header-row-height: 70px;
        min-height: var(--mobile-header-row-height);
    }
}
