.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: height .32s var(--ease), background .32s var(--ease), border-color .32s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, rgba(20, 16, 14, .5), rgba(20, 16, 14, 0));
  opacity: 1; transition: opacity .32s var(--ease);
}
.site-header.is-solid {
  height: 68px;
  background: var(--peach);
  border-bottom-color: var(--peach-line);
}
.site-header.is-solid::before { opacity: 0; }

.header-inner {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 16px; width: 100%;
}

.header-mark {
  justify-self: start; position: relative;
  width: 46px; height: 46px;
  user-select: none;
}
.header-mark img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: contain;
  transition: opacity .32s var(--ease);
}
.header-mark .mark-dark { opacity: 0; }
.is-solid .header-mark .mark-light { opacity: 0; }
.is-solid .header-mark .mark-dark { opacity: 1; }

.brand {
  justify-self: center;
  font-family: var(--font-display); font-size: 1.85rem; font-weight: 600;
  letter-spacing: 2px; white-space: nowrap; line-height: 1.1;
  color: #fff; text-decoration: none; user-select: none;
  text-shadow: 0 1px 12px rgba(20, 16, 14, .4);
  transition: color .32s var(--ease), text-shadow .32s var(--ease), font-size .32s var(--ease);
}
.brand:hover { color: var(--peach); }
.is-solid .brand { color: var(--ink); text-shadow: none; font-size: 1.55rem; }
.is-solid .brand:hover { color: var(--oxblood); }

.header-cta { justify-self: end; }
.header-cta .btn { text-transform: uppercase; letter-spacing: .1em; font-size: .76rem; padding: 11px 22px; }
.site-header .btn-primary { box-shadow: 0 2px 14px rgba(20, 16, 14, .18); }
.is-solid .btn-primary { box-shadow: none; }

@media (max-width: 1040px) {
  .brand { font-size: 1.5rem; letter-spacing: 1px; }
  .is-solid .brand { font-size: 1.35rem; }
}
@media (max-width: 820px) {
  .header-mark { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .brand, .is-solid .brand { justify-self: start; font-size: clamp(16px, 5vw, 22px); letter-spacing: .5px; }
  .header-cta .btn { padding: 9px 16px; font-size: .7rem; }
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid; place-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  background: var(--ink);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(rgba(28, 25, 23, .20), rgba(28, 25, 23, .48)),
    radial-gradient(ellipse at center, transparent 40%, rgba(28, 25, 23, .30) 100%);
}
.hero-body {
  position: relative; z-index: 2;
  max-width: 780px; padding-inline: 24px;
  text-align: center; color: #fff;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 1.1rem + 4.4vw, 3.8rem);
  font-weight: 400; letter-spacing: 3px; line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .3);
}
.hero-sub {
  margin: 20px auto 0; max-width: 52ch;
  font-size: 1.15rem; line-height: 1.6; font-style: italic;
  color: rgba(255, 255, 255, .9);
  text-shadow: 0 1px 8px rgba(0, 0, 0, .3);
}
.hero-cta { display: none; margin-top: 32px; }
@media (max-width: 640px) {
  .hero h1 { letter-spacing: 1.5px; }
  .hero-sub { font-size: 1rem; }
  .header-cta { display: none; }
  .hero-cta { display: inline-flex; }
  .header-inner { grid-template-columns: 1fr; }
  .brand, .is-solid .brand { justify-self: center; }
}

.hero-scroll {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
  color: rgba(255, 255, 255, .55); animation: nudge 2.6s var(--ease) infinite;
}
@keyframes nudge { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 7px); } }

.searchbar {
  position: relative; z-index: 5;
  margin-top: -46px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px -22px rgba(28, 25, 23, .3);
  padding: 18px;
}
.searchbar-grid {
  display: grid; gap: 14px;
  grid-template-columns: 1.1fr 1.1fr 1fr auto;
  align-items: end;
}
.searchbar .btn { height: 46px; }
@media (max-width: 860px) {
  .searchbar { margin-top: -28px; }
  .searchbar-grid { grid-template-columns: 1fr 1fr; }
  .searchbar-grid > :nth-child(3) { grid-column: 1 / -1; }
  .searchbar-grid > :last-child { grid-column: 1 / -1; }
}

.section-head { max-width: 640px; margin-bottom: var(--gap-md); }
.section-head h2 { margin-top: 12px; font-size: var(--step-4); }
.section-head p { margin-top: 14px; }

.split { display: grid; gap: clamp(32px, 5vw, 64px); grid-template-columns: 1fr 1fr; align-items: center; }
.split-text h2 { font-size: var(--step-3); }
.split-text p + p { margin-top: 14px; }
.split-text .lede { margin-top: 18px; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

.portrait { display: grid; place-items: center; }
.portrait img {
  width: 260px; height: 260px; border-radius: 50%;
  object-fit: cover; box-shadow: 0 18px 44px -20px rgba(28, 25, 23, .45);
}
@media (max-width: 900px) { .portrait img { width: 170px; height: 170px; } }

.highlights { margin-top: 26px; }
.highlights ul { list-style: none; padding: 0; display: grid; gap: 11px; }
.highlights li { display: flex; align-items: flex-start; gap: 13px; font-size: .93rem; color: var(--ink-soft); line-height: 1.5; }
.highlights li::before {
  content: ''; flex: none;
  width: 6px; height: 6px; margin-top: 8px;
  background: var(--terracotta); border-radius: 50%;
}

.cta-center { text-align: center; margin-top: var(--gap-lg); }

.carousel { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--sand); box-shadow: 0 20px 50px -28px rgba(28, 25, 23, .4); }
.carousel-track { display: flex; transition: transform .55s var(--ease); }
.carousel-track img { flex: 0 0 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.carousel-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; display: grid; place-items: center;
  background: rgba(255, 255, 255, .9); color: var(--ink);
  border-radius: 100px; transition: background .2s var(--ease);
}
.carousel-nav:hover { background: #fff; }
.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }
.carousel-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 7px; }
.carousel-dots button {
  width: 7px; height: 7px; border-radius: 100px;
  background: rgba(255, 255, 255, .5); transition: background .2s var(--ease), width .2s var(--ease);
}
.carousel-dots button[aria-current="true"] { background: #fff; width: 20px; }

.lang-list { display: flex; flex-wrap: wrap; gap: 8px; }
.lang { display: inline-flex; align-items: center; gap: 7px; padding: 6px 13px; border: 1px solid var(--line); border-radius: 100px; font-size: .85rem; }
.lang b { font-size: .7rem; letter-spacing: .1em; color: var(--terracotta); }

.map-embed { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--sand); }
.map-embed iframe { display: block; width: 100%; height: 340px; border: 0; }

.prose { max-width: 68ch; }
.prose h2 { margin-top: var(--gap-md); font-size: var(--step-3); }
.prose h3 { margin-top: var(--gap); font-size: 1.15rem; }
.prose p, .prose ul, .prose ol { margin-top: 13px; color: var(--ink-soft); }
.prose ul, .prose ol { padding-left: 22px; }
.prose li + li { margin-top: 6px; }
.prose strong { color: var(--ink); }
.prose > :first-child { margin-top: 0; }
.prose-note {
  margin-top: var(--gap); padding: 18px 20px;
  background: var(--sand); border-left: 2px solid var(--terracotta); border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .92rem;
}

.page-head { padding-top: calc(var(--header-h) + var(--gap-lg)); padding-bottom: var(--gap-md); border-bottom: 1px solid var(--line); }
.page-head h1 { margin-top: 12px; font-size: var(--step-4); }
.page-head p { margin-top: 12px; }

.site-footer { background: var(--ink); color: rgba(255, 255, 255, .72); padding-block: var(--gap-lg) var(--gap-md); }
.site-footer h3 {
  font-family: var(--font-body); font-size: .74rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: rgba(255, 255, 255, .5);
  margin-bottom: 14px;
}
.footer-grid { display: grid; gap: var(--gap-md); grid-template-columns: 1.4fr 1fr 1fr 1fr; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: .06em; color: #fff; margin-bottom: 10px; }
.site-footer address { font-style: normal; line-height: 1.9; font-size: .92rem; }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: 9px; }
.site-footer a { color: rgba(255, 255, 255, .72); text-decoration: none; font-size: .92rem; transition: color .18s var(--ease); }
.site-footer a:hover { color: #fff; }
.footer-link-icon { display: inline-flex; align-items: center; gap: 9px; }

.footer-bottom {
  margin-top: var(--gap-md); padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex; flex-wrap: wrap; gap: 14px 24px; align-items: center; justify-content: space-between;
  font-size: .82rem; color: rgba(255, 255, 255, .45);
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-legal a { font-size: .82rem; }

.error-page {
  min-height: 100svh; display: grid; place-items: center; text-align: center; padding: var(--gap-md);
}
.error-code { font-family: var(--font-display); font-size: clamp(3.5rem, 12vw, 6rem); color: var(--sand-deep); line-height: 1; }
.error-page h1 { margin-top: 8px; font-size: var(--step-3); }
.error-page p { margin-top: 14px; max-width: 44ch; margin-inline: auto; color: var(--ink-soft); }
.error-page .btn { margin-top: var(--gap); }

.voucher { max-width: 620px; margin-inline: auto; }
.voucher-head { text-align: center; padding-bottom: var(--gap); border-bottom: 1px solid var(--line); }
.voucher-head h1 { font-size: var(--step-3); }
.voucher-ref { margin-top: 10px; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

.detail-list { display: grid; }
.detail-row {
  display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: baseline;
  padding: 14px 0; border-bottom: 1px solid var(--line-soft);
}
.detail-row dt { font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.detail-row dd { text-align: right; font-weight: 600; }
.detail-row dd small { display: block; font-weight: 400; font-size: .82rem; color: var(--muted); margin-top: 2px; }

.total-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  margin-top: var(--gap); padding: 18px 20px; background: var(--sand); border-radius: var(--radius);
}
.total-row span { font-size: .88rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); }
.total-row strong { font-family: var(--font-display); font-size: 1.75rem; color: var(--terracotta); }
