:root {
    --jfv-navy: #153b52;
    --jfv-navy-dark: #082536;
    --jfv-blue: #1f526d;
    --jfv-gold: #e1a148;
    --jfv-copper: #c66a2f;
    --jfv-teal: #167e7a;
    --jfv-sand: #f3eadf;
    --jfv-cream: #fbf8f3;
    --jfv-text: #263640;
    --jfv-muted: #65737c;
    --jfv-line: #e2ddd5;
    --jfv-white: #fff;
    --jfv-shadow: 0 24px 70px rgba(8, 37, 54, .14);
    --jfv-soft-shadow: 0 16px 44px rgba(8, 37, 54, .09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.jfv-home {
    margin: 0;
    color: var(--jfv-text);
    font-family: "Montserrat", Arial, sans-serif;
    background: var(--jfv-cream);
    line-height: 1.65;
    overflow-x: hidden;
}
.jfv-home button,
.jfv-home input,
.jfv-home select,
.jfv-home textarea { font: inherit; }
.jfv-home a { text-decoration: none; }
.jfv-home img { max-width: 100%; height: auto; }
.jfv-container { width: min(1200px, calc(100% - 40px)); margin-inline: auto; }
.jfv-skip-link { position: fixed; left: 16px; top: -100px; z-index: 99999; padding: 10px 16px; background: #fff; color: #000; }
.jfv-skip-link:focus { top: 16px; }
.screen-reader-text { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }

/* Header and menu */
.jfv-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    background: rgba(255, 255, 255, .96);
    border-top: 4px solid var(--jfv-gold);
    border-bottom: 1px solid rgba(21, 59, 82, .10);
    backdrop-filter: blur(18px);
    transition: box-shadow .25s ease, background .25s ease;
}
.jfv-header.is-scrolled { box-shadow: 0 10px 34px rgba(8, 37, 54, .10); background: rgba(255, 255, 255, .985); }
.jfv-nav-wrap { min-height: 92px; display: flex; align-items: center; gap: 24px; }
.jfv-brand { display: flex; align-items: center; flex: 0 0 auto; }
.jfv-brand img { display: block; width: 255px; max-height: 68px; object-fit: contain; }
.jfv-main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px;
    border: 1px solid #e8e2d8;
    border-radius: 999px;
    background: #f8f4ee;
}
.jfv-main-nav a {
    position: relative;
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--jfv-navy);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .015em;
    white-space: nowrap;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}
.jfv-main-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 5px;
    height: 2px;
    border-radius: 2px;
    background: var(--jfv-gold);
    transition: left .22s ease, right .22s ease;
}
.jfv-main-nav a:hover,
.jfv-main-nav a.is-active { color: var(--jfv-copper); background: #fff; }
.jfv-main-nav a:hover::after,
.jfv-main-nav a.is-active::after { left: 25%; right: 25%; }
.jfv-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 17px;
    border-radius: 999px;
    background: var(--jfv-navy);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    transition: transform .2s ease, background .2s ease;
}
.jfv-nav-cta:hover { transform: translateY(-2px); background: var(--jfv-copper); }
.jfv-nav-cta b { font-size: 18px; font-weight: 500; }
.jfv-menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid #dcd7cf; border-radius: 50%; background: #fff; padding: 12px; cursor: pointer; }
.jfv-menu-toggle > span:not(.screen-reader-text) { display: block; height: 2px; margin: 4px 0; border-radius: 4px; background: var(--jfv-navy); }

/* Shared typography and controls */
.jfv-eyebrow { margin: 0 0 12px; color: var(--jfv-copper); font-size: 11px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.jfv-section-heading { max-width: 720px; margin: 0 auto 42px; text-align: center; }
.jfv-section-heading-left { margin-inline: 0; text-align: left; }
.jfv-section-heading h2,
.jfv-about-copy h2,
.jfv-contact h2 {
    margin: 0 0 14px;
    color: var(--jfv-navy);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 800;
    line-height: 1.13;
    letter-spacing: -.035em;
}
.jfv-section-heading > p:last-child,
.jfv-about-copy > p,
.jfv-contact-copy > p { margin: 0; color: var(--jfv-muted); }
.jfv-btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 9px;
    padding: 13px 21px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}
.jfv-btn:hover { transform: translateY(-2px); }
.jfv-btn-primary { color: #fff; background: linear-gradient(135deg, var(--jfv-gold), var(--jfv-copper)); box-shadow: 0 12px 28px rgba(198, 106, 47, .25); }
.jfv-btn-primary:hover { box-shadow: 0 16px 34px rgba(198, 106, 47, .34); }
.jfv-btn-dark { color: #fff; background: var(--jfv-navy); }
.jfv-btn-light { color: var(--jfv-navy); background: rgba(255, 255, 255, .94); }
.jfv-btn-outline { min-height: 46px; border: 1px solid var(--jfv-navy); color: var(--jfv-navy); background: transparent; }
.jfv-btn-outline:hover { color: #fff; background: var(--jfv-navy); }
.jfv-btn-whatsapp { color: #fff; background: #17854e; }
.jfv-text-link { border: 0; background: transparent; padding: 0; color: var(--jfv-copper); font-weight: 800; cursor: pointer; }

/* Hero */
.jfv-hero {
    position: relative;
    min-height: 820px;
    display: flex;
    align-items: center;
    padding: 170px 0 210px;
    color: #fff;
    background-image: var(--jfv-hero-image);
    background-size: cover;
    background-position: center;
    isolation: isolate;
}
.jfv-hero::after { content: ""; position: absolute; inset: auto 0 0; height: 180px; z-index: -1; background: linear-gradient(180deg, transparent, rgba(8, 37, 54, .25)); }
.jfv-hero-overlay { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(5, 25, 38, .90) 0%, rgba(5, 25, 38, .68) 46%, rgba(5, 25, 38, .13) 78%); }
.jfv-hero-content { position: relative; }
.jfv-hero .jfv-eyebrow { color: #ffd18b; }
.jfv-hero h1 {
    max-width: 800px;
    margin: 0;
    color: #fff;
    font-size: clamp(58px, 7vw, 92px);
    font-weight: 500;
    line-height: .98;
    letter-spacing: -.055em;
    text-shadow: 0 6px 24px rgba(0, 0, 0, .26);
}
.jfv-hero h1 strong { color: #fff; font-weight: 800; }
.jfv-hero h1 span { color: #ffd18b; font-weight: 600; }
.jfv-hero-copy { max-width: 690px; margin: 27px 0 30px; color: rgba(255, 255, 255, .88); font-size: 18px; line-height: 1.75; }
.jfv-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.jfv-trust-row { display: flex; flex-wrap: wrap; gap: 14px 28px; margin-top: 32px; color: rgba(255, 255, 255, .88); font-size: 12px; font-weight: 600; }
.jfv-trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.jfv-trust-row span::before { content: "✓"; width: 20px; height: 20px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .5); border-radius: 50%; color: #ffd18b; font-size: 11px; }
.jfv-scroll-cue { position: absolute; left: 50%; bottom: 105px; display: flex; flex-direction: column; align-items: center; gap: 7px; color: rgba(255, 255, 255, .76); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; transform: translateX(-50%); }
.jfv-scroll-cue span { width: 1px; height: 32px; background: rgba(255, 255, 255, .7); animation: jfvScroll 1.5s ease-in-out infinite; }
@keyframes jfvScroll { 50% { transform: scaleY(.55); transform-origin: top; opacity: .45; } }

/* Tour finder */
.jfv-finder-section { position: relative; z-index: 3; margin-top: -120px; padding-bottom: 28px; }
.jfv-finder-card { padding: 38px; border: 1px solid rgba(21, 59, 82, .09); border-radius: 18px; background: rgba(255, 255, 255, .98); box-shadow: var(--jfv-shadow); }
.jfv-search-form { display: grid; grid-template-columns: 1fr 1fr auto; gap: 15px; align-items: end; }
.jfv-field label { display: block; margin-bottom: 7px; color: var(--jfv-navy); font-size: 12px; font-weight: 800; }
.jfv-field label span { color: var(--jfv-muted); font-weight: 500; }
.jfv-field input,
.jfv-field select,
.jfv-field textarea {
    width: 100%;
    border: 1px solid #d9d4cc;
    border-radius: 9px;
    outline: 0;
    background: #fff;
    color: var(--jfv-text);
    transition: border .2s ease, box-shadow .2s ease;
}
.jfv-field input,
.jfv-field select { min-height: 51px; padding: 0 14px; }
.jfv-field textarea { padding: 12px 14px; resize: vertical; }
.jfv-field input:focus,
.jfv-field select:focus,
.jfv-field textarea:focus { border-color: var(--jfv-gold); box-shadow: 0 0 0 4px rgba(225, 161, 72, .14); }
.jfv-search-button { min-width: 225px; }
.jfv-live-status { min-height: 25px; margin-top: 15px; color: var(--jfv-muted); font-size: 13px; }
.jfv-program-results { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 14px; }
.jfv-result-card { display: grid; grid-template-columns: 40% 1fr; overflow: hidden; border: 1px solid var(--jfv-line); border-radius: 13px; background: #fff; box-shadow: 0 12px 32px rgba(8, 37, 54, .07); }
.jfv-result-image { min-height: 255px; background-size: cover; background-position: center; }
.jfv-result-content { display: flex; flex-direction: column; padding: 23px; }
.jfv-result-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.jfv-result-meta span { padding: 5px 8px; border-radius: 999px; background: var(--jfv-sand); color: var(--jfv-copper); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.jfv-result-content h3,
.jfv-selected-copy h3,
.jfv-featured-body h3 { margin: 12px 0 8px; color: var(--jfv-navy); font-size: 22px; font-weight: 800; line-height: 1.25; }
.jfv-result-content > p { margin: 0; color: var(--jfv-muted); font-size: 13px; }
.jfv-result-bottom { display: flex; justify-content: space-between; align-items: end; gap: 15px; margin-top: auto; padding-top: 18px; }
.jfv-result-bottom small { display: block; color: var(--jfv-muted); font-size: 10px; }
.jfv-result-bottom strong { color: var(--jfv-copper); font-size: 21px; }
.jfv-empty-state { grid-column: 1 / -1; padding: 38px; border: 1px dashed #c8c4bd; border-radius: 12px; background: var(--jfv-cream); text-align: center; }
.jfv-empty-state strong { color: var(--jfv-navy); font-size: 20px; }
.jfv-loading { grid-column: 1 / -1; padding: 36px; text-align: center; }
.jfv-loading span { display: inline-block; width: 10px; height: 10px; margin: 0 4px; border-radius: 50%; background: var(--jfv-gold); animation: jfvPulse 1s infinite alternate; }
.jfv-loading span:nth-child(2) { animation-delay: .15s; }
.jfv-loading span:nth-child(3) { animation-delay: .3s; }
@keyframes jfvPulse { to { transform: translateY(-8px); opacity: .4; } }
.jfv-selected-program { display: grid; grid-template-columns: 42% 1fr; overflow: hidden; margin-top: 30px; border-radius: 16px; background: var(--jfv-navy-dark); color: #fff; }
.jfv-selected-image { min-height: 420px; background-size: cover; background-position: center; }
.jfv-selected-copy { padding: 38px; }
.jfv-selected-copy h3 { color: #fff; font-size: 34px; }
.jfv-itinerary { color: rgba(255, 255, 255, .8); }
.jfv-itinerary p { margin: 0 0 10px; }
.jfv-selected-price { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .18); }
.jfv-selected-price span { color: rgba(255, 255, 255, .7); }
.jfv-selected-price strong { color: #f2bc72; font-size: 28px; }
.jfv-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.jfv-booking-form { margin-top: 26px; padding: 32px; border: 1px solid var(--jfv-line); border-radius: 14px; background: #fbfaf7; }
.jfv-booking-head { display: flex; justify-content: space-between; gap: 24px; align-items: flex-start; margin-bottom: 25px; }
.jfv-booking-head h3 { margin: 0; color: var(--jfv-navy); font-size: 31px; font-weight: 800; }
.jfv-final-price { text-align: right; }
.jfv-final-price span { display: block; color: var(--jfv-muted); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.jfv-final-price strong { color: var(--jfv-copper); font-size: 26px; }
.jfv-booking-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.jfv-field-wide { grid-column: 1 / -1; }
.jfv-submit-row { display: flex; justify-content: space-between; align-items: center; gap: 25px; margin-top: 22px; }
.jfv-submit-row p { max-width: 650px; margin: 0; color: var(--jfv-muted); font-size: 12px; }
.jfv-form-message { margin-top: 18px; padding: 0; }
.jfv-form-message.is-success,
.jfv-form-message.is-error { padding: 15px; border-radius: 8px; }
.jfv-form-message.is-success { color: #176b36; background: #e7f7ec; }
.jfv-form-message.is-error { color: #942323; background: #fde8e8; }

/* Programs */
.jfv-section { padding: 94px 0; }
.jfv-featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.jfv-featured-card { overflow: hidden; border: 1px solid rgba(21, 59, 82, .07); border-radius: 14px; background: #fff; box-shadow: var(--jfv-soft-shadow); transition: transform .25s ease, box-shadow .25s ease; }
.jfv-featured-card:hover { transform: translateY(-7px); box-shadow: 0 24px 55px rgba(8, 37, 54, .14); }
.jfv-featured-image { position: relative; height: 240px; background-size: cover; background-position: center; }
.jfv-featured-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(5, 27, 42, .44)); }
.jfv-featured-image span { position: absolute; z-index: 1; top: 15px; right: 15px; padding: 7px 11px; border-radius: 999px; color: var(--jfv-navy); background: rgba(255, 255, 255, .95); font-size: 11px; font-weight: 800; }
.jfv-featured-body { padding: 24px; }
.jfv-card-location { margin: 0; color: var(--jfv-copper); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.jfv-featured-body > p:not(.jfv-card-location) { min-height: 70px; color: var(--jfv-muted); font-size: 13px; }

/* Experiences */
.jfv-experiences { position: relative; overflow: hidden; background: #082536; }
.jfv-experiences::before { content: ""; position: absolute; width: 520px; height: 520px; right: -180px; top: -220px; border-radius: 50%; background: rgba(225, 161, 72, .08); }
.jfv-experience-head { position: relative; display: grid; grid-template-columns: 1.35fr .65fr; gap: 70px; align-items: end; margin-bottom: 42px; }
.jfv-section-heading-light { margin-bottom: 0; }
.jfv-section-heading-light h2 { color: #fff; }
.jfv-experience-intro { margin: 0 0 8px; color: rgba(255, 255, 255, .68); font-size: 14px; }
.jfv-experience-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; gap: 18px; }
.jfv-experience-card { position: relative; grid-column: span 1; overflow: hidden; border: 1px solid rgba(255, 255, 255, .12); border-radius: 16px; background-image: var(--jfv-card-image); background-size: cover; background-position: center; box-shadow: 0 20px 45px rgba(0, 0, 0, .19); isolation: isolate; }
.jfv-experience-card-large { grid-column: span 2; grid-row: span 2; }
.jfv-experience-card-wide { grid-column: span 2; }
.jfv-experience-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(5, 27, 42, .04) 12%, rgba(5, 27, 42, .90) 100%); transition: background .35s ease; }
.jfv-experience-card::after { content: ""; position: absolute; inset: 0; z-index: -2; background: inherit; background-size: cover; background-position: center; transition: transform .55s ease; }
.jfv-experience-card:hover::after { transform: scale(1.06); }
.jfv-experience-card:hover::before { background: linear-gradient(180deg, rgba(5, 27, 42, .08) 4%, rgba(5, 27, 42, .94) 100%); }
.jfv-experience-copy { position: absolute; inset: auto 0 0; padding: 26px; color: #fff; }
.jfv-experience-card-large .jfv-experience-copy { padding: 36px; }
.jfv-experience-copy > span { display: block; margin-bottom: 7px; color: #ffd18b; font-size: 10px; font-weight: 800; letter-spacing: .13em; }
.jfv-experience-copy h3 { margin: 0 0 7px; color: #fff; font-size: 28px; font-weight: 800; line-height: 1.1; }
.jfv-experience-card-large h3 { font-size: 42px; }
.jfv-experience-copy p { max-width: 520px; margin: 0; color: rgba(255, 255, 255, .78); font-size: 12px; line-height: 1.6; }
.jfv-experience-copy a { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; color: #fff; font-size: 11px; font-weight: 800; }
.jfv-experience-copy a b { color: #ffd18b; font-size: 17px; }

/* About */
.jfv-about { background: #fff; }
.jfv-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.jfv-about-image { position: relative; min-height: 610px; border-radius: 16px; background-size: cover; background-position: center; box-shadow: var(--jfv-soft-shadow); }
.jfv-about-badge { position: absolute; right: -28px; bottom: 42px; width: 170px; height: 170px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 8px solid #fff; border-radius: 50%; color: #fff; background: linear-gradient(135deg, var(--jfv-gold), var(--jfv-copper)); text-align: center; box-shadow: 0 15px 35px rgba(0, 0, 0, .18); }
.jfv-about-badge strong { font-size: 31px; font-weight: 800; }
.jfv-about-badge span { max-width: 110px; font-size: 11px; }
.jfv-benefit-list { margin: 28px 0; }
.jfv-benefit-list > div { display: flex; gap: 14px; margin: 17px 0; }
.jfv-benefit-list span { width: 34px; height: 34px; flex: 0 0 34px; display: grid; place-items: center; border-radius: 50%; color: var(--jfv-copper); background: #f7eadb; font-weight: 900; }
.jfv-benefit-list p { margin: 0; color: var(--jfv-muted); }
.jfv-benefit-list strong { color: var(--jfv-navy); }

/* Reviews and review form */
.jfv-reviews { background: linear-gradient(180deg, var(--jfv-sand), #f8f4ee); }
.jfv-reviews-heading-row { display: flex; justify-content: space-between; align-items: end; gap: 35px; margin-bottom: 38px; }
.jfv-reviews-heading-row .jfv-section-heading { margin-bottom: 0; }
.jfv-reviews-layout { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr); gap: 26px; align-items: start; }
.jfv-reviews-list-card,
.jfv-review-form-card { border: 1px solid rgba(21, 59, 82, .08); border-radius: 18px; background: #fff; box-shadow: var(--jfv-soft-shadow); }
.jfv-reviews-list-card { padding: 32px; }
.jfv-review-form-card { position: sticky; top: 118px; padding: 30px; }
.jfv-card-kicker { display: flex; align-items: center; gap: 8px; padding-bottom: 18px; border-bottom: 1px solid var(--jfv-line); color: var(--jfv-navy); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.jfv-card-kicker span { color: var(--jfv-gold); font-size: 18px; }
.jfv-review-form-intro { padding-bottom: 20px; border-bottom: 1px solid var(--jfv-line); }
.jfv-review-icon { width: 45px; height: 45px; display: grid; place-items: center; margin-bottom: 16px; border-radius: 50%; color: #fff; background: var(--jfv-navy); font-size: 20px; }
.jfv-review-form-intro h3 { margin: 0 0 9px; color: var(--jfv-navy); font-size: 25px; font-weight: 800; line-height: 1.2; }
.jfv-review-form-intro > p:last-child { margin: 0; color: var(--jfv-muted); font-size: 12px; }
.jfv-reviews-list-card .glsr-review { padding: 24px 0; border-bottom: 1px solid var(--jfv-line); }
.jfv-reviews-list-card .glsr-review:last-child { border-bottom: 0; }
.jfv-reviews-list-card .glsr-review-title { color: var(--jfv-navy); font-size: 19px; font-weight: 800; }
.jfv-reviews-list-card .glsr-star { color: var(--jfv-gold); }
.jfv-reviews-list-card .glsr-review-content { color: var(--jfv-muted); font-size: 13px; }
.jfv-review-form-card .glsr { margin-top: 20px; }
.jfv-review-form-card .glsr-field { margin-bottom: 14px; }
.jfv-review-form-card .glsr-label { display: block; margin-bottom: 6px; color: var(--jfv-navy); font-size: 11px; font-weight: 800; }
.jfv-review-form-card input[type="text"],
.jfv-review-form-card input[type="email"],
.jfv-review-form-card textarea,
.jfv-review-form-card select { width: 100%; min-height: 47px; border: 1px solid #d9d4cc; border-radius: 8px; background: #fff; padding: 10px 12px; box-shadow: none; }
.jfv-review-form-card textarea { min-height: 120px; }
.jfv-review-form-card input:focus,
.jfv-review-form-card textarea:focus,
.jfv-review-form-card select:focus { outline: none; border-color: var(--jfv-gold); box-shadow: 0 0 0 4px rgba(225, 161, 72, .14); }
.jfv-review-form-card .glsr-button,
.jfv-review-form-card button[type="submit"] { width: 100%; min-height: 50px; border: 0; border-radius: 8px; color: #fff; background: linear-gradient(135deg, var(--jfv-gold), var(--jfv-copper)); font-weight: 800; cursor: pointer; }
.jfv-review-form-card .glsr-description { color: var(--jfv-muted); font-size: 10px; }
.jfv-reviews-fallback { padding: 35px; border: 1px dashed #c9c1b6; border-radius: 14px; background: #fff; text-align: center; }

/* Contact CTA */
.jfv-contact { position: relative; padding: 92px 0; overflow: hidden; background: #071f30; }
.jfv-contact::before { content: ""; position: absolute; width: 560px; height: 560px; left: -250px; bottom: -320px; border-radius: 50%; background: rgba(225, 161, 72, .10); }
.jfv-contact::after { content: ""; position: absolute; width: 420px; height: 420px; right: -180px; top: -250px; border-radius: 50%; background: rgba(22, 126, 122, .10); }
.jfv-contact-shell { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .95fr; gap: 55px; align-items: center; padding: 56px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 24px; background: linear-gradient(135deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025)); box-shadow: 0 28px 70px rgba(0, 0, 0, .22); }
.jfv-contact-tag { display: inline-flex; margin-bottom: 22px; padding: 7px 11px; border: 1px solid rgba(255, 209, 139, .38); border-radius: 999px; color: #ffd18b; font-size: 9px; font-weight: 800; letter-spacing: .13em; }
.jfv-contact .jfv-eyebrow { color: #ffd18b; }
.jfv-contact h2 { color: #fff; font-size: clamp(40px, 5vw, 60px); }
.jfv-contact-copy > p { max-width: 570px; color: rgba(255, 255, 255, .72); }
.jfv-contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.jfv-contact-channels { display: grid; gap: 14px; }
.jfv-contact-channel { display: grid; grid-template-columns: 52px 1fr auto; gap: 15px; align-items: center; padding: 18px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 14px; color: #fff; background: rgba(255, 255, 255, .065); transition: transform .22s ease, border .22s ease, background .22s ease; }
.jfv-contact-channel:hover { transform: translateX(5px); border-color: rgba(255, 209, 139, .42); background: rgba(255, 255, 255, .10); }
.jfv-contact-channel-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 13px; color: #fff; background: linear-gradient(135deg, var(--jfv-gold), var(--jfv-copper)); font-size: 21px; }
.jfv-contact-channel small { display: block; color: #ffd18b; font-size: 9px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.jfv-contact-channel strong { display: block; margin-top: 2px; color: #fff; font-size: 15px; overflow-wrap: anywhere; }
.jfv-contact-channel em { display: block; color: rgba(255, 255, 255, .53); font-size: 10px; font-style: normal; }
.jfv-contact-channel > b { color: #ffd18b; font-size: 23px; font-weight: 400; }

/* Footer */
.jfv-footer { padding: 42px 0; color: rgba(255, 255, 255, .68); background: #041823; }
.jfv-footer-grid { display: grid; grid-template-columns: 250px 1fr auto; gap: 30px; align-items: center; }
.jfv-footer img { width: 235px; filter: brightness(0) invert(1); opacity: .94; }
.jfv-footer p { margin: 0; font-size: 11px; }

@media (max-width: 1130px) {
    .jfv-brand img { width: 220px; }
    .jfv-main-nav a { padding-inline: 10px; }
    .jfv-nav-cta { display: none; }
    .jfv-experience-grid { grid-template-columns: repeat(2, 1fr); }
    .jfv-experience-card-large,
    .jfv-experience-card-wide { grid-column: span 2; }
    .jfv-featured-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .jfv-container { width: min(100% - 28px, 1200px); }
    .jfv-header { position: absolute; }
    .jfv-nav-wrap { min-height: 78px; }
    .jfv-brand img { width: 195px; }
    .jfv-menu-toggle { display: block; margin-left: auto; }
    .jfv-main-nav {
        position: absolute;
        left: 14px;
        right: 14px;
        top: 78px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        border-radius: 15px;
        background: #fff;
        box-shadow: var(--jfv-shadow);
    }
    .jfv-main-nav.is-open { display: flex; }
    .jfv-main-nav a { padding: 12px; border-radius: 8px; }
    .jfv-main-nav a::after { display: none; }
    .jfv-hero { min-height: 760px; padding: 150px 0 190px; background-position: 62% center; }
    .jfv-hero-overlay { background: rgba(5, 27, 42, .80); }
    .jfv-hero h1 { font-size: 61px; }
    .jfv-scroll-cue { display: none; }
    .jfv-finder-section { margin-top: -105px; }
    .jfv-finder-card { padding: 27px 21px; }
    .jfv-search-form { grid-template-columns: 1fr; }
    .jfv-search-button { width: 100%; }
    .jfv-program-results { grid-template-columns: 1fr; }
    .jfv-selected-program { grid-template-columns: 1fr; }
    .jfv-selected-image { min-height: 290px; }
    .jfv-booking-grid { grid-template-columns: 1fr; }
    .jfv-booking-head { flex-direction: column; }
    .jfv-final-price { text-align: left; }
    .jfv-submit-row { flex-direction: column; align-items: stretch; }
    .jfv-section { padding: 72px 0; }
    .jfv-experience-head { grid-template-columns: 1fr; gap: 14px; }
    .jfv-experience-grid { grid-auto-rows: 330px; }
    .jfv-about-grid { grid-template-columns: 1fr; gap: 44px; }
    .jfv-about-image { min-height: 500px; }
    .jfv-about-badge { right: 20px; }
    .jfv-reviews-heading-row { align-items: flex-start; flex-direction: column; }
    .jfv-reviews-layout { grid-template-columns: 1fr; }
    .jfv-review-form-card { position: static; }
    .jfv-contact-shell { grid-template-columns: 1fr; padding: 38px; }
    .jfv-footer-grid { grid-template-columns: 1fr; text-align: center; }
    .jfv-footer img { margin: auto; }
}

@media (max-width: 620px) {
    .jfv-brand img { width: 170px; }
    .jfv-hero { min-height: 730px; padding-bottom: 175px; }
    .jfv-hero h1 { font-size: 48px; }
    .jfv-hero-copy { font-size: 16px; }
    .jfv-hero-actions { flex-direction: column; }
    .jfv-hero-actions .jfv-btn { width: 100%; }
    .jfv-trust-row { flex-direction: column; gap: 9px; }
    .jfv-finder-card { padding: 23px 16px; }
    .jfv-result-card { grid-template-columns: 1fr; }
    .jfv-result-image { min-height: 220px; }
    .jfv-result-bottom { align-items: stretch; flex-direction: column; }
    .jfv-result-bottom .jfv-btn { width: 100%; }
    .jfv-selected-copy { padding: 26px 20px; }
    .jfv-booking-form { padding: 24px 17px; }
    .jfv-featured-grid { grid-template-columns: 1fr; }
    .jfv-featured-body > p:not(.jfv-card-location) { min-height: 0; }
    .jfv-experience-grid { display: block; }
    .jfv-experience-card { min-height: 420px; margin-bottom: 16px; }
    .jfv-experience-card-large h3 { font-size: 34px; }
    .jfv-about-image { min-height: 430px; }
    .jfv-about-badge { width: 140px; height: 140px; }
    .jfv-reviews-list-card,
    .jfv-review-form-card { padding: 21px; }
    .jfv-contact { padding: 70px 0; }
    .jfv-contact-shell { padding: 27px 19px; border-radius: 18px; }
    .jfv-contact-actions { flex-direction: column; }
    .jfv-contact-actions .jfv-btn { width: 100%; }
    .jfv-contact-channel { grid-template-columns: 46px 1fr; }
    .jfv-contact-channel-icon { width: 46px; height: 46px; }
    .jfv-contact-channel > b { display: none; }
    .jfv-contact-channel strong { font-size: 13px; }
}
