:root {
  --paper: #f7f5f1;
  --paper-2: #efede7;
  --ink: #0e141b;
  --ink-2: #1c2733;
  --ink-3: #33414f;
  --sapphire: #14396b;
  --sapphire-2: #1b4a8a;
  --wine: #8e2b3c;
  --mist: #5b6672;
  --line: rgba(14, 20, 27, 0.14);
  --line-soft: rgba(14, 20, 27, 0.08);
  --white-line: rgba(255, 255, 255, 0.16);
  --radius: 18px;
  --radius-sm: 10px;
  --shadow-soft: 0 24px 60px -24px rgba(14, 20, 27, 0.28);
  --shadow-card: 0 14px 40px -18px rgba(14, 20, 27, 0.22);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

::selection {
  background: var(--sapphire);
  color: #fff;
}

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

.wrap {
  width: min(1240px, 92%);
  margin-inline: auto;
}

.wrap-wide {
  width: min(1440px, 94%);
  margin-inline: auto;
}

.sec {
  position: relative;
  padding: clamp(4.5rem, 9vw, 8.5rem) 0;
}

.sec-tight {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.sec-dark {
  background: var(--ink);
  color: #f4f2ec;
}

.sec-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #f4f2ec;
}

.sec-paper2 {
  background: var(--paper-2);
}

.sec-sapphire {
  background: linear-gradient(160deg, #10294e 0%, #14396b 55%, #0e1f3c 100%);
  color: #f4f2ec;
}

.eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mist);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.sec-dark .eyebrow,
.sec-img .eyebrow,
.sec-sapphire .eyebrow {
  color: rgba(244, 242, 236, 0.6);
}

.display {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.015em;
}

.display-xl {
  font-size: clamp(2rem, 7vw, 4rem);
}

.display-lg {
  font-size: clamp(2.2rem, 5.4vw, 4.2rem);
}

.display-md {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.display-sm {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.display em {
  font-style: italic;
  color: var(--sapphire-2);
}

.sec-dark .display em,
.sec-img .display em,
.sec-sapphire .display em {
  color: #a9c2e4;
}

.lead {
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  line-height: 1.75;
  color: var(--ink-3);
  font-weight: 400;
}

.sec-dark .lead,
.sec-img .lead,
.sec-sapphire .lead {
  color: rgba(244, 242, 236, 0.75);
}

.mono-note {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mist);
}

.sec-dark .mono-note,
.sec-img .mono-note,
.sec-sapphire .mono-note {
  color: rgba(244, 242, 236, 0.55);
}

.hairline {
  border: 0;
  border-top: 1px solid var(--line);
}

.sec-dark .hairline,
.sec-img .hairline,
.sec-sapphire .hairline {
  border-color: var(--white-line);
}

.grid-lines > * {
  border-left: 1px solid var(--line);
}

.grid-lines > *:first-child {
  border-left: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: Manrope, sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1.05rem 1.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.35s var(--ease),
    background 0.35s,
    color 0.35s,
    border-color 0.35s,
    box-shadow 0.35s;
  text-decoration: none;
  white-space: nowrap;
}

.btn i {
  transition: transform 0.35s var(--ease);
}

.btn:hover i {
  transform: translateX(4px);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  background: var(--sapphire);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(20, 57, 107, 0.55);
}

.btn-sapphire {
  background: var(--sapphire);
  color: #fff;
}

.btn-sapphire:hover {
  background: var(--sapphire-2);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(20, 57, 107, 0.55);
}

.btn-wine {
  background: var(--wine);
  color: #fff;
}

.btn-wine:hover {
  background: #a8384c;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(142, 43, 60, 0.5);
}

.btn-light {
  background: #f4f2ec;
  color: var(--ink);
}

.btn-light:hover {
  background: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.sec-dark .btn-outline,
.sec-img .btn-outline,
.sec-sapphire .btn-outline {
  border-color: var(--white-line);
  color: #f4f2ec;
}

.sec-dark .btn-outline:hover,
.sec-img .btn-outline:hover,
.sec-sapphire .btn-outline:hover {
  border-color: #f4f2ec;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-3);
  background: rgba(255, 255, 255, 0.5);
}

.sec-dark .tag,
.sec-img .tag,
.sec-sapphire .tag {
  border-color: var(--white-line);
  color: rgba(244, 242, 236, 0.8);
  background: rgba(255, 255, 255, 0.06);
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink-2);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.media-frame:hover img {
  transform: scale(1.045);
}

.media-bg {
  background-size: cover;
  background-position: center;
}

.card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(14, 20, 27, 0.03);
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.card-dark {
  background: var(--ink-2);
  border: 1px solid var(--white-line);
  color: #f4f2ec;
}

.stat-num {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  line-height: 1;
}

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: rgba(20, 57, 107, 0.09);
  color: var(--sapphire);
}

.sec-dark .icon-badge,
.sec-img .icon-badge,
.sec-sapphire .icon-badge {
  background: rgba(255, 255, 255, 0.09);
  color: #d7e3f4;
}

.icon-badge.wine {
  background: rgba(142, 43, 60, 0.1);
  color: var(--wine);
}

.num-badge {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mist);
  flex: 0 0 auto;
}

.sec-dark .num-badge,
.sec-img .num-badge,
.sec-sapphire .num-badge {
  border-color: var(--white-line);
  color: rgba(244, 242, 236, 0.6);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sapphire);
  text-decoration: none;
}

.link-arrow i {
  transition: transform 0.3s var(--ease);
}

.link-arrow:hover i {
  transform: translateX(5px);
}

.sec-dark .link-arrow,
.sec-img .link-arrow,
.sec-sapphire .link-arrow {
  color: #a9c2e4;
}

.marquee {
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}

.snap-row {
  display: flex;
  gap: 1.4rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.snap-row::-webkit-scrollbar {
  display: none;
}

.snap-row > * {
  scroll-snap-align: start;
  flex: 0 0 auto;
}

.slider-btn {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}

.slider-btn:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.sec-dark .slider-btn,
.sec-img .slider-btn,
.sec-sapphire .slider-btn {
  background: transparent;
  color: #f4f2ec;
  border-color: var(--white-line);
}

.sec-dark .slider-btn:hover,
.sec-img .slider-btn:hover,
.sec-sapphire .slider-btn:hover {
  background: #f4f2ec;
  color: var(--ink);
}

.hero-slider {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s var(--ease);
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-dots {
  display: flex;
  gap: 0.55rem;
}

.hero-dot {
  width: 34px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.3);
  border: 0;
  cursor: pointer;
  transition: background 0.3s;
  padding: 0;
}

.hero-dot.active {
  background: #fff;
}

.hero-arrow {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(14, 20, 27, 0.25);
  backdrop-filter: blur(8px);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}

.hero-arrow:hover {
  background: #fff;
  color: var(--ink);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.sec-dark .accordion-item,
.sec-img .accordion-item,
.sec-sapphire .accordion-item {
  border-color: var(--white-line);
}

.accordion-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1.35rem 0;
  font-family: Manrope, sans-serif;
  font-weight: 700;
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.accordion-button .acc-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  transition: all 0.35s var(--ease);
}

.sec-dark .accordion-button .acc-icon,
.sec-img .accordion-button .acc-icon,
.sec-sapphire .accordion-button .acc-icon {
  border-color: var(--white-line);
}

.accordion-item.open .accordion-button .acc-icon {
  background: var(--sapphire);
  border-color: var(--sapphire);
  color: #fff;
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}

.accordion-body > div {
  padding: 0 0 1.5rem;
  color: var(--mist);
  line-height: 1.75;
  font-size: 0.95rem;
}

.sec-dark .accordion-body > div,
.sec-img .accordion-body > div,
.sec-sapphire .accordion-body > div {
  color: rgba(244, 242, 236, 0.7);
}

.tab-btn {
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.tab-btn.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.sec-dark .tab-btn,
.sec-img .tab-btn,
.sec-sapphire .tab-btn {
  border-color: var(--white-line);
  color: rgba(244, 242, 236, 0.65);
}

.sec-dark .tab-btn.active,
.sec-img .tab-btn.active,
.sec-sapphire .tab-btn.active {
  background: #f4f2ec;
  color: var(--ink);
  border-color: #f4f2ec;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeUp 0.55s var(--ease);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 1rem 0.5rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  vertical-align: top;
}

.spec-table th {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
  font-weight: 500;
}

.sec-dark .spec-table th,
.sec-dark .spec-table td,
.sec-img .spec-table th,
.sec-img .spec-table td,
.sec-sapphire .spec-table th,
.sec-sapphire .spec-table td {
  border-color: var(--white-line);
}

.price-value {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  white-space: nowrap;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.field label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mist);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 1rem 1.1rem;
  font-size: 0.95rem;
  font-family: Manrope, sans-serif;
  color: var(--ink);
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  min-height: 52px;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sapphire);
  box-shadow: 0 0 0 3px rgba(20, 57, 107, 0.14);
}

.field input.error,
.field select.error,
.field textarea.error {
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(142, 43, 60, 0.12);
}

.field .err-msg {
  display: none;
  font-size: 0.78rem;
  color: var(--wine);
}

.field .err-msg.show {
  display: block;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.check-line {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.82rem;
  color: var(--mist);
  line-height: 1.6;
}

.check-line input {
  margin-top: 0.25rem;
  accent-color: var(--sapphire);
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.check-line a {
  color: var(--sapphire);
  text-decoration: underline;
}

.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: none;
}

.spinner.active {
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.mstep {
  display: none;
}

.mstep.active {
  display: block;
  animation: fadeUp 0.5s var(--ease);
}

.mstep-dots {
  display: flex;
  gap: 0.5rem;
}

.mstep-dot {
  height: 4px;
  flex: 1;
  border-radius: 4px;
  background: var(--line);
  transition: background 0.3s;
}

.mstep-dot.done {
  background: var(--sapphire);
}

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 140%);
  background: var(--ink);
  color: #fff;
  padding: 1rem 1.6rem;
  border-radius: 12px;
  font-size: 0.9rem;
  box-shadow: var(--shadow-soft);
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: transform 0.5s var(--ease);
  max-width: min(440px, 90vw);
}

.toast.show {
  transform: translate(-50%, 0);
}

.toast i {
  color: #7fc4a3;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 99998;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
  background: rgba(14, 20, 27, 0.92);
  backdrop-filter: blur(14px);
  color: #f4f2ec;
  padding: 1.2rem 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--white-line);
  box-shadow: var(--shadow-soft);
}

.cookie-banner.show {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(244, 242, 236, 0.8);
}

.cookie-btn {
  border: 0;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  font-family: Manrope, sans-serif;
}

.cookie-btn.accept {
  background: #f4f2ec;
  color: var(--ink);
}

.cookie-btn.accept:hover {
  background: #fff;
}

.cookie-btn.decline {
  background: transparent;
  color: rgba(244, 242, 236, 0.7);
  border: 1px solid var(--white-line);
}

.cookie-btn.decline:hover {
  border-color: #f4f2ec;
  color: #f4f2ec;
}

.booking-console {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translate(-50%, 130%);
  z-index: 9990;
  width: min(880px, 94vw);
  transition: transform 0.6s var(--ease);
}

.booking-console.show {
  transform: translate(-50%, 0);
}

.booking-inner {
  background: rgba(14, 20, 27, 0.88);
  backdrop-filter: blur(16px);
  border: 1px solid var(--white-line);
  border-radius: 18px;
  color: #f4f2ec;
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-soft);
}

.booking-inner input,
.booking-inner select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--white-line);
  color: #f4f2ec;
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  font-size: 0.82rem;
  font-family: Manrope, sans-serif;
  min-height: 42px;
  width: 100%;
}

.booking-inner input:focus,
.booking-inner select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
}

.booking-inner select option {
  color: var(--ink);
}

.ba-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  user-select: none;
}

.ba-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.ba-top {
  clip-path: inset(0 50% 0 0);
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  transform: translateX(-1px);
  pointer-events: none;
}

.ba-handle::after {
  content: "\f337";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  margin: 0;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--line);
}

.sec-dark .timeline::before,
.sec-img .timeline::before,
.sec-sapphire .timeline::before {
  background: var(--white-line);
}

.tl-item {
  position: relative;
  padding-left: 3.4rem;
  padding-bottom: 2.2rem;
}

.tl-item:last-child {
  padding-bottom: 0;
}

.tl-item::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 6px;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--paper);
  border: 2px solid var(--sapphire);
}

.sec-dark .tl-item::before,
.sec-img .tl-item::before,
.sec-sapphire .tl-item::before {
  background: var(--ink);
  border-color: #a9c2e4;
}

.pull-quote {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  line-height: 1.5;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9995;
  transition:
    background 0.4s,
    box-shadow 0.4s,
    border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(247, 245, 241, 0.92);
  backdrop-filter: blur(14px);
  border-color: var(--line-soft);
  box-shadow: 0 10px 40px -18px rgba(14, 20, 27, 0.25);
}

.site-header .nav-link {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding: 0.4rem 0;
}

.site-header .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--sapphire);
  transition: width 0.3s var(--ease);
}

.site-header .nav-link:hover::after {
  width: 100%;
}

.site-header.on-dark:not(.scrolled) .nav-link,
.site-header.on-dark:not(.scrolled) .hdr-contact {
  color: #f4f2ec;
}

.site-header.on-dark:not(.scrolled) .nav-link::after {
  background: #f4f2ec;
}

.hdr-contact {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
}

.burger-btn {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s;
}

.site-header.on-dark:not(.scrolled) .burger-btn {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white-line);
  color: #fff;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9994;
  background: var(--ink);
  color: #f4f2ec;
  padding: 6rem 8% 3rem;
  transform: translateY(-100%);
  transition: transform 0.55s var(--ease);
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu .mnav-link {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 5.5vw, 2.4rem);
  color: #f4f2ec;
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--white-line);
}

.mobile-menu .mnav-link:hover {
  color: #a9c2e4;
  padding-left: 0.6rem;
  transition: all 0.3s;
}

.mobile-menu .hdr-contact {
  color: rgba(244, 242, 236, 0.75);
}

.f-border-b {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.f-dim {
  color: rgba(244, 242, 236, 0.62);
}

.f-dimmer {
  color: rgba(244, 242, 236, 0.5);
}

.f-strong {
  color: rgba(244, 242, 236, 0.8);
}

.i-ice {
  color: #a9c2e4;
}

.footer-link {
  color: rgba(244, 242, 236, 0.62);
  text-decoration: none;
  font-size: 0.86rem;
  line-height: 2.05;
  transition: color 0.3s;
  display: inline-block;
}

.footer-link:hover {
  color: #fff;
}

.footer-heading {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(244, 242, 236, 0.45);
  margin-bottom: 1rem;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--white-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(244, 242, 236, 0.75);
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
  text-decoration: none;
}

.social-btn:hover {
  background: #f4f2ec;
  color: var(--ink);
  border-color: #f4f2ec;
  transform: translateY(-3px);
}

.back-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9980;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--white-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.4s,
    transform 0.4s;
  transform: translateY(10px);
}

.back-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.text-vertical {
  writing-mode: vertical-rl;
  letter-spacing: 0.3em;
}

.img-duo {
  position: relative;
}

.img-duo .img-b {
  position: absolute;
  width: 46%;
  right: -6%;
  bottom: -10%;
  border: 6px solid var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.hover-tilt {
  transition: transform 0.6s var(--ease);
}

.hover-tilt:hover {
  transform: perspective(900px) rotateX(2deg) rotateY(-2deg) translateY(-4px);
}

.step-card {
  counter-increment: step;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.55rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-3);
}

.check-list li i {
  color: var(--sapphire);
  margin-top: 0.3rem;
  font-size: 0.8rem;
}

.sec-dark .check-list li,
.sec-img .check-list li,
.sec-sapphire .check-list li {
  color: rgba(244, 242, 236, 0.75);
}

.sec-dark .check-list li i,
.sec-img .check-list li i,
.sec-sapphire .check-list li i {
  color: #a9c2e4;
}

.dot-list li {
  position: relative;
  padding-left: 1.2rem;
  padding-bottom: 0.4rem;
  font-size: 0.92rem;
  color: var(--ink-3);
  line-height: 1.6;
}

.dot-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--sapphire);
}

.big-word {
  font-family: "Playfair Display", serif;
  font-size: clamp(4rem, 14vw, 12rem);
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 242, 236, 0.25);
  user-select: none;
  white-space: nowrap;
}

.iframe-frame {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: var(--radius);
  filter: grayscale(0.35) contrast(1.02);
}

.progress-line {
  height: 4px;
  border-radius: 4px;
  background: var(--line);
  overflow: hidden;
}

.progress-line > span {
  display: block;
  height: 100%;
  background: var(--sapphire);
  border-radius: 4px;
}

.chip-selector {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  background: #fff;
  color: var(--ink-3);
}

.chip-selector:hover,
.chip-selector.active {
  border-color: var(--sapphire);
  color: var(--sapphire);
  background: rgba(20, 57, 107, 0.06);
}

@media (max-width: 1024px) {
  .display-xl {
    font-size: clamp(2.4rem, 9vw, 3.4rem);
  }

  .hdr-contact.hide-lg {
    display: none;
  }
}

@media (max-width: 768px) {
  .sec {
    padding: 3.6rem 0;
  }

  .img-duo .img-b {
    position: relative;
    width: 62%;
    right: auto;
    bottom: auto;
    margin: -18% 0 0 auto;
  }

  .booking-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  .cookie-actions {
    display: flex;
    gap: 0.6rem;
    justify-content: flex-end;
  }

  .field input,
  .field select,
  .field textarea {
    min-height: 54px;
  }

  .toast {
    bottom: 90px;
  }
}
