/* =========================================================================
   Wanderlust Holidays — stylesheet
   Ek hi layer. Koi override stack nahi.

   THEMING RULE (important):
   Kisi bhi component me colour hardcode mat karo. Har section par ek band
   class lagti hai (.band / .band-alt / .band-white / .band-dark) jo ye
   contextual tokens set karti hai:

       --txt        primary text
       --txt-soft   secondary text
       --surface    card background
       --surface-2  raised / tinted background
       --edge       border colour
       --accent     link + accent colour (light par darker gold, dark par gold)

   Components sirf inhi ko use karte hain. Isliye ek hi card markup light
   aur dark dono band me apne aap sahi contrast par render hota hai.
   ========================================================================= */

/* ------------------------------------------------------------------ tokens */
:root {
    /* brand */
    --navy:        #0B1A2A;
    --navy-deep:   #071320;
    --navy-soft:   #15293D;
    --cream:       #FBF8F2;
    --cream-2:     #F4EEE2;
    --white:       #FFFFFF;

    --gold:        #C9A961;
    --gold-bright: #E0BC72;
    --gold-deep:   #856522;   /* light background par AA-safe gold (>=4.5:1) */

    /* text */
    --ink:         #16222F;
    --ink-soft:    #56616E;
    --on-dark:     #F4EFE4;
    --on-dark-soft:#AEBAC6;

    /* lines */
    --line:        #E6DECF;
    --line-dark:   rgba(244, 239, 228, .16);

    /* status */
    --ok:          #2E7D4F;
    --err:         #C0483A;

    /* type */
    --serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
    --sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --script: 'Caveat', 'Segoe Script', cursive;

    /* metrics */
    --shell:    1240px;
    --header-h: 74px;
    --r-sm:     6px;
    --r-md:     10px;
    --r-lg:     16px;
    --band-y:   clamp(58px, 6.5vw, 96px);

    --shadow-card: 0 10px 30px rgba(16, 28, 40, .07);
    --shadow-lift: 0 18px 44px rgba(16, 28, 40, .13);
}

/* ------------------------------------------------------------------ reset */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 24px);
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

:focus-visible {
    outline: 2px solid var(--gold-deep);
    outline-offset: 3px;
    border-radius: 2px;
}
.band-dark :focus-visible,
.hero :focus-visible,
.site-footer :focus-visible,
.masthead :focus-visible { outline-color: var(--gold-bright); }

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 999;
    background: var(--gold); color: #14100A;
    padding: 12px 18px; font-weight: 600; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; top: 0; }

.visually-hidden {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.shell {
    width: 100%;
    max-width: var(--shell);
    margin-inline: auto;
    padding-inline: clamp(18px, 4vw, 40px);
}

/* =========================================================================
   BANDS — har section ka colour context yahin se aata hai
   ========================================================================= */
.band {
    --txt:       var(--ink);
    --txt-soft:  var(--ink-soft);
    --surface:   var(--white);
    --surface-2: var(--cream-2);
    --edge:      var(--line);
    --accent:    var(--gold-deep);

    background: var(--cream);
    color: var(--txt);
    padding-block: var(--band-y);
    position: relative;
}
.band-alt   { background: var(--cream-2); --surface: var(--white); }
.band-white { background: var(--white);   --surface-2: var(--cream); }

.band-dark {
    --txt:       var(--on-dark);
    --txt-soft:  var(--on-dark-soft);
    --surface:   var(--navy-soft);
    --surface-2: rgba(244, 239, 228, .06);
    --edge:      var(--line-dark);
    --accent:    var(--gold-bright);

    background: var(--navy);
    color: var(--txt);
}
/* halki texture — sirf dark bands par */
.band-dark::before {
    content: '';
    position: absolute; inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 12% 18%, rgba(201, 169, 97, .10), transparent 42%),
        radial-gradient(circle at 88% 78%, rgba(201, 169, 97, .07), transparent 46%);
}
.band > .shell { position: relative; z-index: 1; }

/* =========================================================================
   TYPE
   ========================================================================= */
h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 500;
    line-height: 1.14;
    margin: 0;
    letter-spacing: -.015em;
    color: var(--txt, var(--ink));
}

.eyebrow {
    display: block;
    font-family: var(--sans);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--accent, var(--gold-deep));
    margin: 0 0 12px;
}

.band-title { font-size: clamp(30px, 3.7vw, 46px); }
.band-lead {
    max-width: 58ch;
    color: var(--txt-soft, var(--ink-soft));
    margin: 14px 0 0;
    font-size: 16px;
}

.script-note {
    font-family: var(--script);
    font-size: clamp(22px, 2.6vw, 34px);
    line-height: 1.12;
    color: var(--accent);
    transform: rotate(-4deg);
}

/* section header: eyebrow + title left, "view all" right */
.band-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: clamp(28px, 3.4vw, 44px);
}
.band-head > div { min-width: 0; }

.more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--accent);
    padding-bottom: 3px;
    border-bottom: 1px solid currentColor;
    white-space: nowrap;
}
.more-link svg { width: 15px; height: 15px; transition: transform .25s ease; }
.more-link:hover svg { transform: translateX(4px); }

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 12px 26px;
    border: 1px solid transparent;
    border-radius: var(--r-sm);
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: .01em;
    text-align: center;
    transition: background .22s ease, border-color .22s ease, color .22s ease, box-shadow .22s ease;
}
.btn svg { width: 17px; height: 17px; flex: none; }

.btn-gold {
    background: var(--gold);
    color: #14100A;
    box-shadow: 0 8px 22px rgba(201, 169, 97, .28);
}
.btn-gold:hover { background: var(--gold-bright); }

.btn-ghost {
    border-color: rgba(244, 239, 228, .42);
    color: var(--on-dark);
    background: rgba(11, 26, 42, .34);
    backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--on-dark); background: rgba(11, 26, 42, .55); }

.btn-outline {
    border-color: var(--edge, var(--line));
    color: var(--txt, var(--ink));
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-sm    { min-height: 40px; padding: 8px 18px; font-size: 13.5px; }
.btn-block { width: 100%; }

/* circular icon button */
.round-btn {
    display: inline-grid;
    place-items: center;
    width: 44px; height: 44px;
    flex: none;
    border-radius: 50%;
    border: 1px solid var(--edge);
    color: var(--txt);
    transition: background .22s ease, border-color .22s ease, color .22s ease;
}
.round-btn svg { width: 17px; height: 17px; }
.round-btn:hover { border-color: var(--accent); color: var(--accent); }
.round-btn[disabled] { opacity: .4; cursor: not-allowed; }
.round-btn-gold {
    background: var(--gold);
    border-color: var(--gold);
    color: #14100A;
}
.round-btn-gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); color: #14100A; }

/* =========================================================================
   MASTHEAD
   ========================================================================= */
.masthead {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 80;
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    background: rgba(11, 26, 42, .86);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: background .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.masthead.is-stuck {
    background: rgba(8, 20, 33, .98);
    border-bottom-color: var(--line-dark);
    box-shadow: 0 8px 26px rgba(0, 0, 0, .28);
}

.masthead-inner {
    display: flex;
    align-items: center;
    gap: clamp(16px, 3vw, 44px);
    min-height: var(--header-h);
}

.brand { position: relative; display: flex; align-items: center; flex: none; }

/* balloon mark + text wordmark (image me sirf balloon hai, text asli hai) */
.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.brand-mark {
    width: auto;
    height: 42px;
    flex: none;
    object-fit: contain;
}
.brand-word {
    display: block;
    line-height: 1;
    color: var(--on-dark);
}
.brand-word b {
    display: block;
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: .01em;
}
.brand-word em {
    display: block;
    font-style: normal;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: .34em;
    color: var(--gold-bright);
    margin-top: 3px;
}
.brand-word i {
    display: block;
    font-style: normal;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(244, 239, 228, .62);
    margin-top: 4px;
}

.brand-lockup-lg { gap: 13px; }
.brand-lockup-lg .brand-mark { height: 58px; }
.brand-lockup-lg .brand-word b  { font-size: 23px; }
.brand-lockup-lg .brand-word em { font-size: 15px; }
.brand-lockup-lg .brand-word i  { font-size: 9px; }

.primary-nav {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 30px);
    margin-inline: auto;
}
.primary-nav a {
    position: relative;
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(244, 239, 228, .88);
    padding: 6px 2px;
    transition: color .2s ease;
}
.primary-nav a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}
.primary-nav a:hover { color: #fff; }
.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.primary-nav a[aria-current="page"] { color: var(--gold-bright); }

.masthead .btn-gold { flex: none; min-height: 42px; padding: 10px 20px; font-size: 13.5px; }

.nav-toggle {
    display: none;
    width: 44px; height: 42px;
    border: 1px solid var(--line-dark);
    border-radius: var(--r-sm);
    padding: 11px;
    flex: none;
}
.nav-toggle span {
    display: block; height: 1.5px; border-radius: 2px;
    background: var(--on-dark);
    transition: transform .25s ease, opacity .18s ease;
}
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
    position: relative;
    min-height: min(92vh, 780px);
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-h) + 48px);
    padding-bottom: 44px;
    overflow: hidden;
    color: var(--on-dark);

    --txt: var(--on-dark);
    --txt-soft: var(--on-dark-soft);
    --accent: var(--gold-bright);
    --edge: var(--line-dark);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
    content: '';
    position: absolute; inset: 0;
    background:
        linear-gradient(95deg, rgba(6, 16, 27, .93) 0%, rgba(6, 16, 27, .70) 44%, rgba(6, 16, 27, .22) 100%),
        linear-gradient(180deg, rgba(6, 16, 27, .70) 0%, rgba(6, 16, 27, .05) 40%, rgba(6, 16, 27, .82) 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; }

.hero-title {
    font-size: clamp(42px, 6.2vw, 76px);
    line-height: 1.04;
    max-width: 17ch;
    margin-bottom: 20px;
}
.hero-title .line-2 { display: block; color: var(--gold-bright); }

.hero-lead {
    max-width: 48ch;
    font-size: clamp(15px, 1.2vw, 17px);
    color: rgba(244, 239, 228, .86);
    margin: 0 0 30px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(20px, 3.6vw, 52px);
    margin-top: clamp(34px, 5vw, 62px);
}
.hero-stats li { display: flex; align-items: center; gap: 13px; }
.stat-ico {
    display: grid; place-items: center;
    width: 42px; height: 42px;
    flex: none;
    border: 1px solid rgba(201, 169, 97, .55);
    border-radius: 50%;
    color: var(--gold-bright);
}
.stat-ico svg { width: 19px; height: 19px; }
.hero-stats strong {
    display: block;
    font-family: var(--serif);
    font-size: 21px;
    font-weight: 500;
    line-height: 1.2;
}
.hero-stats span {
    display: block;
    font-size: 12.5px;
    color: rgba(244, 239, 228, .74);
}

.hero-script {
    position: absolute;
    top: clamp(96px, 16vh, 150px);
    right: clamp(24px, 5vw, 76px);
    z-index: 2;
    text-align: center;
    max-width: 210px;
    pointer-events: none;
}
.hero-script span { display: block; }
.hero-script .underline {
    display: block;
    width: 116px; height: 8px;
    margin: 6px auto 0;
    border-bottom: 2px solid rgba(224, 188, 114, .7);
    border-radius: 0 0 60% 40%;
    transform: rotate(-3deg);
}

.hero-watch {
    position: absolute;
    right: clamp(24px, 5vw, 56px);
    bottom: clamp(52px, 8vh, 78px);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--on-dark);
    font-size: 13px;
}
.hero-watch .play {
    display: grid; place-items: center;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: #fff;
    color: var(--navy);
    box-shadow: 0 8px 26px rgba(0, 0, 0, .3);
    transition: transform .25s ease;
}
.hero-watch .play svg { width: 16px; height: 16px; }
.hero-watch:hover .play { transform: scale(1.08); }

/* =========================================================================
   SERVICES
   ========================================================================= */
.service-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.service-card {
    background: var(--surface);
    border: 1px solid var(--edge);
    border-radius: var(--r-md);
    padding: 26px 22px 28px;
    box-shadow: var(--shadow-card);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 169, 97, .62);
    box-shadow: var(--shadow-lift);
}
.service-icon {
    display: grid; place-items: center;
    width: 46px; height: 46px;
    margin-bottom: 30px;
    border-radius: var(--r-sm);
    background: var(--surface-2);
    border: 1px solid var(--edge);
    color: var(--accent);
}
.service-icon svg { width: 21px; height: 21px; }
.service-card h3 { font-size: 19px; margin-bottom: 8px; }
.service-card p { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--txt-soft); }

/* =========================================================================
   DESTINATIONS
   ========================================================================= */
.dest-slider {
    
    overflow: hidden;
    width: 100%;
    
}

.dest-grid {
    display: flex;
    gap: 14px;
    width: max-content;
    min-width: 100%;
    flex-wrap: nowrap;
   
}
.dest-grid::-webkit-scrollbar {
    display: none;
}

.dest-card {
    position: relative;
     flex: 0 0 220px !important;
    width: 220px;
    max-width: none;
    border-radius: var(--r-md);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    isolation: isolate;
}
.dest-card img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.2, .7, .3, 1);
}
.dest-card::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(7, 19, 32, 0) 38%, rgba(7, 19, 32, .90) 100%);
}
.dest-card:hover img { transform: scale(1.06); }

.dest-body {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    gap: 12px;
    padding: 18px 16px;
    color: var(--on-dark);
    pointer-events: none;
}
.dest-body > div { min-width: 0; }
.dest-body h3 { font-size: 19px; margin-bottom: 4px; color: #fff; }
.dest-body p {
    margin: 0;
    font-size: 12.5px;
    line-height: 1.5;
    color: rgba(244, 239, 228, .84);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.dest-go {
    pointer-events: auto;
    width: 36px; height: 36px;
    border-color: rgba(255, 255, 255, .55);
    color: #fff;
    background: rgba(7, 19, 32, .42);
    backdrop-filter: blur(3px);
}
.dest-go svg { width: 15px; height: 15px; }
.dest-go:hover { background: var(--gold); border-color: var(--gold); color: #14100A; }

.card-link { position: absolute; inset: 0; z-index: 3; }

/* Static card grid (used on the Destinations listing page, in place of the slider) */
.dest-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.dest-card-grid .dest-card {
    flex: none;
    width: 100%;
    aspect-ratio: 3 / 4;
}

/* =========================================================================
   POSTCARDS (gallery mosaic)
   ========================================================================= */
.postcards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 84px;
    gap: 12px;
}
.pc {
    position: relative;
    border-radius: var(--r-md);
    overflow: hidden;
    padding: 0;
    width: 100%;
    background: var(--surface-2);
    grid-row: span 2;
}
.pc img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.pc:hover img { transform: scale(1.05); }
.pc::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(7, 19, 32, 0) 42%, rgba(7, 19, 32, .86) 100%);
    pointer-events: none;
}
.pc-cap {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    padding: 14px 14px 13px;
    text-align: left;
    font-size: 13px;
    line-height: 1.4;
    color: #fff;
    pointer-events: none;
}

/* mosaic rhythm */
.postcards .pc:nth-child(1) { grid-row: span 2; margin-top: 14px; }
.postcards .pc:nth-child(2) { grid-row: span 2; margin-top: 30px; }
.postcards .pc:nth-child(3) { grid-row: span 3; }
.postcards .pc:nth-child(4) { grid-row: span 2; margin-top: 22px; }
.postcards .pc:nth-child(5) { grid-row: span 1; }
.postcards .pc:nth-child(6) { grid-row: span 1; }

.postcards-head { position: relative; }
.stamp {
    position: absolute;
    right: 0; top: -14px;
    width: 104px; height: 104px;
    opacity: .45;
    pointer-events: none;
}

/* lightbox */
.lightbox {
    position: fixed; inset: 0; z-index: 150;
    background: rgba(6, 14, 23, .95);
    display: grid; place-items: center;
    padding: clamp(18px, 5vw, 48px);
}
.lightbox[hidden] { display: none; }
.lightbox figure { margin: 0; text-align: center; }
.lightbox img {
    max-width: min(1040px, 92vw);
    max-height: 78vh;
    object-fit: contain;
    border-radius: var(--r-sm);
}
.lightbox figcaption { margin-top: 14px; color: rgba(244, 239, 228, .82); font-size: 14px; }
.lightbox-close {
    position: absolute; top: 18px; right: 20px;
    width: 46px; height: 46px;
    display: grid; place-items: center;
    border: 1px solid rgba(244, 239, 228, .28);
    border-radius: 50%;
    color: var(--on-dark);
}
.lightbox-close svg { width: 18px; height: 18px; }
.lightbox-close:hover { border-color: var(--gold); color: var(--gold); }

/* =========================================================================
   TESTIMONIALS
   ========================================================================= */
.tst-wrap { position: relative; }

.tst-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(270px, 1fr);
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 4px 2px 8px;
}
.tst-rail::-webkit-scrollbar { display: none; }

.tst-card {
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 24px 22px;
    background: var(--surface);
    border: 1px solid var(--edge);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-card);
}
.tst-stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 14px; }
.tst-stars svg { width: 14px; height: 14px; fill: currentColor; stroke: none; }

.tst-card blockquote {
    margin: 0 0 20px;
    font-size: 14.5px;
    line-height: 1.68;
    color: var(--txt);
}
.tst-card figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tst-avatar {
    display: grid; place-items: center;
    width: 40px; height: 40px;
    flex: none;
    border-radius: 50%;
    overflow: hidden;
    background: var(--navy);
    color: var(--gold-bright);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .04em;
}
.tst-avatar img { width: 100%; height: 100%; object-fit: cover; }
.tst-who { min-width: 0; }
.tst-who strong { display: block; font-size: 14px; font-weight: 600; color: var(--txt); }
.tst-who span  { display: block; font-size: 12.5px; color: var(--txt-soft); }

.rail-prev, .rail-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    background: var(--surface);
    box-shadow: var(--shadow-card);
}
.rail-prev { left: -56px; }
.rail-next { right: -56px; }

@media (max-width: 1400px) {
    .rail-prev { left: -20px; }
    .rail-next { right: -20px; }
}

.rail-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 22px;
}
.rail-dots button {
    width: 22px; height: 4px;
    border-radius: 3px;
    background: var(--edge);
    transition: background .25s ease, width .25s ease;
}
.rail-dots button[aria-current="true"] { width: 34px; background: var(--gold); }

/* =========================================================================
   PROCESS
   ========================================================================= */
.process-head { position: relative; }
.process-note {
    position: absolute;
    right: 0; bottom: 4px;
    max-width: 210px;
    margin: 0;
    text-align: center;
}

.flightpath {
    position: relative;
    height: 74px;
    margin: 6px 0 -26px;
}
.flightpath svg { width: 100%; height: 100%; overflow: visible; }

.step-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(18px, 3vw, 40px);
    position: relative;
    z-index: 1;
}
.step { text-align: center; }
.step-ico {
    display: grid; place-items: center;
    width: 62px; height: 62px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--surface-2);
    border: 1px solid var(--edge);
    color: var(--accent);
}
.step-ico svg { width: 24px; height: 24px; }
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step h3 b {
    font-family: var(--sans);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--accent);
    margin-right: 5px;
}
.step p { margin: 0; font-size: 13.5px; line-height: 1.62; color: var(--txt-soft); }

/* =========================================================================
   PACKAGES (trips)
   ========================================================================= */
.trip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.trip-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--edge);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.trip-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 169, 97, .62);
    box-shadow: var(--shadow-lift);
}

.trip-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.trip-media img { width: 100%; height: 100%; object-fit: cover; }

.trip-badge {
    position: absolute;
    top: 12px; right: 12px;
    z-index: 2;
    background: var(--gold);
    color: #14100A;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .02em;
    padding: 5px 12px;
    border-radius: 100px;
}

.trip-body { display: flex; flex-direction: column; flex: 1; padding: 16px 18px 18px; }

.trip-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
    margin: 0 0 10px;
    font-size: 11.5px;
    color: var(--txt-soft);
}
.trip-meta li { display: flex; align-items: center; gap: 6px; }
.trip-meta svg { width: 13px; height: 13px; color: var(--accent); flex: none; }

.trip-card h3 { font-size: 19px; margin-bottom: 12px; }
.trip-card h3 a { transition: color .2s ease; }
.trip-card h3 a:hover { color: var(--accent); }

.trip-foot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
}
.trip-price strong {
    display: block;
    font-family: var(--serif);
    font-size: 21px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--txt);
}
.trip-price span { display: block; font-size: 11.5px; color: var(--txt-soft); }
.trip-foot .round-btn { width: 38px; height: 38px; }
.trip-foot .round-btn svg { width: 15px; height: 15px; }

.trip-desc { margin: 0 0 14px; font-size: 13.5px; line-height: 1.6; color: var(--txt-soft); }

/* =========================================================================
   WHY / ABOUT
   ========================================================================= */
.why-grid {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
    gap: clamp(32px, 5vw, 76px);
    align-items: center;
}
.why-media { position: relative; }
.why-media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lift);
}
.why-badge {
    position: absolute;
    right: -18px; bottom: -18px;
    width: 108px; height: 108px;
    display: grid;
    place-content: center;
    text-align: center;
    background: var(--gold);
    color: #14100A;
    border-radius: 50%;
    box-shadow: 0 14px 34px rgba(11, 26, 42, .22);
}
.why-badge strong { display: block; font-family: var(--serif); font-size: 27px; line-height: 1; }
.why-badge span { display: block; font-size: 9.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-top: 4px; }

.why-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px 32px;
    margin-top: 30px;
}
.why-list li { display: flex; gap: 14px; }
.why-ico {
    display: grid; place-items: center;
    width: 40px; height: 40px;
    flex: none;
    border-radius: 50%;
    background: var(--surface-2);
    border: 1px solid var(--edge);
    color: var(--accent);
}
.why-ico svg { width: 18px; height: 18px; }
.why-list h3 { font-size: 16.5px; margin-bottom: 4px; }
.why-list p { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--txt-soft); }

/* =========================================================================
   NEWSLETTER STRIP
   ========================================================================= */
.newsletter {
    position: relative;
    overflow: hidden;
    padding-block: clamp(40px, 5vw, 62px);
    color: var(--on-dark);
    --txt: var(--on-dark);
    --txt-soft: rgba(244, 239, 228, .76);
    --accent: var(--gold-bright);
}
.newsletter-media { position: absolute; inset: 0; }
.newsletter-media img { width: 100%; height: 100%; object-fit: cover; }
.newsletter-media::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(7, 19, 32, .93), rgba(7, 19, 32, .74));
}
.newsletter-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(24px, 4vw, 56px);
    flex-wrap: wrap;
}
.newsletter h2 { font-size: clamp(24px, 2.9vw, 34px); margin-bottom: 8px; }
.newsletter p { margin: 0; font-size: 14px; color: var(--txt-soft); max-width: 52ch; }

.subscribe {
    display: flex;
    gap: 10px;
    flex: 1 1 340px;
    max-width: 440px;
}
.subscribe input {
    flex: 1;
    min-width: 0;
    min-height: 46px;
    padding: 11px 15px;
    border-radius: var(--r-sm);
    border: 1px solid rgba(244, 239, 228, .32);
    background: rgba(7, 19, 32, .55);
    color: var(--on-dark);
    font: inherit;
    font-size: 14px;
}
.subscribe input::placeholder { color: rgba(244, 239, 228, .55); }
.subscribe input:focus { outline: none; border-color: var(--gold); background: rgba(7, 19, 32, .8); }
.subscribe .btn { flex: none; min-height: 46px; }

/* =========================================================================
   CTA BANNER
   ========================================================================= */
.cta-banner {
    position: relative;
    overflow: hidden;
    padding-block: clamp(58px, 7vw, 92px);
    text-align: center;
    color: var(--on-dark);
    --txt: var(--on-dark);
    --accent: var(--gold-bright);
    --edge: var(--line-dark);
}
.cta-media { position: absolute; inset: 0; }
.cta-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-media::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(7, 19, 32, .86), rgba(7, 19, 32, .74));
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 { font-size: clamp(27px, 3.6vw, 44px); margin-bottom: 12px; }
.cta-inner p { max-width: 54ch; margin: 0 auto 26px; color: rgba(244, 239, 228, .86); }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* =========================================================================
   PAGE HEADER (inner pages)
   ========================================================================= */
.page-head {
    position: relative;
    padding-top: calc(var(--header-h) + clamp(44px, 6vw, 76px));
    padding-bottom: clamp(36px, 5vw, 60px);
    background: var(--navy);
    color: var(--on-dark);
    overflow: hidden;
    --txt: var(--on-dark);
    --txt-soft: var(--on-dark-soft);
    --accent: var(--gold-bright);
}
.page-head::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 15% 25%, rgba(201, 169, 97, .13), transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(201, 169, 97, .09), transparent 48%);
}
.page-head .shell { position: relative; z-index: 1; }
.page-head h1 { font-size: clamp(32px, 4.4vw, 54px); }
.page-head p { max-width: 62ch; margin: 14px 0 0; color: var(--txt-soft); }

.crumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 12.5px;
    color: var(--txt-soft);
}
.crumbs a { color: rgba(244, 239, 228, .84); }
.crumbs a:hover { color: var(--gold-bright); }

/* =========================================================================
   DETAIL PAGES
   ========================================================================= */
.detail-hero {
    position: relative;
    padding-top: calc(var(--header-h) + clamp(40px, 6vw, 72px));
    padding-bottom: clamp(40px, 5vw, 66px);
    overflow: hidden;
    color: var(--on-dark);
    --txt: var(--on-dark);
    --txt-soft: var(--on-dark-soft);
    --accent: var(--gold-bright);
}
.detail-hero-media { position: absolute; inset: 0; }
.detail-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.detail-hero-media::after {
    content: '';
    position: absolute; inset: 0;
    background:
        linear-gradient(95deg, rgba(6, 16, 27, .94) 0%, rgba(6, 16, 27, .72) 55%, rgba(6, 16, 27, .34) 100%),
        linear-gradient(180deg, rgba(6, 16, 27, .70), rgba(6, 16, 27, .12) 46%, rgba(6, 16, 27, .88));
}
.detail-hero .shell { position: relative; z-index: 1; }

.detail-title { font-size: clamp(30px, 4.4vw, 52px); max-width: 18ch; margin-bottom: 14px; }
.detail-lead { max-width: 58ch; margin: 0 0 24px; font-size: 16px; color: rgba(244, 239, 228, .88); }

.detail-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    font-size: 14px;
}
.detail-facts li { display: flex; align-items: center; gap: 9px; }
.detail-facts svg { width: 17px; height: 17px; color: var(--gold-bright); flex: none; }

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: clamp(30px, 4vw, 60px);
    align-items: start;
}

.detail-block { margin-bottom: clamp(34px, 4.4vw, 52px); }
.detail-block:last-child { margin-bottom: 0; }
.detail-block > h2 {
    font-size: clamp(22px, 2.5vw, 29px);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--edge);
}
.detail-para { margin: 0 0 14px; max-width: 70ch; color: var(--txt-soft); }
.detail-note { margin: 14px 0 0; font-size: 13px; color: var(--txt-soft); }

.itin { display: grid; }
.itin li {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 18px;
    padding: 15px 0;
    border-bottom: 1px solid var(--edge);
}
.itin li:last-child { border-bottom: 0; }
.itin-day {
    font-family: var(--serif);
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
}
.itin p { margin: 0; font-size: 15px; color: var(--txt-soft); }

.inc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px 36px; }
.inc-list { display: grid; gap: 11px; }
.inc-list.two-col { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 11px 36px; }
.inc-list li {
    display: grid;
    grid-template-columns: 21px minmax(0, 1fr);
    gap: 11px;
    align-items: start;
    font-size: 14.5px;
    color: var(--txt-soft);
}
.inc-mark {
    display: grid; place-items: center;
    width: 20px; height: 20px;
    margin-top: 2px;
    border-radius: 50%;
}
.inc-mark svg { width: 11px; height: 11px; }
.inc-mark.yes { background: rgba(46, 125, 79, .14); color: #2E7D4F; }
.inc-mark.no  { background: rgba(192, 72, 58, .13); color: #C0483A; }

.faq details { border-bottom: 1px solid var(--edge); }
.faq summary {
    position: relative;
    cursor: pointer;
    list-style: none;
    padding: 16px 40px 16px 0;
    font-family: var(--serif);
    font-size: 16.5px;
    color: var(--txt);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: '';
    position: absolute;
    right: 6px; top: 50%;
    width: 11px; height: 11px;
    margin-top: -9px;
    border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: rotate(45deg);
    transition: transform .25s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq summary:hover { color: var(--accent); }
.faq p { margin: 0 0 18px; max-width: 70ch; font-size: 15px; color: var(--txt-soft); }

.detail-side { position: sticky; top: calc(var(--header-h) + 20px); }
.book-card {
    background: var(--surface);
    border: 1px solid var(--edge);
    border-radius: var(--r-md);
    padding: 24px 22px;
    box-shadow: var(--shadow-card);
}
.book-price { margin: 0 0 18px; }
.book-price .label { display: block; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--txt-soft); }
.book-price strong {
    display: block;
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.16;
    color: var(--txt);
    margin: 2px 0;
}
.book-price .per { display: block; font-size: 12.5px; color: var(--txt-soft); }

.book-meta {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 9px 16px;
    margin: 0 0 20px;
    padding: 16px 0;
    border-block: 1px solid var(--edge);
    font-size: 14px;
}
.book-meta dt { color: var(--txt-soft); }
.book-meta dd { margin: 0; text-align: right; color: var(--txt); font-weight: 500; }

.book-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 10px;
    padding: 12px;
    min-height: 46px;
    border: 1px solid var(--edge);
    border-radius: var(--r-sm);
    font-size: 14.5px;
    font-weight: 500;
    color: var(--txt);
}
.book-call svg { width: 16px; height: 16px; color: var(--accent); }
.book-call:hover { border-color: var(--accent); color: var(--accent); }
.book-note { margin: 16px 0 0; font-size: 12.5px; color: var(--txt-soft); }

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 64px);
    align-items: start;
}
.contact-info { display: grid; gap: 22px; }
.info-block { display: flex; gap: 14px; }
.info-ico {
    display: grid; place-items: center;
    width: 40px; height: 40px;
    flex: none;
    border-radius: 50%;
    background: var(--surface-2);
    border: 1px solid var(--edge);
    color: var(--accent);
}
.info-ico svg { width: 17px; height: 17px; }
.info-label {
    display: block;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 3px;
}
.info-block strong { display: block; font-size: 15px; font-weight: 500; line-height: 1.55; color: var(--txt); }
.info-block a:hover { color: var(--accent); }

.form-card {
    background: var(--surface);
    border: 1px solid var(--edge);
    border-radius: var(--r-md);
    padding: clamp(22px, 3.2vw, 34px);
    box-shadow: var(--shadow-card);
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label {
    display: block;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--txt-soft);
    margin-bottom: 6px;
}
.field label i { font-style: normal; color: var(--err); }

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
    border: 1px solid var(--edge);
    border-radius: var(--r-sm);
    background: var(--white);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 15px;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 116px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #737C87; }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, .22);
}
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--err); }
.field-msg { margin: 6px 0 0; font-size: 12.5px; color: var(--err); }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { margin: 14px 0 0; font-size: 12.5px; text-align: center; color: var(--txt-soft); }

.alert {
    margin-bottom: 18px;
    padding: 13px 16px;
    border: 1px solid;
    border-radius: var(--r-sm);
    font-size: 14.5px;
}
.alert-success { border-color: rgba(46, 125, 79, .42); background: rgba(46, 125, 79, .1);  color: #1F5C39; }
.alert-error   { border-color: rgba(192, 72, 58, .42); background: rgba(192, 72, 58, .1);  color: #94342A; }

.map-embed {
    margin-top: 26px;
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1px solid var(--edge);
    aspect-ratio: 16 / 9;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* =========================================================================
   EMPTY STATE
   ========================================================================= */
.empty-note {
    padding: 30px;
    border: 1px dashed var(--edge);
    border-radius: var(--r-md);
    text-align: center;
    color: var(--txt-soft);
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
    position: relative;
    background: var(--navy-deep);
    color: var(--on-dark);
    --txt: var(--on-dark);
    --txt-soft: var(--on-dark-soft);
    --accent: var(--gold-bright);
    --edge: var(--line-dark);
    --ridge-h: clamp(28px, 3.6vw, 56px);
    margin-top: 0;
}

/* Mountain skyline — footer ke upar wale section me chadhta hai */
.footer-ridge {
    position: absolute;
    left: 0; right: 0;
    bottom: calc(100% - 1px);
    height: var(--ridge-h);
    pointer-events: none;
}
.footer-ridge svg { width: 100%; height: 100%; }
.ridge-back  { fill: var(--gold); opacity: .32; }
.ridge-front { fill: var(--navy-deep); }
.ridge-line  { fill: none; stroke: var(--gold); stroke-opacity: .55; stroke-width: 1.25; vector-effect: non-scaling-stroke; stroke-linejoin: round; }

/* ---- newsletter row (sirf un pages par jahan upar band nahi hai) ---- */
.footer-news {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 22px clamp(24px, 4vw, 56px);
    padding-block: clamp(38px, 4.4vw, 56px) clamp(28px, 3vw, 38px);
    border-bottom: 1px solid var(--edge);
}
.footer-news-copy { flex: 1 1 320px; }
.footer-news h2 { font-size: clamp(23px, 2.5vw, 30px); margin-bottom: 6px; }
.footer-news p  { margin: 0; font-size: 14.5px; color: var(--txt-soft); max-width: 46ch; }
.footer-news .subscribe { flex: 1 1 360px; max-width: 480px; }

/* ---- main grid: mobile-first ---- */
.footer-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 34px 32px;
    padding-block: clamp(38px, 5vw, 68px) clamp(30px, 4vw, 52px);
}

.footer-logo { display: inline-flex; }
.footer-logo .brand-word i { display: block; }
.footer-tagline {
    margin: 20px 0 24px;
    font-family: var(--serif);
    font-size: clamp(22px, 2.7vw, 34px);
    font-weight: 500;
    line-height: 1.22;
    letter-spacing: -.01em;
    color: var(--on-dark);
}
.footer-tagline span { display: inline; }

.footer-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px 22px;
}
.footer-actions .btn { min-height: 46px; }

.socials { display: flex; gap: 10px; }
.socials a {
    display: grid; place-items: center;
    width: 44px; height: 44px;
    border: 1px solid var(--edge);
    border-radius: 50%;
    color: var(--txt-soft);
    transition: background .22s ease, color .22s ease, border-color .22s ease;
}
.socials svg { width: 18px; height: 18px; }
.socials a:hover { background: var(--gold); border-color: var(--gold); color: #14100A; }

.footer-h {
    margin-bottom: 14px;
    font-size: 19px;
    letter-spacing: -.005em;
    color: var(--on-dark);
}

/* Explore — 2 columns, upar se neeche */
.footer-links {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(var(--rows, 4), auto);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
    font-size: 15px;
}
.footer-links a {
    display: flex;
    align-items: center;
    min-height: 44px;
    color: var(--txt-soft);
    text-decoration: underline transparent;
    text-underline-offset: 5px;
    transition: color .2s ease, text-decoration-color .2s ease;
}
.footer-links a:hover {
    color: var(--gold-bright);
    text-decoration-color: currentColor;
}

/* ---- contact "boarding pass" ---- */
.footer-pass {
    --notch: 11px;
    --pass-bg: var(--navy-soft);
    display: flex;
    flex-direction: column;
    max-width: 480px;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .28));
}
.pass-head, .pass-body { position: relative; background: var(--pass-bg); }

/* stacked: notches left/right, seam ke dono taraf */
.pass-head {
    padding: 22px 22px 18px;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    -webkit-mask:
        radial-gradient(circle at 0 100%,    #0000 var(--notch), #000 calc(var(--notch) + .5px)) left  / 51% 100% no-repeat,
        radial-gradient(circle at 100% 100%, #0000 var(--notch), #000 calc(var(--notch) + .5px)) right / 51% 100% no-repeat;
            mask:
        radial-gradient(circle at 0 100%,    #0000 var(--notch), #000 calc(var(--notch) + .5px)) left  / 51% 100% no-repeat,
        radial-gradient(circle at 100% 100%, #0000 var(--notch), #000 calc(var(--notch) + .5px)) right / 51% 100% no-repeat;
}
.pass-head .footer-h { margin-bottom: 8px; }
.pass-hours {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--txt-soft);
}
.pass-hours svg { width: 16px; height: 16px; margin-top: 3px; flex: none; color: var(--gold-bright); }

.pass-body {
    padding: 12px 22px 14px;
    border-radius: 0 0 var(--r-lg) var(--r-lg);
    -webkit-mask:
        radial-gradient(circle at 0 0,    #0000 var(--notch), #000 calc(var(--notch) + .5px)) left  / 51% 100% no-repeat,
        radial-gradient(circle at 100% 0, #0000 var(--notch), #000 calc(var(--notch) + .5px)) right / 51% 100% no-repeat;
            mask:
        radial-gradient(circle at 0 0,    #0000 var(--notch), #000 calc(var(--notch) + .5px)) left  / 51% 100% no-repeat,
        radial-gradient(circle at 100% 0, #0000 var(--notch), #000 calc(var(--notch) + .5px)) right / 51% 100% no-repeat;
}
/* perforation */
.pass-body::before {
    content: '';
    position: absolute;
    top: 0; left: calc(var(--notch) + 8px); right: calc(var(--notch) + 8px);
    height: 1px;
    background: repeating-linear-gradient(90deg, rgba(244, 239, 228, .28) 0 6px, transparent 6px 12px);
}

.pass-row {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-height: 56px;
    padding-block: 9px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--on-dark);
    transition: color .2s ease;
}
.pass-txt { overflow-wrap: anywhere; }
.pass-ico {
    display: grid; place-items: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(201, 169, 97, .12);
    color: var(--gold-bright);
    transition: background .2s ease, color .2s ease;
}
.pass-ico svg { width: 17px; height: 17px; }
.pass-row:hover { color: var(--gold-bright); }
.pass-row:hover .pass-ico { background: var(--gold); color: #14100A; }

/* ---- bottom bar ---- */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px 24px;
    padding-block: 20px 26px;
    border-top: 1px solid var(--edge);
    font-size: 13.5px;
    color: var(--txt-soft);
}
.footer-bottom p { margin: 0; order: 2; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 0 22px; order: 1; }
.footer-legal a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    transition: color .2s ease;
}
.footer-bottom a:hover { color: var(--gold-bright); }

/* WhatsApp button fixed rehta hai — mobile par last line uske neeche na chhupe */
.has-wa .footer-bottom { padding-bottom: 92px; }

/* ---- tablet: brand | explore, pass neeche poori width me (horizontal ticket) ---- */
@media (min-width: 640px) {
    .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .footer-pass {
        grid-column: 1 / -1;
        flex-direction: row;
        max-width: none;
    }
    .pass-head {
        flex: 0 0 min(38%, 300px);
        padding: 24px 26px;
        border-radius: var(--r-lg) 0 0 var(--r-lg);
        -webkit-mask:
            radial-gradient(circle at 100% 0,    #0000 var(--notch), #000 calc(var(--notch) + .5px)) top    / 100% 51% no-repeat,
            radial-gradient(circle at 100% 100%, #0000 var(--notch), #000 calc(var(--notch) + .5px)) bottom / 100% 51% no-repeat;
                mask:
            radial-gradient(circle at 100% 0,    #0000 var(--notch), #000 calc(var(--notch) + .5px)) top    / 100% 51% no-repeat,
            radial-gradient(circle at 100% 100%, #0000 var(--notch), #000 calc(var(--notch) + .5px)) bottom / 100% 51% no-repeat;
    }
    .pass-body {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 14px 26px;
        border-radius: 0 var(--r-lg) var(--r-lg) 0;
        -webkit-mask:
            radial-gradient(circle at 0 0,    #0000 var(--notch), #000 calc(var(--notch) + .5px)) top    / 100% 51% no-repeat,
            radial-gradient(circle at 0 100%, #0000 var(--notch), #000 calc(var(--notch) + .5px)) bottom / 100% 51% no-repeat;
                mask:
            radial-gradient(circle at 0 0,    #0000 var(--notch), #000 calc(var(--notch) + .5px)) top    / 100% 51% no-repeat,
            radial-gradient(circle at 0 100%, #0000 var(--notch), #000 calc(var(--notch) + .5px)) bottom / 100% 51% no-repeat;
    }
    .pass-body::before {
        top: calc(var(--notch) + 8px); bottom: calc(var(--notch) + 8px);
        left: 0; right: auto;
        width: 1px; height: auto;
        background: repeating-linear-gradient(180deg, rgba(244, 239, 228, .28) 0 6px, transparent 6px 12px);
    }

    .footer-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .footer-bottom p { order: 0; }
    .footer-legal    { order: 0; }
    .footer-legal a  { min-height: 0; }
    .footer-tagline span { display: block; }

    /* tablet / small laptop: button bottom-right me hai, legal links uske aage rukte hain */
    .has-wa .footer-bottom { padding-bottom: 26px; }
    .has-wa .footer-legal  { padding-right: 72px; }
}

/* ---- desktop: brand | explore | pass ---- */
@media (min-width: 1024px) {
    .footer-main {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, .95fr) minmax(0, 1.15fr);
        gap: clamp(40px, 5vw, 76px);
        align-items: start;
    }

    .footer-pass {
        grid-column: auto;
        flex-direction: column;
        max-width: none;
    }
    .pass-head {
        flex: none;
        padding: 22px 24px 18px;
        border-radius: var(--r-lg) var(--r-lg) 0 0;
        -webkit-mask:
            radial-gradient(circle at 0 100%,    #0000 var(--notch), #000 calc(var(--notch) + .5px)) left  / 51% 100% no-repeat,
            radial-gradient(circle at 100% 100%, #0000 var(--notch), #000 calc(var(--notch) + .5px)) right / 51% 100% no-repeat;
                mask:
            radial-gradient(circle at 0 100%,    #0000 var(--notch), #000 calc(var(--notch) + .5px)) left  / 51% 100% no-repeat,
            radial-gradient(circle at 100% 100%, #0000 var(--notch), #000 calc(var(--notch) + .5px)) right / 51% 100% no-repeat;
    }
    .pass-body {
        display: block;
        padding: 12px 24px 14px;
        border-radius: 0 0 var(--r-lg) var(--r-lg);
        -webkit-mask:
            radial-gradient(circle at 0 0,    #0000 var(--notch), #000 calc(var(--notch) + .5px)) left  / 51% 100% no-repeat,
            radial-gradient(circle at 100% 0, #0000 var(--notch), #000 calc(var(--notch) + .5px)) right / 51% 100% no-repeat;
                mask:
            radial-gradient(circle at 0 0,    #0000 var(--notch), #000 calc(var(--notch) + .5px)) left  / 51% 100% no-repeat,
            radial-gradient(circle at 100% 0, #0000 var(--notch), #000 calc(var(--notch) + .5px)) right / 51% 100% no-repeat;
    }
    .pass-body::before {
        top: 0; bottom: auto;
        left: calc(var(--notch) + 8px); right: calc(var(--notch) + 8px);
        width: auto; height: 1px;
        background: repeating-linear-gradient(90deg, rgba(244, 239, 228, .28) 0 6px, transparent 6px 12px);
    }

    .footer-links a { min-height: 40px; }

    /* Explore ka heading contact card ke heading ke saath ek line me */
    .footer-explore { padding-top: 22px; }
}
@media (min-width: 1400px) {
    .has-wa .footer-legal { padding-right: 0; }
}

.wa-float {
    position: fixed;
    right: 18px; bottom: 18px;
    z-index: 90;
    display: grid; place-items: center;
    width: 54px; height: 54px;
    border-radius: 50%;
    background: #25D366;
    color: #06301A;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .32);
    transition: transform .25s ease;
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover { transform: scale(1.06); }

/* =========================================================================
   REVEAL (JS se lagta hai — no-JS par content normal dikhta hai)
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(16px); }
.reveal.is-in {
    opacity: 1;
    transform: none;
    transition: opacity .6s ease, transform .6s ease;
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1140px) {
    .service-grid { grid-template-columns: repeat(3, 1fr); }
    .dest-card    { flex-basis: calc((100% - 28px) / 3); width: calc((100% - 28px) / 3); }
    .trip-grid    { grid-template-columns: repeat(2, 1fr); }
    .dest-card-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-script  { display: none; }
}

@media (max-width: 1080px) {
    .detail-grid { grid-template-columns: 1fr; }
    .detail-side { position: static; }
    .book-card   { max-width: 460px; }
}

@media (max-width: 960px) {
    :root { --header-h: 66px; }

    .primary-nav {
        position: fixed;
        inset: calc(var(--header-h) + 8px) 12px auto 12px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 0;
        padding: 8px;
        background: rgba(8, 20, 33, .98);
        backdrop-filter: blur(14px);
        border: 1px solid var(--line-dark);
        border-radius: var(--r-md);
        box-shadow: 0 22px 48px rgba(0, 0, 0, .4);

        /* band hone par links focusable na rahein */
        visibility: hidden;
        opacity: 0;
        transform: translateY(-12px);
        transition: transform .28s ease, opacity .2s ease, visibility .28s;
    }
    .primary-nav.is-open { visibility: visible; opacity: 1; transform: none; }
    .primary-nav a { padding: 13px 14px; font-size: 15px; border-radius: var(--r-sm); }
    .primary-nav a::after { display: none; }
    .primary-nav a[aria-current="page"] { background: rgba(201, 169, 97, .12); }

    .nav-toggle { display: block; }
    .masthead .btn-gold { display: none; }
    .brand { margin-right: auto; }
    .brand-mark { height: 36px; }
    .brand-word b  { font-size: 15px; }
    .brand-word em { font-size: 11px; letter-spacing: .28em; }
    .brand-word i  { display: none; }

    .why-grid { grid-template-columns: 1fr; }
    .why-media img { aspect-ratio: 16 / 10; }
    .why-badge { right: 14px; bottom: -22px; }
    .contact-grid { grid-template-columns: 1fr; }

    .step-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 24px; }
    .flightpath, .process-note, .stamp { display: none; }

    .newsletter-inner { flex-direction: column; align-items: flex-start; }
    .subscribe { max-width: none; width: 100%; }

}

@media (max-width: 720px) {
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .dest-card    { flex-basis: calc((100% - 14px) / 2); width: calc((100% - 14px) / 2); }
    .dest-card-grid { grid-template-columns: repeat(2, 1fr); }

    .postcards { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 100px; }
    .postcards .pc:nth-child(n) { grid-row: span 2; margin-top: 0; }
    .postcards .pc:nth-child(3) { grid-column: span 2; grid-row: span 2; }

    .hero-watch { display: none; }
    .why-list { grid-template-columns: 1fr; }
    .rail-prev, .rail-next { display: none; }
}

@media (max-width: 560px) {
    :root { --band-y: 52px; }

    .service-grid { grid-template-columns: 1fr; }
    .dest-card    { flex-basis: 100%; width: 100%; }
    .trip-grid    { grid-template-columns: 1fr; }
    .dest-card-grid { grid-template-columns: 1fr; }
    .step-grid    { grid-template-columns: 1fr; }
    .field-row    { grid-template-columns: 1fr; gap: 0; }

    .dest-card { aspect-ratio: 4 / 3; }

    .hero { min-height: 640px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .service-card { padding: 20px 18px 22px; }
    .service-icon { margin-bottom: 16px; }
    .hero-stats { gap: 16px 24px; }
    .band-head { flex-direction: column; align-items: flex-start; gap: 14px; }

    .subscribe { flex-direction: column; }
    .subscribe .btn { width: 100%; }

    .itin li { grid-template-columns: 1fr; gap: 4px; }
    .detail-title { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; }
}

@media print {
    .masthead, .wa-float, .site-footer, .newsletter, .lightbox { display: none !important; }
    body { background: #fff; color: #000; }
}

/* =========================================================================
   FLASH TOAST — un pages ke liye jahan contact form nahi hai
   ========================================================================= */
.toast-stack {
    position: fixed;
    left: 50%;
    top: calc(var(--header-h) + 14px);
    z-index: 120;
    transform: translateX(-50%);
    display: grid;
    gap: 10px;
    width: min(460px, calc(100vw - 28px));
}
.toast {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 14px 13px 16px;
    border: 1px solid;
    border-radius: var(--r-sm);
    background: var(--white);
    box-shadow: var(--shadow-lift);
    font-size: 14.5px;
}
.toast p { margin: 0; flex: 1; }
.toast-success { border-color: rgba(46, 125, 79, .45); color: #1F5C39; }
.toast-error   { border-color: rgba(192, 72, 58, .45); color: #94342A; }
.toast-close {
    flex: none;
    width: 26px; height: 26px;
    display: grid; place-items: center;
    font-size: 20px; line-height: 1;
    color: inherit;
    opacity: .6;
    border-radius: 50%;
}
.toast-close:hover { opacity: 1; }


/* =========================================================================
   POSTCARDS — PREMIUM EDITORIAL MOTION
   ========================================================================= */
.postcards .pc {
    --pc-parallax-y: 0px;
    --pc-scale: 1;
    --pc-lift: 0px;
    --pc-opacity: 1;
    --pc-reveal-y: 0px;
    --pc-reveal-scale: 1;
    opacity: var(--pc-opacity);
    transform: translate3d(0, calc(var(--pc-lift) + var(--pc-reveal-y)), 0)
               scale(var(--pc-reveal-scale));
    transition:
        opacity .75s cubic-bezier(.22, 1, .36, 1),
        transform .9s cubic-bezier(.22, 1, .36, 1),
        box-shadow .45s ease;
    will-change: transform, opacity;
}

/* Cards start slightly lower and smaller, then settle into the mosaic. */
.postcards .pc.pc-motion-ready {
    --pc-opacity: 0;
    --pc-reveal-y: 34px;
    --pc-reveal-scale: .97;
}

.postcards .pc.pc-motion-ready.pc-motion-in {
    --pc-opacity: 1;
    --pc-reveal-y: 0px;
    --pc-reveal-scale: 1;
}

.postcards .pc img {
    transform:
        translate3d(0, var(--pc-parallax-y), 0)
        scale(var(--pc-scale));
    transform-origin: center center;
    transition: transform .7s cubic-bezier(.2, .7, .3, 1);
    will-change: transform;
}

/* Gentle hover lift without breaking the image parallax. */
.postcards .pc:hover {
    --pc-lift: -5px;
    z-index: 5;
    box-shadow: 0 18px 42px rgba(7, 19, 32, .16);
}

.postcards .pc:hover img {
    --pc-scale: 1.055;
}

/* Slightly richer overlay on hover. */
.postcards .pc::after {
    transition: opacity .45s ease;
}

.postcards .pc:hover::after {
    opacity: .94;
}

.postcards .pc-cap {
    transform: translate3d(0, 0, 0);
    transition: transform .45s cubic-bezier(.22, 1, .36, 1), opacity .45s ease;
}

.postcards .pc:hover .pc-cap {
    transform: translate3d(0, -5px, 0);
}

/* Keep the stamp subtly alive, but very restrained. */
.postcards-head .stamp {
    transition: transform .8s cubic-bezier(.22, 1, .36, 1), opacity .6s ease;
}

.postcards-head:hover .stamp {
    transform: rotate(4deg) translate3d(0, -3px, 0);
    opacity: .58;
}

/* Reduced-motion users get the static version. */
@media (prefers-reduced-motion: reduce) {
    .postcards .pc,
    .postcards .pc img,
    .postcards .pc-cap,
    .postcards-head .stamp {
        transition: none !important;
        transform: none !important;
    }
}
/* ============================================================
   ABOUT US — WANDERLUST REDESIGN
   ============================================================ */

.about-story-section {
    background: var(--white);
    padding: 90px 0 100px;
}

.about-story-container {
    width: min(1200px, calc(100% - 96px));
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 80px;

    align-items: center;
}


/* ============================================================
   ABOUT IMAGE
   ============================================================ */

.about-story-image {
    position: relative;
    min-width: 0;
}

.about-story-image-frame {
    position: relative;

    width: 100%;
    height: 430px;

    overflow: hidden;
    border-radius: 18px;

    background: #0d1b2a;

    box-shadow:
        0 25px 70px rgba(13, 27, 42, 0.16);
}

.about-story-image-frame::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(13, 27, 42, 0) 45%,
            rgba(13, 27, 42, 0.72) 100%
        );

    pointer-events: none;
}

.about-story-image-frame img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center center;

    transition:
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-story-image-frame:hover img {
    transform: scale(1.035);
}


.about-story-image-caption {
    position: absolute;

    left: 28px;
    bottom: 26px;

    z-index: 2;

    color: #fff;

    display: flex;
    flex-direction: column;
    gap: 5px;
}

.about-story-image-caption span {
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2.5px;
    text-transform: uppercase;

    color: var(--gold);
}

.about-story-image-caption strong {
    font-family: "Playfair Display", serif;

    font-size: 24px;
    font-weight: 600;

    color: #fff;
}


/* ============================================================
   STORY CONTENT
   ============================================================ */

.about-story-content {
    max-width: 610px;
}

.about-section-label {
    margin: 0 0 16px;

    color: var(--gold);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.about-story-content h2,
.about-values-heading h2,
.about-philosophy-content h2 {
    margin: 0 0 24px;

    color: var(--navy);

    font-family: "Playfair Display", serif;

    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.08;

    font-weight: 500;
    letter-spacing: -1.5px;
}

.about-story-content h2 span,
.about-values-heading h2 span,
.about-philosophy-content h2 span {
    display: block;
    color: var(--gold);
}


.about-story-content p {
    margin: 0 0 17px;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.8;
}

.about-story-content p strong {
    color: var(--navy);
    font-weight: 700;
}

.about-story-lead {
    color: var(--navy) !important;

    font-family: "Playfair Display", serif;

    font-size: 21px !important;
    line-height: 1.55 !important;

    margin-bottom: 25px !important;
}


.about-story-signature {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-top: 30px;
}

.about-signature-line {
    width: 42px;
    height: 1px;

    background: var(--gold);
}

.about-story-signature strong {
    display: block;

    color: var(--navy);

    font-family: "Playfair Display", serif;
    font-size: 16px;
    font-weight: 600;
}

.about-story-signature small {
    display: block;

    margin-top: 3px;

    color: var(--muted);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* ============================================================
   VALUES SECTION
   ============================================================ */

.about-values-section {
    background: #f7f4ed;

    padding: 100px 0 105px;
}

.about-values-container {
    width: min(1200px, calc(100% - 96px));
    margin: 0 auto;
}


.about-values-heading {
    max-width: 700px;

    margin-bottom: 55px;
}

.about-values-heading > p:last-child {
    max-width: 610px;

    margin: 0;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.8;
}


.about-values-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}


.about-value-card {
    position: relative;

    min-height: 300px;

    padding: 28px 25px 30px;

    background: #fff;

    border: 1px solid rgba(13, 27, 42, 0.07);
    border-radius: 14px;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.about-value-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 3px;

    background: var(--gold);

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.35s ease;
}

.about-value-card:hover {
    transform: translateY(-7px);

    border-color: rgba(201, 168, 76, 0.3);

    box-shadow:
        0 18px 45px rgba(13, 27, 42, 0.09);
}

.about-value-card:hover::before {
    transform: scaleX(1);
}


.about-value-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 42px;
}

.about-value-top > span {
    color: rgba(13, 27, 42, 0.28);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}


.about-value-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--gold);

    border: 1px solid rgba(201, 168, 76, 0.35);
    background: rgba(201, 168, 76, 0.07);

    font-size: 18px;
}


.about-value-card h3 {
    margin: 0 0 12px;

    color: var(--navy);

    font-family: "Playfair Display", serif;

    font-size: 21px;
    line-height: 1.25;
    font-weight: 600;
}


.about-value-card p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.75;
}


/* ============================================================
   PHILOSOPHY
   ============================================================ */

.about-philosophy-section {
    position: relative;

    background: var(--navy);

    padding: 105px 0;

    overflow: hidden;
}

.about-philosophy-section::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -180px;
    top: -220px;

    border-radius: 50%;

    border: 1px solid rgba(201, 168, 76, 0.16);
}


.about-philosophy-section::after {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    right: -70px;
    bottom: -180px;

    border-radius: 50%;

    background: rgba(201, 168, 76, 0.05);
}


.about-philosophy-container {
    position: relative;
    z-index: 2;

    width: min(1200px, calc(100% - 96px));
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.3fr)
        minmax(300px, 0.7fr);

    gap: 100px;

    align-items: center;
}


.about-philosophy-content {
    max-width: 730px;
}

.about-philosophy-content .about-section-label {
    color: var(--gold);
}

.about-philosophy-content h2 {
    color: #fff;
}

.about-philosophy-content h2 span {
    color: var(--gold);
}


.about-philosophy-content p {
    max-width: 690px;

    margin: 0 0 18px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 15px;
    line-height: 1.85;
}


.about-philosophy-button {
    display: inline-flex;

    align-items: center;
    gap: 18px;

    margin-top: 20px;

    padding: 13px 20px;

    color: var(--navy);

    background: var(--gold);

    border-radius: 6px;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.about-philosophy-button span {
    font-size: 18px;
    line-height: 1;
}

.about-philosophy-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(201, 168, 76, 0.28);
}


/* ============================================================
   PHILOSOPHY MARK
   ============================================================ */

.about-philosophy-mark {
    width: 260px;
    height: 260px;

    margin-left: auto;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    text-align: center;

    border: 1px solid rgba(201, 168, 76, 0.35);

    border-radius: 50%;

    position: relative;
}

.about-philosophy-mark::before {
    content: "";

    position: absolute;

    inset: 13px;

    border: 1px dashed rgba(201, 168, 76, 0.3);

    border-radius: 50%;
}

.about-philosophy-mark span {
    position: relative;
    z-index: 2;

    color: var(--gold);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 3px;
}

.about-philosophy-mark strong {
    position: relative;
    z-index: 2;

    margin: 8px 0 13px;

    color: #fff;

    font-family: "Playfair Display", serif;

    font-size: 37px;
    line-height: 1;
    font-weight: 500;
}

.about-philosophy-mark small {
    position: relative;
    z-index: 2;

    color: rgba(255, 255, 255, 0.42);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.reveal-on-scroll {
    opacity: 0;

    transform: translateY(28px);

    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;

    transform: translateY(0);
}


/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */

@media (max-width: 1000px) {

    .about-story-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .about-story-image {
        max-width: 760px;
    }

    .about-story-image-frame {
        height: 420px;
    }

    .about-story-content {
        max-width: 760px;
    }


    .about-values-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .about-philosophy-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .about-philosophy-mark {
        margin-left: 0;
    }

}


/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */

@media (max-width: 700px) {

    .about-story-section {
        padding: 65px 0 75px;
    }

    .about-story-container,
    .about-values-container,
    .about-philosophy-container {
        width: min(100% - 40px, 600px);
    }


    .about-story-image-frame {
        height: 285px;

        border-radius: 14px;
    }

    .about-story-image-caption {
        left: 20px;
        bottom: 20px;
    }

    .about-story-image-caption strong {
        font-size: 20px;
    }


    .about-story-content h2,
    .about-values-heading h2,
    .about-philosophy-content h2 {
        font-size: 39px;

        letter-spacing: -1px;
    }


    .about-story-content p {
        font-size: 14px;

        line-height: 1.75;
    }

    .about-story-lead {
        font-size: 19px !important;
    }


    .about-values-section {
        padding: 70px 0 75px;
    }


    .about-values-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .about-value-card {
        min-height: auto;

        padding: 24px;
    }

    .about-value-top {
        margin-bottom: 32px;
    }


    .about-philosophy-section {
        padding: 75px 0;
    }


    .about-philosophy-mark {
        width: 220px;
        height: 220px;

        margin: 10px auto 0;
    }

    .about-philosophy-mark strong {
        font-size: 31px;
    }

}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 420px) {

    .about-story-container,
    .about-values-container,
    .about-philosophy-container {
        width: calc(100% - 30px);
    }


    .about-story-image-frame {
        height: 245px;
    }


    .about-story-content h2,
    .about-values-heading h2,
    .about-philosophy-content h2 {
        font-size: 34px;
    }


    .about-story-image-caption strong {
        font-size: 18px;
    }

}
/* =========================================================
   POSTCARDS — PREMIUM TRAVEL GALLERY EFFECT
   ========================================================= */

.postcards {
    perspective: 1200px;
}

/* Base card animation state */
.postcards .pc {
    position: relative;
    transform: translate3d(0, 35px, 0) scale(.96);
    opacity: 0;
    transition:
        transform .9s cubic-bezier(.22, .61, .36, 1),
        opacity .8s ease,
        box-shadow .5s ease,
        filter .5s ease;
    will-change: transform, opacity;
    box-shadow: 0 10px 30px rgba(7, 19, 32, .08);
}

/* Once JS detects section */
.postcards.gallery-visible .pc {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

/* Staggered entrance */
.postcards.gallery-visible .pc:nth-child(1) {
    transition-delay: .05s;
}

.postcards.gallery-visible .pc:nth-child(2) {
    transition-delay: .15s;
}

.postcards.gallery-visible .pc:nth-child(3) {
    transition-delay: .25s;
}

.postcards.gallery-visible .pc:nth-child(4) {
    transition-delay: .35s;
}

.postcards.gallery-visible .pc:nth-child(5) {
    transition-delay: .45s;
}

.postcards.gallery-visible .pc:nth-child(6) {
    transition-delay: .55s;
}


/* ---------------------------------------------------------
   IMAGE
   --------------------------------------------------------- */

.postcards .pc img {
    transform: scale(1);
    transition:
        transform 1.1s cubic-bezier(.2, .7, .3, 1),
        filter .8s ease;
    will-change: transform;
}


/* ---------------------------------------------------------
   CARD HOVER
   --------------------------------------------------------- */

@media (hover: hover) and (pointer: fine) {

    .postcards .pc:hover {
        z-index: 5;
        transform:
            translate3d(0, -8px, 0)
            scale(1.025);
        box-shadow:
            0 24px 55px rgba(7, 19, 32, .22);
        filter: saturate(1.08);
    }

    .postcards .pc:hover img {
        transform: scale(1.09);
        filter: saturate(1.08) contrast(1.03);
    }

    /* stronger cinematic gradient */
    .postcards .pc:hover::after {
        background:
            linear-gradient(
                180deg,
                rgba(7, 19, 32, 0) 25%,
                rgba(7, 19, 32, .94) 100%
            );
    }

    /* Caption moves upward */
    .postcards .pc:hover .pc-cap {
        transform: translateY(-5px);
    }
}


/* ---------------------------------------------------------
   CARD GRADIENT
   --------------------------------------------------------- */

.postcards .pc::after {
    transition:
        background .55s ease,
        opacity .55s ease;
}


/* ---------------------------------------------------------
   CAPTION ANIMATION
   --------------------------------------------------------- */

.postcards .pc-cap {
    transform: translateY(0);
    transition:
        transform .55s cubic-bezier(.22, .61, .36, 1),
        color .4s ease;
}


/* ---------------------------------------------------------
   GOLD ACCENT LINE ON HOVER
   --------------------------------------------------------- */

.postcards .pc::before {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 8px;
    height: 2px;
    z-index: 4;

    background: var(--gold);

    transform: scaleX(0);
    transform-origin: left center;

    transition:
        transform .55s cubic-bezier(.22, .61, .36, 1);

    pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
    .postcards .pc:hover::before {
        transform: scaleX(1);
    }
}


/* ---------------------------------------------------------
   IMAGE SHINE
   --------------------------------------------------------- */

.postcards .pc .gallery-shine {
    position: absolute;
    inset: 0;
    z-index: 3;

    background:
        linear-gradient(
            115deg,
            transparent 20%,
            rgba(255,255,255,.18) 45%,
            transparent 70%
        );

    transform: translateX(-120%);
    pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {

    .postcards .pc:hover .gallery-shine {
        animation: postcardShine 1s ease forwards;
    }
}

@keyframes postcardShine {
    0% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(120%);
    }
}


/* ---------------------------------------------------------
   CENTER / TALL CARD — SLIGHTLY MORE IMPORTANT
   --------------------------------------------------------- */

.postcards .pc:nth-child(3) {
    transform-origin: center center;
}

.postcards.gallery-visible .pc:nth-child(3) {
    transform:
        translate3d(0, 0, 0)
        scale(1);
}

@media (hover: hover) and (pointer: fine) {

    .postcards .pc:nth-child(3):hover {
        transform:
            translate3d(0, -10px, 0)
            scale(1.035);
    }
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 720px) {

    .postcards .pc {
        transform:
            translate3d(0, 25px, 0)
            scale(.97);
    }

    .postcards.gallery-visible .pc {
        transform:
            translate3d(0, 0, 0)
            scale(1);
    }

    .postcards .pc:hover {
        transform:
            translate3d(0, -4px, 0)
            scale(1.01);
    }

    .postcards .pc img {
        transition:
            transform .8s cubic-bezier(.2, .7, .3, 1);
    }

    .postcards .pc:hover img {
        transform: scale(1.05);
    }

    .postcards .pc:nth-child(3):hover {
        transform:
            translate3d(0, -4px, 0)
            scale(1.01);
    }
}


/* ---------------------------------------------------------
   ACCESSIBILITY
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .postcards .pc,
    .postcards .pc img,
    .postcards .pc-cap,
    .postcards .pc::before,
    .postcards .pc::after {
        transition: none !important;
        animation: none !important;
    }

    .postcards .pc {
        opacity: 1;
        transform: none !important;
    }
}
/* =========================================================
   HOMEPAGE - POSTCARDS / GALLERY CARDS
   Desktop size improvement
   ========================================================= */

@media (min-width: 992px) {

    /* Main gallery/card area */
    .gallery-grid,
    .postcards-grid,
    .gallery-cards {
        width: 100%;
        max-width: 1180px;
        margin-left: auto;
        margin-right: auto;
    }

    /* All gallery cards */
    .gallery-card,
    .postcard,
    .gallery-item {
        transform-origin: center center;
    }

    /* Make normal cards larger */
    .gallery-card,
    .postcard,
    .gallery-item {
        min-height: 180px;
    }

    /* Main / featured center card */
    .gallery-card.featured,
    .postcard.featured,
    .gallery-item.featured {
        min-height: 280px;
    }

    /* Image should properly fill the card */
    .gallery-card img,
    .postcard img,
    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}


/* Large desktop screens */
@media (min-width: 1200px) {

    .gallery-grid,
    .postcards-grid,
    .gallery-cards {
        max-width: 1220px;
    }

    .gallery-card,
    .postcard,
    .gallery-item {
        min-height: 190px;
    }

    .gallery-card.featured,
    .postcard.featured,
    .gallery-item.featured {
        min-height: 300px;
    }
}


/* Very large desktop */
@media (min-width: 1400px) {

    .gallery-grid,
    .postcards-grid,
    .gallery-cards {
        max-width: 1280px;
    }

    .gallery-card,
    .postcard,
    .gallery-item {
        min-height: 205px;
    }

    .gallery-card.featured,
    .postcard.featured,
    .gallery-item.featured {
        min-height: 320px;
    }
}