/* ===== Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; overflow: hidden; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { font-family: var(--font); background: var(--paper); color: var(--ink); font-variant-numeric: lining-nums proportional-nums; font-feature-settings: "lnum" 1, "pnum" 1; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; user-select: none; -webkit-user-drag: none; }
:root {
  --accent: #c8a875;
  --accent-soft: #e9d9b8;
  --bg-warm: #b08a52;
  --ink: #1a1612;
  --paper: #f7f2ea;
  --font: serif;
  --pad-x: clamp(40px, 5vw, 96px);
}

.app { position: fixed; inset: 0; overflow: hidden; }

.stack { position: absolute; top: 0; left: 0; right: 0; will-change: transform; }
.panel { position: relative; height: 100vh; width: 100%; overflow: hidden; }
.panel--footer { height: 100vh; min-height: 720px; background: #9b7648 !important; color: var(--paper); }

/* ===== Reveal Animations ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 900ms cubic-bezier(.2,.7,.2,1), transform 1100ms cubic-bezier(.2,.7,.2,1); }
.panel.is-in .reveal { opacity: 1; transform: none; }
.panel.is-in .r1 { transition-delay: 240ms; }
.panel.is-in .r2 { transition-delay: 380ms; }
.panel.is-in .r3 { transition-delay: 520ms; }
.panel.is-in .r4 { transition-delay: 660ms; }
.panel.is-in .r5 { transition-delay: 800ms; }
.panel.is-in .r6 { transition-delay: 940ms; }

/* Common */
.kicker { font-family: "Cormorant Garamond", "Noto Serif SC", serif; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; opacity: .7; display: inline-block; }
.kicker--light { color: var(--accent-soft); opacity: .9; }

/* ===== Nav ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: transform 500ms ease, color 400ms ease; }
.nav--hide { transform: translateY(-110%); }
.nav--show { transform: translateY(0); }
.nav--on-dark   { color: #f4ece0; }
.nav--on-light  { color: var(--ink); }
.nav--on-solid  { color: var(--ink); }
.nav--on-mega   { color: var(--ink); }

/* Base background layer — under the inner row */
.nav__bg { position: absolute; inset: 0; pointer-events: none; transition: background .4s ease, backdrop-filter .4s ease; }
.nav--transparent .nav__bg { background: linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,0)); }
.nav--on-light.nav--transparent .nav__bg { background: linear-gradient(to bottom, rgba(255,255,255,.6), rgba(255,255,255,0)); }
.nav--solid .nav__bg { background: var(--paper); border-bottom: 1px solid rgba(0,0,0,.06); }
.nav--minimal .nav__bg { background: transparent; }
/* Mega open — overrides everything */
.nav--mega-open .nav__bg { background: rgba(255,255,255,.88); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px); }

.nav__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 22px var(--pad-x); position: relative; z-index: 2; }
.nav__logo { display: inline-flex; align-items: baseline; gap: 10px; justify-self: start; }
.nav__logo-mark { color: var(--accent); font-size: 18px; transform: translateY(2px); }
.nav__logo-text { font-family: "Cormorant Garamond", "Noto Serif SC", serif; font-size: 22px; letter-spacing: .14em; font-weight: 500; }
.nav__logo-sub { font-size: 11px; letter-spacing: .3em; opacity: .55; }

.nav__links { display: flex; gap: 36px; justify-self: center; align-items: center; }
.nav__link { position: relative; width: 96px; text-align: center; }
.nav__link > a { display: inline-block; font-size: 18px; letter-spacing: .14em; position: relative; padding: 6px 0; }
.nav__link > a::after { content:""; position: absolute; left: 50%; right: 50%; bottom: 0; height: 1px; background: currentColor; transition: left .3s, right .3s; opacity: .8; }
.nav__link.is-hover > a::after,
.nav__link > a:hover::after { left: 0; right: 0; }

/* Mega panel - full width strip below the nav row */
.nav__mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  color: var(--ink);
  border-top: 1px solid rgba(0,0,0,.04);
  max-height: 0; overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1), opacity .25s;
  opacity: 0;
  pointer-events: none;
}
.nav__mega.is-open { max-height: 360px; opacity: 1; pointer-events: auto; }
.nav__mega-inner { padding: 24px var(--pad-x) 36px; }
.nav__mega-cols { display: flex; gap: 36px; justify-content: center; align-items: flex-start; }
.nav__mega-col { display: flex; flex-direction: column; width: 96px; flex: 0 0 96px; }
.nav__mega-col a {
  display: block;
  padding: 7px 0;
  font-family: "Noto Serif SC", serif;
  font-size: 15px;
  letter-spacing: .04em;
  color: rgba(26,22,18,.78);
  text-align: center;
  white-space: nowrap;
  transition: color .2s, transform .2s;
  opacity: 0;
  transform: translateY(6px);
}
.nav__mega.is-open .nav__mega-col a { opacity: 1; transform: none; transition: color .2s, transform .35s cubic-bezier(.2,.7,.2,1), opacity .35s; }
.nav__mega.is-open .nav__mega-col a:nth-child(1) { transition-delay: .04s; }
.nav__mega.is-open .nav__mega-col a:nth-child(2) { transition-delay: .09s; }
.nav__mega.is-open .nav__mega-col a:nth-child(3) { transition-delay: .14s; }
.nav__mega.is-open .nav__mega-col a:nth-child(4) { transition-delay: .19s; }
.nav__mega-col a:hover { color: var(--accent); }

.nav__right { display: inline-flex; gap: 18px; align-items: center; justify-self: end; }
.nav__right button { display: inline-flex; align-items: center; gap: 6px; opacity: .85; transition: opacity .25s; }
.nav__right button:hover { opacity: 1; }
.nav__locale span { font-size: 12px; letter-spacing: .12em; }

/* ===== Indicator ===== */
.ind { position: fixed; z-index: 95; }
.ind--right { right: 32px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 14px; }
.ind__item { display: flex; align-items: center; gap: 10px; padding: 4px 0; color: var(--ink); position: relative; }
.panel--hero ~ * .ind__item { color: inherit; }
.ind__label { font-family: "Cormorant Garamond", "Noto Serif SC", serif; font-size: 10px; letter-spacing: .28em; text-transform: uppercase; opacity: 0; transform: translateX(8px); transition: opacity .25s, transform .25s; color: var(--ink); }
.ind:hover .ind__label, .ind__item.is-active .ind__label { opacity: .8; transform: translateX(0); }
.ind__dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(0,0,0,.25); transition: background .3s, transform .3s; }
.ind__item.is-active .ind__dot { background: var(--accent); transform: scale(1.6); }
.ind__line { width: 24px; height: 1px; background: rgba(0,0,0,.25); transition: width .3s, background .3s; }
.ind__item.is-active .ind__line { background: var(--accent); width: 40px; }

.ind--counter { left: 40px; bottom: 32px; font-family: "Cormorant Garamond", "Noto Serif SC", serif; color: inherit; mix-blend-mode: difference; color: #fff; display: flex; align-items: baseline; gap: 6px; }
.ind__current { font-size: 36px; line-height: 1; }
.ind__sep { font-size: 24px; opacity: .5; }
.ind__total { font-size: 16px; opacity: .7; letter-spacing: .1em; }

/* Right-side dots: use a soft inverting strategy that works on both light + dark panels */
.ind--right { mix-blend-mode: normal; }
.ind--right .ind__dot {
  background: rgba(0,0,0,.32);
  transition: background .3s, transform .3s;
}
.ind--right .ind__item.is-active .ind__dot { background: var(--accent); }
.ind--right .ind__line { background: rgba(0,0,0,.32); }
.ind--right .ind__item.is-active .ind__line { background: var(--accent); }
.ind--right .ind__label { color: inherit; }

/* On dark panels (hero, cabin, footer) flip dot color and use pure white for active */
.app:has(.panel--hero.is-in) .ind--right .ind__dot,
.app:has(.panel--cabin.is-in) .ind--right .ind__dot,
.app:has(.panel--footer.is-in) .ind--right .ind__dot {
  background: rgba(255,255,255,.4);
}
.app:has(.panel--hero.is-in) .ind--right .ind__item.is-active .ind__dot,
.app:has(.panel--cabin.is-in) .ind--right .ind__item.is-active .ind__dot,
.app:has(.panel--footer.is-in) .ind--right .ind__item.is-active .ind__dot {
  background: #ffffff;
}
.app:has(.panel--hero.is-in) .ind--right .ind__line,
.app:has(.panel--cabin.is-in) .ind--right .ind__line,
.app:has(.panel--footer.is-in) .ind--right .ind__line {
  background: rgba(255,255,255,.4);
}
.app:has(.panel--hero.is-in) .ind--right .ind__item.is-active .ind__line,
.app:has(.panel--cabin.is-in) .ind--right .ind__item.is-active .ind__line,
.app:has(.panel--footer.is-in) .ind--right .ind__item.is-active .ind__line {
  background: #ffffff;
}
.app:has(.panel--hero.is-in) .ind--right .ind__label,
.app:has(.panel--cabin.is-in) .ind--right .ind__label,
.app:has(.panel--footer.is-in) .ind--right .ind__label {
  color: rgba(255,255,255,.9);
}

/* ===== Hero ===== */
.panel--hero { background: #0a0a0a; color: #f4ece0; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; transition: transform 1.6s cubic-bezier(.2,.7,.2,1); }
.hero__bg img { width: 100%; height: auto; min-height: 100%; object-fit: cover; flex-shrink: 0; }
.panel--hero.is-in .hero__bg { animation: heroZoom 18s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__vignette { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.35) 0%, rgba(0,0,0,0) 25%, rgba(0,0,0,0) 45%, rgba(0,0,0,.55) 75%, rgba(0,0,0,.85) 100%); }

.hero__content { position: absolute; left: 50%; bottom: 40px; transform: translateX(-50%); z-index: 2; width: 100%; max-width: 1440px; text-align: center; padding: 0 40px; }
.hero__title { margin: 0 0 32px; font-weight: 400; line-height: 1; }
.hero__title em { font-style: normal; font-size: 44px; letter-spacing: .06em; color: #fff; font-family: "Cormorant Garamond", "Noto Serif SC", serif; display: inline-block; }

/* Hero booking bar */
.hero__booking { display: inline-flex; gap: 8px; align-items: stretch; position: relative; }
.hero__field { position: relative; }
.hero__field-btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 22px; min-width: 200px;
  background: rgba(15,12,8,.32);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.55);
  color: #fff;
  font-family: "Noto Serif SC", "Cormorant Garamond", serif;
  font-size: 14px;
  letter-spacing: .04em;
  transition: background .3s, border-color .3s;
  text-align: left;
}
.hero__field-btn:hover { background: rgba(15,12,8,.48); border-color: #fff; }
.hero__field-label { font-size: 11px; letter-spacing: .2em; opacity: .65; margin-right: 4px; }
.hero__field-value { flex: 1; font-size: 14px; letter-spacing: .04em; }
.hero__field--city .hero__field-btn { min-width: 160px; }
.hero__field--date .hero__field-btn { min-width: 280px; }

/* Trip toggle button */
.hero__trip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  align-self: center;
  margin: 0 4px;
  background: var(--accent);
  border: 1px solid var(--accent);
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 20px; line-height: 1;
  transition: background .25s, transform .35s cubic-bezier(.4,0,.2,1);
}
.hero__trip:hover { background: #fff; border-color: #fff; transform: scale(1.08); }
.hero__trip-icon { display: inline-block; transition: transform .35s cubic-bezier(.4,0,.2,1); position: relative; top: 2px; }
.hero__trip--one-way .hero__trip-icon { top: 0; }

.hero__book-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 14px 28px; min-width: 160px;
  background: #fff; color: var(--ink);
  font-family: "Noto Serif SC", "Cormorant Garamond", serif;
  font-size: 14px; letter-spacing: .12em;
  border: 1px solid #fff;
  transition: background .3s, color .3s, border-color .3s, gap .3s;
}
.hero__book-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); gap: 16px; }

/* Popovers */
.hero__pop {
  position: absolute; bottom: calc(100% + 10px); left: 0;
  background: rgba(15,12,8,.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.18);
  padding: 12px;
  z-index: 6;
  animation: popIn .25s cubic-bezier(.4,0,.2,1) both;
  text-align: left;
}
@keyframes popIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* City popover */
.hero__pop--city { min-width: 320px; padding: 18px 20px; display: flex; flex-direction: column; gap: 18px; }
.hero__pop-group-label { font-family: "Cormorant Garamond", serif; font-size: 11px; letter-spacing: .3em; color: var(--accent); opacity: .85; margin-bottom: 8px; text-align: center; }
.hero__pop-group-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.hero__pop-city {
  padding: 10px 12px;
  font-family: "Noto Serif SC", serif; font-size: 14px;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.04);
  border: 1px solid transparent;
  transition: background .2s, color .2s, border-color .2s;
}
.hero__pop-city:hover:not(:disabled) { background: rgba(200,168,117,.18); color: #fff; }
.hero__pop-city.is-active { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.hero__pop-city.is-disabled { opacity: .28; cursor: not-allowed; text-decoration: line-through; }

/* Date popover */
.hero__pop--date { display: flex; flex-direction: column; padding: 20px 28px 24px; min-width: 720px; }
.hero__pop-hint { font-family: "Noto Serif SC", serif; font-size: 12px; color: var(--accent); letter-spacing: .12em; text-align: center; margin-bottom: 14px; opacity: .9; }
.hero__pop-cals { display: flex; gap: 28px; }
.cal { width: 220px; color: #fff; }
.cal__head { font-family: "Noto Serif SC", serif; font-size: 14px; margin-bottom: 14px; opacity: .9; text-align: center; }
.cal__weeks { display: grid; grid-template-columns: repeat(7, 1fr); margin-bottom: 6px; }
.cal__weeks span { text-align: center; font-size: 11px; opacity: .55; font-family: "Noto Serif SC", serif; padding: 4px 0; }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal__cell {
  height: 28px;
  font-family: "Cormorant Garamond", "Noto Serif SC", serif;
  font-size: 13px;
  color: rgba(255,255,255,.22);
  background: transparent;
  border-radius: 2px;
  cursor: default;
}
.cal__cell--empty { background: none; }
.cal__cell.is-valid { color: rgba(255,255,255,.88); cursor: pointer; }
.cal__cell.is-valid:hover { background: rgba(200,168,117,.22); color: #fff; }
.cal__cell.is-sel { background: var(--accent); color: var(--ink); }
.cal__cell.is-sel:hover { background: var(--accent); color: var(--ink); }
.cal__cell.is-range { background: rgba(200,168,117,.22); color: #fff; }
.cal__cell.is-depart { background: var(--accent); }
.cal__cell.is-return { background: var(--accent); }

/* ===== Split (brand intro · Bulgari-style contract) ===== */
.panel--split { background: #ffffff; color: var(--ink); overflow: hidden; }
.split__inner {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 0;
  padding: 0;
  justify-content: space-between;
  align-items: stretch;
  transition: padding 1.1s cubic-bezier(.6,0,.2,1) .25s;
}
.panel--split.is-in .split__inner {
  padding: 140px max(calc((100vw - 1440px) / 2), 40px);
}

.split__media,
.split__copy {
  flex: 1 1 50%;
  min-width: 0;
  min-height: 0;
  transition: flex-basis 1.1s cubic-bezier(.6,0,.2,1) .25s, flex-grow 1.1s cubic-bezier(.6,0,.2,1) .25s;
}
.split__media-wrap {
  flex: 1 1 50%;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  transition: flex-basis 1.1s cubic-bezier(.6,0,.2,1) .25s, flex-grow 1.1s cubic-bezier(.6,0,.2,1) .25s;
}
.panel--split.is-in .split__media-wrap,
.panel--split.is-in .split__copy {
  flex: 0 0 600px;
}

.split__media { position: relative; overflow: hidden; flex: 1 1 auto; min-height: 0; }
.split__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
}
.split__media:hover img { transform: scale(1.03); }
.split__caption {
  margin: 40px 0 0;
  font-family: "Noto Serif SC", serif;
  font-size: 22px; letter-spacing: .04em;
  color: rgba(0,0,0,.4);
  text-align: left;
  min-height: 1.5em;
}
.split__caption-caret {
  display: inline-block;
  margin-left: 2px;
  color: rgba(0,0,0,.4);
  opacity: 0;
}
.split__caption-caret.is-typing {
  opacity: 1;
  animation: caretBlink .85s steps(1) infinite;
}
@keyframes caretBlink { 50% { opacity: 0; } }

.split__copy { display: flex; align-items: center; }
.split__copy-inner { width: 100%; max-width: 600px; }
.split__title { font-family: "Noto Serif SC", serif; font-weight: 500; font-size: 44px; letter-spacing: .04em; margin: 0 0 56px; line-height: 1.1; }
.split__lead { font-family: "Noto Serif SC", serif; font-size: 17px; line-height: 1.8; margin: 0 0 18px; color: rgba(0,0,0,.85); }
.split__body { font-family: "Noto Serif SC", serif; font-size: 14px; line-height: 1.9; margin: 0 0 18px; color: rgba(0,0,0,.65); }
.split__body:last-child { margin-bottom: 0; }

/* ===== Cities ===== */
.panel--cities { padding: 140px var(--pad-x) 80px; display: flex; flex-direction: column; background: #ffffff; }
.cities__head { text-align: center; max-width: 1440px; margin: 0 auto 80px; }
.cities__head h2 { font-weight: 300; font-size: clamp(40px, 4.4vw, 64px); margin: 0 0 40px; letter-spacing: .04em; }
.cities__head p { display: flex; align-items: center; justify-content: center; margin: 0; font-family: "Noto Serif SC", "Cormorant Garamond", serif; font-size: 22px; letter-spacing: .04em; color: rgba(0,0,0,.4); }

.cities__grid { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 40px !important; flex: 1; align-content: center; justify-content: center; margin: 0 auto; width: 100%; max-width: 1440px !important; }
.city { display: flex !important; flex-direction: column; gap: 32px; width: 100% !important; min-width: 0 !important; max-width: none !important; }
.city__img { width: 100% !important; height: auto !important; aspect-ratio: 540 / 388 !important; overflow: hidden; position: relative; }
.city__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 2.6s cubic-bezier(.2,.7,.2,1); }
.city:hover .city__img img { transform: scale(1.06); }
.city__meta { display: flex; justify-content: space-between; align-items: baseline; transition: transform .4s; }
.city:hover .city__meta { transform: translateX(4px); }
.city__route { font-family: "Cormorant Garamond", "Noto Serif SC", serif; font-size: 20px; display: inline-flex; align-items: center; gap: 14px; }
.city__route b { font-weight: 500; }
.city__route svg { color: var(--accent); }
.city__note { font-family: "Cormorant Garamond", "Noto Serif SC", serif; font-size: 11px; letter-spacing: .12em; opacity: .55; }

.city__cta { display: inline-flex; align-items: center; justify-content: space-between; padding: 14px 22px; border: 1px solid rgba(0,0,0,.18); font-family: "Cormorant Garamond", "Noto Serif SC", serif; font-size: 12px; letter-spacing: .22em; text-transform: uppercase; width: 100%; transition: background .3s, color .3s, border-color .3s; }
.city__cta:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.city__cta--active:hover { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.city__cta--soon { opacity: .55; }
.city__cta-arrow { transition: transform .3s; }
.city__cta:hover .city__cta-arrow { transform: translateX(4px); }

/* ===== Cabin ===== */
.panel--cabin { color: #f4ece0; background: #0a0a0a; }
.cabin__bgs { position: absolute; inset: 0; }
.cabin__bg { position: absolute; inset: 0; opacity: 0; transition: opacity 900ms cubic-bezier(.7,0,.2,1); }
.cabin__bg.is-active { opacity: 1; }
.cabin__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.18); transition: transform 12s cubic-bezier(.2,.7,.2,1); }
.cabin__bg.is-active img { transform: scale(1); }
.cabin__shade { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,.78) 0%, rgba(0,0,0,.45) 35%, rgba(0,0,0,.15) 70%, rgba(0,0,0,.55) 100%); }
.cabin__inner { position: relative; z-index: 2; height: 100%; padding: 120px var(--pad-x) 80px; display: flex; flex-direction: column; justify-content: space-between; max-width: 1700px; margin: 0 auto; }
.cabin__head { max-width: 580px; }
.cabin__head h2 { font-weight: 300; font-size: clamp(36px, 4vw, 56px); margin: 24px 0 24px; letter-spacing: .04em; }
.cabin__story { align-self: start; padding: 0; margin: 8px 0; }
.cabin__story-link {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 0;
  font-family: "Noto Serif SC", serif; font-size: 22px; font-weight: 500; letter-spacing: .08em;
  color: #fff;
  transition: color .3s, gap .3s;
}
.cabin__story-link:hover { color: var(--accent); gap: 20px; }
.cabin__story-arrow { font-family: "Cormorant Garamond", serif; font-size: 18px; line-height: 1; letter-spacing: .04em; opacity: .9; transition: transform .3s, opacity .3s; position: relative; top: 1px; }
.cabin__story-link:hover .cabin__story-arrow { transform: translateX(4px); opacity: 1; }
.cabin__items { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0; }
.cabin__items li { display: grid; grid-template-columns: 44px 1fr; align-items: baseline; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.18); opacity: 0; animation: itemFade .5s ease forwards; }
.cabin__items li:last-child { border-bottom: 1px solid rgba(255,255,255,.18); }
@keyframes itemFade { from { opacity: 0; transform: translateY(8px);} to { opacity: 1; transform: none;} }
.cabin__items-num { font-family: "Cormorant Garamond", serif; font-size: 14px; color: var(--accent); letter-spacing: .15em; }
.cabin__items-body { display: flex; flex-direction: column; gap: 6px; }
.cabin__items-text { font-family: "Noto Serif SC", "Cormorant Garamond", serif; font-size: 18px; letter-spacing: .04em; }
.cabin__items-desc { font-family: "Noto Serif SC", "Cormorant Garamond", serif; font-size: 14px; line-height: 1.7; opacity: .7; max-width: 540px; }
.cabin__story { animation: tabFade .6s ease; }
@keyframes tabFade { from { opacity: 0; transform: translateY(12px);} to { opacity: 1; transform: none;} }

.cabin__tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid rgba(255,255,255,.18); }
.cabin__tab { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; padding: 24px 28px; border-right: 1px solid rgba(255,255,255,.12); color: rgba(244,236,224,.6); text-align: left; transition: color .35s, background .35s; position: relative; }
.cabin__tab:last-child { border-right: 0; }
.cabin__tab:hover { color: rgba(244,236,224,.95); }
.cabin__tab.is-active { color: #fff; background: linear-gradient(to bottom, rgba(200,168,117,.18), rgba(200,168,117,.04)); }
.cabin__tab.is-active::before { content:""; position: absolute; left: 0; right: 0; top: -1px; height: 2px; background: var(--accent); }
.cabin__tab span { font-family: "Cormorant Garamond", "Noto Serif SC", serif; font-size: 20px; letter-spacing: .08em; }
.cabin__tab-num { font-family: "Cormorant Garamond", "Noto Serif SC", serif; font-size: 11px; letter-spacing: .2em; opacity: .55; }
.cabin__tab svg { color: var(--accent); }

/* ===== Partners ===== */
.panel--partners { padding: 140px var(--pad-x) 80px; display: flex; flex-direction: column; background: #ffffff; }
.partners__head { text-align: center; margin: 0 auto 80px; }
.partners__head h2 { font-weight: 300; font-size: clamp(40px, 4.4vw, 64px); margin: 0; letter-spacing: .04em; }
.partners__head-en { margin: 40px 0 0; font-family: "Cormorant Garamond", serif; font-size: 22px; color: rgba(0,0,0,.4); letter-spacing: .04em; text-align: center; }
.partners__grid { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 40px !important; flex: 1; align-content: center; justify-content: center; max-width: 1440px !important; margin: 0 auto; width: 100%; }
.partner { display: flex !important; flex-direction: column; align-items: center; text-align: center; width: 100% !important; min-width: 0 !important; max-width: none !important; }
.partner__img { width: 100% !important; height: auto !important; aspect-ratio: 540 / 388 !important; overflow: hidden; margin-bottom: 28px; }
.partner__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 2.6s cubic-bezier(.2,.7,.2,1); }
.partner:hover .partner__img img { transform: scale(1.06); }
.partner h3 { font-family: "Noto Serif SC", "Cormorant Garamond", serif; font-size: 22px; font-weight: 500; margin: 0 0 8px; letter-spacing: .08em; }
.partner__en { font-family: "Cormorant Garamond", "Noto Serif SC", serif; font-size: 11px; letter-spacing: .3em; opacity: .55; margin-bottom: 14px; }
.partner p { font-family: "Noto Serif SC", "Cormorant Garamond", serif; font-size: 14px; line-height: 1.75; opacity: .75; margin: 0 0 22px; max-width: 460px; min-height: calc(2 * 1.75em); }
.partner__cta { font-family: "Cormorant Garamond", "Noto Serif SC", serif; font-size: 13px; letter-spacing: .22em; text-transform: uppercase; display: inline-block; position: relative; padding: 2px 0 8px; }
/* Bulgari SHOP NOW underline: always visible; on hover wipes out to the right then back in from the left */
.partner__cta::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: left center;
}
.partner__cta:hover::after { animation: ctaWipe .7s cubic-bezier(.6,0,.2,1); }
@keyframes ctaWipe {
  0%     { transform: scaleX(1); transform-origin: right center; }
  45%    { transform: scaleX(0); transform-origin: right center; }
  45.01% { transform: scaleX(0); transform-origin: left center; }
  100%   { transform: scaleX(1); transform-origin: left center; }
}

/* ===== Footer ===== */
.panel--footer { padding: 150px var(--pad-x) 120px; }
.footer__inner { display: flex; flex-direction: column; height: 100%; max-width: 1440px; margin: 0 auto; width: 100%; }

.footer__row--contact { display: grid; grid-template-columns: minmax(340px, 1fr) 2.4fr; gap: 80px; padding: 24px 0 28px; border-top: 1px solid rgba(247,242,234,.32); border-bottom: 1px solid rgba(247,242,234,.32); }
.footer__row-label { font-family: "Noto Serif SC", serif; font-size: 16px; letter-spacing: .08em; opacity: .85; margin-bottom: 18px; }
.footer__contact { display: flex; flex-direction: column; }
.footer__email { display: inline-flex; align-items: center; gap: 14px; font-family: "Cormorant Garamond", "Noto Serif SC", serif; font-size: 16px; letter-spacing: .04em; transition: opacity .3s; align-self: flex-start; }
.footer__email:hover { opacity: .75; }
.footer__mail-icon { width: 24px; height: 24px; object-fit: contain; }

.footer__follow { display: flex; flex-direction: column; }
.footer__social { display: flex; align-items: center; gap: 44px; }
.footer__social a { width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center; opacity: .9; transition: opacity .3s, transform .3s; }
.footer__social a:hover { opacity: 1; transform: translateY(-2px); }
.footer__social img { max-width: 30px; max-height: 30px; object-fit: contain; }

.footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; padding: 56px 0 0; }
.footer__end { margin-top: 120px; }
.footer__wordmark { text-align: right; font-family: "Noto Serif SC", serif; font-size: 44px; letter-spacing: .22em; font-weight: 300; margin: 0 0 24px; }

.footer__bottom { display: flex; gap: 24px; justify-content: space-between; align-items: center; padding-top: 18px; border-top: 1px solid rgba(247,242,234,.32); font-family: "Cormorant Garamond", "Noto Serif SC", serif; font-size: 16px; letter-spacing: .04em; opacity: .82; }
.footer__col { display: flex; flex-direction: column; gap: 14px; }
.footer__col-title { font-family: "Noto Serif SC", serif; font-size: 22px; margin-bottom: 8px; letter-spacing: .08em; font-weight: 500; }
.footer__col a { font-family: "Noto Serif SC", serif; font-size: 16px; letter-spacing: .04em; opacity: .82; transition: opacity .25s; }
.footer__col a:hover { opacity: 1; }

.footer__bottom span:first-child { text-align: left; }
.footer__bottom span:nth-child(2) { text-align: center; flex: 1; }
.footer__bottom span:last-child { text-align: right; }

/* Mono palette tweaks */
.app[style*="--accent: #202020"] .city__cta:hover { background: #202020; color: #fff; }

/* Smaller viewport guards (still PC) */
@media (max-width: 1280px) {
  .cabin__tab span { font-size: 18px; }
  .cabin__tab { padding: 20px 18px; gap: 10px; }
}
@media (max-width: 1100px) {
  .nav__links { gap: 22px; }
  .cabin__tabs { grid-template-columns: repeat(2, 1fr); }
  .cabin__tab { border-bottom: 1px solid rgba(255,255,255,.12); }
}
