/* ============================================
   TARIFF PAGE — DEDICATED STYLES
   The Mindful Destination
   ============================================ */

/* ── Header override removed to match home page header ── */

/* ── Hero ── */
.tariff-page-hero {
    height: 80vh;
    min-height: 560px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 5rem;
    overflow: hidden;
    background-image: url('../assets/images/The%20Mindful%20destination%20tariff%201.jpg');
    background-size: cover;
    background-position: center;
}

.tariff-page-hero .hero-slider,
.tariff-page-hero .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tariff-page-hero .hero-slide {
    background-image: url('../assets/images/The%20Mindful%20destination%20tariff%201.jpg');
    background-size: cover;
    background-position: center;
    animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.06);
    }
}

.tariff-page-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.30) 60%, rgba(0, 0, 0, 0.10) 100%),
        linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.0) 50%);
    z-index: 1;
}

/* Removed old tariff-hero-content, replaced by standard style.css hero-left pattern */

.tariff-hero-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.78);
    width: 100%;
    max-width: none;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-weight: 300;
}

.tariff-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.tariff-hero-cta:hover {
    color: var(--dzong-gold);
    border-color: var(--dzong-gold);
    gap: 1.5rem;
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background-color: rgba(247, 242, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.scroll-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: var(--dzong-gold);
    animation: scrollLine 2s infinite ease-in-out;
}

@keyframes scrollLine {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(200%);
    }
}

/* ── Section shared overrides ── */
.tariff-section {
    padding: 8rem 0;
}

.tariff-section-alt {
    padding: 8rem 0;
    background-color: var(--valley-mist);
}

@media (max-width: 768px) {

    .tariff-section,
    .tariff-section-alt {
        padding: 5rem 0;
    }
}

/* Section eyebrow + title */
.tariff-section-label {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.2rem;
}

.tariff-section-label::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--dzong-gold);
}

.tariff-section-label span {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--dzong-gold);
}

.tariff-section-h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3.5vw, 48px);
    color: var(--mountain-dusk);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.tariff-section-h2 em {
    font-style: italic;
}

.tariff-section-lead {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    font-weight: 300;
    max-width: 620px;
}

/* ── Quick Facts Banner ── */
.quick-facts-band {
    background-color: var(--mountain-dusk);
    padding: 3.5rem 0;
    overflow: hidden;
}

.quick-facts-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.qf-item {
    padding: 1.8rem 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: background 0.3s ease;
}

.qf-item:last-child {
    border-right: none;
}

.qf-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.qf-label {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dzong-gold);
    display: block;
    margin-bottom: 0.6rem;
}

.qf-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    color: rgba(247, 242, 235, 0.9);
    font-weight: 300;
    line-height: 1.3;
}

@media (max-width: 1024px) {
    .quick-facts-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .qf-item:nth-child(3) {
        border-right: none;
    }

    .qf-item:nth-child(4),
    .qf-item:nth-child(5) {
        border-right: none;
    }
}

@media (max-width: 600px) {
    .quick-facts-grid {
        grid-template-columns: 1fr 1fr;
    }

    .qf-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .qf-item:nth-child(even) {
        border-right: none;
    }
}

/* ── Seasons Section ── */
.seasons-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 8rem;
    align-items: start;
}

.seasons-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.season-item {
    border-top: 1px solid rgba(37, 36, 32, 0.1);
    padding: 2.5rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.season-item:last-child {
    border-bottom: 1px solid rgba(37, 36, 32, 0.1);
}

.season-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.season-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    color: var(--mountain-dusk);
    font-weight: 400;
    transition: color 0.3s;
}

.season-badge {
    font-family: 'Jost', sans-serif;
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 4px 10px;
    border: 1px solid rgba(37, 36, 32, 0.2);
    color: #888;
    border-radius: 2px;
    transition: all 0.3s;
}

.season-badge.peak {
    border-color: var(--dzong-gold);
    color: var(--dzong-gold);
}

.season-months {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #aaa;
    margin-top: 0.4rem;
}

.season-desc {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    font-weight: 300;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, margin-top 0.3s ease, opacity 0.4s ease;
    opacity: 0;
    margin-top: 0;
}

.season-item.is-open .season-desc {
    max-height: 200px;
    opacity: 1;
    margin-top: 1.2rem;
}

.season-item.is-open .season-name {
    color: var(--dzong-gold);
}

.season-item.is-open .season-badge.peak {
    background: var(--dzong-gold);
    color: #fff;
}

.season-chevron {
    width: 18px;
    height: 18px;
    stroke: var(--mountain-dusk);
    fill: none;
    stroke-width: 1.5;
    transition: transform 0.35s ease, stroke 0.3s;
}

.season-item.is-open .season-chevron {
    transform: rotate(180deg);
    stroke: var(--dzong-gold);
}

.season-image-stack {
    position: sticky;
    top: 120px;
}

.season-img-frame {
    position: relative;
    overflow: hidden;
}

.season-img-frame img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
    transition: opacity 0.5s ease;
}

.season-img-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    background: var(--bhutan-sand);
    z-index: -1;
    opacity: 0.5;
}

@media (max-width: 991px) {
    .seasons-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .season-image-stack {
        position: static;
        order: -1;
    }
}

/* ── SDF Layout (Asymmetric split for single table) ── */
.sdf-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.tariff-card {
    background: #fff;
    border: 1px solid rgba(37, 36, 32, 0.08);
    overflow: auto;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.tariff-card:hover {
    box-shadow: 0 20px 60px rgba(37, 36, 32, 0.1);
    transform: translateY(-4px);
}

.tariff-card-header {
    background: var(--mountain-dusk);
    padding: 2.2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tariff-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: #fff;
    font-weight: 400;
}

.tariff-card-icon {
    width: 32px;
    height: 32px;
    stroke: var(--dzong-gold);
    fill: none;
    stroke-width: 1.2;
}

.tariff-table {
    width: 100%;
    border-collapse: collapse;
}

.tariff-table thead tr {
    background: rgba(160, 132, 92, 0.12);
}

.tariff-table thead th {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--dzong-gold);
    padding: 1.2rem 2rem;
    text-align: left;
    font-weight: 500;
}

.tariff-table tbody tr {
    border-bottom: 1px solid rgba(37, 36, 32, 0.06);
    transition: background 0.2s ease;
}

.tariff-table tbody tr:last-child {
    border-bottom: none;
}

.tariff-table tbody tr:hover {
    background: rgba(160, 132, 92, 0.05);
}

.tariff-table tbody td {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: var(--mountain-dusk);
    padding: 1.4rem 2rem;
    line-height: 1.5;
}

.tariff-table tbody td:first-child {
    font-weight: 400;
    color: #444;
}

.tariff-table tbody td.price-cell {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: var(--mountain-dusk);
    font-weight: 700;
}

.tariff-table tbody td.note-cell {
    font-size: 12px;
    color: #999;
    font-style: italic;
}

.tariff-note-band {
    background: linear-gradient(135deg, rgba(160, 132, 92, 0.1) 0%, rgba(201, 185, 154, 0.12) 100%);
    border: 1px solid rgba(160, 132, 92, 0.3);
    padding: 2.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.tariff-note-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    stroke: var(--dzong-gold);
    fill: none;
    stroke-width: 1.5;
    margin-top: 2px;
}

.tariff-note-band p {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.tariff-note-band strong {
    color: var(--mountain-dusk);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .sdf-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ── Cost Breakdown Full Table ── */
.full-breakdown-wrapper {
    margin-top: 5rem;
    overflow: hidden;
    border: 1px solid rgba(37, 36, 32, 0.1);
}

.full-breakdown-header {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    background: var(--mountain-dusk);
    padding: 1.2rem 2.5rem;
    gap: 2rem;
}

.full-breakdown-header span {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dzong-gold);
}

.full-breakdown-row {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    padding: 1.5rem 2.5rem;
    gap: 2rem;
    border-bottom: 1px solid rgba(37, 36, 32, 0.06);
    transition: background 0.2s;
    align-items: center;
}

.full-breakdown-row:last-child {
    border-bottom: none;
}

.full-breakdown-row:hover {
    background: rgba(160, 132, 92, 0.04);
}

.full-breakdown-row .item-name {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    color: var(--mountain-dusk);
    font-weight: 400;
}

.full-breakdown-row .item-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--mountain-dusk);
}

.full-breakdown-row .item-detail {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: #777;
    line-height: 1.6;
}

.full-breakdown-total {
    background: var(--mountain-dusk);
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    padding: 2rem 2.5rem;
    gap: 2rem;
    align-items: center;
}

.full-breakdown-total .item-name {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(247, 242, 235, 0.7);
}

.full-breakdown-total .item-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--dzong-gold);
}

.full-breakdown-total .item-detail {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: rgba(247, 242, 235, 0.6);
}

@media (max-width: 768px) {

    .full-breakdown-header,
    .full-breakdown-row,
    .full-breakdown-total {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .full-breakdown-header span:nth-child(2),
    .full-breakdown-header span:nth-child(3) {
        display: none;
    }
}

/* ── What's Included ── */
.includes-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: start;
    margin-top: 5rem;
}

.includes-image-panel {
    position: relative;
}

.includes-image-panel img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
}

.includes-image-panel::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    right: -30px;
    bottom: -30px;
    border: 1px solid rgba(160, 132, 92, 0.3);
    z-index: -1;
}

.includes-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.include-item {
    display: flex;
    align-items: flex-start;
    gap: 1.8rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(37, 36, 32, 0.08);
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.include-item.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.include-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: var(--dzong-gold);
    fill: none;
    stroke-width: 1.5;
    margin-top: 2px;
}

.include-text h4 {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    color: var(--mountain-dusk);
    font-weight: 500;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.include-text p {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    font-weight: 300;
}

@media (max-width: 991px) {
    .includes-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .includes-image-panel {
        max-width: 480px;
    }
}

/* ── Sample Budget ── */
.budget-wrapper {
    margin-top: 5rem;
    background: var(--mountain-dusk);
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.budget-wrapper::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 280px;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: -60px;
    right: 40px;
    line-height: 1;
    pointer-events: none;
}

.budget-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: #fff;
    margin-bottom: 0.5rem;
}

.budget-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: rgba(247, 242, 235, 0.5);
    letter-spacing: 0.08em;
    margin-bottom: 3rem;
}

.budget-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.budget-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.budget-row:last-child {
    border-bottom: none;
}

.budget-row-label {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: rgba(247, 242, 235, 0.7);
}

.budget-row-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: rgba(247, 242, 235, 0.9);
}

.budget-row.is-total .budget-row-label {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(247, 242, 235, 0.5);
}

.budget-row.is-total .budget-row-value {
    font-size: 34px;
    color: var(--dzong-gold);
}

@media (max-width: 600px) {
    .budget-wrapper {
        padding: 2.5rem;
    }
}

/* ── Visa Section ── */
.visa-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 5rem;
}

.visa-card {
    padding: 3.5rem;
    border: 1px solid rgba(37, 36, 32, 0.1);
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s;
}

.visa-card:hover {
    box-shadow: 0 20px 50px rgba(37, 36, 32, 0.08);
    transform: translateY(-4px);
}

.visa-card-icon {
    width: 40px;
    height: 40px;
    stroke: var(--dzong-gold);
    fill: none;
    stroke-width: 1.2;
    margin-bottom: 2rem;
}

.visa-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--mountain-dusk);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.visa-card p {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1.2rem;
}

.visa-card p:last-of-type {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .visa-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ── Visa Steps ── */
.visa-steps {
    margin-top: 6rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
}

.visa-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: rgba(160, 132, 92, 0.3);
}

.visa-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
    position: relative;
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 0;
    background: #fff;
    border: 2px solid rgba(160, 132, 92, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--dzong-gold);
    font-weight: 400;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.visa-step:hover .step-num {
    background: var(--dzong-gold);
    color: #fff;
    border-color: var(--dzong-gold);
    transform: scale(1.1);
}

.step-text {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    font-weight: 300;
}

@media (max-width: 768px) {
    .visa-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .visa-steps::before {
        display: none;
    }

    .visa-step {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .step-num {
        flex-shrink: 0;
    }
}

/* ── Highlights (Must-See) ── */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 5rem;
    border: 1px solid rgba(37, 36, 32, 0.1);
}

.highlight-card {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    cursor: pointer;
}

.highlight-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.highlight-card:hover img {
    transform: scale(1.08);
}

.highlight-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(37, 36, 32, 0.85) 0%,
            rgba(37, 36, 32, 0.3) 50%,
            transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    transition: background 0.4s ease;
}

.highlight-card:hover .highlight-overlay {
    background: linear-gradient(to top,
            rgba(37, 36, 32, 0.92) 0%,
            rgba(37, 36, 32, 0.5) 60%,
            rgba(37, 36, 32, 0.1) 100%);
}

.highlight-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

.highlight-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 0.8rem;
}

.highlight-desc {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
    font-weight: 300;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.4s ease;
    opacity: 0;
}

.highlight-card:hover .highlight-desc {
    max-height: 100px;
    opacity: 1;
}

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

@media (max-width: 600px) {
    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .highlight-card {
        aspect-ratio: 16/9;
    }
}

/* ── Traveller Notes ── */
.notes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 5rem;
}

.note-card {
    padding: 3rem;
    background: #fff;
    border-bottom: 3px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease, border-color 0.3s ease;
}

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

.note-card:hover {
    border-color: var(--dzong-gold);
    box-shadow: 0 12px 40px rgba(37, 36, 32, 0.08);
}

.note-card-icon {
    width: 36px;
    height: 36px;
    stroke: var(--dzong-gold);
    fill: none;
    stroke-width: 1.3;
    margin-bottom: 1.8rem;
}

.note-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--mountain-dusk);
    font-weight: 400;
    margin-bottom: 1rem;
}

.note-card p {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    font-weight: 300;
}

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

@media (max-width: 600px) {
    .notes-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Getting There ── */
.getting-there-band {
    background: var(--mountain-dusk);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.getting-there-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/images/The Mindful destination tariff 7.jpg') center/cover no-repeat;
    opacity: 0.08;
}

.getting-there-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.getting-there-text .tariff-section-h2 {
    color: #fff;
}

.getting-there-text .tariff-section-lead {
    color: rgba(247, 242, 235, 0.65);
    max-width: 100%;
}

.getting-there-text .tariff-section-label span {
    color: var(--dzong-gold);
}

.getting-there-text .tariff-section-label::before {
    background: var(--dzong-gold);
}

.airlines-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.airline-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.8rem;
    transition: background 0.3s, border-color 0.3s;
}

.airline-item:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(160, 132, 92, 0.5);
}

.airline-name {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    display: block;
    margin-bottom: 0.3rem;
}

.airline-routes {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    color: rgba(247, 242, 235, 0.5);
    line-height: 1.6;
}

.airport-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(160, 132, 92, 0.15);
    border: 1px solid rgba(160, 132, 92, 0.4);
    padding: 0.8rem 1.5rem;
    margin-bottom: 2rem;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dzong-gold);
}

@media (max-width: 991px) {
    .getting-there-inner {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 600px) {
    .airlines-grid {
        grid-template-columns: 1fr;
    }
}

/* ── CTA Strip ── */
.tariff-cta-strip {
    background: var(--valley-mist);
    padding: 6rem 0;
    text-align: center;
}

.tariff-cta-strip .tariff-section-h2 {
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.tariff-cta-strip .tariff-section-lead {
    max-width: 500px;
    margin: 0 auto 3rem;
    text-align: center;
}

.tariff-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ── Disclaimer footer strip ── */
.tariff-disclaimer {
    background: var(--mountain-dusk);
    padding: 1.5rem 0;
    text-align: center;
}

.tariff-disclaimer p {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    color: rgba(247, 242, 235, 0.4);
    letter-spacing: 0.05em;
    line-height: 1.8;
}