:root {
    --ocean: #0f2f3d;
    --ocean-2: #143a4a;
    --turq: #2f9e9b;
    --gold: #c98f33;
    --gold-soft: #e6c074;
    --coral: #d9694a;
    --sand: #faf6ee;
    --sand-2: #f2e9d9;
    --paper: #ffffff;
    --ink: #2b2620;
    --muted: #6f675c;
    --line: #e6dcc8;
    --line-dark: rgba(255,255,255,.18);
    --shell: 1180px;
    --r: 16px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Mulish", system-ui, sans-serif;
    color: var(--ink);
    background: var(--sand);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: "Cormorant Garamond", Georgia, serif; margin: 0; line-height: 1.04; font-weight: 600; }

.es-shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 22px; }

/* Demo bar */
.es-demobar {
    background: var(--ocean);
    color: #e7eee8;
    font-family: "Mulish", sans-serif;
    font-size: 11px;
    letter-spacing: 0.05em;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
    align-items: center;
    justify-content: space-between;
    padding: 9px 22px;
}
.es-demobar a { color: var(--gold-soft); text-decoration: none; }
.es-demobar a:hover { text-decoration: underline; }
.es-demobar span { color: #94a8a6; }

/* Eyebrow */
.es-eyebrow {
    font-family: "Mulish", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 16px;
}
.es-eyebrow-light { color: var(--gold-soft); }

/* Buttons */
.es-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Mulish", sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.02em;
    padding: 14px 26px;
    border-radius: 999px;
    text-decoration: none;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.es-btn-gold { background: var(--gold); color: #fff; }
.es-btn-gold:hover { background: #b67e26; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(201,143,51,.34); }
.es-btn-light { background: #fff; color: var(--ocean); }
.es-btn-light:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.18); }

/* Header */
.es-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(15,47,61,.86);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line-dark);
}
.es-header-inner { display: flex; align-items: center; gap: 16px; min-height: 68px; }
.es-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-right: auto;
    text-decoration: none;
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    font-size: 28px;
    letter-spacing: 0.04em;
}
.es-brand-mark {
    width: 12px; height: 12px;
    border: 2px solid var(--gold-soft);
    border-radius: 50%;
    flex: 0 0 auto;
}
.es-nav { display: none; gap: 30px; }
.es-nav a {
    color: #e7eee8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: color .15s ease;
}
.es-nav a:hover { color: var(--gold-soft); }
.es-header-cta { display: none; padding: 10px 20px; font-size: 13.5px; }

/* Hero */
.es-hero {
    position: relative;
    isolation: isolate;
    color: #fff;
    display: flex;
    align-items: center;
    min-height: 620px;
    padding: 96px 0 64px;
}
.es-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.es-hero-veil {
    position: absolute; inset: 0; z-index: -1;
    background:
        linear-gradient(180deg, rgba(15,47,61,.5) 0%, rgba(15,47,61,.28) 45%, rgba(15,47,61,.72) 100%),
        linear-gradient(90deg, rgba(15,47,61,.78) 0%, rgba(15,47,61,.12) 72%);
}
.es-hero-inner { position: relative; width: 100%; }
.es-hero-title {
    font-weight: 600;
    font-size: clamp(2.7rem, 9vw, 5.4rem);
    letter-spacing: 0.005em;
    margin-bottom: 20px;
    text-shadow: 0 2px 26px rgba(8,28,36,.4);
}
.es-hero-lede {
    max-width: 480px;
    font-size: clamp(1.02rem, 2.6vw, 1.2rem);
    color: #f3efe6;
    margin: 0 0 34px;
}

/* Search */
.es-search {
    background: rgba(255,255,255,.96);
    border-radius: var(--r);
    padding: 14px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    box-shadow: 0 24px 60px rgba(8,28,36,.32);
    max-width: 880px;
}
.es-field { display: flex; flex-direction: column; gap: 5px; text-align: left; padding: 6px 10px; border-radius: 10px; background: var(--sand); }
.es-field label {
    font-family: "Mulish", sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}
.es-field select, .es-field input {
    border: 0;
    background: transparent;
    font-family: "Mulish", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    padding: 2px 0;
    width: 100%;
    appearance: none;
    cursor: pointer;
}
.es-field select:focus-visible, .es-field input:focus-visible { outline: none; }
.es-search-btn { width: 100%; padding: 16px; }

/* Sections */
.es-section { padding: clamp(58px, 9vw, 110px) 0; }
.es-section-sand { background: var(--sand-2); }
.es-head { max-width: 660px; margin-bottom: 46px; }
.es-h2 { font-size: clamp(2rem, 5.2vw, 3.1rem); letter-spacing: 0.005em; color: var(--ocean); }
.es-intro { margin: 16px 0 0; font-size: 1.08rem; color: var(--muted); }

/* Destinations */
.es-dest-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
.es-dest {
    background: var(--paper);
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 8px 26px rgba(43,38,32,.06);
    transition: transform .25s ease, box-shadow .25s ease;
}
.es-dest:hover { transform: translateY(-7px); box-shadow: 0 22px 48px rgba(43,38,32,.16); }
.es-dest-media { position: relative; margin: 0; overflow: hidden; }
.es-dest-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .55s ease; }
.es-dest:hover .es-dest-media img { transform: scale(1.05); }
.es-dest-place {
    position: absolute;
    left: 14px;
    top: 14px;
    background: rgba(15,47,61,.78);
    color: #fff;
    font-family: "Mulish", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    backdrop-filter: blur(3px);
}
.es-dest-body { padding: 22px 24px 24px; }
.es-dest-body h3 { font-size: 1.9rem; color: var(--ocean); margin-bottom: 8px; }
.es-dest-body p { margin: 0; color: var(--muted); font-size: .98rem; }
.es-dest-foot { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 20px; gap: 14px; }
.es-price { font-family: "Cormorant Garamond", serif; font-weight: 600; font-size: 1.7rem; color: var(--ink); display: flex; flex-direction: column; line-height: 1.1; }
.es-price small { font-family: "Mulish", sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.es-dest-link { font-family: "Mulish", sans-serif; font-weight: 700; font-size: 14px; color: var(--gold); letter-spacing: 0.02em; }
.es-dest:hover .es-dest-link { color: var(--coral); }

/* Quote band */
.es-quote { position: relative; isolation: isolate; color: #fff; min-height: 320px; display: flex; align-items: center; }
.es-quote-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.es-quote-veil { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(15,47,61,.74) 0%, rgba(15,47,61,.4) 100%); }
.es-quote-inner { position: relative; padding: 70px 0; }
.es-quote-text {
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    font-style: italic;
    font-size: clamp(1.7rem, 5vw, 3rem);
    max-width: 620px;
    margin: 0;
    text-shadow: 0 2px 22px rgba(8,28,36,.4);
}

/* Experience */
.es-exp-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.es-exp { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 26px 24px; }
.es-exp-mark { display: block; width: 30px; height: 30px; margin-bottom: 16px; border-radius: 50%; background: radial-gradient(circle at 32% 30%, var(--gold-soft), var(--gold) 75%); }
.es-exp h3 { font-size: 1.5rem; color: var(--ocean); margin-bottom: 8px; }
.es-exp p { margin: 0; color: var(--muted); font-size: .97rem; }

/* Avis marquee (Trivago style) */
.es-head-center { margin-left: auto; margin-right: auto; text-align: center; }
.es-marquee {
    position: relative;
    overflow: hidden;
    padding: 6px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.es-track { display: flex; width: max-content; animation: es-scroll 52s linear infinite; }
.es-dup { display: contents; }
.es-marquee:hover .es-track { animation-play-state: paused; }
@keyframes es-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.es-avis {
    flex: 0 0 auto;
    width: clamp(258px, 80vw, 322px);
    margin: 0 20px 0 0;
    background: var(--sand-2);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 26px 24px;
}
.es-stars {
    --size: 18px;
    position: relative;
    display: block;
    width: calc(var(--size) * 5);
    height: var(--size);
    margin-bottom: 14px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2l2.9 6.2 6.8.7-5.1 4.6 1.5 6.7L12 17.8 5.9 20.2l1.5-6.7L2.3 8.9l6.8-.7z' fill='%23ddd4c2'/></svg>");
    background-size: var(--size) var(--size);
    background-repeat: repeat-x;
}
.es-stars-on {
    position: absolute;
    inset: 0;
    width: calc(var(--rate) / 5 * 100%);
    overflow: hidden;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2l2.9 6.2 6.8.7-5.1 4.6 1.5 6.7L12 17.8 5.9 20.2l1.5-6.7L2.3 8.9l6.8-.7z' fill='%23eaa31b'/></svg>");
    background-size: var(--size) var(--size);
    background-repeat: repeat-x;
}
.es-avis p { font-family: "Cormorant Garamond", serif; font-size: 1.4rem; font-style: italic; line-height: 1.32; color: var(--ink); margin: 0 0 14px; }
.es-avis cite { font-family: "Mulish", sans-serif; font-style: normal; font-weight: 700; font-size: 13.5px; letter-spacing: 0.03em; color: var(--gold); }

/* Contact */
.es-contact { background: var(--ocean); color: #fff; padding: clamp(58px, 9vw, 110px) 0; }
.es-contact-grid { display: grid; grid-template-columns: 1fr; gap: 42px; }
.es-contact-lead .es-h2 { color: #fff; }
.es-contact-lead p { color: #d8e2e0; margin: 16px 0 28px; max-width: 520px; }
.es-contact-info { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.es-contact-info li { border-top: 1px solid var(--line-dark); padding-top: 16px; }
.es-info-label {
    display: block;
    font-family: "Mulish", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin-bottom: 6px;
}
.es-contact-info a { color: #fff; text-decoration: none; word-break: break-word; }
.es-contact-info a:hover { text-decoration: underline; }
.es-contact-info span { color: #e7eee8; }

/* Footer */
.es-footer { background: #0a232e; color: #cdd9d7; padding: 56px 0 0; }
.es-footer-inner { display: grid; grid-template-columns: 1fr; gap: 34px; padding-bottom: 40px; }
.es-brand-word { font-family: "Cormorant Garamond", serif; font-size: 30px; font-weight: 600; color: #fff; }
.es-footer-brand .es-brand-word { display: block; margin-bottom: 10px; }
.es-footer-brand p { margin: 0; font-size: .92rem; max-width: 340px; }
.es-footer-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.es-footer-cols p { margin: 0; font-size: .92rem; line-height: 1.7; }
.es-footer-cols a { color: var(--gold-soft); text-decoration: none; }
.es-footer-cols a:hover { text-decoration: underline; }
.es-footer-base {
    border-top: 1px solid var(--line-dark);
    padding: 18px 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
    justify-content: space-between;
    font-size: 11.5px;
    letter-spacing: 0.04em;
    color: #7b8c8a;
    max-width: var(--shell);
    margin: 0 auto;
}

/* Focus */
a:focus-visible, .es-btn:focus-visible, select:focus-visible, input:focus-visible {
    outline: 3px solid var(--gold-soft);
    outline-offset: 3px;
    border-radius: 6px;
}

/* Small tablet */
@media (min-width: 620px) {
    .es-shell { padding: 0 32px; }
    .es-header-cta { display: inline-flex; }
    .es-dest-grid { grid-template-columns: repeat(2, 1fr); }
    .es-exp-grid { grid-template-columns: repeat(2, 1fr); }
    .es-footer-inner { grid-template-columns: 1.2fr 1fr; }
}

/* Tablet */
@media (min-width: 760px) {
    .es-search { grid-template-columns: 1.4fr 1fr 1.2fr auto; align-items: stretch; }
    .es-search-btn { width: auto; align-self: stretch; }
}

/* Desktop */
@media (min-width: 940px) {
    .es-nav { display: flex; }
    .es-hero { min-height: 700px; padding: 120px 0 80px; }
    .es-dest-grid { grid-template-columns: repeat(3, 1fr); }
    .es-exp-grid { grid-template-columns: repeat(4, 1fr); }
    .es-contact-grid { grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: start; }
    .es-contact-info { grid-template-columns: repeat(2, 1fr); gap: 28px 40px; }
}

@media (prefers-reduced-motion: reduce) {
    * { scroll-behavior: auto !important; transition: none !important; }
    .es-dest:hover .es-dest-media img { transform: none; }
    .es-track { animation: none; }
}
