@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

html {
    min-height: 100%;
    scroll-behavior: smooth;
    background: #f3f4f6;
}

:root {
    --topbar-height: 24px;
    --header-height: 88px;
    --font-theme: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    /* Dark blue-gray (match reference header/footer) */
    --navy: #1f2a33;
    --navy-deep: #1a242c;
    --brand: #111827;
    --bg-page: #f3f4f6;
    --bg-warm: #e6f4f1;
    --bg-muted: #e8ecf1;
    --bg-card: #ffffff;
    --bg-card-soft: #f8fafc;
    --mint: #e6f4f1;
    --purple: #5e35b1;
    --red-accent: #e53935;
    --blob-a: #5e35b1;
    --blob-b: #4527a0;
    --text-heading: #111827;
    --text-body: #374151;
    --text-muted: #6b7280;
    --text-soft: #9ca3af;
    --line: #e5e7eb;
    --line-strong: #d1d5db;
    --accent: #5e35b1;
    --accent-strong: #4527a0;
    --accent-hover: #7e57c2;
    --accent-glow: rgba(94, 53, 177, 0.28);
    --accent-nav: rgba(255, 255, 255, 0.92);
    --ink: #111827;
    --text-on-light: #111827;
    --on-accent: #ffffff;
    --card-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 8px 24px rgba(15, 23, 42, 0.06);
    --card-radius: 12px;
    --radius: var(--card-radius);
    /* Subtle “topo” contour feel on navy (light strokes over dark) */
    --pattern-topo: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='0.55' opacity='0.14'%3E%3Cpath d='M0 52c28-8 52 12 80 8s56-18 80-4'/%3E%3Cpath d='M0 78c32 10 48-6 80 2s48 14 80 6'/%3E%3Cpath d='M0 104c24-6 40 10 72 6s56-12 88-8'/%3E%3Cpath d='M0 30c36 4 52-14 88-10s48 20 72 14'/%3E%3Cpath d='M8 130c40 8 64-10 96-6s48 16 56 20'/%3E%3C/g%3E%3C/svg%3E");
}

body {
    margin: 0;
    min-height: 100%;
    font-family: var(--font-theme);
    color: var(--text-muted);
    -webkit-font-smoothing: antialiased;
    background: var(--bg-page);
    position: relative;
}

/* Light page wash (third theme) */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 50% at 0% 0%, rgba(230, 244, 241, 0.85), transparent 55%),
        radial-gradient(ellipse 55% 40% at 100% 10%, rgba(94, 53, 177, 0.05), transparent 50%);
    opacity: 1;
}

body::after {
    content: none;
}

/* GIGW / accessibility: skip to main landmark */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    position: fixed;
    left: 12px;
    top: 12px;
    z-index: 100000;
    clip: auto;
    width: auto;
    height: auto;
    overflow: visible;
    padding: 10px 16px;
    margin: 0;
    border-radius: 8px;
    font: inherit;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    color: var(--navy-deep);
    background: #fff;
    border: 2px solid var(--accent);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
    outline: none;
}

.site-footer__gigw-ref {
    margin: 0 0 12px;
    font-size: 0.75rem;
    line-height: 1.5;
    color: rgba(248, 250, 252, 0.58);
}

.site-footer__gigw-ref a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.site-footer__gigw-ref a:hover {
    color: #ffffff;
}

.site-footer__gigw-ref abbr {
    text-decoration: none;
    cursor: help;
}

.site-footer__meta-updated {
    margin: 0 0 10px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.02em;
}

/* TOP BAR — ownership strip */
.top-bar {
    position: relative;
    box-sizing: border-box;
    min-height: var(--topbar-height);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px clamp(12px, 3vw, 40px);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-family: var(--font-theme);
    text-align: center;
    z-index: 30;
}

/* MAIN HEADER — navy + topo pattern (layout unchanged) */
.main-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    background: linear-gradient(115deg, var(--navy) 0%, var(--navy-deep) 65%, #141d24 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.18);
    padding: 10px clamp(16px, 6vw, 160px);
    font-family: var(--font-theme);
    overflow: visible;
    isolation: isolate;
    z-index: 20;
}

.main-header::before,
.main-header::after {
    display: none;
}

.main-header .logo,
.main-header .nav-menu {
    position: relative;
    z-index: 2;
}

.logo {
    flex-shrink: 0;
    margin-left: 44px;
    margin-right: 28px;
    text-decoration: none;
    color: inherit;
}

.logo img {
    display: block;
    height: 120px;
    width: auto;
    object-fit: contain;
    transform: translateX(68px);
}

.nav-menu > ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu > ul > li {
    margin: 0 15px;
}

.nav-menu > ul > li > a {
    text-decoration: none;
    color: var(--accent-nav);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: color 0.2s, opacity 0.2s;
}

.nav-menu > ul > li > a.active {
    color: #ffffff;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: var(--red-accent);
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

.main-header .nav-menu > ul > li > a:hover {
    color: #ff9500;
    opacity: 1;
}

.nav-item--dropdown {
    position: relative;
}

.nav-item__trigger {
    cursor: pointer;
}

/* Dropdown caret for "Things To Do" */
.nav-item__trigger::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 10px;
    margin-top: -1px;
    vertical-align: middle;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    opacity: 0.9;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-item--dropdown:hover .nav-item__trigger::after,
.nav-item--dropdown:focus-within .nav-item__trigger::after {
    transform: rotate(-135deg);
    opacity: 1;
}

.nav-dropdown {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%) translateY(-4px);
    margin: 0;
    padding: 6px 0;
    min-width: 200px;
    list-style: none;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}

.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown li {
    margin: 0;
}

.nav-dropdown a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--text-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
    background: var(--mint);
    color: var(--text-heading);
    outline: none;
}

/* ——— Hero image slider ——— */
.hero-slider-block {
    position: relative;
    margin-top: 0;
    margin-bottom: clamp(12px, 2.5vw, 28px);
    width: 100%;
    padding: 0 clamp(12px, 3vw, 28px);
    box-sizing: border-box;
}

.hero-slider-block::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: min(36vw, 200px);
    z-index: 0;
    pointer-events: none;
    background:
        var(--pattern-topo),
        linear-gradient(180deg, rgba(27, 38, 59, 0.92) 0%, rgba(30, 41, 59, 0.55) 55%, transparent 100%);
    background-size: 320px 320px, auto;
    border-radius: 0 0 24px 24px;
}

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.75);
}

.slider-dot.is-active {
    background: var(--red-accent);
    transform: scale(1.35);
    box-shadow: 0 0 0 2px rgba(229, 57, 53, 0.35);
}

.slider-viewport {
    position: relative;
    z-index: 0;
    width: 100%;
    aspect-ratio: 21 / 9;
    max-height: min(74vh, 850px);
    background: #e5e7eb;
    overflow: hidden;
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    border: 1px solid var(--line);
}

.slides {
    display: flex;
    height: 100%;
    will-change: transform;
    transition: transform 0.55s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.slide {
    flex: 0 0 auto;
    height: 100%;
    position: relative;
}

.slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.55);
}

.slider-arrow.prev {
    left: 12px;
}

.slider-arrow.next {
    right: 12px;
}

/* ——— Inner-page photo hero (trekking, agro tourism) ——— */
.pragarh-hero,
.agro-hero {
    position: relative;
    min-height: min(calc(52vh * 1.3), calc(520px * 1.3));
    margin: 0;
    overflow: hidden;
    isolation: isolate;
}

.pragarh-hero__bg,
.agro-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.pragarh-hero__bg {
    background-image: url("pragarh-hero-bg.png");
}

.agro-hero__bg {
    background-image: url("agro-tourism-hero-bg.png");
}

/* ——— About block (below hero on home) ——— */
.about-section {
    padding: clamp(28px, 4vw, 48px) clamp(16px, 4vw, 40px) clamp(40px, 5vw, 72px);
    background: transparent;
}

.about-section__inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
    gap: clamp(28px, 4.5vw, 56px);
    align-items: start;
    padding: clamp(10px, 2.2vw, 22px) 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.about-section__media {
    margin: 0;
}

.about-section__photo {
    width: 100%;
    max-width: 100%;
    height: auto;
    /* ~30% taller than 4/5 at the same width (was 4/5 → 8/13) */
    aspect-ratio: 8 / 13;
    object-fit: cover;
    border-radius: var(--card-radius);
    display: block;
    border: 1px solid var(--line-strong);
    box-shadow: none;
}

.about-kicker {
    display: inline-block;
    padding: 8px 18px;
    margin: 0 0 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #14532d;
    background: var(--mint);
    border: 1px solid rgba(16, 185, 129, 0.22);
    border-radius: 999px;
}

.about-title {
    margin: 0 0 28px;
    font-family: var(--font-theme);
    font-size: clamp(1.35rem, 2.6vw, 2rem);
    font-weight: 800;
    font-style: italic;
    line-height: 1.15;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--brand);
    -webkit-text-stroke: 0;
}

.about-body {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text-muted);
}

.about-body > p {
    margin: 0 0 1.15em;
}

.culture-lead-title {
    font-size: calc(1em + 2px);
}

.festival-gallery {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 12px;
}

.festival-gallery--five {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.festival-gallery--five .festival-gallery__item {
    grid-column: auto;
}

.festival-gallery--one-line {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(210px, 1fr);
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
}

.festival-gallery--one-line .festival-gallery__item {
    grid-column: auto;
    scroll-snap-align: start;
}

.festival-gallery--one-line::-webkit-scrollbar {
    height: 10px;
}

.festival-gallery--one-line::-webkit-scrollbar-thumb {
    background: rgba(17, 24, 39, 0.18);
    border-radius: 999px;
}

.festival-gallery--one-line::-webkit-scrollbar-track {
    background: rgba(17, 24, 39, 0.06);
    border-radius: 999px;
}

.festival-gallery__item {
    margin: 0;
    grid-column: span 4;
    border-radius: var(--card-radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--card-shadow);
    background: var(--bg-card);
}

.photo-pop-enabled.photo-pop-active::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(15, 23, 42, 0.05);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.photo-pop-enabled .festival-gallery__item {
    position: relative;
    z-index: 1;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    will-change: transform;
}

.photo-pop-enabled .culture-highlight__card {
    position: relative;
    z-index: 1;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    will-change: transform;
}

.photo-pop-enabled .festival-gallery__item.is-popped {
    z-index: 1000;
    transform: scale(1.08);
    box-shadow: 0 18px 60px rgba(15, 23, 42, 0.28);
}

.photo-pop-enabled .culture-highlight__card.is-popped {
    z-index: 1000;
    transform: scale(1.06);
    box-shadow: 0 18px 60px rgba(15, 23, 42, 0.28);
}

.photo-pop-enabled .festival-gallery__item.is-popped img {
    max-height: 460px;
}

.photo-pop-enabled .photo-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: clamp(18px, 3vw, 32px);
    background: rgba(15, 23, 42, 0.18);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.photo-pop-enabled.photo-modal-open .photo-modal {
    display: flex;
}

.photo-pop-enabled .photo-modal__img {
    max-width: min(1100px, 92vw);
    max-height: 88vh;
    width: auto;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 22px 80px rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
}

.photo-pop-enabled.photo-modal-open {
    overflow: hidden;
}

.festival-gallery__item--hero {
    grid-column: span 5;
}

.festival-gallery__item--wide {
    grid-column: span 7;
}

.festival-gallery__item img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 360px;
    object-fit: cover;
}

@media (max-width: 900px) {
    .festival-gallery {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

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

    .festival-gallery__item {
        grid-column: span 6;
    }

    .festival-gallery__item img {
        max-height: 340px;
    }
}

.about-subtitle {
    margin: 1.6em 0 0.65em;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.35;
}

.about-list {
    margin: 0.5em 0 1.25em;
    padding-left: 1.2em;
    color: var(--text-muted);
}

.about-list li {
    margin-bottom: 0.85em;
}

.about-list li:last-child {
    margin-bottom: 0;
}

/* ——— Why Visit Anjaw ——— */
.why-visit {
    position: relative;
    padding: clamp(28px, 4vw, 48px) clamp(16px, 4vw, 40px) clamp(48px, 6vw, 88px);
    background: transparent;
    overflow: hidden;
}

.why-visit__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 70% 55% at 100% 0%, rgba(230, 244, 241, 0.9), transparent 62%);
    opacity: 1;
}

.why-visit__inner {
    position: relative;
    z-index: 1;
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 52px);
    align-items: start;
    padding: clamp(10px, 2.2vw, 22px) 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.why-visit__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.why-visit__img {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: var(--card-radius);
    border: 1px solid var(--line-strong);
    box-shadow: none;
}

.why-visit__img--1,
.why-visit__img--2 {
    aspect-ratio: 1 / 1;
}

.why-visit__img--3 {
    grid-column: 1 / -1;
    aspect-ratio: 2 / 1;
}

.why-visit__kicker {
    display: inline-block;
    padding: 8px 18px;
    margin: 0 0 28px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--purple);
    background: rgba(94, 53, 177, 0.08);
    border: 1px solid rgba(94, 53, 177, 0.2);
    border-radius: 999px;
}

.why-visit__steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.why-visit__step {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 0 18px;
    align-items: start;
}

.why-visit__track {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 52px;
    min-height: 100%;
}

.why-visit__dot {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--purple);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(94, 53, 177, 0.25);
}

.why-visit__icon {
    width: 22px;
    height: 22px;
}

.why-visit__line {
    flex: 1 1 auto;
    width: 0;
    min-height: 20px;
    margin: 6px 0 4px;
    border-left: 2px dotted var(--line-strong);
}

.why-visit__step:last-child .why-visit__line {
    display: none;
}

.why-visit__title {
    margin: 0 0 10px;
    font-family: var(--font-theme);
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    font-weight: 800;
    font-style: italic;
    line-height: 1.35;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand);
    -webkit-text-stroke: 0;
}

.why-visit__text {
    margin: 0 0 1.5em;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text-muted);
}

.why-visit__step:last-child .why-visit__text {
    margin-bottom: 0;
}

/* ——— How to get to Anjaw (tabs) ——— */
.travel-tabs {
    padding: clamp(32px, 4vw, 48px) clamp(16px, 4vw, 40px) clamp(48px, 5vw, 72px);
    background: transparent;
}

.travel-tabs__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: clamp(10px, 2.2vw, 22px) 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.travel-tabs__heading {
    margin: 0 0 20px;
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    font-weight: 800;
    font-style: italic;
    color: var(--brand);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    -webkit-text-stroke: 0;
}

.travel-tabs__shell {
    max-width: 720px;
    margin-inline: auto;
}

/* ——— Anjaw culture highlight (home) ——— */
.culture-highlight {
    padding: clamp(36px, 5vw, 56px) clamp(16px, 4vw, 40px) clamp(44px, 6vw, 72px);
    background: var(--bg-page);
}

.culture-highlight__inner {
    max-width: 1140px;
    margin: 0 auto;
}

.culture-highlight__title-block {
    text-align: center;
    margin-bottom: clamp(24px, 4vw, 36px);
}

.culture-highlight__heading {
    margin: 0 0 6px;
    font-family: var(--font-theme);
    font-size: clamp(1.2rem, 2.4vw, 1.55rem);
    font-weight: 800;
    font-style: normal;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand);
}

.culture-highlight__wave {
    display: block;
    margin: 0 auto;
    max-width: min(280px, 72vw);
    height: auto;
}

.culture-highlight__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(12px, 2vw, 20px);
}

.culture-highlight__card {
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--bg-muted);
}

.culture-highlight__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.culture-highlight__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.15) 0%,
        rgba(15, 23, 42, 0.35) 45%,
        rgba(15, 23, 42, 0.55) 100%
    );
    pointer-events: none;
}

.culture-highlight__label {
    position: absolute;
    inset: 0;
    z-index: 2;
    margin: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: clamp(14px, 3vw, 22px);
    padding-bottom: clamp(18px, 3.2vw, 26px);
    box-sizing: border-box;
    font-family: var(--font-theme);
    font-size: clamp(0.65rem, 1.15vw, 0.78rem);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55), 0 4px 20px rgba(0, 0, 0, 0.35);
    pointer-events: none;
}

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

@media (max-width: 520px) {
    .culture-highlight__grid {
        grid-template-columns: 1fr;
    }

    .culture-highlight__card {
        aspect-ratio: 16 / 10;
    }
}

/* ——— Inline page video (e.g. Trekking) ——— */
.about-video {
    margin-top: clamp(20px, 3vw, 32px);
    max-width: min(100%, 920px);
}

.about-video__frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--card-radius);
    overflow: hidden;
    background: #0f172a;
    border: 1px solid var(--line);
    box-shadow: var(--card-shadow);
}

.about-video__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ——— Promo video ——— */
.promo-video {
    padding: clamp(24px, 3vw, 40px) clamp(16px, 4vw, 40px) clamp(40px, 5vw, 64px);
    background: transparent;
}

.promo-video__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: clamp(10px, 2.2vw, 22px) 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.promo-video__frame {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 9;
    max-height: min(72vh, 820px);
    margin: 0 auto;
    border-radius: var(--card-radius);
    overflow: hidden;
    background: #111827;
    border: 1px solid var(--line);
    box-shadow: var(--card-shadow);
}

.promo-video__media {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.promo-video__credits {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    margin: 0;
    padding: 8px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.92);
    text-align: right;
    line-height: 1.2;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.promo-video__credits a {
    color: rgba(255, 255, 255, 0.98);
    font-weight: 700;
    word-break: normal;
    text-decoration: none;
}

.promo-video__credits a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(255, 255, 255, 0.7);
}

.about-video .promo-video__credits {
    text-align: left;
}

/* ——— Site footer ——— */
.site-footer {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: rgba(248, 250, 252, 0.88);
    padding: 48px clamp(20px, 5vw, 48px) 40px;
    font-family: var(--font-theme);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, 0.72fr)
        minmax(0, 0.88fr)
        minmax(0, 0.95fr)
        minmax(0, 15.5rem);
    gap: clamp(20px, 3vw, 32px);
    align-items: start;
}

/* Policies column reuses list styles; keeps narrow link column readable */
.site-footer__policies .site-footer__list a {
    font-size: 0.9rem;
}

.site-footer__logo {
    width: 112px;
    height: 112px;
    object-fit: contain;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    padding: 8px;
    display: block;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__tagline {
    margin: 0;
    font-family: var(--font-theme);
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(248, 250, 252, 0.68);
    max-width: 28ch;
}

.site-footer__heading {
    margin: 0 0 16px;
    font-family: var(--font-theme);
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
}

.site-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__list li {
    margin-bottom: 10px;
}

.site-footer__list li:last-child {
    margin-bottom: 0;
}

.site-footer__list a {
    font-family: var(--font-theme);
    font-size: 0.95rem;
    color: rgba(248, 250, 252, 0.82);
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer__list a:hover {
    color: #ffffff;
}

.site-footer__contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.site-footer__contact-item:last-child {
    margin-bottom: 0;
}

.site-footer__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--purple);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 2px 8px rgba(94, 53, 177, 0.22);
}

.site-footer__icon svg {
    width: 22px;
    height: 22px;
}

.site-footer__contact-text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.site-footer__label {
    font-family: var(--font-theme);
    font-size: 0.78rem;
    color: rgba(248, 250, 252, 0.6);
    text-transform: capitalize;
}

.site-footer__value {
    font-family: var(--font-theme);
    font-size: 0.95rem;
    color: rgba(248, 250, 252, 0.86);
    line-height: 1.45;
}

.site-footer__contact-text a {
    color: rgba(248, 250, 252, 0.86);
    text-decoration: none;
}

.site-footer__contact-text a:hover {
    color: #ffffff;
}

.site-footer__hint {
    font-size: 0.75rem;
    color: rgba(248, 250, 252, 0.55);
    margin-top: 2px;
}

/* NIC credit (right column) */
.site-footer__nic {
    justify-self: end;
    width: 100%;
    max-width: 20rem;
}

.site-footer__nic-panel {
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(248, 250, 252, 0.86);
    padding: 20px 20px 22px;
    border-radius: 14px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.site-footer__nic-heading {
    margin: 0 0 12px;
    font-size: 1.05rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.06em;
}

.site-footer__nic-brand {
    width: 100%;
    max-width: 100%;
    margin: 0 0 14px;
}

.site-footer__nic-photo {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 96px;
    object-fit: contain;
    object-position: left center;
}

.site-footer__nic-copy {
    margin: 0 0 12px;
    font-size: 0.82rem;
    line-height: 1.5;
    color: rgba(248, 250, 252, 0.62);
}

.site-footer__nic-host {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(248, 250, 252, 0.62);
}

.site-footer__nic-host a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s, text-decoration 0.2s;
}

.site-footer__nic-host a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.travel-tabs__bar {
    display: flex;
    gap: 6px;
    padding: 6px;
    background: var(--mint);
    border-radius: 12px;
    margin-bottom: 14px;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.travel-tabs__tab {
    flex: 1;
    padding: 11px 12px;
    border: none;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-soft);
    background: transparent;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.travel-tabs__tab:hover {
    background: rgba(255, 255, 255, 0.75);
    color: var(--brand);
}

.travel-tabs__tab[aria-selected="true"] {
    background: var(--purple);
    color: var(--on-accent);
    box-shadow: 0 4px 14px var(--accent-glow);
}

.travel-tabs__tab[aria-selected="true"]:hover {
    background: var(--accent-strong);
    color: var(--on-accent);
}

.travel-tabs__card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 22px 24px 26px;
    box-shadow: var(--card-shadow);
}

.travel-tabs__panel-title {
    margin: 0 0 6px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-heading);
}

.travel-tabs__accent {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0 0 18px;
}

.travel-tabs__accent-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red-accent);
    flex-shrink: 0;
}

.travel-tabs__accent-line {
    width: 48px;
    height: 2px;
    background: var(--purple);
    margin-left: 0;
}

.travel-tabs__list {
    margin: 0;
    padding-left: 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text-muted);
}

.travel-tabs__list li {
    margin-bottom: 0.65em;
}

.travel-tabs__list li:last-child {
    margin-bottom: 0;
}

.travel-tabs__list--single {
    padding-left: 1.25rem;
}

.travel-tabs__list--plain {
    list-style: none;
    padding-left: 0;
}

.travel-tabs__list--plain li {
    margin-bottom: 0.75em;
}

.travel-tabs__list--plain strong {
    font-weight: 700;
    color: var(--text-body);
}

.travel-tabs__prose {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text-muted);
}

.travel-route {
    margin-bottom: 1.15em;
}

.travel-route:last-child {
    margin-bottom: 0;
}

.travel-route__label {
    margin: 0 0 0.35em;
    font-weight: 700;
    color: var(--text-body);
}

.travel-route__path {
    margin: 0;
}

.travel-tabs__prose .travel-air__title {
    margin: 0 0 0.4em;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.35;
}

.travel-tabs__prose .travel-air__title:not(:first-child) {
    margin-top: 1.15em;
}

.travel-tabs__prose .travel-air__title + p {
    margin: 0 0 0.25em;
}

@media (max-width: 1040px) {
    .site-footer__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 720px;
    }

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

    .site-footer__nic {
        grid-column: 1 / -1;
        justify-self: stretch;
        max-width: none;
    }

    .site-footer__nic-panel {
        max-width: 22rem;
        margin-inline: auto;
    }
}

@media (max-width: 900px) {
    .main-header {
        padding: 10px 16px;
        flex-wrap: wrap;
    }

    .logo {
        margin-left: 20px;
    }

    .logo img {
        transform: translateX(14px);
    }

    .nav-menu > ul {
        flex-wrap: wrap;
        gap: 8px 12px;
        justify-content: flex-end;
    }

    .nav-dropdown {
        left: 0;
        transform: translateX(0) translateY(-4px);
    }

    .nav-item--dropdown:hover .nav-dropdown,
    .nav-item--dropdown:focus-within .nav-dropdown {
        transform: translateX(0) translateY(0);
    }

    :root {
        --header-height: 112px;
    }

    .hero-slider-block {
        margin-top: 0;
    }

    .about-section__inner {
        grid-template-columns: 1fr;
    }

    .about-section__photo {
        max-height: 546px;
        margin-inline: auto;
    }

    .why-visit__inner {
        grid-template-columns: 1fr;
    }

    .why-visit__gallery {
        max-width: 520px;
        margin-inline: auto;
    }

    .slider-viewport {
        aspect-ratio: 16 / 9;
        max-height: min(58vh, 622px);
    }

    .promo-video__frame {
        aspect-ratio: 16 / 9;
        max-height: min(56vh, 520px);
    }

    .travel-tabs__bar {
        flex-wrap: wrap;
    }

    .travel-tabs__tab {
        min-width: calc(33.333% - 4px);
    }

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

    .site-footer__nic {
        justify-self: stretch;
        max-width: none;
    }

    .site-footer__nic-panel {
        max-width: 22rem;
        margin-inline: auto;
    }
}
