/* ══════════════════════════════════════════════════════════════════════
   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%; }

body {
    margin: 0;
    font-family: var(--font-serif);
    font-size: 16px;
    line-height: 1.6;
    color: var(--brand-text);
    background: var(--brand-cream);
    -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;
    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 {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    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;
}

.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: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    border-right: 1px solid var(--brand-sand);
    border-bottom: 1px solid var(--brand-sand);
}
.ed-quickinfo__cell:nth-child(3n) { border-right: none; }
.ed-quickinfo__cell:nth-last-child(-n+3) { border-bottom: none; }
.ed-quickinfo__icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--brand-sand);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--brand-navy);
}
.ed-quickinfo__label {
    font-size: 11px;
    color: #999;
    font-family: var(--font-serif);
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    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;
    gap: 14px;
    padding: 16px 20px;
    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__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.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: 15px;
    color: var(--brand-navy);
    margin: 0 0 4px;
}
.ed-highlight p {
    font-family: var(--font-serif);
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ══════════════════════════════════════════════════════════════════════
   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: 8px;
}
.booking__payment-card {
    display: block;
    cursor: pointer;
    border: 1.5px solid var(--brand-sand);
    border-radius: 10px;
    padding: 12px 14px;
    background: var(--brand-cream);
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    position: relative;
}
.booking__payment-card:hover { 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 2px 12px rgba(37,59,109,0.1);
}
.booking__payment-card-inner {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-family: var(--font-serif);
    font-size: 13px;
}
.booking__payment-card-inner strong {
    font-size: 14px;
    color: var(--brand-navy);
    font-weight: 600;
}
.booking__payment-card-inner span { color: #777; }

/* 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--discount strong { color: #27ae60; }
.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--pay-today strong { color: var(--brand-orange); font-weight: 700; }

/* 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; }

/* Submit */
.booking__submit {
    width: 100%;
    padding: 15px;
    background: var(--brand-orange);
    border: none;
    border-radius: 12px;
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 2px;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
}
.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-text { display: inline-flex; align-items: center; gap: 6px; }

.booking__secure-note {
    display: flex;
    gap: 6px;
    align-items: center;
    margin: 8px 0 0;
    font-family: var(--font-serif);
    font-size: 12px;
    color: #888;
}
.booking__secure-note svg { color: var(--brand-green); }

/* 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 {
    margin: 32px 0;
    padding: 24px var(--gutter);
    background: #fff;
    border: 1px solid var(--brand-sand);
    border-radius: 12px;
    text-align: center;
    max-width: var(--max-page);
    margin-left: auto;
    margin-right: auto;
}
.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%;
    }
}

@media (max-width: 720px) {
    :root { --gutter: 20px; }
    .ed-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: 220px 100px;
    }
    .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; }
    .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; }
}
