:root {
  --bg: #0c0b0a;
  --bg-elev: #141211;
  --ink: #f4efe6;
  --ink-muted: rgba(244, 239, 230, 0.62);
  --stone: #c4b8a5;
  --line: rgba(244, 239, 230, 0.12);
  --accent: #d4a574;
  --nav-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Cormorant Garamond", "Noto Sans Georgian", Georgia, serif;
  --font-body: "Outfit", "Noto Sans Georgian", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 48px);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s;
}

.nav.scrolled {
  background: rgba(12, 11, 10, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  letter-spacing: 0.14em;
  font-weight: 500;
  white-space: nowrap;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(12, 11, 10, 0.35);
  backdrop-filter: blur(10px);
}

.lang-btn {
  min-width: 42px;
  width: 42px;
  padding: 0.4rem 0;
  border-radius: 999px;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: color 0.25s, background 0.25s;
  text-align: center;
  flex-shrink: 0;
}

.lang-btn:hover {
  color: var(--ink);
}

.lang-btn.on {
  background: var(--ink);
  color: var(--bg);
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: color 0.25s;
  min-width: 5.5rem;
  text-align: center;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.7rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: background 0.3s, border-color 0.3s;
  min-width: 9.5rem;
  text-align: center;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.nav-burger {
  display: none;
  width: 32px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
}

.nav-burger span {
  display: block;
  height: 1px;
  background: var(--ink);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-h) + 12px) clamp(20px, 5vw, 64px) clamp(48px, 8vh, 80px);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  transform: scale(1.08);
  transition: transform 2.4s var(--ease);
  will-change: transform;
}

.hero.is-in .hero-img {
  transform: scale(1);
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 11, 10, 0.35) 0%, rgba(12, 11, 10, 0.15) 35%, rgba(12, 11, 10, 0.78) 100%),
    linear-gradient(90deg, rgba(12, 11, 10, 0.45) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  padding-bottom: 1rem;
  margin-top: auto;
}

.hero-brand {
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

/* Avoid double brand under fixed nav while at top of page */
.nav:not(.scrolled) .logo {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.nav.scrolled .logo {
  opacity: 1;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.2rem, 9vw, 7.2rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  min-height: 1.95em;
}

.hero-sub {
  max-width: 28rem;
  color: var(--ink-muted);
  font-size: 1.05rem;
  margin-bottom: 2.25rem;
  min-height: 3.2em;
  line-height: 1.5;
}

.search {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 0.7fr auto;
  gap: 1px;
  background: rgba(244, 239, 230, 0.1);
  border: 1px solid rgba(244, 239, 230, 0.18);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  max-width: 860px;
}

.search-base {
  grid-template-columns: 1fr 1fr 0.7fr 0.9fr auto;
  max-width: 920px;
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.85rem 1.1rem;
  background: rgba(12, 11, 10, 0.55);
}

.search-field span {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}

.search-field input,
.search-field select {
  font-size: 0.92rem;
  color: var(--ink);
  outline: none;
  width: 100%;
  color-scheme: dark;
  background: transparent;
}

.search-field input[type="date"] {
  min-height: 1.35rem;
}

.search-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.85);
  opacity: 0.6;
  cursor: pointer;
}

.search-btn {
  padding: 0 1.6rem;
  background: var(--ink);
  color: var(--bg);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s;
}

.search-btn:hover {
  background: var(--accent);
  color: var(--bg);
}

.hero-scroll {
  position: absolute;
  right: clamp(20px, 4vw, 48px);
  bottom: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.hero-scroll i {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--ink-muted), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.5); opacity: 0.4; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; transform-origin: top; }
}

/* REVEALS */
.reveal,
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.reveal.show,
.reveal-up.show {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* SECTIONS */
.explore {
  padding: clamp(80px, 14vh, 140px) clamp(20px, 5vw, 64px) clamp(40px, 6vh, 64px);
}

.section-head {
  max-width: 640px;
}

.section-head.light {
  margin-bottom: 2.5rem;
}

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
  min-height: 1.15em;
}

.lede {
  color: var(--ink-muted);
  font-size: 1.05rem;
  max-width: 32rem;
  min-height: 3.2em;
  line-height: 1.55;
}

/* LOCATIONS — editorial blocks, not card grid */
.locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 0 clamp(12px, 2vw, 24px) clamp(12px, 2vw, 24px);
}

.loc {
  position: relative;
  min-height: clamp(320px, 42vh, 480px);
  overflow: hidden;
  background: #1a1714;
}

.loc-wide {
  grid-column: 1 / -1;
  min-height: clamp(380px, 52vh, 620px);
}

.loc img {
  transition: transform 1.4s var(--ease);
}

.loc:hover img {
  transform: scale(1.06);
}

.loc-copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(24px, 4vw, 48px);
  background: linear-gradient(transparent, rgba(12, 11, 10, 0.88));
}

.loc-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.loc-copy p {
  color: var(--ink-muted);
  max-width: 28rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.text-link {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  transition: letter-spacing 0.3s;
}

.text-link:hover {
  letter-spacing: 0.2em;
}

/* PROPERTIES */
.properties {
  padding: clamp(80px, 12vh, 120px) clamp(20px, 5vw, 64px);
  background: var(--bg-elev);
}

.prop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.chip {
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: all 0.25s;
}

.chip:hover,
.chip.on {
  color: var(--bg);
  background: var(--ink);
  border-color: var(--ink);
}

.prop-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.prop {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  min-height: 360px;
  background: var(--bg);
  overflow: hidden;
  cursor: pointer;
  border: none;
  text-align: left;
  width: 100%;
  color: inherit;
  padding: 0;
}

.prop-media {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  background: linear-gradient(135deg, #1a1714, #2a241f);
}

.prop-media img {
  transition: transform 1.2s var(--ease);
  background: #1a1714;
}

.prop:hover .prop-media img {
  transform: scale(1.05);
}

.prop-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 56px);
  gap: 0.75rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.prop:nth-child(even),
.prop.prop-flip {
  grid-template-columns: 1fr 1.35fr;
}

.prop:nth-child(even) .prop-media,
.prop.prop-flip .prop-media {
  order: 2;
}

.prop:nth-child(even) .prop-info,
.prop.prop-flip .prop-info {
  border-right: none;
  border-left: 1px solid var(--line);
}

.prop-price .strike,
.book-strike {
  display: inline-block;
  margin-right: 0.5rem;
  color: var(--ink-muted);
  text-decoration: line-through;
  font-size: 0.9em;
  font-weight: 300;
}

.book-strike {
  display: block;
  margin: 0 0 0.75rem;
}

.prop-type {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.prop-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.1;
}

.prop-loc {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.prop-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 0.5rem;
  font-size: 0.82rem;
  color: var(--stone);
}

.prop-price {
  margin-top: 1rem;
  font-size: 1.05rem;
}

.prop-price span {
  color: var(--ink-muted);
  font-size: 0.85rem;
}

.prop-go {
  margin-top: 1.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: color 0.25s;
}

.prop:hover .prop-go {
  color: var(--accent);
}

/* MAP */
.map-section {
  padding: clamp(72px, 10vh, 110px) clamp(16px, 3vw, 40px) clamp(40px, 6vh, 64px);
  background: var(--bg);
}

.map-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  margin-bottom: 1.75rem;
  padding: 0 clamp(4px, 1vw, 24px);
}

.map-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.map-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0a0908;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.map-split {
  display: grid;
  grid-template-columns: 1.45fr minmax(300px, 380px);
  min-height: min(74vh, 720px);
}

.map-stage {
  position: relative;
  min-height: 420px;
}

.georgia-map {
  width: 100%;
  height: 100%;
  min-height: min(74vh, 720px);
  background: #0a0908;
}

.map-sidebar {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
  background: rgba(12, 11, 10, 0.96);
  max-height: min(74vh, 720px);
}

.map-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

.map-sidebar-head strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.map-sidebar-head span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  padding: 0.3rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.map-list {
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  scroll-behavior: smooth;
}

.map-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 0.75rem;
  width: 100%;
  text-align: left;
  padding: 0.45rem;
  border-radius: 14px;
  border: 1px solid transparent;
  background: rgba(244, 239, 230, 0.03);
  color: inherit;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease);
}

.map-card img {
  width: 96px;
  height: 78px;
  object-fit: cover;
  border-radius: 10px;
  background: #1a1714;
}

.map-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  min-width: 0;
}

.map-card-price {
  font-size: 0.92rem;
  font-weight: 500;
}

.map-card-price small {
  margin-left: 0.25rem;
  color: var(--ink-muted);
  font-weight: 300;
  font-size: 0.72rem;
}

.map-card strong {
  font-size: 0.92rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.map-card-meta {
  font-size: 0.75rem;
  color: var(--ink-muted);
}

.map-card-open {
  margin-top: 0.2rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.85;
}

.map-card:hover .map-card-open,
.map-card.is-active .map-card-open {
  opacity: 1;
}

.map-card:hover {
  background: rgba(244, 239, 230, 0.06);
  border-color: var(--line);
}

.map-card.is-active {
  border-color: rgba(212, 165, 116, 0.55);
  background: rgba(212, 165, 116, 0.08);
  transform: translateX(-2px);
}

.map-legend {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 500;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(12, 11, 10, 0.88);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  pointer-events: none;
}

.georgia-map .leaflet-container {
  background: #0a0908;
  font: inherit;
}

.georgia-map .maplibregl-map {
  width: 100%;
  height: 100%;
  background: #0a0908;
  font: inherit;
}

.georgia-map .maplibregl-ctrl-top-left {
  top: 12px;
  left: 12px;
}

.georgia-map .maplibregl-ctrl-group {
  background: rgba(12, 11, 10, 0.88) !important;
  border: 1px solid rgba(244, 239, 230, 0.12) !important;
  border-radius: 12px !important;
  box-shadow: none !important;
  overflow: hidden;
}

.georgia-map .maplibregl-ctrl-group button {
  width: 34px !important;
  height: 34px !important;
  background-color: transparent !important;
}

.georgia-map .maplibregl-ctrl-group button + button {
  border-top: 1px solid rgba(244, 239, 230, 0.12) !important;
}

.georgia-map .maplibregl-ctrl button.maplibregl-ctrl-zoom-in .maplibregl-ctrl-icon,
.georgia-map .maplibregl-ctrl button.maplibregl-ctrl-zoom-out .maplibregl-ctrl-icon {
  filter: invert(1);
  opacity: 0.85;
}

.georgia-map .maplibregl-ctrl-attrib,
.georgia-map .maplibregl-ctrl-bottom-right {
  display: none !important;
}

.georgia-map canvas {
  outline: none;
}

.maplibregl-popup.map-mini-popup .maplibregl-popup-content {
  padding: 0;
  background: rgba(12, 11, 10, 0.94);
  border: 1px solid rgba(244, 239, 230, 0.14);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  color: #f4efe6;
}

.maplibregl-popup.map-mini-popup .maplibregl-popup-tip {
  border-top-color: rgba(12, 11, 10, 0.94);
}

.map-mini {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0;
  min-width: 240px;
}

.map-mini img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  background: #1a1714;
}

.map-mini-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.7rem 0.8rem;
}

.map-mini-price {
  font-size: 0.95rem;
  font-weight: 500;
}

.map-mini-price small {
  margin-left: 0.25rem;
  color: rgba(244, 239, 230, 0.55);
  font-size: 0.7rem;
  font-weight: 300;
}

.map-mini-body strong {
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.25;
}

.map-mini-body span {
  font-size: 0.72rem;
  color: rgba(244, 239, 230, 0.55);
}

.map-pin-wrap {
  background: transparent !important;
  border: none !important;
}

.map-pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.map-pin:hover,
.map-pin.is-active {
  z-index: 10;
}

.map-pin-price {
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  border: 1px solid rgba(244, 239, 230, 0.15);
  box-shadow: none;
}

.map-pin.is-sea .map-pin-price {
  background: #e8f0f4;
}

.map-pin.is-mountains .map-pin-price {
  background: var(--accent);
  color: #1a1410;
}

.map-pin.is-active .map-pin-price {
  outline: 2px solid rgba(212, 165, 116, 0.7);
}

.map-pin-dot {
  display: none;
}

@media (max-width: 960px) {
  .map-split {
    grid-template-columns: 1fr;
  }

  .map-sidebar {
    border-left: none;
    border-top: 1px solid var(--line);
    max-height: 360px;
  }

  .georgia-map,
  .map-stage {
    min-height: 52vh;
    height: 52vh;
  }

  .map-legend {
    left: 12px;
    right: auto;
  }
}

/* STORY */
.story {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.story-media {
  position: absolute;
  inset: 0;
}

.story-media img {
  transform: scale(1.1);
  will-change: transform;
}

.story-veil {
  position: absolute;
  inset: 0;
  background: rgba(12, 11, 10, 0.55);
}

.story-copy {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 48px 24px;
  max-width: 820px;
}

.story-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 2.5rem;
}

.story-title .line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.story.in-view .story-title .line {
  opacity: 1;
  transform: none;
}

.story.in-view .story-title .line:nth-child(2) {
  transition-delay: 0.15s;
}

.story-lines {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.story-lines p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.75rem);
  font-style: italic;
  color: var(--ink-muted);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.story.in-view .story-lines p {
  opacity: 1;
  transform: none;
}

.story.in-view .story-lines p:nth-child(1) { transition-delay: 0.35s; }
.story.in-view .story-lines p:nth-child(2) { transition-delay: 0.5s; }
.story.in-view .story-lines p:nth-child(3) { transition-delay: 0.65s; }
.story.in-view .story-lines p:nth-child(4) { transition-delay: 0.8s; }

/* CONTACT */
.contact {
  padding: clamp(100px, 16vh, 160px) clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--line);
}

.contact-inner {
  max-width: 720px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.75rem;
  background: var(--ink);
  color: var(--bg);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  transition: transform 0.35s var(--ease), background 0.3s;
}

.btn:hover {
  background: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

/* FOOTER */
.footer {
  padding: 48px clamp(20px, 5vw, 64px) 40px;
  border-top: 1px solid var(--line);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer nav a,
.social a {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: color 0.25s;
}

.footer nav a:hover,
.social a:hover {
  color: var(--ink);
}

.social {
  display: flex;
  gap: 1.25rem;
}

.footer-tag {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  letter-spacing: 0.08em;
  color: var(--stone);
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

/* DETAIL OVERLAY */
.detail {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  overflow: auto;
  animation: detailIn 0.55s var(--ease);
}

.detail[hidden] {
  display: none;
}

@keyframes detailIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

.detail-close {
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 210;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(12, 11, 10, 0.7);
  backdrop-filter: blur(10px);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--ink);
}

.detail-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  height: min(72vh, 720px);
  background: #141211;
}

.detail-gallery img {
  background: #1a1714;
  min-height: 140px;
}

.detail-gallery img:first-child {
  grid-row: 1 / -1;
}

.detail-body {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 340px);
  gap: clamp(32px, 5vw, 64px);
  padding: clamp(32px, 5vw, 64px);
  max-width: 1200px;
  margin: 0 auto;
}

.detail-loc {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.detail-main h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.detail-meta {
  color: var(--stone);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.detail-desc {
  color: var(--ink-muted);
  max-width: 40rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.detail-h {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 1.75rem 0 0.85rem;
  color: var(--stone);
}

.amenities {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.amenities li {
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--ink-muted);
}

.host {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.host-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: #1a1714;
}

.host strong {
  display: block;
  font-weight: 500;
}

.host span {
  color: var(--ink-muted);
  font-size: 0.85rem;
}

.map-placeholder {
  height: 180px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background:
    linear-gradient(rgba(12, 11, 10, 0.4), rgba(12, 11, 10, 0.4)),
    url("images/lawn-batumi.jpg") center/cover;
}

.book-panel {
  position: sticky;
  top: 88px;
  align-self: start;
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--bg-elev);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.book-price {
  font-family: var(--font-display);
  font-size: 2rem;
}

.book-price small {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.book-avail {
  font-size: 0.82rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.book-panel label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}

.book-panel input,
.book-panel select {
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
  color-scheme: dark;
}

.img-fallback {
  object-fit: cover;
}

.book-btn {
  margin-top: 0.5rem;
  width: 100%;
}

.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 300;
  padding: 0.9rem 1.4rem;
  background: var(--ink);
  color: var(--bg);
  font-size: 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
  animation: toastIn 0.4s var(--ease);
}

.toast[hidden] {
  display: none;
}

@keyframes toastIn {
  from { opacity: 0; transform: translate(-50%, 12px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

body.detail-open {
  overflow: hidden;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .lang-btn {
    min-width: 32px;
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
  }

  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(12, 11, 10, 0.95);
    backdrop-filter: blur(16px);
    padding: 24px;
    gap: 1.25rem;
    border-bottom: 1px solid var(--line);
  }

  .nav.open .nav-cta {
    display: inline-flex;
    position: absolute;
    top: calc(var(--nav-h) + 220px);
    left: 24px;
  }

  .search {
    grid-template-columns: 1fr 1fr;
  }

  .search-btn {
    grid-column: 1 / -1;
    padding: 1.1rem;
  }

  .locations {
    grid-template-columns: 1fr;
  }

  .loc-wide {
    grid-column: auto;
  }

  .prop,
  .prop:nth-child(even),
  .prop.prop-flip {
    grid-template-columns: 1fr;
  }

  .prop:nth-child(even) .prop-media,
  .prop.prop-flip .prop-media {
    order: 0;
  }

  .prop-info,
  .prop:nth-child(even) .prop-info,
  .prop.prop-flip .prop-info {
    border: none;
    border-bottom: 1px solid var(--line);
  }

  .detail-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 280px 140px 140px;
    height: auto;
  }

  .detail-gallery img:first-child {
    grid-row: auto;
  }

  .detail-body {
    grid-template-columns: 1fr;
  }

  .book-panel {
    position: static;
  }
}

@media (max-width: 560px) {
  .search {
    grid-template-columns: 1fr;
  }

  .hero-scroll {
    display: none;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ─── Golden Star base extras ─── */
.price-banner {
  margin-top: 2.5rem;
  padding: 1.5rem clamp(20px, 3vw, 32px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  max-width: 920px;
}

.price-old {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: line-through;
  margin-bottom: 0.35rem;
}

.price-launch {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--accent);
}

.price-banner > p {
  color: var(--ink-muted);
  font-size: 0.92rem;
  max-width: 22rem;
}

.routes,
.packages,
.kitchen {
  padding: clamp(80px, 12vh, 120px) clamp(20px, 5vw, 64px);
}

.packages {
  background: var(--bg-elev);
}

.route-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 2.5rem;
}

.route-block {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 240px;
  background: var(--bg-elev);
  overflow: hidden;
  cursor: pointer;
}

.route-block:nth-child(3),
.route-block:nth-child(4) {
  background: #12100e;
}

.route-media {
  min-height: 200px;
  overflow: hidden;
  background: #1a1714;
}

.route-media img {
  transition: transform 1.2s var(--ease);
}

.route-block:hover .route-media img {
  transform: scale(1.05);
}

.route-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
  padding: clamp(20px, 3vw, 36px);
}

.route-diff {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.route-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 400;
  line-height: 1.15;
}

.route-copy p {
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.route-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--stone);
}

.package-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 2.5rem;
}

.pkg {
  display: flex;
  flex-direction: column;
  text-align: left;
  background: var(--bg);
  border: none;
  color: inherit;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  min-height: 320px;
}

.pkg-media {
  height: 180px;
  overflow: hidden;
  background: #1a1714;
}

.pkg-media img {
  transition: transform 1.2s var(--ease);
}

.pkg:hover .pkg-media img {
  transform: scale(1.05);
}

.pkg-copy {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.4rem 1.35rem 1.6rem;
  flex: 1;
  border: 1px solid var(--line);
  border-top: none;
}

.pkg-mark {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
}

.pkg-copy p {
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  flex: 1;
}

.pkg-copy strong {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--accent);
}

.kitchen-layout {
  max-width: 1100px;
}

.menu-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.menu-col h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--accent);
}

.menu-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.menu-col li {
  color: var(--ink-muted);
  font-size: 0.95rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--line);
}

.book-section {
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
}

.book-inner {
  max-width: 720px;
}

.book-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.book-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.book-form label span {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}

.book-form input,
.book-form select,
.book-form textarea {
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(12, 11, 10, 0.55);
  color: var(--ink);
  outline: none;
  color-scheme: dark;
  width: 100%;
  resize: vertical;
}

.book-form input:focus,
.book-form select:focus,
.book-form textarea:focus {
  border-color: rgba(212, 165, 116, 0.55);
}

.book-note {
  grid-column: 1 / -1;
}

.book-submit {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 0.5rem;
}

@media (max-width: 960px) {
  .route-grid,
  .package-list,
  .menu-cols {
    grid-template-columns: 1fr;
  }

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

  .book-form {
    grid-template-columns: 1fr;
  }

  .search-base {
    grid-template-columns: 1fr 1fr;
  }

  .search-base .search-btn {
    grid-column: 1 / -1;
    padding: 1rem;
  }
}

@media (max-width: 560px) {
  .search-base {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
