:root {
    --bg: #f7f4ee;
    --surface: #fffef9;
    --surface-strong: #ffffff;
    --ink: #0f0f0f;
    --muted: #4a4540;
    --line: rgba(15, 15, 15, 0.09);
    --accent: #c6a04a;
    --accent-strong: #8f6a1f;
    --accent-soft: #f4e5b8;
    --sun: #e6c36e;
    --shadow-lg: 0 32px 88px rgba(15, 15, 15, 0.13);
    --shadow-md: 0 18px 48px rgba(15, 15, 15, 0.09);
    --shadow-sm: 0 8px 24px rgba(15, 15, 15, 0.06);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --max-width: 1200px;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Aptos", "Trebuchet MS", "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(ellipse at top left, rgba(230, 195, 110, 0.14) 0%, transparent 42%),
        radial-gradient(ellipse at top right, rgba(255, 255, 255, 0.6) 0%, transparent 38%),
        linear-gradient(180deg, #fffef9 0%, var(--bg) 60%, #f0ece3 100%);
    min-height: 100vh;
    font-size: 0.96rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

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

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

button {
    cursor: pointer;
}

.site-shell {
    min-height: 100vh;
}

.site-container {
    width: min(calc(100% - 2.5rem), var(--max-width));
    margin: 0 auto;
}

.site-topbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(105deg, #0e0e0e 0%, #1a1510 52%, #7a5a18 100%);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.88rem;
    letter-spacing: 0.01em;
}

.site-topbar__inner,
.site-navbar__inner,
.site-footer__bottom,
.section-head,
.hero-actions,
.hero-metrics,
.travel-card__topline,
.travel-card__actions,
.detail-actions,
.slider-controls,
.detail-gallery__thumbs,
.site-topbar__links,
.site-actions {
    display: flex;
    align-items: center;
}

.site-topbar__inner {
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem 0;
}

.site-topbar__inner p {
    margin: 0;
}

.site-topbar__links {
    gap: 1rem;
    flex-wrap: wrap;
}

.site-topbar__links a {
    color: #fff5da;
}

.site-navbar {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    background: rgba(255, 254, 250, 0.94);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 1px 0 rgba(198, 160, 74, 0.08);
}

.site-navbar__inner {
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 0;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}

.brand-mark img,
.brand-mark__fallback {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1.15rem;
    object-fit: cover;
    border: 1px solid rgba(198, 160, 74, 0.3);
    box-shadow: var(--shadow-sm);
    background: linear-gradient(135deg, #d5b15f 0%, #191919 100%);
    color: white;
    display: grid;
    place-items: center;
    font-family: "Aptos Display", "Trebuchet MS", "Segoe UI", sans-serif;
    font-weight: 600;
}

.brand-mark__copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand-mark__copy strong {
    font-family: "Aptos Display", "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: 0.98rem;
    letter-spacing: -0.02em;
    font-weight: 600;
}

.site-nav-wrap {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-nav a {
    color: var(--muted);
    font-weight: 500;
    position: relative;
    transition: color 0.2s ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.45rem;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--accent);
    transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--ink);
}

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

.site-actions {
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.action-chip,
.button,
.slider-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 500;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.action-chip,
.button {
    padding: 0.85rem 1.2rem;
}

.action-chip:hover,
.button:hover,
.slider-button:hover {
    transform: translateY(-1px);
}

.action-chip--ghost,
.button--secondary,
.button--ghost,
.slider-button {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.7);
    color: var(--ink);
}

.action-chip--primary,
.button--primary {
    color: #111111;
    background: linear-gradient(135deg, var(--accent) 0%, var(--sun) 100%);
    box-shadow: 0 14px 35px rgba(198, 160, 74, 0.28);
}

.button--ghost {
    box-shadow: none;
}

.action-chip__count {
    min-width: 1.75rem;
    height: 1.75rem;
    border-radius: 999px;
    padding: 0 0.45rem;
    background: var(--accent-soft);
    color: var(--accent-strong);
    display: inline-grid;
    place-items: center;
    font-size: 0.86rem;
}

.user-chip {
    padding: 0.75rem 1rem;
    background: rgba(198, 160, 74, 0.12);
    border-radius: 999px;
    color: var(--accent-strong);
    font-weight: 500;
}

.nav-toggle {
    display: none;
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.8);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.35rem;
}

.nav-toggle span {
    width: 1.1rem;
    height: 2px;
    background: var(--ink);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-main {
    padding-bottom: 0;
}

.section-block,
.hero-section,
.page-hero,
.detail-shell,
.cta-banner,
.auth-shell {
    padding: 5.5rem 0;
}

.hero-section {
    padding-top: 4rem;
}

.hero-grid,
.story-panel,
.page-hero__grid,
.detail-grid,
.contact-grid {
    display: grid;
    gap: 2rem;
}

.hero-grid,
.story-panel,
.page-hero__grid,
.detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1,
.auth-card h1,
.hero-stage__content h1,
.gallery-detail-hero__content h1 {
    margin: 0;
    font-family: "Aptos Display", "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: clamp(2rem, 3.4vw, 3.8rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    font-weight: 600;
}

.hero-copy__lead,
.page-hero__lead,
.detail-summary,
.footer-copy,
.auth-card__intro p,
.rich-copy,
.travel-card p,
.attraction-card p,
.value-card p,
.story-panel__copy p,
.contact-stack {
    color: var(--muted);
    line-height: 1.7;
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent);
    margin: 0 0 0.9rem;
}

.section-label--light {
    color: rgba(255, 241, 208, 0.95);
}

.hero-actions {
    gap: 0.9rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.hero-metrics,
.page-hero__metrics {
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-metrics article,
.page-hero__metrics article,
.site-toast {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.hero-metrics article,
.page-hero__metrics article {
    min-width: 9.5rem;
    padding: 1rem 1.1rem;
    display: grid;
    gap: 0.2rem;
}

.hero-metrics strong,
.page-hero__metrics strong,
.detail-price {
    font-family: "Aptos Display", "Trebuchet MS", "Segoe UI", sans-serif;
}

.hero-metrics strong,
.page-hero__metrics strong,
.detail-price {
    font-size: 1.15rem;
    font-weight: 600;
}

.hero-metrics span,
.page-hero__metrics span {
    color: var(--muted);
}

.hero-visual {
    position: relative;
    min-height: 34rem;
}

.hero-visual__main {
    width: 100%;
    height: 100%;
    min-height: 34rem;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.hero-visual__thumb,
.page-hero__media img {
    position: absolute;
    right: 1.2rem;
    bottom: -1.4rem;
    width: clamp(10rem, 26vw, 15rem);
    aspect-ratio: 1 / 1.08;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 6px solid rgba(255, 255, 255, 0.75);
}

.page-hero__media {
    position: relative;
    min-height: 23rem;
}

.page-hero__media img {
    position: static;
    width: 100%;
    height: 100%;
    min-height: 23rem;
}

.hero-card {
    position: absolute;
    left: 1.2rem;
    bottom: 1.4rem;
    max-width: 16rem;
    padding: 1rem 1.1rem;
    border-radius: var(--radius-md);
    background: rgba(17, 17, 17, 0.92);
    color: white;
    box-shadow: var(--shadow-md);
}

.hero-card p,
.hero-card span {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

.hero-card strong {
    display: block;
    margin: 0.35rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.hero-stage {
    padding: 0 0 1.75rem;
}

.hero-stage__shell {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    min-height: clamp(38rem, 92vh, 54rem);
    box-shadow: none;
    background: #111111;
}

.hero-stage__media,
.hero-carousel__slide,
.hero-stage__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-carousel__slide {
    margin: 0;
    opacity: 0;
    transition: opacity 900ms ease;
}

.hero-carousel__slide.is-active {
    opacity: 1;
}

.hero-stage__media img {
    object-fit: cover;
}

.hero-stage__media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(10, 10, 10, 0.58) 0%, rgba(10, 10, 10, 0.38) 38%, rgba(10, 10, 10, 0.12) 68%, rgba(10, 10, 10, 0.24) 100%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.08) 0%, rgba(10, 10, 10, 0.22) 100%);
}

.hero-stage__inner {
    position: relative;
    z-index: 1;
    min-height: inherit;
    display: grid;
    align-content: space-between;
    gap: 2rem;
    padding: clamp(2.2rem, 5vw, 4.75rem) clamp(1.2rem, 4vw, 4rem) clamp(1.8rem, 4vw, 3.5rem);
}

.hero-stage__content {
    display: grid;
    gap: 1rem;
    max-width: 42rem;
    align-content: center;
    padding-top: clamp(2rem, 7vh, 5rem);
}

.hero-stage__content h1,
.gallery-detail-hero__content h1 {
    color: white;
    max-width: 12ch;
}

.hero-stage__content .hero-copy__lead,
.gallery-detail-hero__content .page-hero__lead {
    color: rgba(255, 255, 255, 0.88);
    max-width: 34rem;
}

.hero-carousel__controls {
    justify-self: end;
    align-self: end;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(10, 10, 10, 0.24);
    backdrop-filter: blur(10px);
}

.hero-carousel__arrow,
.hero-carousel__dot {
    border: 0;
    background: transparent;
    color: white;
    cursor: pointer;
}

.hero-carousel__arrow {
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    font-size: 1.45rem;
    line-height: 1;
}

.hero-carousel__arrow:hover,
.hero-carousel__arrow:focus-visible {
    background: rgba(255, 255, 255, 0.16);
}

.hero-carousel__dots {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-carousel__dot {
    width: 0.52rem;
    height: 0.52rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
    padding: 0;
}

.hero-carousel__dot.is-active {
    width: 1.45rem;
    background: var(--gold);
}

.trust-strip {
    padding: 0 0 1rem;
}

.trust-strip__inner {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.trust-pill,
.travel-card,
.attraction-card,
.value-card,
.detail-card,
.info-panel,
.auth-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 999px;
}

.trust-pill img {
    width: 1.5rem;
    height: 1.5rem;
    object-fit: cover;
}

.section-head {
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2.2rem;
    align-items: flex-end;
}

.section-head h2 {
    margin: 0.3rem 0 0;
    font-size: clamp(1.45rem, 2.2vw, 2.3rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    font-family: "Aptos Display", "Trebuchet MS", "Segoe UI", sans-serif;
    font-weight: 600;
}

.section-link {
    color: var(--accent-strong);
    font-weight: 500;
}

.card-grid,
.value-stack,
.info-stack,
.contact-grid {
    display: grid;
    gap: 1.4rem;
}

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

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

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

.travel-card,
.attraction-card,
.why-card,
.value-card,
.detail-card,
.info-panel,
.auth-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.travel-card {
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.travel-card__media,
.attraction-card > a {
    position: relative;
}

.travel-card__media img,
.attraction-card img {
    width: 100%;
    height: 18rem;
    object-fit: cover;
}

.travel-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.9);
    color: #f8e9bf;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.travel-card__body,
.attraction-card__body,
.why-card,
.value-card,
.detail-card,
.auth-card {
    padding: 1.5rem;
}

.travel-card__topline,
.travel-card__actions,
.detail-actions,
.detail-gallery__thumbs,
.slider-controls {
    justify-content: space-between;
}

.travel-card__topline {
    gap: 1rem;
    align-items: flex-start;
}

.travel-card__topline h3,
.attraction-card__body h3,
.why-card h3,
.value-card h2,
.value-card h3,
.info-panel h3,
.detail-card h2 {
    margin: 0;
    font-size: 1.08rem;
    letter-spacing: -0.03em;
    font-family: "Aptos Display", "Trebuchet MS", "Segoe UI", sans-serif;
    font-weight: 600;
}

.why-card {
    display: grid;
    gap: 0.85rem;
    align-content: start;
}

.why-card p {
    margin: 0;
}

.travel-card__topline strong {
    white-space: nowrap;
    color: var(--accent-strong);
    font-size: 0.95rem;
    font-weight: 500;
}

.travel-card__tags {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.travel-card__tags span {
    padding: 0.45rem 0.75rem;
    background: var(--accent-soft);
    border-radius: 999px;
    font-size: 0.78rem;
    color: var(--accent-strong);
    font-weight: 500;
}

.travel-card__actions {
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 0 1.5rem 1.5rem;
}

.travel-card__actions--inline {
    justify-content: flex-start;
    padding: 0;
    margin-top: 1.15rem;
}

.travel-card__actions form {
    margin: 0;
}

.button--full {
    width: 100%;
}

.section-block--muted,
.page-hero,
.auth-shell {
    background: linear-gradient(180deg, rgba(230, 195, 110, 0.09) 0%, rgba(255, 255, 255, 0) 100%);
}

.attraction-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(17rem, 22rem);
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding-bottom: 0.5rem;
}

.attraction-strip::-webkit-scrollbar {
    height: 10px;
}

.attraction-strip::-webkit-scrollbar-thumb {
    background: rgba(198, 160, 74, 0.35);
    border-radius: 999px;
}

.attraction-card {
    scroll-snap-align: start;
}

.attraction-card__body {
    display: grid;
    gap: 0.75rem;
}

.story-panel__copy,
.story-panel__quote,
.value-card,
.auth-card__intro {
    display: grid;
    gap: 1rem;
}

.story-panel__list {
    display: grid;
    gap: 0.9rem;
    margin-top: 1rem;
}

.story-panel__list div {
    padding: 1rem 1.1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid var(--line);
}

.story-panel__list strong {
    display: block;
    margin-bottom: 0.3rem;
    font-family: "Aptos Display", "Trebuchet MS", "Segoe UI", sans-serif;
    font-weight: 600;
}

.story-panel__quote {
    border-radius: var(--radius-xl);
    padding: 2rem;
    color: white;
    background: linear-gradient(135deg, #101010 0%, #3b2b0e 55%, var(--accent) 100%);
    box-shadow: var(--shadow-lg);
}

.story-panel__quote blockquote {
    margin: 0;
    font-size: clamp(1.05rem, 2vw, 1.5rem);
    line-height: 1.4;
    letter-spacing: -0.03em;
    font-family: "Aptos Display", "Trebuchet MS", "Segoe UI", sans-serif;
    font-weight: 500;
}

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

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

.value-card {
    display: grid;
    align-content: start;
}

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

.cta-banner__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.4rem;
    padding: 2rem;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.98) 0%, rgba(59, 43, 14, 0.98) 58%, rgba(198, 160, 74, 0.95) 100%);
    box-shadow: var(--shadow-lg);
    color: white;
}

.cta-banner__inner h2 {
    margin: 0.35rem 0 0;
    font-size: clamp(1.35rem, 2vw, 2rem);
    letter-spacing: -0.04em;
    font-family: "Aptos Display", "Trebuchet MS", "Segoe UI", sans-serif;
    font-weight: 600;
}

.detail-grid {
    align-items: start;
}

.detail-gallery,
.detail-copy {
    display: grid;
    gap: 1rem;
}

.detail-gallery__frame {
    overflow: hidden;
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-md);
}

.detail-gallery__frame img {
    width: 100%;
    height: min(60vh, 34rem);
    object-fit: cover;
}

.detail-gallery__thumbs {
    gap: 0.75rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.detail-gallery__thumb {
    width: 6.5rem;
    height: 6.5rem;
    padding: 0;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: transparent;
}

.detail-gallery__thumb.is-active {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(198, 160, 74, 0.16);
}

.detail-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-copy {
    position: sticky;
    top: 7rem;
}

.detail-price {
    margin: 0;
    color: var(--accent-strong);
}

.detail-actions {
    gap: 0.9rem;
    flex-wrap: wrap;
}

.detail-card--full {
    padding: 2rem;
}

.section-block--booking {
    background: linear-gradient(180deg, rgba(197, 151, 64, 0.1), rgba(255, 255, 255, 0));
}

.bokun-embed {
    width: 100%;
    padding: clamp(1rem, 3vw, 2rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-sm);
    overflow-x: auto;
}

.bokun-embed iframe,
.bokun-embed bokun-widget,
.bokun-embed .bokunWidget {
    max-width: 100%;
}

.rich-copy,
.rich-copy p,
.rich-copy li {
    white-space: normal;
}

.rich-copy ul,
.rich-copy ol {
    padding-left: 1.25rem;
}

.rich-copy--wide {
    font-size: 1.02rem;
}

.info-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(15rem, 0.9fr);
    gap: 1.25rem;
    align-items: center;
}

.info-panel img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.info-panel__media {
    display: block;
}

.gallery-spotlight,
.gallery-focus,
.gallery-card,
.gallery-share-card {
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--shadow-sm);
}

.gallery-spotlight {
    position: relative;
    overflow: hidden;
    min-height: 26rem;
}

.gallery-spotlight img,
.gallery-focus__frame img,
.gallery-card__media img,
.gallery-share-card__image {
    width: 100%;
    object-fit: cover;
}

.gallery-spotlight img {
    height: 100%;
    min-height: 26rem;
}

.gallery-spotlight__copy {
    position: absolute;
    right: 1.25rem;
    bottom: 1.25rem;
    left: 1.25rem;
    padding: 1.1rem 1.15rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.08) 0%, rgba(17, 17, 17, 0.82) 100%);
    color: white;
}

.gallery-spotlight__copy .section-label,
.gallery-spotlight__copy p {
    color: rgba(255, 255, 255, 0.9);
}

.gallery-spotlight__copy h2 {
    margin: 0 0 0.55rem;
    font-size: 1.55rem;
    font-family: "Aptos Display", "Trebuchet MS", "Segoe UI", sans-serif;
    font-weight: 600;
}

.gallery-spotlight__empty {
    display: grid;
    place-items: center;
    min-height: 26rem;
    text-align: center;
}

.gallery-detail-hero {
    position: relative;
    min-height: 90vh;
    display: grid;
    align-items: end;
    overflow: hidden;
    background: #111111;
}

.gallery-detail-hero__image,
.gallery-detail-hero__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.gallery-detail-hero__image {
    object-fit: cover;
}

.gallery-detail-hero__shade {
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.16) 0%, rgba(10, 10, 10, 0.28) 42%, rgba(10, 10, 10, 0.84) 100%),
        linear-gradient(90deg, rgba(10, 10, 10, 0.68) 0%, rgba(10, 10, 10, 0.18) 58%, rgba(10, 10, 10, 0.52) 100%);
}

.gallery-detail-hero__content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1rem;
    padding: clamp(2rem, 4vw, 4rem) 0;
    color: white;
}

.gallery-detail-hero__back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

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

.gallery-layout {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: start;
}

.gallery-focus {
    overflow: hidden;
}

.gallery-focus__frame {
    border-bottom: 1px solid var(--line);
}

.gallery-focus__frame img {
    height: min(68vh, 38rem);
}

.gallery-focus__copy {
    display: grid;
    gap: 1rem;
    padding: 1.4rem;
}

.gallery-focus__copy h2,
.gallery-card__body h3 {
    margin: 0;
    font-size: 1.15rem;
    letter-spacing: -0.03em;
    font-family: "Aptos Display", "Trebuchet MS", "Segoe UI", sans-serif;
    font-weight: 600;
}

.gallery-focus__meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.86rem;
}

.gallery-focus__meta span {
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(198, 160, 74, 0.12);
    color: var(--accent-strong);
}

.gallery-wall__summary {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.gallery-wall__summary span {
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgba(198, 160, 74, 0.12);
    color: var(--accent-strong);
    font-size: 0.82rem;
}

.gallery-filter-bar {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.gallery-filter-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(17, 17, 17, 0.1);
    background: rgba(255, 255, 255, 0.84);
    color: var(--ink);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.gallery-filter-chip:hover {
    transform: translateY(-1px);
    border-color: rgba(198, 160, 74, 0.4);
    box-shadow: var(--shadow-sm);
}

.gallery-filter-chip.is-active {
    border-color: rgba(198, 160, 74, 0.52);
    background: linear-gradient(135deg, #111111 0%, #2c1e09 52%, #c6a04a 100%);
    color: white;
    box-shadow: 0 18px 34px rgba(17, 17, 17, 0.16);
}

.gallery-experience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.gallery-experience-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 245, 235, 0.92) 100%);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 18px 36px rgba(17, 17, 17, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.gallery-experience-card:hover {
    transform: translateY(-4px);
    border-color: rgba(198, 160, 74, 0.34);
    box-shadow: 0 26px 44px rgba(17, 17, 17, 0.12);
}

.gallery-experience-card .travel-card__media {
    overflow: hidden;
}

.gallery-experience-card .travel-card__media::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, rgba(17, 17, 17, 0.28) 100%);
    pointer-events: none;
}

.gallery-experience-card .travel-card__media img {
    height: clamp(15.5rem, 25vw, 19rem);
    transition: transform 0.32s ease;
}

.gallery-experience-card:hover .travel-card__media img {
    transform: scale(1.03);
}

.gallery-experience-card .travel-card__badge {
    background: rgba(255, 249, 237, 0.92);
    color: #111111;
    border: 1px solid rgba(17, 17, 17, 0.08);
}

.gallery-experience-card .travel-card__body {
    display: grid;
    gap: 0.95rem;
}

.gallery-experience-card .travel-card__topline {
    gap: 0.8rem;
}

.gallery-experience-card .travel-card__topline strong {
    color: #8e6923;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.gallery-experience-card .travel-card__tags span {
    background: rgba(198, 160, 74, 0.1);
}

.gallery-experience-card .travel-card__actions {
    padding-top: 0.15rem;
}

.gallery-masonry {
    display: grid;
    gap: 1.4rem;
}

.gallery-masonry__row {
    display: grid;
    gap: 1.4rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
}

.gallery-masonry__row.is-reversed .gallery-card--lead {
    order: 2;
}

.gallery-masonry__row.is-reversed .gallery-masonry__stack {
    order: 1;
}

.gallery-masonry__row--single {
    grid-template-columns: 1fr;
}

.gallery-masonry__stack {
    display: grid;
    gap: 1.4rem;
    grid-template-rows: repeat(2, minmax(0, 1fr));
}

.gallery-masonry__stack--single {
    grid-template-rows: 1fr;
}

.faq-stack {
    display: grid;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.3rem;
    border: 0;
    background: transparent;
    color: var(--ink);
    text-align: left;
}

.faq-question span,
.faq-question strong {
    font-family: "Aptos Display", "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

.faq-question strong {
    color: var(--accent-strong);
    flex: 0 0 auto;
}

.faq-answer {
    padding: 0 1.3rem 1.3rem;
}

.faq-item.is-open .faq-question {
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.gallery-card {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.gallery-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.gallery-card.is-selected {
    border-color: rgba(198, 160, 74, 0.45);
    box-shadow: 0 0 0 4px rgba(198, 160, 74, 0.12);
}

.gallery-card__media {
    display: block;
    position: relative;
    height: 100%;
}

.gallery-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.06) 0%, rgba(17, 17, 17, 0.2) 50%, rgba(17, 17, 17, 0.84) 100%);
}

.gallery-card__media img {
    height: 100%;
    min-height: 100%;
}

.gallery-card--lead {
    min-height: clamp(23rem, 40vw, 35rem);
}

.gallery-masonry__stack .gallery-card {
    min-height: clamp(12rem, 19vw, 16.5rem);
}

.gallery-card__body {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    z-index: 1;
    display: grid;
    gap: 0.85rem;
    padding: 1rem 1.05rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.08) 0%, rgba(17, 17, 17, 0.72) 100%);
}

.gallery-card__body p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.gallery-card__body h3 {
    color: white;
}

.gallery-card__body .section-label {
    margin-bottom: 0;
    color: rgba(255, 241, 208, 0.92);
}

.gallery-card__actions {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.gallery-card__actions .button {
    width: auto;
    padding: 0.7rem 0.95rem;
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.18);
}

.gallery-card__actions .button--secondary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--sun) 100%);
    color: #111111;
    border-color: transparent;
}

.gallery-card--stack .gallery-card__body {
    gap: 0.7rem;
}

.gallery-card--stack .gallery-card__body p {
    font-size: 0.83rem;
    line-height: 1.6;
}

.gallery-share-card {
    max-width: 42rem;
    margin: 0 auto;
    padding: 1.6rem;
    display: grid;
    gap: 1rem;
}

.gallery-share-card__image {
    height: min(48vh, 22rem);
    border-radius: var(--radius-lg);
}

.section-head--compact {
    margin-bottom: 1.2rem;
}

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

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

.guide-card,
.guide-spotlight {
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.guide-card {
    display: grid;
    grid-template-rows: auto 1fr;
}

.guide-card__media img,
.guide-spotlight img {
    width: 100%;
    object-fit: cover;
}

.guide-card__media img {
    height: 18rem;
}

.guide-card__body {
    display: grid;
    gap: 0.9rem;
    padding: 1.3rem;
}

.guide-card__body h3,
.guide-spotlight__copy h2 {
    margin: 0;
    font-size: 1.18rem;
    letter-spacing: -0.03em;
    font-family: "Aptos Display", "Trebuchet MS", "Segoe UI", sans-serif;
    font-weight: 600;
}

.guide-card__body p,
.guide-spotlight__copy p {
    margin: 0;
    color: var(--muted);
}

.guide-card__meta {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.guide-card__meta span {
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(198, 160, 74, 0.12);
    color: var(--accent-strong);
    font-size: 0.8rem;
}

.guide-card__detail {
    display: grid;
    gap: 0.35rem;
    padding-top: 0.35rem;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.guide-card__detail strong {
    font-family: "Aptos Display", "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
}

.guide-spotlight {
    position: relative;
    min-height: 28rem;
}

.guide-spotlight img {
    height: 100%;
    min-height: 28rem;
}

.guide-spotlight__copy {
    position: absolute;
    right: 1.25rem;
    bottom: 1.25rem;
    left: 1.25rem;
    display: grid;
    gap: 0.65rem;
    padding: 1.15rem 1.2rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.1) 0%, rgba(17, 17, 17, 0.82) 100%);
    color: white;
}

.guide-spotlight__copy .section-label,
.guide-spotlight__copy p {
    color: rgba(255, 255, 255, 0.9);
}

.guide-spotlight__empty {
    display: grid;
    place-items: center;
    min-height: 28rem;
    text-align: center;
}

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

.contact-stack {
    display: grid;
    gap: 0.65rem;
}

.contact-stack a {
    color: var(--accent-strong);
    font-weight: 500;
}

.flash-stack {
    display: grid;
    gap: 0.75rem;
    padding-top: 1rem;
}

.flash-card,
.affiliate-stats article,
.affiliate-table__row {
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-sm);
}

.modal.fade {
    opacity: 0;
    transition: opacity 0.22s ease;
}

.modal.show {
    opacity: 1;
}

.auth-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
    padding: 1rem;
    background: rgba(17, 17, 17, 0.58);
    backdrop-filter: blur(8px);
}

.auth-modal.show {
    display: grid;
    place-items: center;
}

.auth-modal__dialog {
    width: min(100%, 30rem);
}

.auth-modal__content {
    position: relative;
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(198, 160, 74, 0.25);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(251, 246, 234, 0.98) 100%);
    box-shadow: var(--shadow-lg);
}

.auth-modal__copy {
    display: grid;
    gap: 0.9rem;
    margin-bottom: 1.25rem;
}

.auth-modal__copy h2 {
    margin: 0;
    font-size: 1.45rem;
    font-family: "Aptos Display", "Trebuchet MS", "Segoe UI", sans-serif;
    font-weight: 600;
}

.auth-modal__copy p {
    margin: 0;
    color: var(--muted);
}

.auth-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    font-size: 1.2rem;
    line-height: 1;
}

.modal-open {
    overflow: hidden;
}

.flash-card {
    padding: 0.9rem 1rem;
    color: var(--accent-strong);
}

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

.affiliate-grid--single {
    grid-template-columns: 1fr;
}

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

.affiliate-stats article {
    padding: 1rem;
    display: grid;
    gap: 0.25rem;
}

.affiliate-stats span,
.affiliate-table small {
    color: var(--muted);
}

.affiliate-stats strong {
    font-family: "Aptos Display", "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
}

.affiliate-head {
    margin-bottom: 1rem;
}

.affiliate-table {
    display: grid;
    gap: 0.85rem;
}

.affiliate-table__row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    align-items: center;
}

.affiliate-table__row strong {
    font-weight: 600;
}

.legal-stack {
    display: grid;
    gap: 1rem;
}

.legal-section {
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.legal-section summary {
    list-style: none;
    cursor: pointer;
    padding: 1.2rem 1.35rem;
    font-family: "Aptos Display", "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: 0.98rem;
    font-weight: 600;
}

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

.legal-section[open] summary {
    border-bottom: 1px solid var(--line);
}

.legal-section > div {
    padding: 0 1.35rem 1.35rem;
    color: var(--muted);
    line-height: 1.7;
}

.empty-state {
    text-align: center;
    padding: 3rem;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.auth-shell {
    display: grid;
    place-items: center;
    min-height: calc(100vh - 18rem);
}

.auth-card {
    width: min(100%, 34rem);
    padding: 2rem;
}

.auth-card--compact {
    width: min(100%, 28rem);
}

.auth-social,
.auth-form {
    display: grid;
    gap: 1rem;
}

.auth-divider {
    position: relative;
    margin: 1.25rem 0;
    text-align: center;
    color: var(--muted);
}

.auth-divider::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: var(--line);
}

.auth-divider span {
    position: relative;
    padding: 0 0.8rem;
    background: rgba(255, 255, 255, 0.72);
}

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

.form-field span {
    font-weight: 500;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(22, 33, 29, 0.14);
    background: rgba(255, 255, 255, 0.92);
}

.form-field small,
.form-error {
    color: #b42318;
}

.auth-footnote {
    margin: 1rem 0 0;
    color: var(--muted);
}

.auth-footnote a {
    color: var(--accent-strong);
    font-weight: 500;
}

.site-footer {
    background: linear-gradient(165deg, #0c0c0c 0%, #14100a 50%, #0a0a0a 100%);
    color: rgba(255, 255, 255, 0.88);
    padding: 4.5rem 0 0;
}

.site-footer__grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1.4fr 1fr 1fr;
    padding-bottom: 3.5rem;
}

.site-footer__brand {
    display: grid;
    gap: 1.2rem;
    align-content: start;
}

.site-footer__logo {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 1rem;
    object-fit: cover;
    border: 1px solid rgba(198, 160, 74, 0.25);
}

.site-footer__motto {
    margin: 0;
    font-family: "Aptos Display", "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.3;
    max-width: 18rem;
}

.site-footer h2 {
    margin: 0.35rem 0 1rem;
    font-size: 1.25rem;
    font-family: "Aptos Display", "Trebuchet MS", "Segoe UI", sans-serif;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.88);
}

.footer-cta {
    display: grid;
    gap: 1rem;
}

.footer-cta__links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem 1.1rem;
}

.footer-cta__links a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-cta__links a:hover {
    color: #f8e9bf;
}

.site-footer__bottom {
    justify-content: space-between;
    gap: 1rem;
    padding: 1.4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.84rem;
}

.site-footer__bottom a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.84rem;
    transition: color 0.2s ease;
}

.site-footer__bottom a:hover {
    color: var(--accent);
}

.site-toast {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 50;
    padding: 1rem 1.15rem;
    max-width: 20rem;
    color: var(--ink);
    opacity: 0;
    transform: translateY(0.8rem);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(1.2rem);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

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

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.42s ease;
}

img[loading="lazy"].img-loaded {
    opacity: 1;
}

.img-wrap {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(198, 160, 74, 0.08) 0%, rgba(230, 220, 200, 0.18) 100%);
}

@media (max-width: 1120px) {
    .card-grid,
    .contact-grid,
    .why-grid,
    .affiliate-grid,
    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .site-footer__brand {
        grid-column: 1 / -1;
    }

    .card-grid--attractions,
    .value-stack,
    .value-stack--wide {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-grid,
    .story-panel,
    .page-hero__grid,
    .detail-grid,
    .info-panel,
    .gallery-layout,
    .team-grid--wide {
        grid-template-columns: 1fr;
    }

    .hero-stage__shell {
        min-height: 36rem;
    }

    .hero-stage__metrics,
    .gallery-masonry__row {
        grid-template-columns: 1fr;
    }

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

    .gallery-masonry__row.is-reversed .gallery-card--lead,
    .gallery-masonry__row.is-reversed .gallery-masonry__stack {
        order: initial;
    }

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

    .gallery-wall__summary {
        justify-content: flex-start;
    }

    .detail-copy {
        position: static;
    }
}

@media (max-width: 860px) {
    .nav-toggle {
        display: inline-flex;
    }

    .site-nav-wrap {
        position: absolute;
        left: 1rem;
        right: 1rem;
        top: calc(100% + 0.75rem);
        padding: 1rem;
        border-radius: var(--radius-lg);
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--shadow-md);
        display: none;
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav-wrap.is-open {
        display: flex;
    }

    .site-nav,
    .site-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .site-actions {
        justify-content: stretch;
    }

    .footer-cta__links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }

    .site-topbar__inner,
    .cta-banner__inner,
    .affiliate-table__row {
        flex-direction: column;
        align-items: flex-start;
    }

    .card-grid,
    .card-grid--attractions,
    .contact-grid,
    .why-grid,
    .value-stack,
    .value-stack--wide,
    .team-grid,
    .team-grid--wide,
    .site-footer__grid,
    .affiliate-grid,
    .affiliate-stats,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .site-footer__brand {
        grid-column: auto;
    }

    .hero-stage__shell {
        min-height: 32rem;
    }

    .hero-stage__inner {
        padding-top: 1.8rem;
    }

    .hero-stage__content h1,
    .gallery-detail-hero__content h1 {
        max-width: 14ch;
    }

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

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

    .gallery-filter-bar {
        gap: 0.55rem;
    }

    .hero-visual {
        min-height: 26rem;
    }

    .hero-visual__main {
        min-height: 26rem;
    }

    .gallery-spotlight {
        min-height: 22rem;
    }

    .gallery-spotlight img {
        min-height: 22rem;
    }

    .gallery-detail-hero {
        min-height: 74vh;
    }

    .gallery-card--lead,
    .gallery-masonry__stack .gallery-card {
        min-height: 20rem;
    }

    .guide-spotlight {
        min-height: 22rem;
    }

    .guide-spotlight img {
        min-height: 22rem;
    }

    .hero-visual__thumb {
        display: none;
    }

    .hero-card {
        position: static;
        margin-top: 1rem;
        max-width: none;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .site-container {
        width: min(calc(100% - 1.5rem), var(--max-width));
    }

    .section-block,
    .hero-section,
    .page-hero,
    .detail-shell,
    .cta-banner,
    .auth-shell {
        padding: 3.5rem 0;
    }

    .site-topbar__inner {
        align-items: flex-start;
    }

    .hero-copy h1,
    .page-hero h1,
    .detail-copy h1,
    .auth-card h1,
    .hero-stage__content h1,
    .gallery-detail-hero__content h1 {
        font-size: clamp(1.8rem, 8vw, 2.7rem);
    }

    .hero-metrics article,
    .page-hero__metrics article {
        width: 100%;
    }

    .travel-card__actions,
    .detail-actions,
    .hero-actions {
        align-items: stretch;
    }

    .travel-card__actions .button,
    .travel-card__actions form,
    .detail-actions .button,
    .detail-actions form,
    .hero-actions .button {
        width: 100%;
    }

    .action-chip,
    .button,
    .slider-button {
        width: 100%;
    }

    .slider-controls {
        width: 100%;
    }

    .slider-button {
        flex: 1;
    }

    .detail-gallery__thumb {
        width: 4.9rem;
        height: 4.9rem;
    }

    .gallery-focus__copy,
    .gallery-share-card {
        padding: 1.2rem;
    }

    .hero-stage__inner,
    .gallery-detail-hero__content {
        padding-top: 1.3rem;
        padding-bottom: 1.3rem;
    }

    .gallery-card__body {
        right: 0.8rem;
        bottom: 0.8rem;
        left: 0.8rem;
        padding: 0.9rem;
    }

    .gallery-card__actions .button {
        width: 100%;
    }

    .gallery-spotlight__copy {
        right: 0.85rem;
        bottom: 0.85rem;
        left: 0.85rem;
    }

    .guide-spotlight__copy {
        right: 0.85rem;
        bottom: 0.85rem;
        left: 0.85rem;
    }

    .auth-card,
    .detail-card--full,
    .cta-banner__inner {
        padding: 1.3rem;
    }

    .auth-modal__content {
        padding: 1.35rem;
    }
}
