:root {
  --navy: #0c2236;
  --navy-deep: #081826;
  --navy-soft: #163450;
  --brass: #b8945a;
  --brass-light: #cdab74;
  --brass-deep: #9c7a44;
  --cream: #f6f1e9;
  --cream-soft: #efe8dc;
  --paper: #fbf8f3;
  --ink: #16242f;
  --muted: #5d6b74;
  --line: rgba(184, 148, 90, .32);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover
}

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

h1,
h2,
h3,
.serif {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: .005em
}

.overline {
  font-size: .72rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--brass-deep);
  display: inline-block;
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px
}

.center {
  text-align: center
}

/* ============ NAV ============ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 40px;
  transition: background .5s var(--ease), padding .5s var(--ease), box-shadow .5s var(--ease);
}

nav.scrolled {
  background: rgba(251, 248, 243, .92);
  backdrop-filter: blur(14px);
  padding: 16px 40px;
  box-shadow: 0 1px 0 var(--line);
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: .16em;
  color: #fff;
  transition: color .5s var(--ease)
}

.logo small {
  font-size: .62rem;
  letter-spacing: .4em;
  font-family: 'Manrope';
  font-weight: 400;
  display: block;
  margin-top: -4px;
  opacity: .7
}

nav.scrolled .logo {
  color: var(--navy)
}

.nav-links {
  display: flex;
  gap: 42px;
  align-items: center
}

.nav-links a {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .86);
  font-weight: 400;
  position: relative;
  transition: color .4s var(--ease)
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--brass);
  transition: width .45s var(--ease)
}

.nav-links a:hover::after {
  width: 100%
}

nav.scrolled .nav-links a {
  color: var(--navy)
}

.nav-phone {
  color: var(--brass-light) !important;
  font-weight: 500 !important
}

nav.scrolled .nav-phone {
  color: var(--brass-deep) !important
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 120
}

.burger span {
  width: 26px;
  height: 2px;
  background: #fff;
  transition: .4s var(--ease)
}

nav.scrolled .burger span {
  background: var(--navy)
}

/* scroll-offset для фиксированной шапки */
#about, #comfort, #gastro, #routes, #price, #booking {
  scroll-margin-top: 90px
}

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: flex-end
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden
}

.hero-bg img {
  transform: scale(1.16);
  animation: kenburns 18s ease-out forwards;
  will-change: transform
}

@keyframes kenburns {
  to {
    transform: scale(1)
  }
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8, 24, 38, .85) 0%, rgba(8, 24, 38, .12) 42%, rgba(8, 24, 38, .34) 100%)
}

.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 0 40px 9vh;
  /* max-width: 1280px; */
  margin: 0 auto
}

.hero .overline {
  color: var(--brass-light);
  opacity: 0;
  transform: translateY(20px);
  animation: rise .9s var(--ease) .5s forwards
}

.hero h1 {
  color: #fff;
  font-size: clamp(3rem, 6.5vw, 8.2rem);
  font-weight: 400;
  margin: .22em 0 .28em;
  max-width: 14ch;
  text-shadow: 0 2px 40px rgba(0, 0, 0, .3)
}

.hero h1 .ln {
  display: block;
  overflow: hidden
}

.hero h1 .ln span {
  display: block;
  transform: translateY(110%);
  animation: slideup 1.1s var(--ease) forwards
}

.hero h1 .ln:nth-child(1) span {
  animation-delay: .55s
}

.hero h1 .ln:nth-child(2) span {
  animation-delay: .7s
}

.hero h1 em {
  font-style: italic;
  color: var(--brass-light)
}

.hero-sub {
  color: rgba(255, 255, 255, .9);
  font-size: 1.2rem;
  font-weight: 300;
  max-width: 46ch;
  opacity: 0;
  transform: translateY(20px);
  animation: rise .9s var(--ease) .95s forwards
}

.hero-meta {
  display: flex;
  gap: 40px;
  margin-top: 34px;
  opacity: 0;
  transform: translateY(20px);
  animation: rise .9s var(--ease) 1.1s forwards;
  flex-wrap: wrap
}

.hero-meta div {
  color: #fff
}

.hero-meta .n {
  font-family: 'Cormorant Garamond';
  font-size: 2.5rem;
  color: var(--brass-light);
  line-height: 1
}

.hero-meta .l {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .75;
  margin-top: 4px
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes slideup {
  to {
    transform: translateY(0)
  }
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .7);
  opacity: 0;
  animation: rise 1s var(--ease) 1.6s forwards
}

.scroll-cue .line {
  width: 1px;
  height: 46px;
  background: linear-gradient(var(--brass-light), transparent);
  position: relative;
  overflow: hidden
}

.scroll-cue .line::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--brass-light);
  animation: scrolldot 2s infinite
}

@keyframes scrolldot {
  to {
    top: 100%
  }
}

.scroll-cue span {
  font-size: .62rem;
  letter-spacing: .32em;
  text-transform: uppercase
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(46px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease)
}

.reveal.in {
  opacity: 1;
  transform: none
}

.reveal.d1 {
  transition-delay: .12s
}

.reveal.d2 {
  transition-delay: .24s
}

.reveal.d3 {
  transition-delay: .36s
}

/* ============ MEDIA ============ */
.media {
  position: relative;
  overflow: hidden;
  background: var(--cream-soft)
}

.media img {
  transition: filter .6s var(--ease)
}

.media.zoom {
  cursor: pointer
}

.media.zoom::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 34, 54, .35), transparent 55%);
  opacity: 0;
  transition: opacity .6s var(--ease);
  pointer-events: none;
  z-index: 2
}

.media.zoom:hover::after {
  opacity: 1
}

.media.zoom:hover img {
  filter: brightness(1.07) saturate(1.06)
}

/* ============ INTRO ============ */
.section {
  padding: 140px 0
}

.intro {
  background: var(--paper)
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.intro-text h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.7rem);
  color: var(--navy);
  margin: .4em 0 .7em;
  max-width: 16ch
}

.intro-text p {
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 1.2em;
  max-width: 50ch
}

.intro-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.intro-media .media:first-child {
  aspect-ratio: .72;
  margin-top: 48px
}

.intro-media .media:last-child {
  aspect-ratio: .72
}

/* ============ STATEMENT ============ */
.statement {
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden
}

.statement::before {
  content: "АРГО";
  position: absolute;
  font-family: 'Cormorant Garamond';
  font-size: 42vw;
  color: rgba(255, 255, 255, .022);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  letter-spacing: .1em;
  pointer-events: none;
  white-space: nowrap
}

.statement .overline {
  color: var(--brass-light)
}

.statement h2 {
  font-size: clamp(2.4rem, 5.6vw, 5.4rem);
  font-weight: 400;
  margin: .3em auto .5em;
  max-width: 18ch;
  position: relative
}

.statement h2 em {
  font-style: italic;
  color: var(--brass-light)
}

.statement p {
  color: rgba(246, 241, 233, .72);
  font-size: 1.15rem;
  max-width: 60ch;
  margin: 0 auto;
  position: relative
}

/* ============ COMFORT / FEATURES ============ */
.comfort {
  background: var(--cream)
}

.sec-head {
  max-width: 760px;
  margin-bottom: 70px
}

.sec-head.center {
  margin-left: auto;
  margin-right: auto
}

.sec-head h2 {
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  color: var(--navy);
  margin: .3em 0 .4em
}

.sec-head p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 54ch
}

.sec-head.center p {
  margin-left: auto;
  margin-right: auto
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line)
}

.feature {
  padding: 38px 34px 38px 0;
  border-bottom: 1px solid var(--line);
  position: relative
}

.feature:nth-child(3n) {
  padding-right: 0
}

.feature .fn {
  font-family: 'Cormorant Garamond';
  font-size: 1.4rem;
  color: var(--brass-deep);
  display: block;
  margin-bottom: 10px
}

.feature h3 {
  font-size: 1.5rem;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 8px
}

.feature p {
  color: var(--muted);
  font-size: .96rem
}

/* ============ PHOTO GALLERIES ============ */
.photo-galleries {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 52px
}

.gallery-scroll {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y
}

.gallery-scroll:active {
  cursor: grabbing
}

.gallery-track {
  display: flex;
  gap: 12px;
  will-change: transform
}

.gi {
  position: relative;
  flex: 0 0 auto;
  width: 300px;
  height: 400px;
  overflow: hidden;
  border-radius: 2px;
  background: var(--cream-soft);
  cursor: pointer
}

.gi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter .6s var(--ease)
}

.gi::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 34, 54, .35), transparent 55%);
  opacity: 0;
  transition: opacity .6s var(--ease);
  pointer-events: none;
  z-index: 2
}

.gi:hover::after {
  opacity: 1
}

.gi:hover img {
  filter: brightness(1.07) saturate(1.06)
}

/* ============ GASTRONOMY ============ */
.gastro {
  background: var(--navy-deep);
  color: var(--cream);
  overflow: hidden
}

.gastro .sec-head h2 {
  color: #fff
}

.gastro .sec-head p {
  color: rgba(246, 241, 233, .7)
}

.gastro .overline {
  color: var(--brass-light)
}

.gastro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 64px
}

.gastro-grid .media {
  aspect-ratio: .82;
  border-radius: 2px
}

.gastro-grid .media.tall {
  grid-row: span 1
}

.menu-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 90px
}

.menu-card {
  border-top: 1px solid rgba(205, 171, 116, .4);
  padding-top: 28px
}

.menu-card .overline {
  color: var(--brass-light)
}

.menu-card h3 {
  font-size: 2rem;
  color: #fff;
  font-weight: 500;
  margin: .4em 0 .6em
}

.menu-card ul {
  list-style: none
}

.menu-card li {
  color: rgba(246, 241, 233, .78);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-size: 1rem;
  display: flex;
  gap: 14px;
  align-items: baseline
}

.menu-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--brass);
  border-radius: 50%;
  flex-shrink: 0;
  transform: translateY(-2px)
}

/* ============ ROUTES ============ */
.routes {
  background: var(--paper)
}

.route {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 580px
}

.route+.route {
  margin-top: 0
}

.route .media {
  min-height: 480px
}

.route-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px
}

.route:nth-child(even) .media {
  order: 2
}

.route:nth-child(even) .route-body {
  order: 1
}

.route-num {
  font-family: 'Cormorant Garamond';
  font-size: 1.2rem;
  color: var(--brass-deep);
  letter-spacing: .1em
}

.route-body h3 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  color: var(--navy);
  margin: .2em 0 .1em
}

.route-coord {
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 1.1em
}

.route-body p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 48ch;
  margin-bottom: 1.4em
}

.route-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

.route-points span {
  font-size: .78rem;
  letter-spacing: .06em;
  color: var(--navy);
  border: 1px solid var(--line);
  padding: 7px 15px;
  border-radius: 30px
}

.route:nth-child(odd) {
  background: var(--cream)
}

.route-more {
  margin-top: 34px;
  align-self: flex-start;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Manrope';
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 0 8px;
  position: relative
}

.route-more::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--line)
}

.route-more::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 1px;
  background: var(--brass);
  transition: width .5s var(--ease)
}

.route-more:hover::after {
  width: 100%
}

.route-more i {
  width: 30px;
  height: 1px;
  background: var(--brass);
  position: relative;
  transition: transform .45s var(--ease)
}

.route-more i::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--brass);
  border-right: 1px solid var(--brass);
  transform: rotate(45deg)
}

.route-more:hover i {
  transform: translateX(6px)
}

/* ============ MODAL ============ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .5s var(--ease), visibility .5s var(--ease)
}

.modal.open {
  visibility: visible;
  opacity: 1
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 18, 28, .7);
  backdrop-filter: blur(8px)
}

.modal-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 940px;
  max-height: 88vh;
  overflow-y: auto;
  background: var(--paper);
  border-radius: 3px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .5);
  transform: translateY(40px) scale(.98);
  opacity: 0;
  transition: transform .6s var(--ease) .05s, opacity .6s var(--ease) .05s;
  -webkit-overflow-scrolling: touch
}

.modal.open .modal-panel {
  transform: none;
  opacity: 1
}

.modal-panel::-webkit-scrollbar {
  width: 8px
}

.modal-panel::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 8px
}

.modal-close {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(251, 248, 243, .94);
  backdrop-filter: blur(6px);
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1;
  transition: .4s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .25);
  opacity: 0;
  transform: scale(.7);
  pointer-events: none
}

.modal.open .modal-close {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  transition: .4s var(--ease) .15s
}

.modal-close:hover {
  background: var(--brass);
  color: #fff;
  transform: rotate(90deg)
}

.modal-media {
  height: 340px;
  overflow: hidden;
  position: relative;
  background: var(--cream-soft)
}

.modal-media img {
  transform: scale(1.08);
  transition: transform 6s ease-out
}

.modal.open .modal-media img {
  transform: scale(1)
}

.modal-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 24, 38, .55), transparent 60%)
}

.modal-media .modal-title {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  padding: 44px 56px;
  color: #fff
}

.modal-media .overline {
  color: var(--brass-light)
}

.modal-media h2 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  color: #fff;
  margin-top: .1em
}

.modal-body {
  padding: 48px 56px 60px
}

.modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px
}

.modal-meta span {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brass-deep);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 30px
}

.modal-body .lead {
  font-size: 1.2rem;
  color: var(--ink);
  line-height: 1.55;
  font-weight: 300;
  margin-bottom: 14px
}

.modal-body p {
  color: var(--muted);
  font-size: 1.02rem;
  margin-bottom: 14px
}

.modal-body h3 {
  font-size: 1.7rem;
  color: var(--navy);
  font-weight: 500;
  margin: 42px 0 18px
}

.route-list {
  list-style: none;
  counter-reset: rl;
  margin: 0 0 6px
}

.route-list li {
  counter-increment: rl;
  position: relative;
  padding: 0 0 22px 64px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px
}

.route-list li:last-child {
  border-bottom: none
}

.route-list li::before {
  content: counter(rl, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: -4px;
  font-family: 'Cormorant Garamond';
  font-size: 1.9rem;
  color: var(--brass);
  font-weight: 500
}

.route-list b {
  display: block;
  font-family: 'Cormorant Garamond';
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 4px
}

.route-list span {
  color: var(--muted);
  font-size: 1rem
}

.modal-list {
  list-style: none;
  margin: 0 0 6px
}

.modal-list li {
  position: relative;
  padding: 11px 0 11px 26px;
  border-bottom: 1px solid rgba(184, 148, 90, .16);
  color: var(--muted);
  font-size: 1rem
}

.modal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 7px;
  height: 7px;
  background: var(--brass);
  border-radius: 50%
}

.modal-list li b {
  color: var(--navy);
  font-weight: 600
}

.modal-format {
  background: var(--cream);
  border-left: 2px solid var(--brass);
  padding: 24px 28px;
  border-radius: 2px;
  margin-bottom: 18px
}

.modal-format h4 {
  font-family: 'Cormorant Garamond';
  font-size: 1.5rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 8px
}

.modal-format p {
  margin-bottom: 0
}

.modal-quote {
  font-family: 'Cormorant Garamond';
  font-size: 1.6rem;
  line-height: 1.35;
  color: var(--navy);
  font-style: italic;
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid var(--line)
}

.modal-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 38px
}

.modal-cta a {
  display: inline-flex;
  align-items: center;
  padding: 15px 34px;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  transition: .4s var(--ease)
}

.modal-cta .mp {
  background: var(--brass);
  color: var(--navy-deep)
}

.modal-cta .mp:hover {
  background: var(--brass-light);
  transform: translateY(-2px)
}

.modal-cta .mg {
  border: 1px solid var(--line);
  color: var(--navy)
}

.modal-cta .mg:hover {
  border-color: var(--brass);
  color: var(--brass-deep)
}

body.modal-lock {
  overflow: hidden
}

/* ============ BOOKING STEPS ============ */
.booking {
  background: var(--cream)
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px
}

.step {
  border-top: 2px solid var(--brass);
  padding-top: 26px
}

.step .sn {
  font-family: 'Cormorant Garamond';
  font-size: 2.6rem;
  color: var(--brass-deep);
  line-height: 1;
  display: block;
  margin-bottom: 14px
}

.step h3 {
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 8px
}

.step p {
  color: var(--muted);
  font-size: .96rem
}

/* ============ PRICING ============ */
.pricing {
  background: var(--navy);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden
}

.price-tag {
  font-family: 'Cormorant Garamond';
  font-size: clamp(4rem, 12vw, 9rem);
  color: #fff;
  font-weight: 400;
  line-height: 1
}

.price-tag em {
  font-style: normal;
  color: var(--brass-light)
}

.price-tag .cur {
  font-size: .8em;
  color: var(--brass-light)
}

.price-note {
  color: rgba(246, 241, 233, .66);
  max-width: 50ch;
  margin: 1.4em auto 0;
  font-size: 1.05rem
}

.price-cond {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
  flex-wrap: wrap
}

.price-cond div {
  max-width: 200px
}

.price-cond .pc-n {
  font-family: 'Cormorant Garamond';
  font-size: 2.4rem;
  color: var(--brass-light)
}

.price-cond .pc-l {
  font-size: .92rem;
  color: rgba(246, 241, 233, .72);
  margin-top: 6px
}

/* ============ CTA ============ */
.cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 170px 0;
  color: #fff
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.cta-bg img {
  transform: scale(1.2)
}

.cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(8, 24, 38, .72), rgba(8, 24, 38, .82))
}

.cta-inner {
  position: relative;
  z-index: 2
}

.cta .overline {
  color: var(--brass-light)
}

.cta h2 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 400;
  margin: .3em auto;
  max-width: 18ch
}

.cta h2 em {
  font-style: italic;
  color: var(--brass-light)
}

.btn-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  transition: .45s var(--ease);
  position: relative;
  overflow: hidden
}

.btn-primary {
  background: var(--brass);
  color: var(--navy-deep)
}

.btn-primary:hover {
  background: var(--brass-light);
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(184, 148, 90, .35)
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, .4);
  color: #fff
}

.btn-ghost:hover {
  background: #fff;
  color: var(--navy);
  transform: translateY(-3px)
}

/* ============ FOOTER ============ */
footer {
  background: var(--navy-deep);
  color: rgba(246, 241, 233, .7);
  padding: 90px 0 40px
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.foot-logo {
  font-family: 'Cormorant Garamond';
  font-size: 2.4rem;
  color: #fff;
  letter-spacing: .16em;
  font-weight: 600
}

.foot-logo small {
  display: block;
  font-family: 'Manrope';
  font-size: .64rem;
  letter-spacing: .36em;
  opacity: .6;
  margin-top: 2px
}

footer p {
  font-size: .98rem;
  max-width: 40ch;
  margin-top: 18px
}

.foot-col h4 {
  font-size: .74rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 20px;
  font-family: 'Manrope';
  font-weight: 500
}

.foot-col a,
.foot-col p {
  display: block;
  font-size: 1rem;
  margin: 0 0 12px;
  transition: color .35s var(--ease)
}

.foot-col a:hover {
  color: var(--brass-light)
}

.foot-bot {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  font-size: .8rem;
  letter-spacing: .08em;
  opacity: .55;
  flex-wrap: wrap;
  gap: 10px
}

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .4s var(--ease), visibility .4s var(--ease);
  background: rgba(6,18,28,.9)
}

.lightbox.open {
  visibility: visible;
  opacity: 1;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px)
}

.lb-overlay {
  position: absolute;
  inset: 0
}

.lb-img-wrap {
  position: relative;
  z-index: 2;
  opacity: 0;
  transition: opacity .4s var(--ease) .05s
}

.lightbox.open .lb-img-wrap {
  opacity: 1
}

.lb-img {
  display: block;
  max-width: 88vw;
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6)
}

.lb-close {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(251,248,243,.94);
  backdrop-filter: blur(6px);
  color: var(--navy);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(.7);
  pointer-events: none;
  transition: background .4s var(--ease), opacity .4s var(--ease), transform .4s var(--ease)
}

.lightbox.open .lb-close {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  transition-delay: .15s
}

.lb-close:hover {
  background: var(--brass);
  color: #fff;
  transform: rotate(90deg)
}

.lb-prev,
.lb-next {
  position: fixed;
  top: 50%;
  z-index: 5;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  cursor: pointer;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease) .15s, background .3s var(--ease), border-color .3s var(--ease), transform .4s var(--ease) .15s
}

.lb-prev {
  left: 24px;
  transform: translateY(-50%) translateX(-10px)
}

.lb-next {
  right: 24px;
  transform: translateY(-50%) translateX(10px)
}

.lightbox.open .lb-prev,
.lightbox.open .lb-next {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%)
}

.lb-prev:hover,
.lb-next:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.5)
}

@media(max-width:900px) {
  .lb-prev,
  .lb-next {
    display: none
  }
}

/* ============ RESPONSIVE ============ */
@media(max-width:900px) {

  .wrap,
  nav,
  nav.scrolled {
    padding-left: 24px;
    padding-right: 24px
  }

  nav {
    padding-top: 14px;
    padding-bottom: 14px
  }

  nav.scrolled {
    padding-top: 11px;
    padding-bottom: 11px
  }

  .logo {
    font-size: 1.5rem
  }

  .logo small {
    font-size: .55rem;
    letter-spacing: .34em;
    margin-top: -2px
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: 110;
    background: var(--navy-deep);
    flex-direction: column;
    justify-content: center;
    gap: 36px;
    transform: translateX(100%);
    transition: transform .55s var(--ease);
    overflow-y: auto
  }

  .nav-links.open {
    transform: none
  }

  .nav-links a {
    color: #fff !important;
    font-size: 1.1rem
  }

  .nav-links .nav-phone {
    color: var(--brass-light) !important
  }

  .burger {
    display: flex
  }

  .burger.x span:nth-child(1) {
    transform: translateY(8px) rotate(45deg)
  }

  .burger.x span:nth-child(2) {
    opacity: 0
  }

  .burger.x span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg)
  }

  nav.scrolled .burger.x span {
    background: #fff
  }

  .section {
    padding: 90px 0
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .intro-media .media:first-child {
    margin-top: 0
  }

  .features {
    grid-template-columns: 1fr
  }

  .feature {
    padding: 28px 0
  }

  .gi {
    width: 220px;
    height: 300px
  }

  .gastro-grid {
    grid-template-columns: 1fr 1fr
  }

  .menu-cols {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .route {
    grid-template-columns: 1fr
  }

  .route .media {
    min-height: 320px;
    order: 1 !important
  }

  .route-body {
    order: 2 !important;
    padding: 44px 24px
  }

  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 26px
  }

  .price-cond {
    gap: 34px
  }

  .modal {
    padding: 0
  }

  .modal-panel {
    max-height: 100vh;
    height: 100%;
    border-radius: 0
  }

  .modal-media {
    height: 240px
  }

  .modal-media .modal-title {
    padding: 28px 24px
  }

  .modal-body {
    padding: 32px 24px 48px
  }

  .modal-close {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px
  }

  .route-list li {
    padding-left: 52px
  }

  .foot-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .hero-meta {
    gap: 28px
  }

  #about, #comfort, #gastro, #routes, #price, #booking {
    scroll-margin-top: 60px
  }
}

@media(max-width:600px) {

  .hero {
    min-height: 520px
  }

  .hero-content {
    padding: 0 24px 7vh
  }

  .hero .overline {
    font-size: .62rem;
    letter-spacing: .3em
  }

  .hero h1 {
    /*font-size: clamp(1.95rem, 8vw, 2.8rem);*/
    font-size: 2.8rem;
    margin: .14em 0 .26em;
    max-width: 18ch
  }

  .hero-sub {
    font-size: 1rem;
    line-height: 1.5;
    max-width: none
  }

  .hero-meta {
    gap: 18px 26px;
    margin-top: 22px
  }

  .hero-meta .n {
    font-size: 1.85rem
  }

  .hero-meta .l {
    font-size: .62rem;
    letter-spacing: .16em
  }

  .scroll-cue {
    display: none
  }
}