/* ==============================================
   1. TOKENS, RESET & BASE
============================================== */
:root {
    --ink: #111111;
    --paper: #fafafa;
    --white: #ffffff;
    --muted: #555555;
    --soft: #6b6b6b;
    --line: #e8e8e6;
    --accent: #b73a62; /* pulled from the pink mask in the photo */

    --font: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    --font-display: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    --header-h: 92px; /* floating nav + its gap, used for scroll offsets */
    --gutter: clamp(1.25rem, 4vw, 3rem);
    --max: 1440px;
    --section-pad: clamp(4rem, 9vw, 8rem);
    --radius: 20px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
}

body {
    font-family: var(--font);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
.logo,
.lead,
.facts dd,
.route-step-num,
.cross-link-card .title {
    font-family: var(--font-display);
}

::selection {
    background: var(--ink);
    color: var(--white);
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.container {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    left: var(--gutter);
    top: -4rem;
    z-index: 100;
    background: var(--ink);
    color: var(--paper);
    padding: 0.6rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0.75rem;
}

/* ==============================================
   2. HEADER — floating pill nav
============================================== */
.site-header {
    position: sticky;
    top: 16px;
    z-index: 50;
    width: min(94%, 1200px);
    margin: 16px auto 0;
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 60px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.site-header:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.site-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    height: 60px;
    max-width: none;
    padding: 0 24px;
}

.logo {
    font-weight: 800;
    font-size: 1.25rem;
    white-space: nowrap;
    letter-spacing: -0.04em;
    text-decoration: none;
    color: var(--ink);
    transition: opacity 0.2s ease;
}

.logo:hover {
    opacity: 0.65;
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-nav a {
    white-space: nowrap;
    padding: 4px 0;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-color: transparent;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
    transition: text-decoration-color 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    text-decoration-color: var(--ink);
}

.site-nav .nav-cta {
    padding: 8px 22px;
    border-radius: 40px;
    background: var(--ink);
    color: var(--paper);
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.site-nav .nav-cta:hover {
    background: #2a2a2a;
    transform: scale(1.02);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: none;
    border: 0;
    cursor: pointer;
    position: relative;
}

.nav-toggle span {
    position: absolute;
    left: 8px;
    right: 8px;
    height: 2.5px;
    border-radius: 10px;
    background: var(--ink);
    transition: transform 0.3s ease, top 0.3s ease;
}

.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 26px; }

.site-header.open .nav-toggle span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.site-header.open .nav-toggle span:nth-child(2) { top: 21px; transform: rotate(-45deg); }

/* ==============================================
   3. HERO (sliding words) + STORY (picture)
============================================== */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: max(440px, calc(88svh - var(--header-h)));
    padding: 2rem var(--gutter) 3rem;
    text-align: center;
}

.hero-content {
    width: 100%;
    max-width: 1000px;
}

.hero h1 {
    --word-h: 1.3em; /* tall enough for descenders (g, p, j) — see .word-window */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    margin-bottom: 0.6rem;
    font-size: clamp(3.2rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.hero h1 .static {
    white-space: nowrap;
}

.word-window {
    display: block;
    position: relative;
    width: 100%;
    height: var(--word-h);
    margin-bottom: -0.15em; /* the extra room below the letters is for descenders; pull the next line back up */
    overflow: hidden;
    text-align: center;
}

.words {
    display: flex;
    flex-direction: column;
    transition: transform 900ms cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
}

.word {
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--word-h);
    padding: 0 4px;
    white-space: nowrap;
    line-height: var(--word-h);
    background: linear-gradient(135deg, #1a1a1a, #4a4a4a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    max-width: 42rem;
    text-wrap: balance;
    margin: 0.4rem auto 0;
    padding: 0 10px;
    font-size: 1.1rem;
    line-height: 1.6;
    letter-spacing: -0.01em;
    color: var(--muted);
}

.story {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 4vw;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 6vw 80px;
    scroll-margin-top: var(--header-h);
}

.story-image {
    height: clamp(380px, 62vh, 640px);
    overflow: hidden;
    border-radius: var(--radius);
    background: #d9d6cd;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 30%; /* keeps the cap and face in frame when the portrait is cropped wide */
    transition: transform 1.2s cubic-bezier(0.65, 0, 0.35, 1);
}

.story-image:hover img {
    transform: scale(1.03);
}

.story-content {
    max-width: 600px;
}

.story-label {
    margin-bottom: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--soft);
}

.story h2 {
    font-size: clamp(2.6rem, 5vw, 5.5rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.story-text {
    margin-top: 6px;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.15;
    color: #777777;
}

.story-description {
    max-width: 480px;
    margin-top: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--muted);
}

.story-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--ink);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.story-link span {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.story-link:hover {
    gap: 16px;
}

.story-link:hover span {
    transform: translateX(3px);
}

/* ─── Buttons (also used by the guide pages' contact strip) ─── */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2.25rem;
}

.btn {
    display: inline-block;
    padding: 0.85rem 1.6rem;
    border: 2px solid var(--ink);
    border-radius: 40px;
    background: var(--ink);
    color: var(--paper);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
    background: #2a2a2a;
    border-color: #2a2a2a;
    color: var(--white);
}

.btn--ghost {
    background: transparent;
    color: var(--ink);
}

.btn--ghost:hover {
    background: var(--ink);
    border-color: var(--ink);
}

/* ==============================================
   4. SECTIONS
============================================== */
.section {
    padding: var(--section-pad) 0;
    border-bottom: 1px solid var(--line);
}

.section-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2.6fr);
    gap: 2rem clamp(2rem, 6vw, 6rem);
}

.section-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    align-self: start;
    position: sticky;
    top: calc(var(--header-h) + 2rem);
}

.section-num {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--accent);
    font-variant-numeric: tabular-nums;
}

.section-body {
    max-width: 52rem;
}

/* ─── About ─── */
.lead {
    font-size: clamp(1.6rem, 3.4vw, 2.7rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.prose {
    margin-top: 2rem;
    max-width: 38rem;
}

.prose p {
    font-size: 1.05rem;
    color: #2b2b29;
}

.prose p + p {
    margin-top: 1.1rem;
}

.facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 3.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--line);
}

.facts dt {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.facts dd {
    margin-top: 0.3rem;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* ─── Services ─── */
.service {
    padding: 2rem 0;
    border-top: 1px solid var(--line);
}

.service:first-child {
    padding-top: 0;
    border-top: 0;
}

.service h3 {
    font-size: clamp(1.8rem, 4.5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.service p {
    margin-top: 0.9rem;
    max-width: 34rem;
    font-size: 1.05rem;
    color: var(--muted);
}

/* ─── Contact ─── */
.channels {
    margin-top: 3rem;
    border-top: 1px solid var(--line);
}

.channels li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--line);
}

.channel-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.channels a {
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    text-align: right;
    transition: color 0.2s ease;
}

.channels a:hover {
    color: var(--accent);
}

/* ==============================================
   5. FOOTER
============================================== */
.site-footer {
    padding: 64px var(--gutter) 32px;
    background: #f4f4f1;
    border-top: 1px solid var(--line);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 48px;
}

.footer-brand {
    max-width: 340px;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-description {
    margin-bottom: 24px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--soft);
}

.footer-links-grid {
    display: flex;
    gap: 64px;
}

.footer-col h4 {
    margin-bottom: 18px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--soft);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--ink);
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    color: var(--soft);
    transition: background 0.2s ease, color 0.2s ease;
}

.social-icon:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--ink);
}

.social-icon svg {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    font-size: 0.75rem;
    letter-spacing: 0.01em;
    color: var(--soft);
}

.footer-bottom a {
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: var(--ink);
}

/* ==============================================
   6. SCROLL REVEAL (only when JS is available)
============================================== */
.js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal.in {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .js .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ==============================================
   7. RESPONSIVE
============================================== */

/* Tablet and below: story stacks, sections go single column */
@media (max-width: 899px) {
    .hero {
        min-height: 0;
        padding: 3.5rem var(--gutter) 3rem;
    }

    .hero h1 {
        font-size: clamp(2.6rem, 8.5vw, 4.6rem);
    }

    .story {
        grid-template-columns: minmax(0, 1fr);
        gap: 30px;
        padding: 10px 6vw 60px;
    }

    .story-image {
        height: clamp(300px, 55vw, 460px);
    }

    .section-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .section-label {
        position: static;
    }

    .section-num {
        display: inline;
        margin: 0 0.6rem 0 0;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }
}

/* Header collapses to a hamburger with a floating dropdown card */
@media (max-width: 999px) {
    :root {
        --header-h: 80px;
    }

    .site-header {
        top: 12px;
        margin-top: 12px;
        width: min(96%, 1200px);
        border-radius: 50px;
    }

    .site-header .header-inner {
        height: 54px;
        padding: 0 16px 0 20px;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        padding: 20px 24px 24px;
        background: rgba(255, 255, 255, 0.98);
        -webkit-backdrop-filter: blur(16px);
        backdrop-filter: blur(16px);
        border: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: 24px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px) scale(0.96);
        transition: opacity 0.35s cubic-bezier(0.65, 0, 0.35, 1),
                    transform 0.35s cubic-bezier(0.65, 0, 0.35, 1),
                    visibility 0s linear 0.35s;
    }

    .site-header.open .site-nav {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        transition-delay: 0s;
    }

    .site-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }

    .site-nav a {
        display: block;
        padding: 10px 0;
        border-radius: 12px;
        font-size: 1rem;
        text-align: center;
        text-decoration: none;
        transition: background 0.2s ease;
    }

    .site-nav a:hover {
        background: rgba(0, 0, 0, 0.04);
    }

    .site-nav .nav-cta {
        margin-top: 4px;
        padding: 12px 0;
        border-radius: 12px;
    }

    .site-nav .nav-cta:hover {
        background: #2a2a2a;
        transform: none;
    }
}

@media (max-width: 600px) {
    .site-header {
        top: 10px;
        margin-top: 10px;
        border-radius: 32px;
    }

    .hero {
        padding: 2.5rem 12px 2.5rem;
    }

    .hero h1 {
        font-size: clamp(2.1rem, 9.5vw, 3.4rem);
    }

    .hero-sub {
        font-size: 0.95rem;
    }

    .story {
        padding: 10px 12px 50px;
        gap: 22px;
    }

    .story-image {
        border-radius: 16px;
    }

    .story h2 {
        font-size: clamp(2.2rem, 12vw, 3.5rem);
    }

    .story-text {
        font-size: 1.4rem;
    }
}

@media (max-width: 520px) {
    .facts {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.1rem;
    }

    .channels li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }

    .channels a {
        text-align: left;
    }

    .footer-links-grid {
        flex-wrap: wrap;
        gap: 32px 40px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==============================================
   8. BHUTAN GUIDE PAGES (guide/*.html)
   Class names below match the original guide markup,
   so its body content drops in unchanged.
============================================== */

/* ─── Sub-nav between guide pages ─── */
.guide-nav {
    border-bottom: 1px solid var(--line);
}

.guide-nav ul {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.guide-nav ul::-webkit-scrollbar {
    display: none;
}

.guide-nav a {
    display: block;
    padding: 1rem 0;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    color: var(--muted);
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease;
}

.guide-nav a:hover {
    color: var(--ink);
}

.guide-nav a[aria-current="page"] {
    color: var(--ink);
    font-weight: 600;
    border-bottom-color: var(--ink);
}

/* ─── Page heading ─── */
.guide-section {
    padding-top: clamp(2.5rem, 6vw, 5rem);
}

.guide-title {
    font-size: clamp(2rem, 4.6vw, 3.75rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.05;
}

.guide-sub {
    margin-top: 1.25rem;
    max-width: 40rem;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 500;
    letter-spacing: -0.015em;
    line-height: 1.4;
    color: var(--muted);
}

.guide-sub a {
    color: var(--ink);
    text-decoration-color: var(--line);
    text-decoration-thickness: 2px;
    text-underline-offset: 0.2em;
}

.guide-sub a:hover {
    color: var(--accent);
    text-decoration-color: var(--accent);
}

.guide-photo {
    margin-top: 2.5rem;
}

.guide-photo img {
    width: 100%;
    height: auto;
    border: 1px solid var(--line);
}

.guide-photo figcaption {
    margin-top: 0.6rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ─── Article body ─── */
.article-body {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--line);
}

.article-body > * + * {
    margin-top: 1.15rem;
}

.article-body h2 {
    margin-top: 3.25rem;
    font-size: clamp(1.6rem, 3.2vw, 2.3rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.12;
    scroll-margin-top: calc(var(--header-h) + 1rem);
}

.article-body h3 {
    margin-top: 2.25rem;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.article-body h2 + h3 {
    margin-top: 1.25rem;
}

.article-body p,
.article-body li {
    font-size: 1.05rem;
    color: #2b2b29;
}

.article-body ul,
.article-body ol {
    padding-left: 1.35rem;
    list-style: revert;
}

.article-body li + li {
    margin-top: 0.55rem;
}

.article-body strong {
    font-weight: 600;
    color: var(--ink);
}

.article-body p a,
.article-body li a,
.article-body td a {
    text-decoration: underline;
    text-decoration-color: var(--line);
    text-decoration-thickness: 2px;
    text-underline-offset: 0.2em;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.article-body p a:hover,
.article-body li a:hover,
.article-body td a:hover {
    color: var(--accent);
    text-decoration-color: var(--accent);
}

/* ─── Boxes ─── */
.highlight-box,
.toc,
.sources-box {
    padding: 1.5rem 1.75rem;
    background: var(--white);
    border: 1px solid var(--line);
}

.highlight-box {
    border-left: 3px solid var(--accent);
}

.highlight-box.note {
    border-left-color: var(--ink);
}

.article-body .highlight-box h3,
.article-body .sources-box h3,
.article-body .toc h2 {
    margin: 0 0 0.9rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    line-height: 1.4;
    color: var(--accent);
}

.article-body .highlight-box.note h3 {
    color: var(--ink);
}

.article-body .sources-box h3,
.article-body .toc h2 {
    color: var(--muted);
}

.highlight-box > p + p,
.highlight-box > ul {
    margin-top: 0.9rem;
}

.toc ol {
    display: grid;
    gap: 0.35rem;
}

.toc li + li {
    margin-top: 0;
}

/* ─── Quote (Dzongkha phrase) ─── */
.quote-block {
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 3px solid var(--accent);
}

.article-body .quote-block p {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: var(--ink);
}

.quote-block .attribution {
    margin-top: 0.6rem;
    font-size: 0.95rem;
    color: var(--muted);
}

/* ─── Tables ─── */
.table-wrap {
    overflow-x: auto;
    background: var(--white);
    border: 1px solid var(--line);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.info-table th,
.info-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--line);
}

.info-table th {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    background: var(--paper);
}

.info-table td:first-child {
    font-weight: 600;
}

.info-table tbody tr:last-child td {
    border-bottom: 0;
}

/* ─── Walking route ─── */
.route-steps {
    display: grid;
    gap: 2.25rem;
}

.route-step {
    display: grid;
    grid-template-columns: 2.75rem minmax(0, 1fr);
    gap: 0 1rem;
}

.route-step-num {
    padding-top: 0.15rem;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--accent);
    font-variant-numeric: tabular-nums;
}

.route-step-img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 520px;
    border: 1px solid var(--line);
    background: #d9d6cd;
}

.article-body .route-step-text {
    margin-top: 0.75rem;
}

/* ─── FAQ ─── */
.faq-item {
    border-bottom: 1px solid var(--line);
}

.article-body > .faq-item {
    margin-top: 0;
}

.faq-item summary {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.35;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    flex: none;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    color: var(--accent);
}

.faq-item[open] summary::after {
    content: "–";
}

.article-body .faq-item p {
    max-width: 40rem;
    margin: 0;
    padding: 0 0 1.35rem;
}

/* ─── Footnote, sources, prev/next ─── */
.article-body .footnote {
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
    font-size: 0.9rem;
    color: var(--muted);
}

.sources-box ul {
    padding-left: 1.15rem;
}

.cross-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.cross-link-card {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.25rem 1.5rem;
    border: 2px solid var(--ink);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.cross-link-card .label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color 0.2s ease;
}

.cross-link-card .title {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.cross-link-card:hover {
    background: var(--ink);
    color: var(--paper);
}

.cross-link-card:hover .label {
    color: #bdbab2;
}

/* ─── Contact strip above the footer ─── */
.guide-cta {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.guide-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem 3rem;
}

.guide-cta h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.1;
}

.guide-cta p {
    margin-top: 0.5rem;
    color: var(--muted);
}

.guide-cta .hero-actions {
    margin-top: 0;
}

/* ─── Landing page: guide teaser ─── */
.facts--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem 1.5rem;
    margin-top: 2.5rem;
}

@media (max-width: 520px) {
    .facts--2 {
        grid-template-columns: minmax(0, 1fr);
    }

    .cross-links {
        grid-template-columns: minmax(0, 1fr);
    }

    .route-step {
        grid-template-columns: 2rem minmax(0, 1fr);
        gap: 0 0.75rem;
    }

    .highlight-box,
    .toc,
    .sources-box {
        padding: 1.25rem;
    }
}

/* ==============================================
   9. SOFT SHAPES — match the rounded, floating nav
============================================== */
.guide-nav {
    margin-top: 12px;
}

.guide-photo img {
    border-radius: var(--radius);
}

.highlight-box,
.toc,
.sources-box,
.table-wrap {
    border-radius: 16px;
}

.cross-link-card {
    border-radius: 16px;
}

.route-step-img {
    border-radius: 14px;
}

/* small uppercase box labels stay in the body font */
.article-body .highlight-box h3,
.article-body .sources-box h3,
.article-body .toc h2,
.section-label {
    font-family: var(--font);
}

/* ==============================================
   10. WEATHER PAGE — byline, cropped photo, season cards
============================================== */
.guide-byline {
    margin-top: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--soft);
}

/* portrait photos become a wide banner instead of a very tall block */
.guide-photo--crop img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: 50% 52%;
}

.season-card {
    padding: 1.75rem 1.9rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.article-body > .season-card {
    margin-top: 1.75rem;
}

.season-card > * + * {
    margin-top: 0.9rem;
}

.season-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
}

.season-title {
    margin-top: 0.35rem;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.season-months {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.season-temp {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper);
    font-size: 0.85rem;
    font-weight: 600;
}

@media (max-width: 520px) {
    .season-card {
        padding: 1.4rem 1.25rem;
    }
}

/* ==============================================
   11. GUIDES OF BHUTAN PAGE — taller photo crop, paragraph-length quote
============================================== */
.guide-photo--tall img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: 50% 35%;
}

.article-body .quote-block--long p {
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.5;
}

.quote-block--long .attribution {
    margin-top: 0.9rem;
}

/* ==============================================
   12. DOWNLOAD LINK + EMPTY LABEL CELL
============================================== */
.file-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.15rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.highlight-box > .file-link {
    margin-top: 1.1rem;
}

.file-link:hover {
    border-color: var(--ink);
    transform: translateY(-1px);
}

.file-icon {
    display: inline-flex;
    flex: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--paper);
}

.file-icon svg {
    width: 18px;
    height: 18px;
}

.file-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.article-body .file-text strong {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.file-text span {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--muted);
}

/* a guide page with no eyebrow keeps an empty grid cell on desktop; drop it when the layout stacks */
@media (max-width: 899px) {
    .section-label:empty {
        display: none;
    }
}

/* the longer site name in the nav pill: shrink a little on very narrow phones so it never crowds the menu button */
@media (max-width: 420px) {
    .logo {
        font-size: 1.05rem;
    }
}

/* ==============================================
   13. GUIDE SPLIT BY AUDIENCE — section switch, hub cards, grouped lists
============================================== */

/* level 1: Indian travellers / Foreign visitors / For everyone */
.guide-nav .guide-aud {
    gap: 0.5rem;
    padding: 1rem 0 0.4rem;
}

.guide-nav .guide-aud a {
    display: block;
    padding: 0.5rem 1.15rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--muted);
    white-space: nowrap;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.guide-nav .guide-aud a:hover {
    color: var(--ink);
    border-color: var(--ink);
}

.guide-nav .guide-aud a[aria-current="true"] {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--paper);
}

/* level 2: the pages inside the chosen section (existing tab style) */
.guide-nav .guide-pages {
    margin-top: 0.15rem;
}

/* hub page: three audience cards */
.guide-hub .section-grid {
    grid-template-columns: minmax(0, 1fr);
}

.guide-hub .section-body {
    max-width: none;
}

.guide-hub .section-label {
    position: static;
}

.hub-body {
    margin-top: 2.5rem;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.audience-card {
    display: flex;
    flex-direction: column;
    padding: 1.9rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.audience-card h2 {
    font-size: clamp(1.5rem, 2.4vw, 1.9rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.audience-card p {
    margin-top: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--muted);
}

.audience-card ul {
    margin-top: auto;
    padding-top: 1.5rem;
}

.audience-card li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-top: 1px solid var(--line);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.audience-card li:last-child a {
    border-bottom: 1px solid var(--line);
}

.audience-card li a:hover {
    color: var(--accent);
}

/* landing page: guide list grouped by audience */
.guide-groups {
    margin-top: 3rem;
}

.guide-group + .guide-group {
    margin-top: 2.75rem;
}

.guide-group h3 {
    font-family: var(--font);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
}

.guide-group .channels {
    margin-top: 0.75rem;
}

/* footer: room for four link columns; two short lists share one column */
.footer-links-grid {
    gap: 48px;
}

.footer-col ul + h4 {
    margin-top: 1.9rem;
}

@media (max-width: 899px) {
    .audience-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* phones: wrap the three audience pills so none is hidden off-screen */
@media (max-width: 520px) {
    .guide-nav .guide-aud {
        flex-wrap: wrap;
    }
}

/* ==============================================
   14. CONTACT — dark panel with clear actions and contact cards
============================================== */
.section.contact {
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 7rem);
    border-bottom: 0;
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
    padding: clamp(2rem, 5vw, 4.5rem);
    background: var(--ink);
    color: var(--paper);
    border-radius: 28px;
}

.contact-panel ::selection {
    background: var(--paper);
    color: var(--ink);
}

.contact-panel :focus-visible {
    outline-color: var(--white);
}

.contact-kicker {
    margin-bottom: 1.1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(250, 250, 250, 0.6);
}

.contact-panel h2 {
    font-size: clamp(2.2rem, 4.6vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1.02;
    text-wrap: balance;
    color: var(--white);
}

.contact-text {
    max-width: 30rem;
    margin-top: 1.25rem;
    font-size: 1.02rem;
    color: rgba(250, 250, 250, 0.72);
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.btn--light {
    background: var(--paper);
    border-color: var(--paper);
    color: var(--ink);
}

.btn--light:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--ink);
}

.btn--outline-light {
    background: transparent;
    border-color: rgba(250, 250, 250, 0.45);
    color: var(--paper);
}

.btn--outline-light:hover {
    background: var(--paper);
    border-color: var(--paper);
    color: var(--ink);
}

.contact-base {
    margin-top: 1.75rem;
    font-size: 0.85rem;
    color: rgba(250, 250, 250, 0.55);
}

.contact-tiles {
    display: grid;
    gap: 0.75rem;
}

.contact-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 1.15rem 3rem 1.15rem 1.35rem;
    border: 1px solid rgba(250, 250, 250, 0.14);
    border-radius: 16px;
    background: rgba(250, 250, 250, 0.05);
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.contact-tile:hover {
    background: rgba(250, 250, 250, 0.1);
    border-color: rgba(250, 250, 250, 0.35);
}

.tile-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(250, 250, 250, 0.55);
}

.tile-value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white);
    overflow-wrap: break-word;
}

.tile-arrow {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    color: rgba(250, 250, 250, 0.6);
    transition: transform 0.2s ease, color 0.2s ease;
}

.contact-tile:hover .tile-arrow {
    color: var(--white);
    transform: translate(3px, -50%);
}

@media (max-width: 899px) {
    .contact-panel {
        grid-template-columns: minmax(0, 1fr);
        border-radius: 22px;
    }
}

@media (max-width: 520px) {
    .contact-actions .btn {
        flex: 1 1 100%;
        text-align: center;
    }
}

/* phones: tighter panel and cards so the email address fits on one line */
@media (max-width: 520px) {
    .contact-panel {
        padding: 1.6rem 1.35rem;
    }

    .contact-tile {
        padding: 1rem 2.4rem 1rem 1.1rem;
    }

    .tile-arrow {
        right: 1rem;
    }

    .tile-value {
        font-size: 0.95rem;
    }
}

/* "Explore more" button under the services list */
.section-body > .section-actions {
    margin-top: 2.75rem;
}

/* ==============================================
   15. TOURS — hub cards, itinerary cards, day-by-day, festivals
============================================== */
.tours-note {
    max-width: 44rem;
    margin-bottom: 2rem;
    font-size: 0.98rem;
    color: var(--muted);
}

.tours-note a {
    color: var(--ink);
    text-decoration: underline;
    text-decoration-color: var(--line);
    text-decoration-thickness: 2px;
    text-underline-offset: 0.2em;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.tours-note a:hover {
    color: var(--accent);
    text-decoration-color: var(--accent);
}

/* ─── hub: one card per tour type ─── */
.type-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.type-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-decoration: none;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

a.type-card:hover {
    transform: translateY(-3px);
    border-color: var(--ink);
}

.type-photo {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #d9d6cd;
}

.type-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.65, 0, 0.35, 1);
}

a.type-card:hover .type-photo img {
    transform: scale(1.04);
}

.type-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0.6rem;
    padding: 1.4rem 1.5rem 1.6rem;
}

.type-body h2,
.type-card--cta h2 {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.type-body p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--muted);
}

.type-body .type-meta {
    margin-top: auto;
    padding-top: 0.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--soft);
}

.type-more {
    display: inline-flex;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.type-card--cta {
    justify-content: center;
    gap: 1rem;
    padding: clamp(1.75rem, 3vw, 2.5rem);
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
}

.type-card--cta h2 {
    color: var(--white);
}

.type-card--cta p {
    color: rgba(250, 250, 250, 0.72);
    font-size: 0.98rem;
}

.type-card--cta .btn {
    align-self: flex-start;
    margin-top: 0.5rem;
}

/* ─── category pages: one card per itinerary ─── */
.tours-list {
    display: grid;
    gap: 1.5rem;
}

.tour {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    scroll-margin-top: calc(var(--header-h) + 1rem);
}

.tour-card {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
}

.tour-photo {
    position: relative;
    min-height: 300px;
    background: #d9d6cd;
}

.tour-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-info {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: clamp(1.5rem, 3vw, 2.5rem);
}

.tour-badge {
    align-self: flex-start;
    padding: 0.3rem 0.85rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.tour-info h2,
.fest-body h3 {
    font-size: clamp(1.6rem, 2.8vw, 2.3rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.fest-body h3 {
    font-size: 1.35rem;
}

.tour-sub {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--soft);
}

.tour-desc {
    font-size: 1rem;
    color: var(--muted);
}

.tour-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem 1.5rem;
    margin-top: auto;
    padding-top: 1.1rem;
    border-top: 1px solid var(--line);
}

.tour-facts dt {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--soft);
}

.tour-facts dd {
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.tour-cta {
    margin-top: auto;
}

/* expandable full itinerary */
.tour-details > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem clamp(1.5rem, 3vw, 2.5rem);
    border-top: 1px solid var(--line);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    list-style: none;
    transition: background 0.2s ease;
}

.tour-details > summary::-webkit-details-marker {
    display: none;
}

.tour-details > summary:hover {
    background: var(--paper);
}

.tour-details > summary::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    color: var(--accent);
}

.tour-details[open] > summary::after {
    content: "–";
}

.tour-details .when-open,
.tour-details[open] .when-closed {
    display: none;
}

.tour-details[open] .when-open {
    display: inline;
}

.tour-body {
    display: grid;
    gap: 2rem;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-top: 1px solid var(--line);
}

.tour-banner img {
    width: 100%;
    aspect-ratio: 21 / 9;
    object-fit: cover;
    border-radius: 14px;
}

.tour-lead {
    max-width: 46rem;
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.5;
}

.route-line {
    margin-top: -0.75rem;
    font-size: 0.98rem;
    color: var(--muted);
}

.route-line strong {
    color: var(--ink);
}

.day-list {
    list-style: none;
}

.day {
    display: grid;
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 1.25rem;
    padding: 1.4rem 0;
    border-top: 1px solid var(--line);
}

.day:first-child {
    padding-top: 0;
    border-top: 0;
}

.day--text {
    grid-template-columns: minmax(0, 1fr);
}

.day-photo img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 12px;
}

.day-num {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
}

.day-text h3 {
    margin-top: 0.3rem;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.day-text p:last-child {
    margin-top: 0.55rem;
    font-size: 0.98rem;
    color: #2b2b29;
}

.inclusions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.inc-col {
    padding: 1.4rem 1.5rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
}

.inc-col h3 {
    font-family: var(--font);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--muted);
}

.inc-col ul {
    display: grid;
    gap: 0.55rem;
    margin-top: 0.9rem;
}

.inc-col li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    color: #2b2b29;
}

.inc-col li::before {
    position: absolute;
    left: 0;
    font-weight: 700;
}

.inc-col--yes li::before {
    content: "✓";
    color: var(--ink);
}

.inc-col--no li::before {
    content: "✕";
    color: var(--soft);
}

/* ─── festivals ─── */
.tours-h2 {
    margin: 3.5rem 0 1.5rem;
    font-size: clamp(1.6rem, 3.2vw, 2.3rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.12;
}

.tours-h2:first-of-type {
    margin-top: 0;
}

.tours-kicker {
    margin-top: 3.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--soft);
}

.tours-kicker + .tours-h2 {
    margin-top: 0.5rem;
}

.fest-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.fest-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.fest-photo {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #d9d6cd;
}

.fest-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fest-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 1.4rem 1.5rem 1.6rem;
}

.fest-body .tour-desc {
    font-size: 0.95rem;
}

.fest-link {
    margin-top: auto;
    padding-top: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 3px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.fest-link:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* ─── responsive ─── */
@media (max-width: 1100px) {
    .type-grid,
    .fest-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 899px) {
    .tour-card {
        grid-template-columns: minmax(0, 1fr);
    }

    .tour-photo {
        min-height: 0;
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 600px) {
    .type-grid,
    .fest-grid,
    .inclusions {
        grid-template-columns: minmax(0, 1fr);
    }

    .day {
        grid-template-columns: minmax(0, 1fr);
    }

    .tour-banner img {
        aspect-ratio: 16 / 9;
    }
}

/* photos carry their pixel height in the HTML; let the aspect-ratio rules above decide the shape instead */
.tour-banner img,
.day-photo img {
    height: auto;
}

/* price on an itinerary card */
.tour-price {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-top: 0.35rem;
}

.price-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--soft);
}

.price-value {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.price-sep {
    margin: 0 0.15em;
    font-weight: 400;
    color: var(--soft);
}

/* ==============================================
   16. PHONE POLISH — comfortable tap targets (44px)
============================================== */
@media (max-width: 899px) {
    .site-header .logo {
        padding: 0.8rem 0;
    }

    .footer-brand .logo {
        padding: 0.4rem 0;
        margin-bottom: 0.5rem;
    }

    .footer-col ul {
        gap: 0;
    }

    .footer-col a,
    .footer-bottom a {
        display: inline-block;
        padding: 0.7rem 0;
    }

    .social-icon {
        width: 44px;
        height: 44px;
    }

    .footer-social-links {
        gap: 8px;
    }

    .guide-nav .guide-aud a {
        padding: 0.8rem 1.15rem;
    }

    .guide-nav .guide-pages {
        gap: 0.5rem;
        margin-left: -0.75rem;
    }

    .guide-nav .guide-pages a {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .channels li {
        padding: 0.4rem 0;
    }

    .channels a {
        display: block;
        padding: 0.7rem 0;
    }

    .story-link,
    .fest-link {
        padding-top: 0.75rem;
        padding-bottom: 0.6rem;
    }
}

/* ==============================================
   17. LICENCE BADGE — hero pill and footer line
============================================== */
.hero-licence {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.45rem 1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--muted);
}

.lic-tick {
    font-weight: 700;
    color: var(--accent);
}

/* keep each half on one line so a narrow screen breaks between them, not in the middle */
.lic-part {
    white-space: nowrap;
}

.hero-licence {
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 0.35rem;
    row-gap: 0;
    max-width: calc(100% - 1rem);
}

.footer-description {
    margin-bottom: 0.9rem;
}

.footer-licence {
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--ink);
}

/* the dot only separates the two halves when they share a line */
.footer-licence {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 0.45rem;
}

.footer-licence .lic-tick {
    grid-row: 1 / span 2;
}

.footer-licence .lic-part {
    display: block;
}

.footer-licence .lic-dot {
    display: none;
}

@media (max-width: 470px) {
    .hero-licence .lic-dot {
        display: none;
    }
}

/* ==============================================
   18. MENU ON SHORT SCREENS (phones held sideways)
============================================== */
@media (max-width: 999px) {
    /* never taller than the screen; scrolls inside itself if it ever is */
    .site-nav {
        max-height: calc(100svh - 96px);
        overflow-y: auto;
        overscroll-behavior: contain;
    }
}

@media (max-width: 999px) and (max-height: 480px) {
    .site-nav {
        padding: 12px 24px 14px;
    }

    .site-nav ul {
        gap: 2px;
    }
}

/* responsive photos are wrapped in <picture>; let the image behave as if the wrapper weren't there */
picture {
    display: contents;
}
