:root {
  --eg-primary: #2563eb;
  --eg-primary-dark: #1d4ed8;
  --eg-navy: #071d38;
  --eg-text: #0f2745;
  --eg-muted: #607089;
  --eg-line: #e5ebf3;
  --eg-soft: #f6f9fd;
  --eg-white: #fff;
  --eg-shadow: 0 16px 40px rgba(14, 36, 68, .10);
  --eg-radius: 16px;
  --eg-container: 1420px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--eg-text); background: #fff; font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.5; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.eg-container { width: min(calc(100% - 40px), var(--eg-container)); margin-inline: auto; }
.eg-visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.eg-skip-link { position: fixed; left: 18px; top: -80px; z-index: 9999; padding: 10px 16px; border-radius: 8px; background: #fff; color: var(--eg-primary); box-shadow: var(--eg-shadow); transition: top .2s ease; }
.eg-skip-link:focus { top: 16px; }

.eg-site-header { position: sticky; top: 0; z-index: 1000; height: 68px; background: rgba(255,255,255,.97); border-bottom: 1px solid rgba(226,232,240,.8); backdrop-filter: blur(16px); transition: box-shadow .2s ease; }
.eg-site-header.is-scrolled { box-shadow: 0 8px 30px rgba(15,39,69,.08); }
.eg-header-inner { width: min(calc(100% - 40px), var(--eg-container)); height: 100%; margin-inline: auto; display: flex; align-items: center; gap: 28px; }
.eg-brand { flex: 0 0 auto; display: inline-flex; align-items: center; }
.eg-brand img { width: 154px; height: auto; max-height: 42px; object-fit: contain; }
.eg-desktop-nav { display: flex; align-items: center; gap: 25px; min-width: 0; }
.eg-desktop-nav a { position: relative; padding: 22px 0; font-size: 14px; font-weight: 650; color: #1c2c45; white-space: nowrap; }
.eg-desktop-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 14px; height: 2px; border-radius: 999px; background: var(--eg-primary); transform: scaleX(0); transition: transform .2s ease; }
.eg-desktop-nav a:hover, .eg-desktop-nav a.is-active { color: var(--eg-primary); }
.eg-desktop-nav a:hover::after, .eg-desktop-nav a.is-active::after { transform: scaleX(1); }
.eg-header-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.eg-icon-button { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; color: #253b58; }
.eg-icon-button:hover { background: var(--eg-soft); color: var(--eg-primary); }
.eg-header-search { width: 230px; height: 39px; display: flex; align-items: center; border: 1px solid var(--eg-line); border-radius: 10px; background: #fbfcfe; overflow: hidden; }
.eg-header-search input { min-width: 0; flex: 1; height: 100%; padding: 0 0 0 14px; border: 0; outline: 0; background: transparent; color: var(--eg-text); font-size: 13px; }
.eg-header-search button { width: 42px; height: 100%; display: grid; place-items: center; border: 0; background: transparent; color: #8793a5; cursor: pointer; }
.eg-btn { min-height: 39px; display: inline-flex; align-items: center; justify-content: center; padding: 0 15px; border-radius: 9px; font-size: 13px; font-weight: 750; border: 1px solid transparent; }
.eg-btn-ghost { border-color: var(--eg-line); background: #fff; color: #233653; }
.eg-btn-primary { background: var(--eg-primary); color: #fff; box-shadow: 0 7px 18px rgba(37,99,235,.22); }
.eg-btn:hover { transform: translateY(-1px); }
.eg-menu-toggle { display: none; width: 42px; height: 42px; border: 0; background: #f4f7fb; border-radius: 10px; padding: 10px; cursor: pointer; }
.eg-menu-toggle span { display: block; height: 2px; background: #243a57; margin: 4px 0; border-radius: 999px; }
.eg-mobile-menu { position: fixed; inset: 68px 0 auto; background: #fff; border-top: 1px solid var(--eg-line); box-shadow: 0 20px 40px rgba(15,39,69,.15); }
.eg-mobile-menu-inner { width: min(calc(100% - 32px), 680px); margin: 0 auto; padding: 20px 0 26px; }
.eg-mobile-search { display: flex; gap: 8px; margin-bottom: 18px; }
.eg-mobile-search input { flex: 1; min-width: 0; height: 44px; border: 1px solid var(--eg-line); border-radius: 10px; padding: 0 14px; }
.eg-mobile-search button { border: 0; border-radius: 10px; padding: 0 18px; background: var(--eg-primary); color: #fff; font-weight: 700; }
.eg-mobile-menu nav { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px; }
.eg-mobile-menu nav a { padding: 11px 12px; border-radius: 9px; font-weight: 650; }
.eg-mobile-menu nav a:hover, .eg-mobile-menu nav a.is-active { background: #eff5ff; color: var(--eg-primary); }
.eg-mobile-auth { display: flex; gap: 10px; margin-top: 18px; }
.eg-mobile-auth .eg-btn { flex: 1; }

.eg-hero { position: relative; min-height: 430px; isolation: isolate; color: #fff; overflow: visible; }
.eg-hero-media, .eg-hero-overlay { position: absolute; inset: 0; z-index: -2; }
.eg-hero-media picture, .eg-hero-media img { width: 100%; height: 100%; }
.eg-hero-media img { object-fit: cover; object-position: center 48%; }
.eg-hero-fallback { width: 100%; height: 100%; background: linear-gradient(135deg,#0b4e78,#0a7aaa); }
.eg-hero-overlay { z-index: -1; background: linear-gradient(90deg, rgba(3,35,61,.86) 0%, rgba(4,50,81,.60) 44%, rgba(5,31,48,.10) 76%), linear-gradient(0deg, rgba(3,35,61,.28), transparent 45%); }
.eg-hero-content { padding-top: 58px; padding-bottom: 92px; }
.eg-hero-copy { max-width: 650px; }
.eg-hero-copy h1 { margin: 0; font-size: clamp(38px,4.2vw,62px); line-height: 1.04; letter-spacing: -.035em; font-weight: 820; text-shadow: 0 2px 16px rgba(0,0,0,.18); }
.eg-hero-copy p { max-width: 610px; margin: 18px 0 25px; font-size: 17px; line-height: 1.55; color: rgba(255,255,255,.94); }
.eg-trip-search { width: min(820px,100%); min-height: 86px; display: grid; grid-template-columns: 1fr 1.25fr auto; align-items: stretch; padding: 8px; background: #fff; color: var(--eg-text); border-radius: 15px; box-shadow: 0 18px 45px rgba(1,21,39,.24); }
.eg-trip-field { position: relative; min-width: 0; padding: 14px 18px 10px 52px; border-right: 1px solid #e8edf4; }
.eg-trip-icon { position: absolute; left: 18px; top: 28px; color: var(--eg-primary); font-size: 20px; }
.eg-trip-field label { display: block; margin-bottom: 5px; font-size: 12px; font-weight: 800; color: #263b58; }
.eg-trip-field input, .eg-trip-field select { width: 100%; border: 0; outline: 0; background: transparent; color: #66758b; font-size: 12px; padding: 0; }
.eg-explore-button { align-self: stretch; min-width: 145px; display: flex; align-items: center; justify-content: center; gap: 9px; border: 0; border-radius: 11px; background: var(--eg-primary); color: #fff; font-size: 13px; font-weight: 800; cursor: pointer; box-shadow: 0 10px 22px rgba(37,99,235,.24); }
.eg-explore-button:hover { background: var(--eg-primary-dark); }
.eg-hero-benefits { display: flex; flex-wrap: wrap; gap: 36px; margin-top: 19px; padding-left: 4px; font-size: 12px; font-weight: 680; color: rgba(255,255,255,.96); }
.eg-hero-benefits span { display: inline-flex; align-items: center; gap: 8px; }
.eg-hero-benefits svg { font-size: 15px; }

.eg-category-shell { position: relative; z-index: 3; margin-top: -45px; }
.eg-category-bar { min-height: 112px; display: grid; grid-template-columns: repeat(7,minmax(92px,1fr)) 1.35fr; align-items: center; padding: 16px 22px; background: rgba(255,255,255,.98); border: 1px solid rgba(231,237,245,.9); border-radius: 16px; box-shadow: var(--eg-shadow); }
.eg-category-item { min-width: 0; display: flex; flex-direction: column; align-items: center; gap: 9px; padding: 10px 7px; border-radius: 12px; color: #233753; font-size: 12px; font-weight: 720; text-align: center; }
.eg-category-item svg { font-size: 29px; color: var(--eg-primary); stroke-width: 1.6; }
.eg-category-item:hover { color: var(--eg-primary); background: #f4f8ff; transform: translateY(-2px); }
.eg-view-categories { justify-self: end; min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 18px; border: 1px solid var(--eg-line); border-radius: 10px; color: var(--eg-primary); font-size: 12px; font-weight: 800; }
.eg-view-categories:hover { background: #f4f8ff; border-color: #cbdafe; }

.eg-section { padding: 35px 0 0; }
.eg-section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 20px; }
.eg-section-heading h2 { margin: 0 0 2px; font-size: 21px; line-height: 1.25; letter-spacing: -.015em; color: #102844; }
.eg-section-heading p { margin: 0; font-size: 12px; color: var(--eg-muted); }
.eg-section-heading > a { display: inline-flex; align-items: center; gap: 5px; color: var(--eg-primary); font-size: 12px; font-weight: 800; white-space: nowrap; }
.eg-section-heading > a svg { width: 15px; height: 15px; }
.eg-heading-compact { margin-bottom: 15px; }

.eg-destination-grid { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 18px; }
.eg-destination-card { min-width: 0; }
.eg-card-media { position: relative; height: 270px; display: block; overflow: hidden; border-radius: 13px; background: #dce5ef; box-shadow: 0 8px 18px rgba(13,36,67,.08); }
.eg-card-link { position: absolute; inset: 0; display: block; }
.eg-card-media picture, .eg-card-media img { width: 100%; height: 100%; }
.eg-card-media img { object-fit: cover; transition: transform .45s ease; }
.eg-card-media:hover img { transform: scale(1.045); }
.eg-card-shade { position: absolute; inset: 0; background: linear-gradient(180deg,rgba(0,0,0,.02) 35%,rgba(4,16,31,.86) 100%); }
.eg-country-pill { position: absolute; top: 13px; left: 13px; z-index: 2; max-width: calc(100% - 62px); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; padding: 5px 9px; border-radius: 999px; background: rgba(255,255,255,.88); backdrop-filter: blur(8px); color: #48617f; font-size: 9px; font-weight: 850; }
.eg-favorite-button { position: absolute; top: 10px; right: 10px; z-index: 3; width: 35px; height: 35px; display: grid; place-items: center; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.88); color: #33506f; cursor: pointer; }
.eg-favorite-button svg { width: 18px; height: 18px; }
.eg-favorite-button[aria-pressed="true"] { color: #ef4444; }
.eg-favorite-button[aria-pressed="true"] svg { fill: currentColor; }
.eg-destination-copy { position: absolute; left: 15px; right: 15px; bottom: 14px; z-index: 2; color: #fff; }
.eg-destination-copy strong { display: block; margin-bottom: 2px; font-size: 22px; line-height: 1.15; }
.eg-rating-line { display: block; font-size: 11px; font-weight: 720; }
.eg-rating-line small { color: rgba(255,255,255,.74); }
.eg-destination-copy em { display: inline-block; margin-top: 7px; padding: 4px 8px; border-radius: 999px; background: rgba(2,15,31,.55); font-size: 9px; font-style: normal; }

.eg-experience-track { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 18px; }
.eg-experience-card { min-width: 0; overflow: hidden; border: 1px solid var(--eg-line); border-radius: 12px; background: #fff; box-shadow: 0 5px 16px rgba(14,36,68,.05); }
.eg-experience-image { position: relative; height: 154px; display: block; overflow: hidden; background: #e5ebf1; }
.eg-experience-image picture, .eg-experience-image img { width: 100%; height: 100%; }
.eg-experience-image img { object-fit: cover; transition: transform .4s ease; }
.eg-experience-card:hover .eg-experience-image img { transform: scale(1.04); }
.eg-experience-category { position: absolute; top: 10px; left: 10px; padding: 4px 8px; border-radius: 999px; background: rgba(255,255,255,.9); color: #35516f; font-size: 9px; font-weight: 800; }
.eg-experience-body { padding: 12px 13px 13px; }
.eg-experience-body h3 { min-height: 39px; margin: 0 0 4px; font-size: 14px; line-height: 1.35; }
.eg-experience-body h3 a:hover { color: var(--eg-primary); }
.eg-experience-body > p { display: flex; align-items: center; gap: 4px; margin: 0 0 8px; color: var(--eg-muted); font-size: 10px; }
.eg-experience-body > p svg { width: 13px; height: 13px; color: var(--eg-primary); }
.eg-experience-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; font-size: 10px; }
.eg-experience-meta > span { color: #f59e0b; font-weight: 800; }
.eg-experience-meta small { color: var(--eg-muted); font-weight: 500; }
.eg-experience-meta a { color: var(--eg-primary); font-weight: 800; }

.eg-benefit-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
.eg-benefit-grid article { min-height: 102px; display: flex; align-items: center; gap: 16px; padding: 18px 22px; border-radius: 14px; background: linear-gradient(135deg,#fafcff,#f4f8fe); border: 1px solid #f0f4fa; }
.eg-benefit-grid article > span { flex: 0 0 auto; width: 48px; height: 48px; display: grid; place-items: center; color: var(--eg-primary); }
.eg-benefit-grid article > span svg { width: 37px; height: 37px; stroke-width: 1.5; }
.eg-benefit-grid h3 { margin: 0 0 4px; font-size: 14px; }
.eg-benefit-grid p { margin: 0; color: var(--eg-muted); font-size: 10px; line-height: 1.45; }

.eg-guide-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.eg-guide-card { overflow: hidden; border: 1px solid var(--eg-line); border-radius: 13px; background: #fff; box-shadow: 0 5px 18px rgba(14,36,68,.04); }
.eg-guide-image { position: relative; height: 145px; display: block; overflow: hidden; background: #e5ebf1; }
.eg-guide-image picture, .eg-guide-image img { width: 100%; height: 100%; }
.eg-guide-image img { object-fit: cover; transition: transform .4s ease; }
.eg-guide-card:hover .eg-guide-image img { transform: scale(1.035); }
.eg-guide-image > span { position: absolute; top: 12px; left: 12px; padding: 4px 8px; border-radius: 999px; background: rgba(255,255,255,.88); color: #4b6280; font-size: 8px; font-weight: 850; }
.eg-guide-body { padding: 14px 15px 15px; }
.eg-guide-body h3 { margin: 0 0 7px; font-size: 16px; line-height: 1.3; }
.eg-guide-body h3 a:hover { color: var(--eg-primary); }
.eg-guide-body > p { min-height: 34px; margin: 0 0 12px; color: var(--eg-muted); font-size: 10px; line-height: 1.55; }
.eg-guide-body > div { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: #7a8799; font-size: 9px; }
.eg-guide-body > div a { display: inline-flex; align-items: center; gap: 4px; color: var(--eg-primary); font-size: 10px; font-weight: 800; white-space: nowrap; }
.eg-guide-body > div svg { width: 13px; height: 13px; }

.eg-bottom-content { padding-bottom: 34px; }
.eg-bottom-grid { display: grid; grid-template-columns: 1.2fr .86fr; gap: 26px; }
.eg-newsletter-card, .eg-faq-card { min-height: 190px; overflow: hidden; border: 1px solid var(--eg-line); border-radius: 15px; background: #fff; }
.eg-newsletter-card { display: grid; grid-template-columns: 1.1fr .9fr; background: linear-gradient(135deg,#f2f8ff,#e7f3ff); }
.eg-newsletter-copy { padding: 26px 28px; }
.eg-newsletter-copy h2, .eg-faq-card h2 { margin: 0 0 7px; font-size: 18px; }
.eg-newsletter-copy > p { max-width: 390px; margin: 0 0 18px; color: #50647f; font-size: 11px; }
.eg-newsletter-form { display: flex; gap: 8px; }
.eg-newsletter-form input { min-width: 0; flex: 1; height: 45px; padding: 0 14px; border: 1px solid #dce5f0; border-radius: 9px; background: #fff; outline: 0; font-size: 11px; }
.eg-newsletter-form input:focus { border-color: #94b7ff; box-shadow: 0 0 0 3px rgba(37,99,235,.10); }
.eg-newsletter-form button { min-width: 105px; border: 0; border-radius: 9px; background: var(--eg-primary); color: #fff; font-size: 11px; font-weight: 800; cursor: pointer; }
.eg-form-status { min-height: 18px; margin: 9px 0 0 !important; color: #52677f !important; }
.eg-form-status.is-success { color: #147a4b !important; }
.eg-form-status.is-error { color: #b42318 !important; }
.eg-newsletter-form button:disabled { cursor: wait; opacity: .72; }
.eg-newsletter-image { position: relative; min-height: 190px; }
.eg-newsletter-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,#eaf5ff 0%,rgba(234,245,255,.22) 35%,transparent 70%); }
.eg-newsletter-image picture, .eg-newsletter-image img { width: 100%; height: 100%; }
.eg-newsletter-image img { object-fit: cover; }
.eg-faq-card { padding: 24px 25px; }
.eg-faq-list details { border: 1px solid var(--eg-line); border-radius: 8px; background: #fff; }
.eg-faq-list details + details { margin-top: 7px; }
.eg-faq-list summary { position: relative; list-style: none; cursor: pointer; padding: 10px 36px 10px 12px; color: #263d5a; font-size: 10px; font-weight: 750; }
.eg-faq-list summary::-webkit-details-marker { display: none; }
.eg-faq-list summary span::before, .eg-faq-list summary span::after { content: ""; position: absolute; right: 13px; top: 50%; width: 10px; height: 1.5px; background: #7a8ba2; transition: transform .2s ease; }
.eg-faq-list summary span::after { transform: rotate(90deg); }
.eg-faq-list details[open] summary span::after { transform: rotate(0); }
.eg-faq-list details p { margin: 0; padding: 0 12px 11px; color: var(--eg-muted); font-size: 10px; line-height: 1.5; }
.eg-empty-state { grid-column: 1 / -1; margin: 0; padding: 28px; border: 1px dashed #cdd8e6; border-radius: 12px; color: var(--eg-muted); text-align: center; }

.eg-site-footer { background: linear-gradient(180deg,#09213e,#061a32); color: #dce8f5; }
.eg-footer-grid { display: grid; grid-template-columns: minmax(260px,1.55fr) repeat(2,minmax(150px,.75fr)); gap: 52px; padding-top: 34px; padding-bottom: 28px; }
.eg-brand-footer img { filter: brightness(0) invert(1); }
.eg-footer-brand p { max-width: 300px; margin: 12px 0 18px; color: #a9bbce; font-size: 10px; line-height: 1.6; }
.eg-social-links { display: flex; gap: 8px; }
.eg-social-links a { width: 29px; height: 29px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; color: #d7e4f2; }
.eg-social-links a:hover { background: rgba(255,255,255,.08); color: #fff; }
.eg-social-links svg { width: 14px; height: 14px; }
.eg-social-links svg path:first-child { fill: none; }
.eg-footer-column { display: flex; flex-direction: column; align-items: flex-start; }
.eg-footer-column h2 { margin: 2px 0 11px; color: #fff; font-size: 12px; }
.eg-footer-column a { margin: 2px 0; color: #bdcbd9; font-size: 10px; }
.eg-footer-column a:hover { color: #fff; }
.eg-footer-bottom { min-height: 42px; display: flex; align-items: center; justify-content: center; border-top: 1px solid rgba(255,255,255,.14); color: #94a8bc; font-size: 9px; }

@media (max-width: 1280px) {
  .eg-desktop-nav { gap: 16px; }
  .eg-desktop-nav a { font-size: 13px; }
  .eg-header-search { width: 190px; }
  .eg-destination-grid, .eg-experience-track { gap: 14px; }
  .eg-card-media { height: 245px; }
  .eg-footer-grid { gap: 24px; }
}

@media (max-width: 1099px) {
  .eg-site-header { height: 64px; }
  .eg-desktop-nav, .eg-header-search, .eg-language-button, .eg-header-actions > .eg-btn { display: none; }
  .eg-menu-toggle { display: block; }
  .eg-mobile-menu { inset: 64px 0 auto; }
  .eg-hero { min-height: 520px; }
  .eg-hero-content { padding-top: 50px; }
  .eg-trip-search { grid-template-columns: 1fr 1fr; gap: 0; }
  .eg-trip-field { border-bottom: 0; }
  .eg-trip-field:nth-child(2) { border-right: 0; }
  .eg-explore-button { grid-column: 1 / -1; min-height: 56px; margin-top: 8px; }
  .eg-category-bar { grid-template-columns: repeat(4,1fr); }
  .eg-view-categories { justify-self: stretch; }
  .eg-destination-grid { grid-template-columns: repeat(3,1fr); }
  .eg-experience-track { grid-template-columns: repeat(3,1fr); }
  .eg-benefit-grid { grid-template-columns: repeat(2,1fr); }
  .eg-footer-grid { grid-template-columns: 1.35fr repeat(2,1fr); }
}

@media (max-width: 760px) {
  .eg-container, .eg-header-inner { width: min(calc(100% - 28px), var(--eg-container)); }
  .eg-brand img { width: 138px; }
  .eg-hero { min-height: 600px; }
  .eg-hero-content { padding-top: 42px; padding-bottom: 84px; }
  .eg-hero-copy h1 { font-size: clamp(34px,10vw,46px); }
  .eg-hero-copy p { font-size: 15px; }
  .eg-trip-search { display: block; padding: 8px; }
  .eg-trip-field { min-height: 68px; border-right: 0; border-bottom: 1px solid #e8edf4; }
  .eg-explore-button { width: 100%; min-height: 52px; margin-top: 7px; }
  .eg-hero-benefits { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px 18px; }
  .eg-category-shell { margin-top: -32px; }
  .eg-category-bar { grid-template-columns: repeat(2,1fr); padding: 12px; }
  .eg-view-categories { margin: 4px; }
  .eg-section { padding-top: 30px; }
  .eg-section-heading { align-items: flex-start; }
  .eg-section-heading > a { margin-top: 4px; }
  .eg-destination-grid, .eg-experience-track { grid-template-columns: repeat(2,1fr); }
  .eg-card-media { height: 240px; }
  .eg-guide-grid { grid-template-columns: 1fr; }
  .eg-bottom-grid { grid-template-columns: 1fr; }
  .eg-newsletter-card { grid-template-columns: 1fr; }
  .eg-newsletter-image { display: none; }
  .eg-footer-grid { grid-template-columns: repeat(2,1fr); }
  .eg-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .eg-mobile-menu nav { grid-template-columns: 1fr; }
  .eg-hero { min-height: 650px; }
  .eg-hero-copy h1 br { display: none; }
  .eg-category-item { font-size: 11px; }
  .eg-section-heading { display: block; }
  .eg-section-heading > a { display: inline-flex; margin-top: 9px; }
  .eg-destination-grid, .eg-experience-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; scrollbar-width: thin; }
  .eg-destination-card, .eg-experience-card { flex: 0 0 82%; scroll-snap-align: start; }
  .eg-benefit-grid { grid-template-columns: 1fr; }
  .eg-newsletter-copy, .eg-faq-card { padding: 20px; }
  .eg-newsletter-form { display: grid; }
  .eg-newsletter-form button { min-height: 44px; }
  .eg-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Search results page ----------------------------------------------------- */
.eg-search-body { background: #fff; }
.eg-search-main { overflow: hidden; }
.eg-search-hero { position: relative; min-height: 360px; isolation: isolate; color: #fff; }
.eg-search-hero-media,
.eg-search-hero-overlay { position: absolute; inset: 0; z-index: -2; }
.eg-search-hero-media picture,
.eg-search-hero-media img { width: 100%; height: 100%; }
.eg-search-hero-media img { object-fit: cover; object-position: center 50%; }
.eg-search-hero-fallback { width: 100%; height: 100%; background: linear-gradient(135deg,#112944,#315c78); }
.eg-search-hero-overlay { z-index: -1; background: linear-gradient(90deg,rgba(4,15,28,.92) 0%,rgba(7,24,39,.72) 43%,rgba(8,24,37,.30) 76%), linear-gradient(0deg,rgba(0,0,0,.28),rgba(0,0,0,.06)); }
.eg-search-hero-inner { position: relative; padding-top: 28px; padding-bottom: 0; }
.eg-search-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 13px; color: rgba(255,255,255,.82); font-size: 12px; font-weight: 700; }
.eg-search-breadcrumb a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.eg-search-intro { max-width: 720px; }
.eg-search-intro h1 { max-width: 690px; margin: 0; color: #fff; font-size: clamp(31px,3.45vw,50px); line-height: 1.08; letter-spacing: -.035em; text-wrap: balance; }
.eg-search-intro p { max-width: 630px; margin: 10px 0 20px; color: rgba(255,255,255,.93); font-size: 15px; line-height: 1.52; }
.eg-search-form { min-height: 72px; display: grid; grid-template-columns: minmax(280px,1fr) minmax(190px,230px) minmax(190px,220px) 132px; align-items: center; gap: 0; padding: 9px; border-radius: 14px; background: #fff; color: var(--eg-text); box-shadow: 0 18px 45px rgba(0,12,28,.28); }
.eg-search-query-field,
.eg-search-select-field { position: relative; min-width: 0; min-height: 52px; display: flex; align-items: center; border-right: 1px solid var(--eg-line); }
.eg-search-query-field > svg,
.eg-search-select-field > svg { flex: 0 0 auto; width: 22px; height: 22px; margin-left: 14px; color: var(--eg-primary); }
.eg-search-query-field input,
.eg-search-select-field select { width: 100%; min-width: 0; height: 52px; border: 0; outline: 0; background: transparent; color: #18304d; font-size: 13px; }
.eg-search-query-field input { padding: 0 18px 0 13px; }
.eg-search-select-field select { padding: 0 32px 0 10px; cursor: pointer; }
.eg-search-query-field input::placeholder { color: #8190a5; opacity: 1; }
.eg-search-query-field:focus-within,
.eg-search-select-field:focus-within { background: #f7faff; box-shadow: inset 0 0 0 2px rgba(37,99,235,.11); }
.eg-search-submit { height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 0; border-radius: 9px; background: var(--eg-primary); color: #fff; font-size: 13px; font-weight: 800; cursor: pointer; box-shadow: 0 10px 22px rgba(37,99,235,.25); }
.eg-search-submit:hover { background: var(--eg-primary-dark); transform: translateY(-1px); }
.eg-search-submit svg { width: 18px; height: 18px; }
.eg-search-category-panel { position: relative; top: 16px; min-height: 101px; display: grid; grid-template-columns: repeat(8,minmax(105px,1fr)); gap: 10px; padding: 11px; border: 1px solid #e8edf4; border-radius: 14px; background: rgba(255,255,255,.98); color: var(--eg-text); box-shadow: 0 15px 38px rgba(14,36,68,.12); }
.eg-search-category { min-width: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 9px 7px; border: 1px solid transparent; border-radius: 10px; color: #17304f; font-size: 11px; font-weight: 720; text-align: center; }
.eg-search-category svg { width: 26px; height: 26px; color: var(--eg-primary); stroke-width: 1.6; }
.eg-search-category:hover { background: #f7faff; color: var(--eg-primary); }
.eg-search-category.is-active { border-color: var(--eg-primary); background: #f8fbff; color: var(--eg-primary); box-shadow: 0 0 0 2px rgba(37,99,235,.11); }
.eg-search-category span { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.eg-search-results-shell { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-top: 58px; padding: 9px 14px; border: 1px solid var(--eg-line); border-radius: 12px; background: #fff; box-shadow: 0 6px 20px rgba(14,36,68,.04); }
.eg-search-tabs { min-width: 0; display: flex; align-items: center; gap: 7px; overflow-x: auto; scrollbar-width: none; }
.eg-search-tabs::-webkit-scrollbar { display: none; }
.eg-search-tabs a { position: relative; min-height: 44px; display: inline-flex; align-items: center; gap: 7px; padding: 0 13px; border-radius: 9px; color: #314866; font-size: 11px; font-weight: 750; white-space: nowrap; }
.eg-search-tabs a::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: -9px; height: 2px; border-radius: 999px; background: var(--eg-primary); transform: scaleX(0); transition: transform .2s ease; }
.eg-search-tabs a:hover,
.eg-search-tabs a.is-active { color: var(--eg-primary); background: #f7faff; }
.eg-search-tabs a.is-active::after { transform: scaleX(1); }
.eg-search-tabs svg { width: 19px; height: 19px; }
.eg-search-tabs strong { min-width: 31px; padding: 3px 7px; border-radius: 999px; background: #f1f5fb; color: #58708e; font-size: 9px; text-align: center; }
.eg-search-tabs a.is-active strong { background: #edf4ff; color: var(--eg-primary); }
.eg-search-result-copy { flex: 0 0 auto; margin: 0; color: #263d5a; font-size: 11px; white-space: nowrap; }

.eg-search-section { padding-top: 27px; }
.eg-search-section-heading { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 12px; }
.eg-search-section-heading h2 { margin: 0; color: #102844; font-size: 18px; line-height: 1.25; letter-spacing: -.015em; }
.eg-search-section-heading > a { display: inline-flex; align-items: center; gap: 5px; color: var(--eg-primary); font-size: 10px; font-weight: 800; white-space: nowrap; }
.eg-search-section-heading > a svg { width: 14px; height: 14px; }
.eg-search-track-shell { position: relative; }
.eg-search-place-track { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 64px) / 5); gap: 16px; overflow-x: auto; padding: 1px 1px 8px; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; }
.eg-search-place-track::-webkit-scrollbar { display: none; }
.eg-search-place-card { min-width: 0; overflow: hidden; border: 1px solid var(--eg-line); border-radius: 11px; background: #fff; box-shadow: 0 5px 15px rgba(14,36,68,.045); scroll-snap-align: start; }
.eg-search-place-media { position: relative; height: 184px; display: block; overflow: hidden; background: #e6edf5; }
.eg-search-place-media picture,
.eg-search-place-media img { width: 100%; height: 100%; }
.eg-search-place-media img { object-fit: cover; transition: transform .4s ease; }
.eg-search-place-card:hover .eg-search-place-media img { transform: scale(1.04); }
.eg-search-place-badge { position: absolute; top: 10px; left: 10px; z-index: 2; max-width: calc(100% - 58px); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; padding: 4px 8px; border-radius: 999px; background: rgba(255,255,255,.90); color: #2d4867; font-size: 9px; font-weight: 800; backdrop-filter: blur(7px); }
.eg-search-favorite { position: absolute; top: 8px; right: 8px; z-index: 3; width: 32px; height: 32px; display: grid; place-items: center; padding: 0; border: 0; border-radius: 50%; background: rgba(10,24,39,.46); color: #fff; cursor: pointer; backdrop-filter: blur(7px); }
.eg-search-favorite svg { width: 17px; height: 17px; }
.eg-search-favorite[aria-pressed="true"] { color: #ff6b78; background: rgba(255,255,255,.94); }
.eg-search-favorite[aria-pressed="true"] svg { fill: currentColor; }
.eg-search-place-body { padding: 11px 12px 13px; }
.eg-search-place-body h3 { margin: 0 0 3px; font-size: 13px; line-height: 1.28; }
.eg-search-place-body h3 a:hover { color: var(--eg-primary); }
.eg-search-place-body > p { min-height: 33px; margin: 0 0 7px; color: #596b82; font-size: 9.5px; line-height: 1.45; }
.eg-search-place-location { display: flex; align-items: center; gap: 4px; margin-bottom: 6px; color: #6b7c91; font-size: 9px; }
.eg-search-place-location svg { width: 12px; height: 12px; color: var(--eg-primary); }
.eg-search-place-rating { display: flex; align-items: center; gap: 5px; margin-bottom: 7px; font-size: 9px; }
.eg-search-place-rating span { display: inline-flex; align-items: center; gap: 3px; color: var(--eg-primary); font-weight: 850; }
.eg-search-place-rating span svg { width: 11px; height: 11px; fill: currentColor; }
.eg-search-place-rating small { color: #7c8a9c; }
.eg-search-details-link { display: inline-flex; align-items: center; gap: 4px; color: var(--eg-primary); font-size: 10px; font-weight: 800; }
.eg-search-details-link svg { width: 13px; height: 13px; }
.eg-search-scroll-next { position: absolute; right: -18px; top: 50%; z-index: 5; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid #dae4f0; border-radius: 50%; background: #fff; color: var(--eg-primary); box-shadow: 0 8px 20px rgba(14,36,68,.12); cursor: pointer; transform: translateY(-50%); }
.eg-search-scroll-next:hover { background: #f5f9ff; transform: translateY(-50%) scale(1.04); }
.eg-search-scroll-next svg { width: 18px; height: 18px; }

.eg-search-city-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
.eg-search-city-card { min-width: 0; overflow: hidden; border-radius: 11px; background: #d9e4ef; box-shadow: 0 7px 18px rgba(14,36,68,.08); }
.eg-search-city-card > a { position: relative; height: 176px; display: block; overflow: hidden; }
.eg-search-city-card picture,
.eg-search-city-card img { width: 100%; height: 100%; }
.eg-search-city-card img { object-fit: cover; transition: transform .45s ease; }
.eg-search-city-card:hover img { transform: scale(1.04); }
.eg-search-city-overlay { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(4,17,31,.82),rgba(4,17,31,.22) 73%), linear-gradient(0deg,rgba(4,17,31,.45),transparent 55%); }
.eg-search-city-copy { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 17px; color: #fff; }
.eg-search-city-copy h3 { margin: 0 0 3px; font-size: 20px; line-height: 1.1; }
.eg-search-city-copy p { max-width: 220px; margin: 0 0 6px; color: rgba(255,255,255,.88); font-size: 10px; line-height: 1.35; }
.eg-search-city-copy strong { margin-bottom: 8px; padding: 3px 7px; border: 1px solid rgba(255,255,255,.42); border-radius: 999px; background: rgba(0,0,0,.22); font-size: 8px; }
.eg-search-city-copy > span { display: inline-flex; align-items: center; gap: 5px; padding: 6px 10px; border-radius: 6px; background: #fff; color: var(--eg-primary); font-size: 9px; font-weight: 850; }
.eg-search-city-copy > span svg { width: 12px; height: 12px; }

.eg-search-article-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
.eg-search-article-card { min-width: 0; display: grid; grid-template-columns: 132px 1fr; overflow: hidden; border: 1px solid var(--eg-line); border-radius: 10px; background: #fff; box-shadow: 0 4px 14px rgba(14,36,68,.035); }
.eg-search-article-media { min-height: 143px; overflow: hidden; background: #e7edf4; }
.eg-search-article-media picture,
.eg-search-article-media img { width: 100%; height: 100%; }
.eg-search-article-media img { object-fit: cover; transition: transform .4s ease; }
.eg-search-article-card:hover .eg-search-article-media img { transform: scale(1.04); }
.eg-search-article-body { min-width: 0; padding: 11px 12px; }
.eg-search-article-body > span { display: block; margin-bottom: 4px; color: var(--eg-primary); font-size: 8px; font-weight: 850; }
.eg-search-article-body h3 { margin: 0 0 5px; font-size: 13px; line-height: 1.3; }
.eg-search-article-body h3 a:hover { color: var(--eg-primary); }
.eg-search-article-body p { margin: 0 0 7px; color: #62738a; font-size: 9px; line-height: 1.45; }
.eg-search-article-body > a { display: inline-flex; align-items: center; gap: 4px; color: var(--eg-primary); font-size: 9px; font-weight: 850; }
.eg-search-article-body > a svg { width: 12px; height: 12px; }

.eg-search-topics { padding-top: 25px; }
.eg-search-topic-list { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 5px; scrollbar-width: thin; }
.eg-search-topic-list a { min-height: 44px; display: inline-flex; align-items: center; gap: 8px; flex: 0 0 auto; padding: 0 14px; border: 1px solid var(--eg-line); border-radius: 9px; background: #fff; color: #334d6c; font-size: 10px; font-weight: 700; }
.eg-search-topic-list a:hover { border-color: #b8ccf8; background: #f7faff; color: var(--eg-primary); }
.eg-search-topic-list svg { width: 18px; height: 18px; color: var(--eg-primary); }
.eg-search-faq { padding-bottom: 36px; }
.eg-search-faq-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; }
.eg-search-faq-grid details { border: 1px solid var(--eg-line); border-radius: 9px; background: #fff; }
.eg-search-faq-grid summary { position: relative; list-style: none; cursor: pointer; min-height: 46px; padding: 13px 35px 11px 13px; color: #263d5a; font-size: 9.5px; font-weight: 750; }
.eg-search-faq-grid summary::-webkit-details-marker { display: none; }
.eg-search-faq-grid summary span::before,
.eg-search-faq-grid summary span::after { content: ""; position: absolute; right: 13px; top: 22px; width: 9px; height: 1.4px; background: #6f8198; transition: transform .2s ease; }
.eg-search-faq-grid summary span::after { transform: rotate(90deg); }
.eg-search-faq-grid details[open] summary span::after { transform: rotate(0); }
.eg-search-faq-grid details p { margin: 0; padding: 0 13px 13px; color: #64758a; font-size: 9px; line-height: 1.5; }
.eg-search-empty { min-height: 210px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 28px; border: 1px dashed #cbd7e5; border-radius: 12px; background: #fbfdff; color: #61738a; text-align: center; }
.eg-search-empty > svg { width: 34px; height: 34px; margin-bottom: 8px; color: var(--eg-primary); }
.eg-search-empty h3 { margin: 0 0 5px; color: #17304f; font-size: 16px; }
.eg-search-empty p { margin: 0 0 10px; font-size: 11px; }
.eg-search-empty a { color: var(--eg-primary); font-size: 11px; font-weight: 800; }
.eg-search-empty-compact { min-height: 90px; }
.eg-search-empty-compact p { margin: 0; }

@media (max-width: 1240px) {
  .eg-search-form { grid-template-columns: minmax(230px,1fr) 200px 200px 120px; }
  .eg-search-category-panel { grid-template-columns: repeat(8,minmax(92px,1fr)); }
  .eg-search-place-track { grid-auto-columns: calc((100% - 48px) / 4); }
  .eg-search-article-card { grid-template-columns: 112px 1fr; }
}

@media (max-width: 980px) {
  .eg-search-hero { min-height: 470px; }
  .eg-search-form { grid-template-columns: 1fr 1fr; gap: 0; }
  .eg-search-query-field { grid-column: 1 / -1; border-right: 0; border-bottom: 1px solid var(--eg-line); }
  .eg-search-select-field:nth-of-type(3) { border-right: 0; }
  .eg-search-submit { grid-column: 1 / -1; margin-top: 8px; }
  .eg-search-category-panel { display: flex; min-height: 92px; overflow-x: auto; scroll-snap-type: x mandatory; }
  .eg-search-category { flex: 0 0 116px; scroll-snap-align: start; }
  .eg-search-results-shell { align-items: flex-start; flex-direction: column; }
  .eg-search-result-copy { padding-left: 7px; white-space: normal; }
  .eg-search-place-track { grid-auto-columns: calc((100% - 32px) / 3); }
  .eg-search-city-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .eg-search-article-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .eg-search-faq-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 700px) {
  .eg-search-hero { min-height: 570px; }
  .eg-search-hero-inner { padding-top: 22px; }
  .eg-search-intro h1 { font-size: 33px; }
  .eg-search-intro p { font-size: 14px; }
  .eg-search-form { display: block; padding: 8px; }
  .eg-search-query-field,
  .eg-search-select-field { border-right: 0; border-bottom: 1px solid var(--eg-line); }
  .eg-search-select-field:nth-of-type(3) { border-bottom: 0; }
  .eg-search-submit { width: 100%; margin-top: 8px; }
  .eg-search-category-panel { top: 13px; }
  .eg-search-results-shell { margin-top: 48px; }
  .eg-search-tabs { width: 100%; }
  .eg-search-tabs a { padding-inline: 10px; }
  .eg-search-place-track { grid-auto-columns: 46%; gap: 12px; }
  .eg-search-scroll-next { display: none; }
  .eg-search-city-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 7px; }
  .eg-search-city-card { flex: 0 0 82%; scroll-snap-align: start; }
  .eg-search-article-grid { grid-template-columns: 1fr; }
  .eg-search-faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 470px) {
  .eg-search-hero { min-height: 610px; }
  .eg-search-intro h1 { font-size: 29px; }
  .eg-search-category { flex-basis: 104px; }
  .eg-search-place-track { grid-auto-columns: 82%; }
  .eg-search-place-media { height: 205px; }
  .eg-search-section-heading { align-items: flex-start; }
  .eg-search-section-heading > a { white-space: normal; text-align: right; }
  .eg-search-article-card { grid-template-columns: 105px 1fr; }
  .eg-search-article-media { min-height: 155px; }
}

@media (prefers-reduced-motion: reduce) {
  .eg-search-place-track { scroll-behavior: auto; }
}
.eg-search-place-cover-link { position: absolute; inset: 0; z-index: 1; }
