/* ══════════════════════════════════════════════════════════════════════
   EDITORIAL LAYOUT — full stylesheet for the prototype port (variant A)
   Replaces the previous thin overlay. Self-contained: defines body
   reset, brand vars, all .ed-* layout primitives, and restyled
   .booking__* form classes (preserving every ID booking.js depends on).
   chrome.css continues to provide the shared header/footer chrome.
   ══════════════════════════════════════════════════════════════════════ */

:root {
    --brand-navy:       #253b6d;
    --brand-orange:     #e97420;
    --brand-sky:        #13a9cc;
    --brand-charcoal:   #2f383b;
    --brand-green:      #334832;
    --brand-green-dark: #2a3a28;
    --brand-terra:      #8a421e;
    --brand-yellow:     #ecd400;
    --brand-cream:      #faf9f7;
    --brand-sand:       #f0ede8;
    --brand-rule:       #e5e0d8;
    --brand-muted:      #888;
    --brand-text:       #1a1a1a;

    --font-display: 'Bebas Neue', 'Sora', sans-serif;
    --font-serif:   'Fraunces', Georgia, 'Times New Roman', serif;

    --max-page: 1280px;
    --gutter:   32px;
    --aside-w:  380px;
    --gap-cols: 48px;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset + base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: clip;
}

body {
    margin: 0;
    font-family: var(--font-serif);
    font-size: 16px;
    line-height: 1.6;
    color: var(--brand-text);
    background: var(--brand-cream);
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ── Reveal animation (intersection observer hook) ────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Page container ───────────────────────────────────────────────── */
.ed-page {
    max-width: var(--max-page);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ── Breadcrumb ───────────────────────────────────────────────────── */
.ed-breadcrumb {
    padding: 16px 0;
    font-size: 13px;
    color: var(--brand-muted);
    font-family: var(--font-serif);
}
.ed-breadcrumb ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.ed-breadcrumb li { display: inline-flex; align-items: center; gap: 8px; }
.ed-breadcrumb li + li::before {
    content: '/';
    color: #ccc;
    margin-right: 0;
}
.ed-breadcrumb a { color: #999; transition: color 0.2s; }
.ed-breadcrumb a:hover { color: var(--brand-navy); }
.ed-breadcrumb li:last-child a { color: #333; pointer-events: none; }

/* ══════════════════════════════════════════════════════════════════════
   HERO — title + meta row + photo gallery
   ══════════════════════════════════════════════════════════════════════ */
.ed-hero { padding-bottom: 32px; }

.ed-hero__head { margin-bottom: 20px; }

.ed-hero__badges {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.ed-badge {
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    font-family: var(--font-serif);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.ed-badge--terra { background: var(--brand-terra); }
.ed-badge--green { background: var(--brand-green); }
.ed-badge--orange { background: var(--brand-orange); }

.ed-hero__title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    letter-spacing: 2px;
    color: var(--brand-navy);
    line-height: 1.05;
    max-width: 800px;
    text-wrap: pretty;
    margin: 0;
    text-transform: uppercase;
    font-weight: 400;
}
.ed-hero__title-accent {
    display: block;
    color: var(--brand-terra);
    margin-top: 0.05em;
}

.ed-hero__meta {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 10px;
    flex-wrap: wrap;
    font-family: var(--font-serif);
    font-size: 13px;
    color: #666;
}
.ed-hero__stars {
    display: inline-flex;
    gap: 2px;
    color: var(--brand-orange);
}
.ed-hero__meta strong { color: #333; font-weight: 600; }
.ed-hero__sep { color: #ddd; }
.ed-hero__loc { display: inline-flex; gap: 6px; align-items: center; color: #666; }
.ed-hero__loc svg { color: var(--brand-terra); }

/* ── Gallery grid (1 large left + 2x2 grid right) ─────────────────── */
.ed-gallery {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 8px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--brand-sand);
}
.ed-gallery__main {
    grid-row: 1 / 3;
    padding: 0;
    border: 0;
    background: none;
    overflow: hidden;
    position: relative;
}
.ed-gallery__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-row: 1 / 3;
    height: 100%;
    gap: 8px;
}
.ed-gallery__cell {
    padding: 0;
    border: 0;
    background: none;
    overflow: hidden;
    position: relative;
}
.ed-gallery__main img,
.ed-gallery__cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s, transform 0.5s var(--ease-out);
}
.ed-gallery__main:hover img { filter: brightness(1.05); transform: scale(1.01); }
.ed-gallery__cell:hover img { filter: brightness(1.1); }

.ed-gallery__viewall {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: 8px;
    padding: 9px 18px;
    font-family: var(--font-serif);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    transition: all 0.2s;
    color: var(--brand-navy);
    z-index: 2;
}
.ed-gallery__viewall:hover {
    background: var(--brand-navy);
    color: #fff;
}

/* ── Lightbox ─────────────────────────────────────────────────────── */
.ed-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}
.ed-lightbox.is-open { display: flex; }
.ed-lightbox__img {
    /* Fixed 16:9 cinematic stage so every image (wide, 3:2, portrait) sits in
       the same box. Off-aspect images get letterboxed against the dark
       backdrop, eliminating the "channel-changing" jump between slides. */
    width: min(90vw, calc((80vh) * 16 / 9));
    aspect-ratio: 16 / 9;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    background: #000;
    border-radius: 8px;
}
.ed-lightbox__nav {
    display: flex;
    gap: 12px;
    align-items: center;
}
.ed-lightbox__nav button {
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
}
.ed-lightbox__nav button:hover { background: rgba(255,255,255,0.3); }
.ed-lightbox__count {
    font-family: var(--font-serif);
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.ed-lightbox__hint {
    font-family: var(--font-serif);
    font-size: 12px;
    color: rgba(255,255,255,0.35);
}

/* ══════════════════════════════════════════════════════════════════════
   2-COLUMN LAYOUT: content + sticky aside
   ══════════════════════════════════════════════════════════════════════ */
.ed-layout {
    display: grid;
    grid-template-columns: 1fr var(--aside-w);
    gap: var(--gap-cols);
    align-items: flex-start;
    padding-bottom: 32px;
}
.ed-layout__main { min-width: 0; }
.ed-layout__aside {
    position: sticky;
    top: 80px;
    align-self: flex-start;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    /* hide scrollbar visually but keep scroll behaviour */
    scrollbar-width: thin;
    scrollbar-color: rgba(37, 59, 109, 0.25) transparent;
    padding-right: 4px;
}
.ed-layout__aside::-webkit-scrollbar {
    width: 6px;
}
.ed-layout__aside::-webkit-scrollbar-track {
    background: transparent;
}
.ed-layout__aside::-webkit-scrollbar-thumb {
    background: rgba(37, 59, 109, 0.25);
    border-radius: 3px;
}
.ed-layout__aside::-webkit-scrollbar-thumb:hover {
    background: rgba(37, 59, 109, 0.45);
}

.ed-section-title {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 2px;
    color: var(--brand-navy);
    margin: 0 0 20px;
    text-transform: uppercase;
    font-weight: 400;
}

/* ══════════════════════════════════════════════════════════════════════
   QUICK INFO — 3-col x 2-row icon grid
   ══════════════════════════════════════════════════════════════════════ */
.ed-quickinfo {
    background: #fff;
    border: 1px solid var(--brand-sand);
    border-radius: 12px;
    margin-bottom: 32px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.ed-quickinfo__cell {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 12px;
    align-items: center;
    padding: 18px 24px;
    border-right: 1px solid var(--brand-sand);
    border-bottom: 1px solid var(--brand-sand);
}
.ed-quickinfo__cell .ed-quickinfo__icon { grid-row: 1 / 3; align-self: center; }
.ed-quickinfo__cell .ed-quickinfo__label { grid-column: 2; align-self: end; }
.ed-quickinfo__cell .ed-quickinfo__value { grid-column: 2; align-self: start; line-height: 1.3; }
.ed-quickinfo__cell:nth-child(3n) { border-right: none; }
.ed-quickinfo__cell:nth-last-child(-n+3) { border-bottom: none; }
.ed-quickinfo__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(37,59,109,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--brand-navy);
}
.ed-quickinfo__cell:nth-child(6n+1) .ed-quickinfo__icon { background: rgba(138,66,30,0.12); color: var(--brand-terra); }
.ed-quickinfo__cell:nth-child(6n+2) .ed-quickinfo__icon { background: rgba(19,169,204,0.14); color: var(--brand-sky); }
.ed-quickinfo__cell:nth-child(6n+3) .ed-quickinfo__icon { background: rgba(233,116,32,0.14); color: var(--brand-orange); }
.ed-quickinfo__cell:nth-child(6n+4) .ed-quickinfo__icon { background: rgba(51,72,50,0.14); color: var(--brand-green); }
.ed-quickinfo__cell:nth-child(6n+5) .ed-quickinfo__icon { background: rgba(37,59,109,0.12); color: var(--brand-navy); }
.ed-quickinfo__cell:nth-child(6n+6) .ed-quickinfo__icon { background: rgba(138,66,30,0.12); color: var(--brand-terra); }
.ed-quickinfo__icon svg { stroke-width: 1.9; }
.ed-quickinfo__label {
    font-size: 11px;
    color: #6b6b6b;
    font-weight: 600;
    font-family: var(--font-serif);
    letter-spacing: 0.6px;
    margin-bottom: 3px;
    text-transform: uppercase;
}
.ed-quickinfo__value {
    font-size: 14px;
    font-weight: 500;
    color: var(--brand-navy);
    font-family: var(--font-serif);
}

/* ══════════════════════════════════════════════════════════════════════
   HIGHLIGHTS — 2-col cards
   ══════════════════════════════════════════════════════════════════════ */
.ed-highlights { margin-bottom: 40px; }
.ed-highlights__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.ed-highlight {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 22px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--brand-sand);
    transition: box-shadow 0.2s, transform 0.2s;
}
.ed-highlight:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.ed-highlight__heading {
    display: flex;
    align-items: center;
    gap: 14px;
}
.ed-highlight__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ed-highlight__icon[data-color="blue"] { background: rgba(19,169,204,0.12); color: var(--brand-sky); }
.ed-highlight__icon[data-color="terra"] { background: rgba(138,66,30,0.12); color: var(--brand-terra); }
.ed-highlight__icon[data-color="green"] { background: rgba(51,72,50,0.12); color: var(--brand-green); }
.ed-highlight__icon[data-color="orange"] { background: rgba(233,116,32,0.12); color: var(--brand-orange); }
.ed-highlight h3 {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.25;
    color: var(--brand-navy);
    margin: 0;
}
.ed-highlight p {
    font-family: var(--font-serif);
    font-size: 14.5px;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 900px) {
    .ed-highlights__grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════════════
   DESCRIPTION — read-more with fade
   ══════════════════════════════════════════════════════════════════════ */
.ed-description {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--brand-sand);
}
.ed-description__copy {
    font-family: var(--font-serif);
    font-size: 15px;
    color: #444;
    line-height: 1.85;
    position: relative;
}
.ed-description__copy p { margin: 0 0 14px; }
.ed-description__copy p:last-child { margin-bottom: 0; }
.ed-description__more { display: none; }
.ed-description.is-expanded .ed-description__more { display: block; }
.ed-description.is-expanded .ed-description__copy::after { display: none; }
.ed-description__copy::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60px;
    background: linear-gradient(transparent, var(--brand-cream));
    pointer-events: none;
}
.ed-readmore {
    margin-top: 12px;
    background: none;
    border: none;
    color: var(--brand-sky);
    font-family: var(--font-serif);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    gap: 6px;
    align-items: center;
    padding: 0;
    transition: color 0.2s;
}
.ed-readmore:hover { color: var(--brand-navy); }
.ed-readmore svg { transition: transform 0.2s; }
.ed-description.is-expanded .ed-readmore svg { transform: rotate(180deg); }

/* ══════════════════════════════════════════════════════════════════════
   INCLUSIONS — 2-col list
   ══════════════════════════════════════════════════════════════════════ */
.ed-inclusions {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--brand-sand);
}
.ed-inclusions__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.ed-inclusions__label {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.ed-inclusions__label--in { color: var(--brand-green); }
.ed-inclusions__label--out { color: var(--brand-terra); }
.ed-inclusions ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ed-inclusions li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-family: var(--font-serif);
    font-size: 14px;
    line-height: 1.5;
}
.ed-inclusions li > span:first-child {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.ed-inclusions__cols > div:first-child li { color: #444; }
.ed-inclusions__cols > div:first-child li > span:first-child {
    background: rgba(51,72,50,0.12);
    color: var(--brand-green);
}
.ed-inclusions__cols > div:last-child li { color: #888; }
.ed-inclusions__cols > div:last-child li > span:first-child {
    background: rgba(138,66,30,0.12);
    color: var(--brand-terra);
}

/* ══════════════════════════════════════════════════════════════════════
   TIMELINE — vertical with expandable items
   ══════════════════════════════════════════════════════════════════════ */
.ed-timeline {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--brand-sand);
}
.ed-timeline__list {
    list-style: none;
    padding: 0 0 0 8px;
    margin: 0;
    position: relative;
}
.ed-timeline__list::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: linear-gradient(to bottom, var(--brand-sky), var(--brand-terra));
    border-radius: 2px;
}
.ed-timeline__item { margin-bottom: 6px; position: relative; }
.ed-timeline__row {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 0;
    width: 100%;
    background: none;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 12px 16px;
    text-align: left;
    transition: background 0.25s, border-color 0.25s;
    align-items: center;
}
.ed-timeline__row:hover { background: rgba(255,255,255,0.6); }
.ed-timeline__item.is-active .ed-timeline__row {
    background: #fff;
    border-color: var(--brand-sand);
}
.ed-timeline__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--brand-sand);
    border: 2px solid #ccc;
    z-index: 1;
    margin-left: 0;
    transition: all 0.3s;
}
.ed-timeline__item[data-color="blue"].is-active .ed-timeline__dot { background: var(--brand-sky); border-color: var(--brand-sky); }
.ed-timeline__item[data-color="green"].is-active .ed-timeline__dot { background: var(--brand-green); border-color: var(--brand-green); }
.ed-timeline__item[data-color="navy"].is-active .ed-timeline__dot { background: var(--brand-navy); border-color: var(--brand-navy); }
.ed-timeline__item[data-color="terra"].is-active .ed-timeline__dot { background: var(--brand-terra); border-color: var(--brand-terra); }
.ed-timeline__item[data-color="orange"].is-active .ed-timeline__dot { background: var(--brand-orange); border-color: var(--brand-orange); }

.ed-timeline__head {
    display: flex;
    align-items: center;
    gap: 10px;
}
.ed-timeline__icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ed-timeline__item[data-color="blue"] .ed-timeline__icon { background: rgba(19,169,204,0.15); color: var(--brand-sky); }
.ed-timeline__item[data-color="green"] .ed-timeline__icon { background: rgba(51,72,50,0.15); color: var(--brand-green); }
.ed-timeline__item[data-color="navy"] .ed-timeline__icon { background: rgba(37,59,109,0.15); color: var(--brand-navy); }
.ed-timeline__item[data-color="terra"] .ed-timeline__icon { background: rgba(138,66,30,0.15); color: var(--brand-terra); }
.ed-timeline__item[data-color="orange"] .ed-timeline__icon { background: rgba(233,116,32,0.15); color: var(--brand-orange); }

.ed-timeline__title {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 15px;
    color: #444;
    margin: 0;
    flex: 1;
}
.ed-timeline__item.is-active .ed-timeline__title { color: var(--brand-navy); }
.ed-timeline__chev {
    color: #ccc;
    transition: transform 0.2s, color 0.2s;
    flex-shrink: 0;
}
.ed-timeline__item.is-active .ed-timeline__chev {
    transform: rotate(180deg);
    color: var(--brand-navy);
}
.ed-timeline__desc {
    display: none;
    margin-top: 12px;
    margin-left: 62px;
    font-family: var(--font-serif);
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    padding-bottom: 4px;
}
.ed-timeline__item.is-active .ed-timeline__desc { display: block; }

/* ══════════════════════════════════════════════════════════════════════
   STICKY BOOKING WIDGET (right column)
   ══════════════════════════════════════════════════════════════════════ */
.ed-bookwidget {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--brand-sand);
    box-shadow: 0 8px 40px rgba(0,0,0,0.10);
    padding: 28px;
}
.ed-bookwidget__head {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--brand-sand);
}
.ed-bookwidget__from {
    font-family: var(--font-serif);
    font-size: 12px;
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.ed-bookwidget__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.ed-bookwidget__amount {
    font-family: var(--font-display);
    font-size: 42px;
    color: var(--brand-navy);
    letter-spacing: 1px;
    line-height: 1;
}
.ed-bookwidget__currency {
    font-family: var(--font-serif);
    font-size: 16px;
    color: #888;
    font-weight: 500;
}
.ed-bookwidget__sub {
    font-family: var(--font-serif);
    font-size: 12px;
    color: #aaa;
    margin-top: 2px;
}
.ed-bookwidget__avail {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-serif);
    font-size: 13px;
    color: var(--brand-green);
}

/* Pulse dot reused from style.css; redefine for safety */
.hero__pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-green);
    box-shadow: 0 0 0 0 rgba(51,72,50,0.6);
    animation: ed-pulse 2s infinite;
}
@keyframes ed-pulse {
    0% { box-shadow: 0 0 0 0 rgba(51,72,50,0.6); }
    70% { box-shadow: 0 0 0 10px rgba(51,72,50,0); }
    100% { box-shadow: 0 0 0 0 rgba(51,72,50,0); }
}

.ed-bookwidget__badges {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ed-bookwidget__badges div {
    display: flex;
    gap: 8px;
    align-items: center;
    font-family: var(--font-serif);
    font-size: 12px;
    color: #888;
}
.ed-bookwidget__badges svg { color: var(--brand-green); flex-shrink: 0; }

.ed-bookwidget__actions {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--brand-sand);
    display: flex;
    gap: 12px;
}
.ed-bookwidget__actions button {
    flex: 1;
    padding: 9px;
    background: none;
    border: 1px solid var(--brand-sand);
    border-radius: 8px;
    font-family: var(--font-serif);
    font-size: 12px;
    color: #888;
    transition: all 0.2s;
}
.ed-bookwidget__actions button:hover {
    border-color: var(--brand-sky);
    color: var(--brand-sky);
}

/* ══════════════════════════════════════════════════════════════════════
   BOOKING FORM — restyled (preserves all .booking__* classes/IDs)
   ══════════════════════════════════════════════════════════════════════ */
.booking__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
}
.booking__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.booking__field { display: flex; flex-direction: column; gap: 6px; }
.booking__field label {
    font-family: var(--font-serif);
    font-size: 12px;
    font-weight: 600;
    color: #666;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.booking__field input,
.booking__field select {
    width: 100%;
    padding: 11px 14px;
    font-family: var(--font-serif);
    font-size: 14px;
    border: 1.5px solid var(--brand-sand);
    border-radius: 10px;
    background: var(--brand-cream);
    color: var(--brand-navy);
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}
.booking__field input::placeholder { color: #bbb; }
.booking__field input:focus,
.booking__field select:focus {
    border-color: var(--brand-sky);
    background: #fff;
}
.booking__field input.invalid {
    border-color: #d04848;
    background: #fff5f5;
}
.booking__error {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #fff5f5;
    border: 1px solid #f3c8c8;
    color: #b13a3a;
    font-family: var(--font-serif);
    font-size: 13px;
}
.booking__error.is-visible { display: flex; }
.booking__error svg { flex-shrink: 0; }

/* Payment cards (radio cards) */
.booking__payment-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.booking__payment-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    border: 1.5px solid var(--brand-sand);
    border-radius: 12px;
    padding: 14px 16px 14px 14px;
    background: var(--brand-cream);
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.15s;
    position: relative;
}
.booking__payment-card::before {
    content: "";
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    border-radius: 50%;
    border: 2px solid var(--brand-sand);
    background: #fff;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.booking__payment-card:hover {
    border-color: var(--brand-sky);
    transform: translateY(-1px);
}
.booking__payment-card:hover::before { border-color: var(--brand-sky); }
.booking__payment-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.booking__payment-card.active {
    border-color: var(--brand-navy);
    background: #fff;
    box-shadow: 0 4px 16px rgba(37,59,109,0.1);
}
.booking__payment-card.active::before {
    border-color: var(--brand-navy);
    background: var(--brand-navy);
    box-shadow: inset 0 0 0 3px #fff;
}
.booking__payment-card-inner {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-family: var(--font-serif);
    font-size: 13px;
    flex: 1;
    min-width: 0;
}
.booking__payment-card-inner strong {
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 0.6px;
    color: var(--brand-navy);
    font-weight: 600;
    text-transform: uppercase;
}
.booking__payment-card-inner span {
    color: #555;
    line-height: 1.4;
}
.booking__payment-card-inner span em {
    font-style: normal;
    color: var(--brand-orange);
    font-weight: 700;
}
/* Highlight the discount-bearing card */
.booking__payment-card[data-variant="full"] .booking__payment-card-inner strong::after {
    content: "−5%";
    display: inline-block;
    margin-left: 6px;
    padding: 2px 6px;
    border-radius: 999px;
    background: var(--brand-orange);
    color: #fff;
    font-size: 10px;
    letter-spacing: 0.5px;
    vertical-align: 2px;
}

/* Calculator */
.booking__calculator {
    background: var(--brand-sand);
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.booking__calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-serif);
    font-size: 13px;
    color: #666;
}
.booking__calc-row strong { color: var(--brand-navy); font-weight: 600; }
.booking__calc-row--total {
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 6px;
    margin-top: 2px;
    font-size: 14px;
}
.booking__calc-row--total strong {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 1px;
}
.booking__calc-row--discount { color: var(--brand-orange); }
.booking__calc-row--discount strong { color: var(--brand-orange); }
.booking__calc-row--hidden { visibility: hidden; }
/* Coupon apply button */
.booking__coupon-apply {
    padding: 10px 14px;
    border: 1.5px solid var(--brand-sky);
    background: #fff;
    color: var(--brand-sky);
    border-radius: 10px;
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 13px;
    transition: background 0.2s, color 0.2s;
}
.booking__coupon-apply:hover { background: var(--brand-sky); color: #fff; }
.booking__coupon-apply:disabled { opacity: 0.6; cursor: default; }
.booking__coupon-row {
    display: flex;
    gap: 8px;
    align-items: stretch;
}
.booking__coupon-row input {
    flex: 1;
    min-width: 0;
    text-transform: uppercase;
}
.booking__coupon-feedback {
    margin: 6px 0 0;
    font-family: var(--font-serif);
    font-size: 13px;
    min-height: 18px;
    line-height: 1.3;
}

/* Pre-button info note (fixed-height slot, swaps text by payment type) */
.booking__pre-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0 0 4px;
    min-height: 32px;
    padding: 6px 10px;
    background: var(--brand-cream);
    border: 1px solid var(--brand-rule);
    border-radius: 8px;
    color: var(--brand-charcoal);
    font-family: var(--font-serif);
    font-size: 12.5px;
    line-height: 1.35;
    text-align: center;
}
.booking__pre-note svg {
    flex: 0 0 auto;
    color: var(--brand-navy);
    opacity: 0.7;
}

/* Submit — fixed single-line height */
.booking__submit {
    width: 100%;
    height: 54px;
    padding: 0 18px;
    background: var(--brand-orange);
    border: none;
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 17px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
}
.booking__submit:hover:not(:disabled) {
    background: var(--brand-terra);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(233,116,32,0.35);
}
.booking__submit:disabled { background: #ccc; cursor: default; }
.booking__submit svg { flex: 0 0 auto; }
.booking__submit-text {
    display: inline;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Loading overlay */
.booking__loading {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.92);
    z-index: 9998;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-family: var(--font-serif);
    color: var(--brand-navy);
}
.booking__loading.is-visible { display: flex; }
.booking__loading-spinner {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--brand-sand);
    border-top-color: var(--brand-orange);
    animation: ed-spin 0.8s linear infinite;
}
@keyframes ed-spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════════════════════════════════
   LEARN-MORE STRIP (organic visitors)
   ══════════════════════════════════════════════════════════════════════ */
.learn-more {
    width: calc(100% - 2 * var(--gutter));
    max-width: calc(var(--max-page) - 2 * var(--gutter));
    margin: 32px auto;
    padding: 24px var(--gutter);
    background: #fff;
    border: 1px solid var(--brand-sand);
    border-radius: 12px;
    text-align: center;
}
.learn-more__lead {
    font-family: var(--font-serif);
    font-size: 16px;
    color: #444;
    margin: 0 0 12px;
}
.learn-more__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--brand-navy);
    color: #fff;
    border-radius: 10px;
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s, transform 0.15s;
}
.learn-more__btn:hover { background: var(--brand-sky); transform: translateY(-1px); }

/* ══════════════════════════════════════════════════════════════════════
   WHATSAPP FAB
   ══════════════════════════════════════════════════════════════════════ */
.whatsapp-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.18);
    z-index: 999;
    transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-fab:hover {
    transform: scale(1.06);
    box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}

/* ══════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════════ */
@media (max-width: 1023px) {
    .ed-layout {
        grid-template-columns: 1fr;
    }
    .ed-layout__aside {
        position: static;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
        max-height: none;
        overflow-y: visible;
        padding-right: 0;
    }
}

@media (max-width: 720px) {
    :root { --gutter: 20px; }
    .ed-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: 220px 100px;
        /* Reserve a band below the thumbnails for the centred view-all pill */
        padding-bottom: 56px;
    }
    .ed-gallery__main { grid-row: 1; grid-column: 1; }
    .ed-gallery__grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 1fr;
    }
    .ed-gallery__cell:nth-child(n+5) { display: none; }
    /* Let the absolute view-all pill escape the cell and re-anchor against
       the outer .ed-gallery (already position: relative). */
    .ed-gallery__cell:nth-child(4) { position: static; }
    .ed-gallery__viewall {
        position: absolute;
        left: 50%;
        right: auto;
        bottom: 10px;
        transform: translateX(-50%);
        white-space: nowrap;
        max-width: calc(100% - 24px);
    }
    .ed-quickinfo { grid-template-columns: 1fr 1fr; }
    .ed-quickinfo__cell:nth-child(2n) { border-right: none; }
    .ed-quickinfo__cell:nth-child(2n+1) { border-right: 1px solid var(--brand-sand); }
    .ed-quickinfo__cell:nth-last-child(-n+2) { border-bottom: none; }
    .ed-highlights__grid { grid-template-columns: 1fr; }
    .ed-inclusions__cols { grid-template-columns: 1fr; }
    .ed-hero__title { font-size: 32px; letter-spacing: 1px; }
    .ed-section-title { font-size: 24px; }
    .ed-bookwidget { padding: 20px; }
}

@media (min-width: 540px) {
    .booking__row { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════════════════════════════
   PACKAGES (Prețuri fixe per participant) — replaces inclusions
   ══════════════════════════════════════════════════════════════════════ */
.ed-packages {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--brand-sand);
}
.ed-packages__lead {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 14px;
    color: #888;
    margin: -8px 0 20px;
}
.ed-packages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.ed-package {
    background: #fff;
    border: 1px solid var(--brand-sand);
    border-top: 4px solid var(--brand-sky);
    border-radius: 12px;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.ed-package:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.ed-package[data-pkg="V1"] { border-top-color: var(--brand-terra); }
.ed-package[data-pkg="V2"] { border-top-color: var(--brand-green); }
.ed-package[data-pkg="V3"] { border-top-color: var(--brand-orange); }

.ed-package__num {
    font-family: var(--font-serif);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #999;
}
.ed-package__name {
    font-family: var(--font-display);
    font-size: 17px;
    letter-spacing: 1px;
    color: var(--brand-navy);
    line-height: 1.25;
}
.ed-package__price {
    font-family: var(--font-display);
    font-size: 36px;
    line-height: 1;
    color: var(--brand-navy);
    letter-spacing: 1px;
}
.ed-package__price sub {
    font-family: var(--font-serif);
    font-size: 12px;
    font-weight: 500;
    color: #888;
    letter-spacing: 0;
    margin-left: 6px;
    text-transform: none;
    bottom: 0;
}
.ed-package__buc {
    font-family: var(--font-serif);
    font-size: 13px;
    color: #666;
}
.ed-package__buc strong { color: var(--brand-navy); }

.ed-package__inc-label {
    font-family: var(--font-serif);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #999;
    border-top: 1px solid var(--brand-sand);
    padding-top: 12px;
    margin-bottom: 4px;
}
.ed-package ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.ed-package ul li {
    font-family: var(--font-serif);
    font-size: 13.5px;
    color: #444;
    line-height: 1.5;
    padding-left: 18px;
    position: relative;
}
.ed-package ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-green);
    opacity: 0.7;
}
.ed-package[data-pkg="V1"] ul li::before { background: var(--brand-terra); }
.ed-package[data-pkg="V3"] ul li::before { background: var(--brand-orange); }

.ed-packages__note {
    margin-top: 20px;
    padding: 12px 16px;
    background: rgba(233,116,32,0.08);
    border-left: 3px solid var(--brand-orange);
    border-radius: 6px;
    font-family: var(--font-serif);
    font-size: 13.5px;
    color: #555;
    line-height: 1.5;
}

.ed-accent-terra { color: var(--brand-terra); }
.ed-accent-green { color: var(--brand-green); }
.ed-accent-orange { color: var(--brand-orange); }

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

/* ══════════════════════════════════════════════════════════════════════
   TIMELINE — hour-by-hour overrides (always-visible, no toggle)
   ══════════════════════════════════════════════════════════════════════ */
.ed-timeline--hours .ed-timeline__lead {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 14px;
    color: #888;
    margin: -8px 0 20px;
    max-width: 560px;
}
.ed-timeline--hours .ed-timeline__list {
    padding-left: 0;
    list-style: none;
    margin: 0;
    position: relative;
}
.ed-timeline--hours .ed-timeline__list::before {
    left: 64px;
    top: 12px;
    bottom: 12px;
}
.ed-timeline--hours .ed-timeline__list::before {
    left: 78px;
    top: 18px;
    bottom: 18px;
    background: linear-gradient(to bottom, transparent 0%, rgba(37,59,109,0.18) 8%, rgba(37,59,109,0.18) 92%, transparent 100%);
}
.ed-timeline--hours .ed-timeline__item {
    display: grid;
    grid-template-columns: 70px 16px 1fr auto;
    gap: 18px;
    align-items: start;
    padding: 14px 16px 14px 0;
    margin-bottom: 4px;
    border: none;
    background: none;
    border-radius: 10px;
    transition: background 0.2s ease;
}
.ed-timeline--hours .ed-timeline__item:hover {
    background: rgba(255,255,255,0.65);
}
.ed-timeline--hours .ed-timeline__time {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 0 10px;
    margin-top: 2px;
    border-radius: 999px;
    background: var(--brand-cream);
    border: 1px solid rgba(37,59,109,0.16);
    font-family: var(--font-display);
    font-size: 12.5px;
    letter-spacing: 1px;
    color: var(--brand-navy);
    text-align: center;
    font-weight: 600;
    white-space: nowrap;
}
.ed-timeline--hours .ed-timeline__item[data-color="terra"] .ed-timeline__time { background: rgba(138,66,30,0.10); border-color: rgba(138,66,30,0.25); color: var(--brand-terra); }
.ed-timeline--hours .ed-timeline__item[data-color="green"] .ed-timeline__time { background: rgba(51,72,50,0.10); border-color: rgba(51,72,50,0.25); color: var(--brand-green); }
.ed-timeline--hours .ed-timeline__item[data-color="orange"] .ed-timeline__time { background: rgba(233,116,32,0.10); border-color: rgba(233,116,32,0.30); color: var(--brand-orange); }
.ed-timeline--hours .ed-timeline__item[data-color="navy"] .ed-timeline__time { background: rgba(37,59,109,0.10); border-color: rgba(37,59,109,0.25); color: var(--brand-navy); }

.ed-timeline--hours .ed-timeline__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 2.5px solid var(--brand-sky);
    box-shadow: 0 0 0 4px rgba(255,255,255,1);
    margin-top: 9px;
    z-index: 1;
    position: relative;
}
.ed-timeline--hours .ed-timeline__dot::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--brand-sky);
}
.ed-timeline--hours .ed-timeline__item[data-color="green"] .ed-timeline__dot { border-color: var(--brand-green); }
.ed-timeline--hours .ed-timeline__item[data-color="green"] .ed-timeline__dot::after { background: var(--brand-green); }
.ed-timeline--hours .ed-timeline__item[data-color="terra"] .ed-timeline__dot { border-color: var(--brand-terra); }
.ed-timeline--hours .ed-timeline__item[data-color="terra"] .ed-timeline__dot::after { background: var(--brand-terra); }
.ed-timeline--hours .ed-timeline__item[data-color="orange"] .ed-timeline__dot { border-color: var(--brand-orange); }
.ed-timeline--hours .ed-timeline__item[data-color="orange"] .ed-timeline__dot::after { background: var(--brand-orange); }
.ed-timeline--hours .ed-timeline__item[data-color="navy"] .ed-timeline__dot { border-color: var(--brand-navy); }
.ed-timeline--hours .ed-timeline__item[data-color="navy"] .ed-timeline__dot::after { background: var(--brand-navy); }

.ed-timeline--hours .ed-timeline__body {
    padding-top: 4px;
}
.ed-timeline--hours .ed-timeline__body h3 {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 16px;
    color: var(--brand-navy);
    margin: 0 0 6px;
    line-height: 1.3;
}
.ed-timeline--hours .ed-timeline__body p {
    font-family: var(--font-serif);
    font-size: 14px;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
}
.ed-timeline--hours .ed-timeline__thumb {
    display: block;
    width: 96px;
    height: 96px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 2px 12px rgba(20,40,40,0.10);
    align-self: center;
    flex-shrink: 0;
}

@media (max-width: 720px) {
    .ed-timeline--hours .ed-timeline__list::before { left: 60px; }
    .ed-timeline--hours .ed-timeline__item {
        grid-template-columns: 52px 14px 1fr;
        gap: 12px;
        padding: 12px 8px 12px 0;
    }
    .ed-timeline--hours .ed-timeline__time { font-size: 11.5px; height: 26px; padding: 0 8px; }
    .ed-timeline--hours .ed-timeline__thumb { display: none; }
}

/* ══════════════════════════════════════════════════════════════════════
   TRANSPORT (Plecare Brașov / București)
   ══════════════════════════════════════════════════════════════════════ */
.ed-transport {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--brand-sand);
}
.ed-transport__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.ed-transport__card {
    background: #fff;
    border: 1px solid var(--brand-sand);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.ed-transport__card header {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--brand-sand);
    padding-bottom: 10px;
}
.ed-transport__city {
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 1.5px;
    color: var(--brand-orange);
    text-transform: uppercase;
}
.ed-transport__card dl {
    margin: 0;
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 8px 12px;
    font-family: var(--font-serif);
    font-size: 13.5px;
}
.ed-transport__card dt {
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
    align-self: center;
}
.ed-transport__card dd {
    margin: 0;
    color: #333;
    font-weight: 600;
}
.ed-transport__map {
    width: 100%;
    height: 200px;
    border: 0;
    border-radius: 12px;
    margin-top: auto;
}

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

/* ══════════════════════════════════════════════════════════════════════
   BOOKING WIDGET — package picker, date pills, details_only mode
   ══════════════════════════════════════════════════════════════════════ */
.ed-bookwidget__title {
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--brand-navy);
    text-transform: uppercase;
    margin: 0 0 6px;
}
.ed-bookwidget__subtitle {
    font-family: var(--font-serif);
    font-size: 12px;
    color: #888;
    margin: 0 0 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.ed-bookwidget__pkg {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ed-bookwidget__pkg label {
    cursor: pointer;
    border: 1.5px solid var(--brand-sand);
    background: var(--brand-cream);
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.ed-bookwidget__pkg label:hover { border-color: var(--brand-sky); }
.ed-bookwidget__pkg label.active {
    border-color: var(--brand-navy);
    background: #fff;
    box-shadow: 0 2px 12px rgba(37,59,109,0.1);
}
.ed-bookwidget__pkg input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.ed-bookwidget__pkg-name {
    font-family: var(--font-serif);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--brand-navy);
}
.ed-bookwidget__pkg-price {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--brand-orange);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.ed-bookwidget__select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    border: 1.5px solid var(--brand-sand);
    background: var(--brand-cream);
    border-radius: 10px;
    padding: 10px 36px 10px 14px;
    font-family: var(--font-serif);
    font-size: 14px;
    color: var(--brand-navy);
    transition: border-color 0.2s, box-shadow 0.2s;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231b2a4e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
}
.ed-bookwidget__select:hover { border-color: var(--brand-sky); }
.ed-bookwidget__select:focus {
    outline: none;
    border-color: var(--brand-navy);
    box-shadow: 0 0 0 3px rgba(27,42,78,0.12);
}
.ed-bookwidget__select option {
    background: var(--brand-cream);
    color: var(--brand-navy);
    font-family: var(--font-serif);
    padding: 8px 12px;
}
.ed-bookwidget__select option:checked,
.ed-bookwidget__select option:hover {
    background: var(--brand-sand);
    color: var(--brand-navy);
}

/* Two-column form row (Date+People, Email+Phone) */
.booking__field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: stretch;
}
.booking__field-row > .booking__field { min-width: 0; }
@media (max-width: 480px) {
    .booking__field-row { grid-template-columns: 1fr; }
}
/* Compact people stepper to fit narrower column */
.booking__field-row .ed-bookwidget__people {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4px;
    border: 1.5px solid var(--brand-sand);
    background: var(--brand-cream);
    border-radius: 10px;
    padding: 4px 6px;
    height: 42px;
}
.booking__field-row .ed-bookwidget__people-btn {
    width: 30px;
    height: 30px;
    border: 0;
    background: transparent;
    flex: 0 0 auto;
}
.booking__field-row .ed-bookwidget__people-btn:hover {
    background: rgba(27,42,78,0.08);
    color: var(--brand-navy);
    border: 0;
}
.booking__field-row .ed-bookwidget__people-count {
    font-size: 16px;
    flex: 1;
}

.ed-bookwidget__city {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.ed-bookwidget__city label {
    cursor: pointer;
    border: 1.5px solid var(--brand-sand);
    background: var(--brand-cream);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    font-family: var(--font-serif);
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-navy);
    transition: all 0.2s;
    position: relative;
}
.ed-bookwidget__city label:hover { border-color: var(--brand-sky); }
.ed-bookwidget__city label.active {
    border-color: var(--brand-navy);
    background: #fff;
    box-shadow: 0 2px 12px rgba(37,59,109,0.1);
}
.ed-bookwidget__city input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ed-bookwidget__people {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.ed-bookwidget__people-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--brand-sand);
    background: var(--brand-cream);
    font-size: 18px;
    font-weight: 600;
    color: var(--brand-navy);
    cursor: pointer;
    transition: all 0.2s;
}
.ed-bookwidget__people-btn:hover { border-color: var(--brand-sky); color: var(--brand-sky); }
.ed-bookwidget__people-count {
    min-width: 40px;
    text-align: center;
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--brand-navy);
    letter-spacing: 1px;
}

.ed-bookwidget__thanks {
    display: none;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 24px 12px;
    background: rgba(51,72,50,0.06);
    border: 1px solid rgba(51,72,50,0.18);
    border-radius: 12px;
}
.ed-bookwidget__thanks.is-visible { display: flex; }
.ed-bookwidget__thanks h3 {
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 1px;
    color: var(--brand-green);
    margin: 0;
    text-transform: uppercase;
}
.ed-bookwidget__thanks p {
    font-family: var(--font-serif);
    font-size: 14px;
    color: #444;
    margin: 0;
    line-height: 1.55;
}

/* ---- Single-package pricing card ---- */
.ed-packages--single .ed-packages__grid--single {
    grid-template-columns: minmax(0, 520px);
    justify-content: center;
}
.ed-package--single {
    border-top: 4px solid var(--brand-terra);
    padding: 28px 28px 24px;
}
.ed-package--single .ed-package__price { color: var(--brand-terra); }
.ed-package--single ul li::before { background: var(--brand-terra); }
.ed-package__cta-row {
    margin-top: 22px;
    display: flex;
    justify-content: center;
}
.ed-package__cta {
    display: inline-block;
    padding: 13px 30px;
    background: var(--brand-terra);
    color: #fff;
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 999px;
    transition: background 0.2s ease, transform 0.2s ease;
}
.ed-package__cta:hover {
    background: #8a3a26;
    transform: translateY(-1px);
}

/* ---- Assurances card (GYG-style) ---- */
.ed-assurances {
    margin-bottom: 18px;
    background: #fff;
    border: 1px solid rgba(20,40,40,0.08);
    border-radius: 14px;
    padding: 18px 18px 6px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 4px 18px rgba(20,40,40,0.05);
}
.ed-assurance {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(20,40,40,0.07);
}
.ed-assurance:last-child {
    border-bottom: 0;
    padding-bottom: 12px;
}
.ed-assurance__icon {
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    color: var(--brand-navy);
    margin-top: 2px;
}
.ed-assurance__body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}
.ed-assurance__body strong {
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 0.6px;
    color: var(--brand-navy);
    text-transform: uppercase;
}
.ed-assurance__body span {
    font-family: var(--font-serif);
    font-size: 13.5px;
    color: #555;
    line-height: 1.5;
}
.ed-assurance__body em {
    font-style: normal;
    color: var(--brand-terra);
}

/* ══════════════════════════════════════════════════════════════════════
   MOBILE OPTIMIZATIONS (consolidated, 2026-05-05)
   Mirror the polish of the main wine-tour variant. Ordered by breakpoint
   so later rules win where they overlap with earlier ones.
   ══════════════════════════════════════════════════════════════════════ */

/* ── Tablet portrait (≤768px): retighten everything that the original
      720px breakpoint missed or left too generous ──────────────────── */
@media (max-width: 768px) {
    :root { --gutter: 16px; }

    /* Breadcrumb: drop oversized ancestors */
    .ed-breadcrumb { padding: 12px 0; font-size: 12px; }

    /* Hero title: tighter letter-spacing prevents 360px overflow */
    .ed-hero__title {
        font-size: 30px;
        letter-spacing: 1px;
    }
    .ed-hero__head { margin-bottom: 16px; }

    .ed-hero__meta { gap: 10px; font-size: 12.5px; }

    /* Gallery: smaller rows, smaller "view all" pill */
    .ed-gallery {
        grid-template-rows: 200px 90px;
        border-radius: 12px;
        gap: 6px;
    }
    .ed-gallery__viewall {
        font-size: 11.5px;
        padding: 6px 12px;
    }
    .ed-gallery__viewall svg { width: 12px; height: 12px; }

    /* Section titles: shrink + tighter letter-spacing */
    .ed-section-title { font-size: 23px; letter-spacing: 1.5px; }

    /* Quickinfo: 2-col but with way less padding + smaller icons */
    .ed-quickinfo__cell {
        padding: 14px 14px;
        column-gap: 10px;
    }
    .ed-quickinfo__icon { width: 36px; height: 36px; border-radius: 9px; }
    .ed-quickinfo__icon svg { width: 20px; height: 20px; }
    .ed-quickinfo__label { font-size: 10.5px; }
    .ed-quickinfo__value { font-size: 13px; line-height: 1.3; }

    /* Highlights: tighter cards */
    .ed-highlight { padding: 16px 18px; gap: 10px; }
    .ed-highlight h3 { font-size: 17px; }
    .ed-highlight p { font-size: 14px; }

    /* Description body */
    .ed-description { margin-bottom: 32px; padding-bottom: 32px; }
    .ed-description__copy { font-size: 14.5px; line-height: 1.75; }

    /* Pricing card */
    .ed-package--single { padding: 22px 20px 20px; }
    .ed-package__price { font-size: 32px; }
    .ed-package__name { font-size: 16px; }
    .ed-package__cta { padding: 12px 24px; font-size: 12.5px; }
    .ed-packages { margin-bottom: 32px; padding-bottom: 32px; }

    /* Timeline: tighter columns + smaller body type */
    .ed-timeline { margin-bottom: 32px; padding-bottom: 32px; }
    .ed-timeline--hours .ed-timeline__list::before { left: 56px; }
    .ed-timeline--hours .ed-timeline__item {
        grid-template-columns: 50px 14px 1fr;
        gap: 10px;
        padding: 12px 6px 12px 0;
    }
    .ed-timeline--hours .ed-timeline__time { font-size: 11px; padding: 0 7px; height: 24px; }
    .ed-timeline--hours .ed-timeline__thumb { display: none; }
    .ed-timeline--hours .ed-timeline__body h3 { font-size: 15px; }
    .ed-timeline--hours .ed-timeline__body p { font-size: 13.5px; }

    /* Transport: stack early + tighter DL */
    .ed-transport__grid { grid-template-columns: 1fr; }
    .ed-transport__card { padding: 16px; gap: 12px; }
    .ed-transport__card dl { grid-template-columns: 100px 1fr; gap: 6px 10px; font-size: 13px; }
    .ed-transport__card dt { font-size: 10.5px; }
    .ed-transport__map { height: 180px; }
    .ed-transport { margin-bottom: 32px; padding-bottom: 32px; }

    /* Aside max-width tighter so booking widget feels less aggressive */
    .ed-layout__aside { max-width: 100%; }

    /* Booking widget: less padding, smaller heading */
    .ed-bookwidget { padding: 18px; border-radius: 14px; }
    .ed-bookwidget__title { font-size: 13px; }
    .ed-bookwidget__subtitle { font-size: 11.5px; margin-bottom: 14px; }

    /* Assurances tighter */
    .ed-assurances { padding: 14px 14px 4px; gap: 12px; }
    .ed-assurance { gap: 12px; padding-bottom: 12px; }
    .ed-assurance__icon { flex: 0 0 24px; width: 24px; height: 24px; }
    .ed-assurance__body strong { font-size: 13px; }
    .ed-assurance__body span { font-size: 13px; }

    /* Form inputs: slightly tighter padding */
    .booking__field input,
    .booking__field select,
    .ed-bookwidget__select { padding: 10px 12px; font-size: 14px; }

    /* Payment cards: less air, smaller text so 3-stack reads */
    .booking__payment-card { padding: 12px 14px 12px 12px; gap: 10px; }
    .booking__payment-card-inner { font-size: 12.5px; }
    .booking__payment-card-inner strong { font-size: 13px; }

    /* WhatsApp FAB: smaller floats so it doesn't cover form */
    .whatsapp-fab { width: 50px; height: 50px; bottom: 18px; right: 18px; }
    .whatsapp-fab svg { width: 24px; height: 24px; }
}

/* ── Narrow phones (≤480px): single-column quickinfo, smaller hero,
      fewer line breaks in form ─────────────────────────────────────── */
@media (max-width: 480px) {
    :root { --gutter: 14px; }

    /* Hero: scale down + drop separators (they cause empty wraps) */
    .ed-hero__title { font-size: 26px; letter-spacing: 0.5px; }
    .ed-hero__meta { gap: 8px; row-gap: 6px; }
    .ed-hero__sep { display: none; }

    /* Hero badges: tighter */
    .ed-hero__badges { gap: 8px; }
    .ed-badge { font-size: 10px; padding: 3px 8px; letter-spacing: 0.8px; }

    /* Gallery rows shorter on truly narrow phones */
    .ed-gallery { grid-template-rows: 180px 80px; }

    /* Quickinfo: collapse to single column with row separators only */
    .ed-quickinfo { grid-template-columns: 1fr; }
    .ed-quickinfo__cell {
        padding: 12px 14px;
        border-right: none;
        border-bottom: 1px solid var(--brand-sand);
    }
    .ed-quickinfo__cell:nth-child(2n+1) { border-right: none; }
    .ed-quickinfo__cell:last-child { border-bottom: none; }

    /* Section titles: even smaller on narrow */
    .ed-section-title { font-size: 21px; letter-spacing: 1px; }

    /* Pricing card */
    .ed-package--single { padding: 20px 16px 18px; }
    .ed-package__price { font-size: 30px; }
    .ed-package__num { font-size: 11px; }
    .ed-package ul li { font-size: 13px; }
    .ed-package__cta { padding: 11px 22px; }

    /* Booking widget: minimal padding, full-width CTA */
    .ed-bookwidget { padding: 16px; }
    .booking__submit { height: 50px; font-size: 16px; letter-spacing: 1px; }

    /* Coupon button shorter so it doesn't push input into 1ch */
    .booking__coupon-apply { padding: 8px 12px; font-size: 12.5px; }

    /* Highlights: a touch tighter */
    .ed-highlight { padding: 14px 16px; }
    .ed-highlight__heading { gap: 12px; }
    .ed-highlight__icon { width: 36px; height: 36px; }
}

/* ── Ultra-narrow (≤360px, e.g. iPhone SE 1st gen): last-mile fixes ─ */
@media (max-width: 360px) {
    :root { --gutter: 12px; }
    .ed-hero__title { font-size: 24px; }
    .ed-section-title { font-size: 19px; }
    .ed-bookwidget { padding: 14px; }
    .ed-package--single { padding: 18px 14px 16px; }
}
