/* ============================================================
   Manzilla — landing styles
   Display: Unbounded · Body: Golos Text (Google Fonts)
   Palette: deep #0C1312 · paper #F2E9D8 · teal #2FD3C1 · orange #FF6A3C
   ============================================================ */

:root {
  --bg:        #0C1312;
  --bg-2:      #0e1716;
  --surface:   #14201E;
  --surface-2: #10201D;
  --paper:     #F2E9D8;
  --teal:      #2FD3C1;
  --teal-deep: #12817A;
  --orange:    #FF6A3C;

  --ink-1: rgba(242, 233, 216, 0.94);
  --ink-2: rgba(242, 233, 216, 0.66);
  --ink-3: rgba(242, 233, 216, 0.42);
  --line:  rgba(242, 233, 216, 0.12);
  --line-2:rgba(242, 233, 216, 0.06);

  --dark-1: #10201D;
  --dark-2: rgba(16, 32, 29, 0.66);
  --dark-3: rgba(16, 32, 29, 0.42);
  --paper-line: rgba(16, 32, 29, 0.14);

  --font-display: 'Unbounded', system-ui, sans-serif;
  --font-body: 'Golos Text', system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --radius: 20px;
  --radius-sm: 14px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-card: 0 1px 0 rgba(242,233,216,0.04) inset,
                 0 24px 48px -24px rgba(0,0,0,0.6);
  --shadow-float: 0 18px 40px -16px rgba(0,0,0,0.55),
                  0 2px 0 rgba(242,233,216,0.05) inset;
}

/* ---------- reset / base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink-1);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* fine grain overlay for depth */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 32px;
}

/* ---------- typography ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 8px 15px 8px 13px;
  border: 1px solid rgba(47,211,193,0.28);
  border-radius: 100px;
  background: rgba(47,211,193,0.06);
}
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 12px 1px rgba(47,211,193,0.7); }

/* ---------- brand wordmark ---------- */
.brand__mark, .footer__wordmark { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.03em; }
.brand__mark { font-size: 23px; color: var(--paper); }
.brand__i { position: relative; }
.brand__i::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -0.26em;
  width: 0.16em; height: 0.16em;
  border-radius: 50%;
  background: var(--orange);
}

/* ---------- buttons ---------- */
.btn {
  --btn-fs: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: var(--btn-fs);
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 15px 26px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), background-color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
}
.btn--sm { padding: 11px 20px; --btn-fs: 12.5px; }
.btn:active { transform: translateY(1px) scale(0.99); }

.btn--primary {
  background: var(--orange);
  color: #180a05;
  box-shadow: 0 10px 24px -10px rgba(255,106,60,0.7), 0 1px 0 rgba(255,255,255,0.22) inset;
}
.btn--primary:hover { background: #ff7d54; transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(255,106,60,0.8); }

.btn--teal { background: var(--teal); color: #04201c; box-shadow: 0 10px 24px -12px rgba(47,211,193,0.6); }
.btn--teal:hover { background: #46e0cf; transform: translateY(-2px); }

.btn--ghost {
  background: rgba(242,233,216,0.03);
  color: var(--paper);
  border-color: var(--line);
}
.btn--ghost:hover { background: rgba(242,233,216,0.08); border-color: rgba(242,233,216,0.28); transform: translateY(-2px); }
.btn--ghost-dark { color: var(--dark-1); border-color: var(--paper-line); background: rgba(16,32,29,0.03); }
.btn--ghost-dark:hover { background: rgba(16,32,29,0.06); border-color: rgba(16,32,29,0.28); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12,19,18,0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-2);
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-header.is-scrolled { background: rgba(12,19,18,0.9); border-bottom-color: var(--line); }
.header__inner { display: flex; align-items: center; gap: 24px; height: 72px; }
.nav { display: flex; gap: 28px; margin-inline: auto; }
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1.5px;
  background: var(--teal); transition: right 0.3s var(--ease);
}
.nav__link:hover { color: var(--paper); }
.nav__link:hover::after { right: 0; }

.header__actions { display: flex; align-items: center; gap: 14px; }

.lang-switch { display: inline-flex; gap: 2px; padding: 3px; border: 1px solid var(--line); border-radius: 100px; }
.lang-switch__link {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--ink-3);
  padding: 5px 9px; border-radius: 100px;
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.lang-switch__link:hover { color: var(--paper); }
.lang-switch__link.is-active { color: var(--bg); background: var(--paper); }

.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 12px; background: transparent; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
.nav-toggle span { width: 17px; height: 1.6px; background: var(--paper); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.6px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { position: relative; z-index: 2; padding: clamp(48px, 7vw, 96px) 0 clamp(40px, 5vw, 72px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(720px 420px at 12% -6%, rgba(47,211,193,0.10), transparent 60%),
    radial-gradient(680px 520px at 96% 8%, rgba(255,106,60,0.10), transparent 62%);
}
.hero__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero__text { display: flex; flex-direction: column; align-items: flex-start; gap: 26px; }
.hero__title {
  font-family: var(--font-display); font-weight: 700; color: var(--paper);
  font-size: clamp(34px, 5.2vw, 62px); line-height: 1.06; letter-spacing: -0.02em;
  margin-top: 2px;
}
.hero__subtitle { font-size: clamp(16px, 1.5vw, 19px); line-height: 1.62; color: var(--ink-2); max-width: 30em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__note {
  display: flex; gap: 13px; align-items: flex-start;
  padding: 16px 20px; border-radius: var(--radius-sm);
  background: rgba(242,233,216,0.03); border: 1px solid var(--line);
  max-width: 34em;
}
.hero__note-icon { color: var(--orange); flex-shrink: 0; margin-top: 1px; }
.hero__note-icon svg { width: 19px; height: 19px; }
.hero__note p { font-size: 14px; line-height: 1.5; color: var(--ink-2); }

/* hero arch carousel */
.hero__visual { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.arch {
  position: relative;
  width: min(400px, 82%);
  aspect-ratio: 380 / 530;
  isolation: isolate;
}
.arch__track {
  position: absolute; inset: 0;
  border-radius: 200px 200px 26px 26px;
  overflow: hidden;
  border: 1px solid rgba(242,233,216,0.14);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.75), 0 0 0 6px rgba(242,233,216,0.03);
}
.arch__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.06);
  transition: opacity 1s var(--ease), transform 6s linear;
}
.arch__slide.is-active { opacity: 1; transform: scale(1); }
.arch__glow {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(6,10,9,0.55) 100%);
}
.pill {
  position: absolute; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; color: var(--paper);
  padding: 9px 14px; border-radius: 100px;
  background: rgba(10,16,15,0.72); backdrop-filter: blur(8px);
  border: 1px solid rgba(242,233,216,0.14);
  box-shadow: var(--shadow-float);
}
.pill--city { top: 18px; right: 16px; }
.pill--offer { left: 16px; bottom: 20px; }
.pill__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 10px rgba(47,211,193,0.8); }
.pill__ico { color: var(--teal); display: inline-flex; }
.pill__ico svg { width: 14px; height: 14px; }

.hero-dots { display: flex; gap: 8px; }
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(242,233,216,0.2); border: 0;
  transition: width 0.35s var(--ease), background-color 0.3s var(--ease);
}
.hero-dot.is-active { width: 24px; border-radius: 100px; background: var(--teal); }

/* ---------- marquee ---------- */
.marquee {
  position: relative; z-index: 2;
  border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2);
  padding: 20px 0; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.marquee__group { display: flex; align-items: center; }
.marquee__item {
  font-family: var(--font-display); font-weight: 600; font-size: 20px;
  letter-spacing: 0.02em; text-transform: uppercase; color: rgba(242,233,216,0.5);
  padding: 0 30px;
}
.marquee__sep { width: 7px; height: 7px; transform: rotate(45deg); background: var(--orange); opacity: 0.85; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- section shell ---------- */
.section { position: relative; z-index: 2; padding: clamp(64px, 8vw, 118px) 0; overflow: hidden; }
.section--dark { background: var(--bg); }
.section--paper { background: var(--paper); color: var(--dark-1); }
.section--paper::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: var(--pattern); background-size: 220px; opacity: 1;
}
.section--paper .container { position: relative; z-index: 1; }

.section__watermark {
  position: absolute; top: clamp(24px, 4vw, 54px); right: clamp(-6px, 1vw, 24px);
  font-family: var(--font-display); font-weight: 800; font-size: clamp(110px, 17vw, 232px);
  line-height: 0.8; color: transparent;
  -webkit-text-stroke: 1.4px rgba(47,211,193,0.14);
  z-index: 0; pointer-events: none; user-select: none;
}
.section__watermark--dark { -webkit-text-stroke-color: rgba(16,32,29,0.10); }

.section__title { font-size: clamp(27px, 3.6vw, 42px); letter-spacing: -0.015em; }
.section--dark .section__title { color: var(--paper); }
.section__head { max-width: 640px; margin-bottom: clamp(34px, 4vw, 52px); }
.section__head .section__title { margin-bottom: 16px; }
.section__lead { font-size: clamp(16px, 1.5vw, 19px); line-height: 1.6; color: var(--ink-2); }
.section--paper .section__lead { color: var(--dark-2); }
.features-section .section__title { margin-bottom: clamp(30px, 3.5vw, 46px); }

/* ---------- 01 · features ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card {
  position: relative;
  display: flex; flex-direction: column; gap: 16px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(242,233,216,0.045), rgba(242,233,216,0.015));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  min-height: 190px;
  transition: transform 0.4s var(--ease), border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(47,211,193,0.32); }
.feature-card__body { margin-top: auto; }
.feature-card--wide { grid-row: span 2; justify-content: space-between; }
.feature-card--span2 { grid-column: span 2; flex-direction: row; align-items: center; gap: 22px; }
.feature-card--span2 .feature-card__body { margin-top: 0; }
.feature-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px;
  color: var(--teal); background: rgba(47,211,193,0.08); border: 1px solid rgba(47,211,193,0.18);
}
.feature-card--wide .feature-card__icon { width: 64px; height: 64px; }
.feature-card__icon svg { width: 26px; height: 26px; }
.feature-card--wide .feature-card__icon svg { width: 32px; height: 32px; }
.feature-card__title { font-size: 18px; font-weight: 600; color: var(--paper); margin-bottom: 7px; }
.feature-card--wide .feature-card__title { font-size: 23px; }
.feature-card__text { font-size: 14.5px; color: var(--ink-2); line-height: 1.5; }
.feature-card--accent {
  background: var(--orange);
  border-color: transparent;
  justify-content: center;
  box-shadow: 0 24px 48px -24px rgba(255,106,60,0.55);
}
.feature-card--accent:hover { border-color: transparent; transform: translateY(-4px); }
.feature-card__accent-text { font-size: 15.5px; font-weight: 600; line-height: 1.5; color: #1c0c06; }

/* ---------- 02 · booking ---------- */
.booking { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.booking__lead { font-size: clamp(16px, 1.5vw, 19px); line-height: 1.62; color: var(--dark-2); margin: 22px 0 20px; }
.booking__emphasis { font-family: var(--font-display); font-weight: 500; font-size: clamp(17px, 1.8vw, 21px); line-height: 1.35; letter-spacing: -0.01em; color: var(--teal-deep); }
.pointlist { display: flex; flex-direction: column; }
.pointlist__item { display: flex; gap: 20px; padding: 22px 0; align-items: baseline; border-top: 1px solid var(--paper-line); }
.pointlist__item:first-child { border-top: 0; padding-top: 0; }
.pointlist__num { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--teal-deep); flex-shrink: 0; letter-spacing: 0.02em; min-width: 26px; }
.pointlist__title { font-size: 18px; font-weight: 600; color: var(--dark-1); margin-bottom: 4px; }
.pointlist__text { font-size: 14.5px; color: var(--dark-2); }

/* ---------- 03 · reasons ---------- */
.reasons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.reason-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(242,233,216,0.04), rgba(242,233,216,0.012));
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease), border-color 0.3s var(--ease);
}
.reason-card:hover { transform: translateY(-4px); border-color: rgba(47,211,193,0.3); }
.reason-card__num { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--teal); letter-spacing: 0.04em; }
.reason-card__title { font-size: 20px; font-weight: 600; color: var(--paper); margin: 16px 0 8px; }
.reason-card__text { font-size: 15px; color: var(--ink-2); line-height: 1.5; }
.section__highlight {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(18px, 2.1vw, 25px); line-height: 1.32; letter-spacing: -0.01em;
  color: var(--teal); max-width: 22em; margin-top: clamp(34px, 4vw, 52px);
}

/* ---------- 04 · timeline ---------- */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.timeline-card {
  position: relative;
  padding: 30px 26px 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--paper-line);
  box-shadow: 0 20px 40px -28px rgba(16,32,29,0.4);
  text-align: center;
}
.timeline-card__mark { display: block; width: 10px; height: 10px; border-radius: 50%; background: var(--teal-deep); margin: 0 auto 18px; box-shadow: 0 0 0 5px rgba(18,129,122,0.12); }
.timeline-card__value { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 2.4vw, 30px); color: var(--dark-1); letter-spacing: -0.01em; }
.timeline-card__sub { font-size: 13.5px; color: var(--dark-2); margin-top: 8px; line-height: 1.45; }
.timeline-card--dark { background: var(--dark-1); border-color: transparent; box-shadow: 0 26px 48px -24px rgba(0,0,0,0.5); }
.timeline-card--dark .timeline-card__value { color: var(--orange); }
.timeline-card--dark .timeline-card__sub { color: var(--ink-2); }
.timeline-card--dark .timeline-card__mark { background: var(--orange); box-shadow: 0 0 0 5px rgba(255,106,60,0.16); }
.section__emphasis {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(18px, 2.1vw, 25px); line-height: 1.34; letter-spacing: -0.01em;
  color: var(--dark-1); max-width: 24em; margin: clamp(34px, 4vw, 50px) 0 26px;
}
.section__cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- 05 · contact ---------- */
.contact { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.contact-section .section__lead { margin-bottom: 30px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; max-width: 520px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field__label { font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); }
.field__input {
  width: 100%;
  font: inherit; font-size: 15px; color: var(--paper);
  padding: 14px 16px;
  background: rgba(242,233,216,0.03);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease);
}
.field__input::placeholder { color: var(--ink-3); }
.field__input:hover { border-color: rgba(242,233,216,0.22); }
.field__input:focus { outline: none; border-color: var(--teal); background: rgba(47,211,193,0.05); }
.field__textarea { resize: vertical; min-height: 96px; }
.field__select { position: relative; display: block; }
.field__select::after {
  content: ""; position: absolute; right: 16px; top: 50%; width: 9px; height: 9px;
  border-right: 1.6px solid var(--ink-3); border-bottom: 1.6px solid var(--ink-3);
  transform: translateY(-70%) rotate(45deg); pointer-events: none;
}
.field__select .field__input { appearance: none; -webkit-appearance: none; padding-right: 40px; }
.field__select .field__input option { background: var(--surface); color: var(--paper); }
.checkbox { display: flex; gap: 11px; align-items: flex-start; font-size: 13.5px; color: var(--ink-2); cursor: pointer; }
.checkbox input { width: 18px; height: 18px; margin-top: 1px; accent-color: var(--teal); flex-shrink: 0; }
.contact-form .btn { align-self: flex-start; margin-top: 4px; }

.contact__aside {
  padding: clamp(26px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(242,233,216,0.04), rgba(242,233,216,0.01));
  box-shadow: var(--shadow-card);
}
.contact__aside-title { font-size: 20px; font-weight: 600; color: var(--paper); }
.contact__aside-text { font-size: 14.5px; color: var(--ink-2); margin: 10px 0 20px; line-height: 1.5; }
.waitlist { display: flex; flex-direction: column; gap: 12px; }
.waitlist .btn { width: 100%; }
.contact__links { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 12px; }
.contact__link { font-size: 15px; font-weight: 600; color: var(--teal); width: fit-content; transition: color 0.2s var(--ease); }
.contact__link:hover { color: #4fe4d3; }
.form-status { font-size: 13.5px; min-height: 1em; }
.form-status.is-ok { color: var(--teal); }
.form-status.is-err { color: var(--orange); }

/* ---------- footer ---------- */
.site-footer { position: relative; z-index: 2; background: var(--bg-2); border-top: 1px solid var(--line-2); padding: clamp(40px, 5vw, 60px) 0 34px; overflow: hidden; }
.footer__wordmark {
  font-size: clamp(72px, 18vw, 220px); line-height: 0.82; color: transparent;
  -webkit-text-stroke: 1.4px rgba(242,233,216,0.1);
  letter-spacing: -0.04em; margin-bottom: 30px; user-select: none;
}
.footer__inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; padding-bottom: 26px; border-bottom: 1px solid var(--line-2); }
.footer__tagline { font-size: 15px; color: var(--ink-2); }
.footer__right { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.footer__socials { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__social { font-size: 13.5px; color: var(--ink-2); transition: color 0.2s var(--ease); }
.footer__social:hover { color: var(--teal); }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 22px; }
.footer__copy { font-size: 13px; color: var(--ink-3); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal-link { font-size: 13px; color: var(--ink-3); transition: color 0.2s var(--ease); }
.footer__legal-link:hover { color: var(--ink-2); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
  .booking, .contact { grid-template-columns: 1fr; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .feature-card--wide { grid-row: auto; grid-column: span 2; min-height: auto; flex-direction: row; align-items: center; gap: 22px; }
  .feature-card--wide .feature-card__body { margin-top: 0; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .container { padding-inline: 22px; }
  .nav {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; gap: 4px; margin: 0;
    padding: 16px 22px 24px;
    background: rgba(12,19,18,0.97); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }
  .nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__link { font-size: 16px; padding: 10px 0; }
  .nav-toggle { display: inline-flex; order: 3; }
  .header__cta { display: none; }
  .header__inner { gap: 12px; }
  .header__actions { margin-left: auto; }
}

@media (max-width: 560px) {
  .features { grid-template-columns: 1fr; }
  .feature-card--wide, .feature-card--span2 { grid-column: auto; flex-direction: column; align-items: flex-start; }
  .feature-card--wide .feature-card__body { margin-top: auto; }
  .reasons { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero__note { max-width: none; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .marquee__track { animation: none; }
  .arch__slide { transition: opacity 0.001ms; transform: none; }
}
