:root {
  --bg: #f5efe4;
  --bg-2: #ede4d2;
  --ink: #1b2433;
  --ink-2: #4a5266;
  --ink-3: #8b8a85;
  --gold: #d6a23a;
  --gold-2: #c08828;
  --gold-soft: #efd6a0;
  --water: #2c4757;
  --rose: #d8b6ad;
  --line: rgba(27, 36, 51, 0.14);
  --line-2: rgba(27, 36, 51, 0.08);
  --serif: "Marcellus", "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

/* SEO content — semantic, visible to crawlers, hidden from sighted users */
.seo-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input { font-family: inherit; font-size: inherit; }

a { color: inherit; text-decoration: none; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px 0;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}
.nav--scrolled {
  background: rgba(245, 239, 228, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--line-2);
}
.nav__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.04em;
}
.nav--scrolled .nav__brand { color: var(--ink); }
.nav .nav__brand { color: #fff; }
.nav--scrolled .nav__mark { color: var(--gold); }
.nav__mark { color: var(--gold-soft); font-size: 18px; }
.nav__sub { font-size: 13px; opacity: 0.6; font-family: var(--sans); letter-spacing: 0.02em; }
.nav__links {
  display: flex;
  gap: 32px;
  margin-left: auto;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.85);
}
.nav--scrolled .nav__links { color: var(--ink-2); }
.nav__links a:hover { color: var(--gold); }
.nav__cta {
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #fff;
  transition: all 0.2s;
}
.nav__cta:hover { background: var(--gold); border-color: var(--gold); }
.nav--scrolled .nav__cta { color: var(--ink); border-color: var(--ink); }
.nav--scrolled .nav__cta:hover { color: #fff; }

@media (max-width: 800px) {
  .nav__links { display: none; }
  .nav__inner { gap: 16px; padding: 0 20px; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.85) saturate(1.05);
}
.hero__shade {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(27,36,51,0.55) 0%, rgba(27,36,51,0.1) 30%, rgba(27,36,51,0.0) 50%, rgba(27,36,51,0.7) 100%),
    linear-gradient(90deg, rgba(27,36,51,0.5) 0%, rgba(27,36,51,0) 60%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.88);
}
.dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(214,162,58,0.25);
}
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  max-width: 14ch;
  text-wrap: balance;
}
.hero__amp {
  color: var(--gold-soft);
  font-style: italic;
}
.hero__lead {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.5;
  max-width: 52ch;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.9);
  text-wrap: pretty;
}
.hero__row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 80px; }
.hero__meta {
  display: flex;
  align-items: stretch;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.2);
  max-width: 720px;
}
.hero__meta > div:not(.hero__bar) {
  display: flex; flex-direction: column; gap: 4px;
}
.hero__meta strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
}
.hero__meta span {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}
.hero__bar {
  width: 1px;
  background: rgba(255,255,255,0.18);
}
.hero__scroll {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  opacity: 0.7;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.2s;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn--gold {
  background: var(--gold);
  color: #fff;
}
.btn--gold:hover:not(:disabled) {
  background: var(--gold-2);
  transform: translateY(-1px);
}
.btn--gold:disabled {
  background: var(--gold-soft);
  cursor: not-allowed;
}
.btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: inherit;
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--ghost:disabled { opacity: 0.4; cursor: not-allowed; }
.btn--dark {
  background: var(--ink);
  color: #fff;
  padding: 12px 22px;
  font-size: 13px;
}
.btn--dark:hover { background: var(--water); }

/* In booking, ghost on light bg */
.booking .btn--ghost { border-color: var(--line); color: var(--ink-2); }
.booking .btn--ghost:hover:not(:disabled) { border-color: var(--ink); color: var(--ink); }

/* ============ SECTION SHELL ============ */
.section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 120px 40px;
}
.sec-head {
  margin-bottom: 64px;
  max-width: 720px;
}
.sec-num {
  display: block;
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 16px;
}
.sec-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  text-wrap: balance;
}
.sec-lede {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 56ch;
  text-wrap: pretty;
}

@media (max-width: 700px) {
  .section { padding: 80px 24px; }
  .sec-head { margin-bottom: 40px; }
}

/* ============ TOURS ============ */
.tours {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1000px) { .tours { grid-template-columns: 1fr; } }

.tour {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}
.tour:hover { transform: translateY(-4px); box-shadow: 0 24px 60px -30px rgba(27,36,51,0.3); }
.tour__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.tour__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.tour:hover .tour__img img { transform: scale(1.05); }
.tour__eyebrow {
  position: absolute;
  top: 20px; left: 20px;
  background: rgba(245, 239, 228, 0.95);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  border-radius: 2px;
}
.tour__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tour__head h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.tour__meta {
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.bullet { margin: 0 6px; }
.tour__desc {
  font-size: 15px;
  color: var(--ink-2);
  margin-bottom: 20px;
  flex: 1;
}
.tour__incl {
  list-style: none;
  padding: 16px 0;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-bottom: 20px;
}
.tour__incl li {
  font-size: 13px;
  color: var(--ink-2);
  position: relative;
  padding-left: 14px;
}
.tour__incl li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.tour__foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}
.tour__price strong {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}
.tour__price span {
  font-size: 12px;
  color: var(--ink-3);
}
.tour__note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--ink-3);
  font-style: italic;
}

/* ============ YACHT ============ */
.yacht__grid {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 24px;
  margin-bottom: 60px;
}
@media (max-width: 900px) {
  .yacht__grid { grid-template-columns: 1fr; }
}
.yacht__main {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 4px;
  background: var(--bg-2);
}
.yacht__main img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.yacht__caption {
  position: absolute;
  left: 24px; bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(245, 239, 228, 0.92);
  backdrop-filter: blur(10px);
  padding: 10px 18px;
  border-radius: 2px;
  font-size: 13px;
}
.yacht__caption span:first-child {
  font-family: var(--serif);
  color: var(--gold);
  letter-spacing: 0.1em;
}
.yacht__thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  align-content: start;
  max-height: 100%;
  overflow-y: auto;
}
@media (max-width: 900px) {
  .yacht__thumbs {
    grid-template-columns: repeat(4, 1fr);
  }
}
.yacht__thumb {
  aspect-ratio: 1;
  border-radius: 2px;
  overflow: hidden;
  opacity: 0.55;
  transition: opacity 0.2s, transform 0.2s;
  padding: 0;
  border: 2px solid transparent;
}
.yacht__thumb img { width: 100%; height: 100%; object-fit: cover; }
.yacht__thumb:hover { opacity: 0.8; }
.yacht__thumb.is-active {
  opacity: 1;
  border-color: var(--gold);
}

.specs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 800px) { .specs { grid-template-columns: repeat(2, 1fr); } }
.spec {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 1px solid var(--line-2);
  padding-left: 20px;
}
.spec:first-child { padding-left: 0; }
.spec:last-child { border-right: none; }
.spec__k {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.spec__v {
  font-family: var(--serif);
  font-size: 22px;
}

/* ============ PRICE ============ */
.price__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
@media (max-width: 900px) { .price__grid { grid-template-columns: 1fr; } }
.price__card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line-2);
  padding: 32px;
  border-radius: 4px;
}
.price__card--feature {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.price__eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.price__card--feature .price__eyebrow { color: var(--gold-soft); }
.price__top { margin-bottom: 28px; }
.price__big {
  margin-top: 16px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.price__big strong {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.price__big span {
  font-size: 18px;
  color: var(--ink-3);
}
.price__card--feature .price__big span { color: rgba(255,255,255,0.5); }
.price__card ul {
  list-style: none;
  border-top: 1px solid var(--line-2);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price__card--feature ul { border-color: rgba(255,255,255,0.1); }
.price__card li {
  font-size: 14px;
  color: var(--ink-2);
  padding-left: 18px;
  position: relative;
}
.price__card--feature li { color: rgba(255,255,255,0.8); }
.price__card li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.price__stamp {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--gold);
  padding: 4px 10px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  color: #fff;
}
.price__foot {
  font-size: 14px;
  color: var(--ink-3);
  max-width: 60ch;
  font-style: italic;
}

/* ============ BOOKING ============ */
.booking { background: var(--bg-2); max-width: none; padding-left: 40px; padding-right: 40px; }
.booking > .sec-head, .booking__box {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
.booking__box {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 0 var(--line-2), 0 30px 80px -50px rgba(27,36,51,0.25);
}
.booking__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line-2);
}
.bstep {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--line-2);
  background: var(--bg);
  transition: background 0.2s;
}
.bstep:last-child { border-right: none; }
.bstep.is-active { background: #fff; }
.bstep__n {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink-3);
  flex-shrink: 0;
}
.bstep.is-active .bstep__n { background: var(--gold); color: #fff; border-color: var(--gold); }
.bstep.is-done .bstep__n { background: var(--ink); color: #fff; border-color: var(--ink); }
.bstep__l {
  font-size: 14px;
  color: var(--ink-3);
}
.bstep.is-active .bstep__l { color: var(--ink); }
.bstep.is-done .bstep__l { color: var(--ink-2); }

@media (max-width: 700px) {
  .booking__steps { grid-template-columns: repeat(4, 1fr); }
  .bstep { padding: 14px 8px; flex-direction: column; gap: 6px; text-align: center; }
  .bstep__l { font-size: 11px; }
}

.booking__body {
  padding: 48px;
  min-height: 360px;
}
@media (max-width: 700px) { .booking__body { padding: 24px; min-height: 0; } }

.bgrid--tours {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .bgrid--tours { grid-template-columns: 1fr; } }

.btour {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  transition: all 0.2s;
  padding: 0;
}
.btour:hover { border-color: var(--gold); }
.btour.is-active {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold-soft);
}
.btour__img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.btour__img img { width: 100%; height: 100%; object-fit: cover; }
.btour__body { padding: 18px 20px; }
.btour__eye {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.btour__body h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin: 6px 0 4px;
}
.btour__body p { font-size: 13px; color: var(--ink-3); }
.btour__radio {
  position: absolute;
  top: 14px; right: 14px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  transition: all 0.2s;
}
.btour.is-active .btour__radio {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: inset 0 0 0 4px #fff;
}

.bgrid--datetime {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
}
@media (max-width: 800px) { .bgrid--datetime { grid-template-columns: 1fr; gap: 28px; } }

.field { display: flex; flex-direction: column; gap: 10px; }
.field > span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.field input {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
  font-size: 16px;
  color: var(--ink);
  transition: border 0.2s;
}
.field input:focus {
  outline: none;
  border-color: var(--gold);
}

.chips { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
@media (max-width: 600px) { .chips { grid-template-columns: 1fr; } }
.chip {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
  text-align: left;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.chip strong { font-family: var(--serif); font-size: 18px; font-weight: 400; }
.chip em { font-size: 12px; color: var(--ink-3); font-style: normal; }
.chip:hover { border-color: var(--gold); }
.chip.is-active {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
}
.chip.is-active em { color: rgba(255,255,255,0.8); }

.bgrid--counts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
@media (max-width: 800px) { .bgrid--counts { grid-template-columns: 1fr; } }

.counter {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.counter__label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.counter__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.counter__row strong {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
}
.counter__row button {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  font-size: 20px;
  color: var(--ink);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.counter__row button:hover { border-color: var(--gold); color: var(--gold); }
.counter__hint { font-size: 12px; color: var(--ink-3); }

.quote {
  padding: 28px;
  background: var(--ink);
  color: #fff;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}
.quote span:first-child {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.quote strong {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
}
.quote em {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-style: normal;
}

.bgrid--contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 800px) { .bgrid--contacts { grid-template-columns: 1fr; } }
.bgrid--contacts .recap {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding-top: 24px;
  border-top: 1px solid var(--line-2);
  margin-top: 8px;
}
@media (max-width: 800px) { .bgrid--contacts .recap { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
.recap > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 16px;
}
.recap span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.recap strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}
.recap__total strong { color: var(--gold-2); font-size: 24px; }

.booking__foot {
  padding: 24px 48px;
  background: var(--bg);
  border-top: 1px solid var(--line-2);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.booking__err {
  padding: 14px 48px;
  background: #fbeaea;
  color: #8a2727;
  font-size: 14px;
  border-top: 1px solid rgba(138, 39, 39, 0.15);
}
@media (max-width: 700px) { .booking__foot { padding: 20px 24px; } }

.booking__done {
  background: #fff;
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 48px;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 30px 80px -50px rgba(27,36,51,0.25);
}
.booking__check {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.booking__done h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 42px;
  margin-bottom: 16px;
}
.booking__done > p { color: var(--ink-2); margin-bottom: 32px; max-width: 50ch; margin-left: auto; margin-right: auto; }
.booking__recap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 24px 0;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  margin-bottom: 32px;
}
@media (max-width: 700px) { .booking__recap { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
.booking__recap > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.booking__recap span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.booking__recap strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

/* ============ FAQ ============ */
.faq__list {
  border-top: 1px solid var(--line);
}
.faq__item {
  display: block;
  width: 100%;
  text-align: left;
  border: none;
  background: none;
  border-bottom: 1px solid var(--line);
  padding: 0;
  transition: background 0.2s;
}
.faq__item:hover { background: rgba(255,255,255,0.4); }
.faq__q {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
}
.faq__plus {
  font-family: var(--sans);
  font-size: 28px;
  color: var(--gold);
  font-weight: 200;
  width: 32px;
  text-align: center;
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  font-size: 16px;
  color: var(--ink-2);
  transition: max-height 0.4s, padding 0.3s;
  max-width: 80ch;
  padding-left: 0;
}
.faq__item.is-open .faq__a {
  max-height: 240px;
  padding: 0 0 24px;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 80px 40px 32px;
}
.footer__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 900px) { .footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer__inner { grid-template-columns: 1fr; gap: 28px; } }
.footer__col h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 36px;
  color: #fff;
  margin: 8px 0 12px;
  letter-spacing: 0.04em;
}
.footer__col p { line-height: 1.6; font-size: 14px; }
.footer__col .nav__mark { color: var(--gold); font-size: 22px; }
.footer__h {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 14px;
}
.footer__big {
  display: block;
  font-family: var(--serif);
  font-size: 26px;
  color: #fff;
  margin-bottom: 10px;
}
.footer__big:hover { color: var(--gold); }
.footer__link {
  display: block;
  font-size: 14px;
  padding: 6px 0;
  transition: color 0.2s;
}
.footer__link:hover { color: var(--gold-soft); }
.footer__base {
  max-width: 1320px;
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}
