.topbar {
  background: var(--forest-deep);
  color: #e7f3ec;
  font-size: 13px;
  letter-spacing: .04em;
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 38px;
}
.topbar p { margin: 0; opacity: .85; }
.topbar-links { display: flex; align-items: center; gap: 16px; }
.topbar a { color: #f0d9a0; font-weight: 600; }
.topbar .lang-switch select {
  background: transparent; border-color: rgba(232,195,106,.4); color: #fff;
  min-width: 64px; padding: 4px 22px 4px 8px;
}

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(7, 38, 30, .96);
  backdrop-filter: blur(16px);
  color: #fff;
  border-bottom: 1px solid rgba(232, 195, 106, .18);
}
.header-inner { min-height: 84px; }
.brand { gap: 10px; color: #fff; min-width: 0; }
.brand img {
  height: 52px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}
.nav > li > a {
  color: #fff; text-transform: none; letter-spacing: .02em;
  font-weight: 600; font-size: 15px; border-bottom-color: transparent;
}
.nav > li:hover > a, .nav > li:focus-within > a,
.nav > li.is-current > a, .nav > li.is-open > a {
  color: var(--gold); border-bottom-color: var(--gold);
}
.mega-toggle { color: #fff; }
.header-cta { padding: 10px 18px; border-radius: 999px; }
.menu-toggle {
  color: #fff;
  border-color: rgba(255,255,255,.3);
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  background: #fff;
}

.btn { border-radius: 999px; background: var(--accent); }
.btn:hover { background: var(--forest-deep); }
.btn.dark { background: var(--forest); }
.btn.ghost-ink {
  background: transparent; color: var(--forest);
  border: 1px solid rgba(15,76,58,.28);
}
.btn.ghost-ink:hover { background: var(--forest); color: #fff; border-color: var(--forest); }

.hero-split {
  display: grid; grid-template-columns: .92fr 1.08fr;
  min-height: calc(100vh - 116px);
  background: var(--cream);
}
.hero-copy {
  padding: clamp(36px, 6vw, 88px) 0 clamp(36px, 6vw, 88px) max(24px, calc((100vw - var(--max)) / 2));
  padding-right: 36px; display: flex; flex-direction: column; justify-content: center;
}
.hero-copy h1 {
  font-family: var(--serif); font-size: clamp(42px, 6vw, 78px);
  margin: 10px 0 18px; color: var(--forest-deep); letter-spacing: -.03em;
}
.hero-lead { font-size: 18px; max-width: 46ch; color: var(--muted); }
.hero-stats { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 10px; }
.hero-stats li { font-size: 15px; color: var(--muted); }
.hero-stats strong { color: var(--forest); margin-right: 6px; }
.hero-visual {
  position: relative; min-height: 560px; overflow: hidden;
  background: var(--forest-deep);
}
.hero-stack { position: absolute; inset: 0; }
.hero-main {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity 1.1s ease;
}
.hero-main.is-active { opacity: 1; }
.hero-polaroid {
  position: absolute; left: 28px; bottom: 36px; z-index: 2;
  width: min(240px, 38%); margin: 0; padding: 10px 10px 28px;
  background: #fff; box-shadow: var(--shadow); transform: rotate(-4deg);
}
.hero-polaroid img { width: 100%; height: 160px; object-fit: cover; }
.hero-polaroid figcaption {
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); margin-top: 8px;
}
.hero-visual .hero-caption {
  position: absolute; right: 24px; bottom: 22px; z-index: 2; margin: 0;
  color: #fff; font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
}

.marquee {
  background: var(--forest); color: var(--gold-soft);
  overflow: hidden; border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.marquee-track {
  display: flex; gap: 48px; padding: 14px 0;
  width: max-content; animation: sejovaMarquee 28s linear infinite;
  font-family: var(--display); letter-spacing: .22em; text-transform: uppercase; font-size: 13px;
}
@keyframes sejovaMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.journey-head {
  display: flex; justify-content: space-between; gap: 24px; align-items: end;
  margin-bottom: 28px;
}
.journey-head h2 { margin: 8px 0 0; font-size: clamp(32px, 4vw, 52px); }
.journey-head p { max-width: 36ch; color: var(--muted); }
.journey-rail {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
}
.journey-card {
  position: relative; min-height: 240px; border-radius: 20px; overflow: hidden; color: #fff;
  box-shadow: var(--shadow);
}
.journey-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.journey-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(7,38,30,.88));
}
.journey-num, .journey-card strong { position: relative; z-index: 1; display: block; padding: 0 16px; }
.journey-num {
  font-family: var(--serif); font-size: 42px; padding-top: 110px; color: var(--gold);
}
.journey-card strong { padding-bottom: 18px; font-size: 15px; }

.bento {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: 220px 220px;
  gap: 14px;
}
.bento-item {
  position: relative; overflow: hidden; border-radius: 22px; color: #fff; min-height: 220px;
}
.bento-item.is-hero { grid-row: span 2; min-height: 454px; }
.bento-item.is-wide { grid-column: span 2; }
.bento-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.bento-item:hover img { transform: scale(1.06); }
.bento-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(7,38,30,.86));
}
.bento-item span {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 18px 20px;
}
.bento-item strong { display: block; font-family: var(--serif); font-size: 26px; }
.bento-item em { font-style: normal; color: #e7f3ec; font-size: 14px; }

.featured-editorial { background: var(--cream); }
.featured-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: start; }
.featured-list { display: grid; gap: 12px; }
.featured-row {
  display: grid; grid-template-columns: 120px 1fr; gap: 16px; align-items: center;
  background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid var(--line);
}
.featured-row.is-lead { grid-template-columns: 220px 1fr; }
.featured-row img { width: 100%; height: 92px; object-fit: cover; }
.featured-row.is-lead img { height: 140px; }
.featured-row span { padding-right: 16px; }
.featured-row em { display: block; color: var(--accent); font-style: normal; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.featured-row strong { display: block; font-family: var(--serif); font-size: 22px; color: var(--forest); }

.place-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  align-items: end;
}
.place-card {
  position: relative; min-height: 380px; border-radius: 28px 28px 8px 8px;
  overflow: hidden; color: #fff;
}
.place-card:nth-child(even) { min-height: 320px; margin-bottom: 40px; }
.place-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.place-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent, rgba(7,38,30,.82));
}
.place-card span { position: relative; z-index: 1; display: block; padding: 220px 20px 22px; }
.place-card strong { display: block; font-family: var(--serif); font-size: 32px; }
.place-card em { font-style: normal; color: #e7f3ec; font-size: 14px; }

.plan-panel { background: var(--forest-deep); color: #e7f3ec; padding: 72px 0; }
.plan-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 36px; align-items: center; }
.plan-photo { margin: 0; border-radius: 28px; overflow: hidden; min-height: 420px; }
.plan-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.plan-copy h2 { color: #fff; font-size: clamp(32px, 4vw, 48px); }
.plan-copy .why-list li { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); color: #e7f3ec; }
.plan-copy .form { background: var(--cream); color: var(--ink); }
.plan-copy .eyebrow { color: var(--gold); text-shadow: none; }

.prefooter { background: var(--cream); padding: 0 0 24px; }
.prefooter-card {
  background: #fff; border-radius: 28px; padding: 32px;
  box-shadow: var(--shadow); display: grid; gap: 18px;
  transform: translateY(42px); position: relative; z-index: 2;
}
.prefooter-card h2 { margin: 8px 0 0; font-size: clamp(26px, 3vw, 36px); color: var(--forest); }
.footer-news-form { grid-template-columns: 1fr 1fr 1fr 1fr auto; }

.site-footer { background: var(--forest-deep); padding: 72px 0 0; }
.footer-top {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; padding-top: 28px;
}
.footer-brand-link { display: inline-block; max-width: 100%; }
.footer-statement .footer-logo {
  display: block;
  height: 64px;
  width: auto;
  max-width: min(360px, 100%);
  object-fit: contain;
  object-position: left center;
  margin-bottom: 16px;
}
.footer-statement h2 {
  font-size: clamp(32px, 4vw, 48px); color: #fff; margin: 8px 0 14px;
}
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.footer-contact { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.partner-logos {
  margin-top: 36px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.08);
  filter: grayscale(1) brightness(1.4);
}
.footer-bottom-bar { background: #041512; margin-top: 0; }
.footer-bottom p { margin: 0; color: #9bb5ab; font-size: 13px; }

.mega-inner { border-radius: 18px; }
.mega-tabs button, .mega-tab-link { border-radius: 999px; }
.mega-card { border-radius: 14px; }
.affiliates { background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); }
.guides-col h3 { border-bottom-color: var(--accent); }

@media (max-width: 1080px) {
  .topbar { display: none; }
  .hero-split, .journey-rail, .bento, .featured-grid, .place-row, .plan-grid, .footer-top, .footer-cols, .journey-head {
    grid-template-columns: 1fr !important;
  }
  .hero-copy { padding: 36px 20px 28px; }
  .hero-visual { min-height: 340px; }
  .hero-polaroid { display: none; }
  .hero-visual .hero-caption {
    left: 0;
    right: 0;
    bottom: 0;
    padding: 36px 16px 14px;
    background: linear-gradient(180deg, transparent, rgba(7,38,30,.72));
    font-size: 11px;
    letter-spacing: .12em;
  }
  .bento-item.is-hero, .bento-item.is-wide { grid-row: auto; grid-column: auto; min-height: 240px; }
  .place-card, .place-card:nth-child(even) { min-height: 280px; margin: 0; }
  .place-card span { padding-top: 140px; }
  .prefooter-card { transform: none; margin-top: 24px; }
  .nav {
    background: var(--forest-deep);
  }
  .nav > li > a { color: #fff; }
  .header-inner {
    min-height: 56px;
    gap: 8px;
  }
  .brand {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 108px);
  }
  .brand img {
    height: auto;
    max-height: 40px;
    width: auto;
    max-width: 100%;
  }
  .header-tools { gap: 6px; flex-shrink: 0; }
  .header-cta { display: none; }
  .wa-icon { width: 36px; height: 36px; }
  .menu-toggle { width: 40px; height: 40px; }
}
@media (max-width: 520px) {
  .header-inner { min-height: 52px; gap: 6px; }
  .brand { max-width: calc(100% - 96px); }
  .brand img { max-height: 34px; }
  .wa-icon { width: 34px; height: 34px; }
  .wa-icon .wa-svg { width: 16px; height: 16px; }
  .menu-toggle { width: 38px; height: 38px; }
  .footer-statement .footer-logo { height: 48px; }
  .hero-visual { min-height: 280px; }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}
