/* ============================================================
   kucaprodajabeograd.rs — premium static landing page
   Mobile-first, system-font body + Cormorant serif headings
   ============================================================ */

:root {
  /* warm ivory & charcoal palette */
  --bg:          #faf7f1;
  --bg-alt:      #f3eee2;
  --surface:     #ffffff;
  --ink:         #1c1a16;
  --ink-soft:    #3a352c;
  --muted:       #5f5849;
  --muted-soft:  #756d5e;
  --gold:        #a37e3c;
  --gold-soft:   #c8a565;
  --gold-line:   #ddc99c;
  --green:       #5d6e4d;
  --line:        #e6dfcf;
  --shadow-sm:   0 1px 2px rgba(28, 26, 22, .04), 0 2px 8px rgba(28, 26, 22, .04);
  --shadow-md:   0 4px 14px rgba(28, 26, 22, .06), 0 14px 40px rgba(28, 26, 22, .06);
  --shadow-lg:   0 20px 60px rgba(28, 26, 22, .14);

  --serif: 'Cormorant Garamond', 'Cormorant', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:  -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --container: 1240px;
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 14px;

  --section-pad-y: clamp(3rem, 7vw, 6rem);
  --gutter:        clamp(1rem, 4vw, 2rem);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--gold-line); color: var(--ink); }
hr { border: none; border-top: 1px solid var(--line); margin: 2rem 0; }

/* ---------- typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.12;
  margin: 0 0 .6em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.2rem, 6vw, 4.4rem); font-weight: 500; line-height: 1.05; letter-spacing: -0.018em; }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); line-height: 1.1; }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); line-height: 1.2; }
p { text-wrap: pretty; }
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero .eyebrow {
  color: #f3d99a;
  text-shadow: 0 1px 8px rgba(0,0,0,.55), 0 1px 2px rgba(0,0,0,.5);
}
.lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  color: var(--ink-soft);
  line-height: 1.5;
  font-weight: 400;
}

/* ---------- layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
.section   { padding-block: var(--section-pad-y); }
.section--alt { background: var(--bg-alt); }
.section--dark {
  background: linear-gradient(180deg, #1c1a16 0%, #14120e 100%);
  color: #d6cfbe;
}
.section--dark h2, .section--dark h3 { color: #f6efde; }
.section-head { max-width: 720px; margin-bottom: clamp(1.8rem, 3.5vw, 2.6rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.divider {
  display: inline-block;
  width: 56px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 .9rem .35em;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .9rem 1.6rem;
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .04em;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: all .25s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--ink); color: #faf7f1;
  border-color: var(--ink);
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); }
.btn-secondary {
  background: transparent; color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--bg); }
.btn-ghost {
  background: rgba(255,255,255,.96); color: var(--ink);
  border-color: rgba(28,26,22,.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn-whatsapp {
  background: #1FAD54; color: #fff; border-color: #1FAD54;
  text-shadow: 0 1px 2px rgba(0,0,0,.35);
}
.btn-whatsapp:hover { background: #168944; border-color: #168944; }
.btn-viber {
  background: #6452D9; color: #fff; border-color: #6452D9;
  text-shadow: 0 1px 2px rgba(0,0,0,.35);
}
.btn-viber:hover { background: #4f3eb8; border-color: #4f3eb8; }
.btn-telegram {
  background: #229ED9; color: #fff; border-color: #229ED9;
  text-shadow: 0 1px 2px rgba(0,0,0,.35);
}
.btn-telegram:hover { background: #1a82b3; border-color: #1a82b3; }
.btn .icon { width: 1.05em; height: 1.05em; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 241, .94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 64px;
  padding-block: .75rem;
}
.brand {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
  display: flex; align-items: center; gap: .5rem;
}
.brand__mark {
  width: 28px; height: 28px;
  border: 1.5px solid var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-family: var(--serif); font-style: italic; font-size: 1rem;
  border-radius: 50%;
  flex: 0 0 auto;
}
.brand__name { display: none; }
@media (min-width: 480px) { .brand__name { display: inline; } }
.site-nav { display: none; gap: 1.6rem; }
.site-nav a {
  font-size: .92rem; font-weight: 500; color: var(--ink-soft);
  position: relative; padding-block: .25rem;
}
.site-nav a:hover { color: var(--gold); }
@media (min-width: 992px) { .site-nav { display: flex; } }
.site-header__cta { display: flex; align-items: center; gap: .8rem; }
.lang-switch {
  display: flex; gap: .25rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .05em;
  text-transform: uppercase;
}
.lang-switch a {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .4rem .6rem;
  color: var(--muted); border-radius: 2px;
  transition: all .2s ease;
  min-width: 56px;
  border: 1px solid transparent;
  line-height: 1;
}
.lang-switch a:hover { color: var(--ink); border-color: var(--line); }
.lang-switch a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.lang-switch a[aria-current="page"] { color: var(--ink); border-color: var(--gold-line); background: rgba(163,126,60,.08); }
.lang-switch .flag {
  width: 18px; height: 12px;
  flex: 0 0 auto;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 1px;
  overflow: hidden;
  display: block;
}
.header-call { display: none; }
@media (min-width: 768px) { .header-call { display: inline-flex; } }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 880px);
  color: #faf7f1;
  isolation: isolate;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: 4rem;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background: #1c1a16;
  overflow: hidden;
}
.hero__bg img,
.hero__bg video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 25% 70%, rgba(20,18,14,.78) 0%, rgba(20,18,14,.45) 45%, rgba(20,18,14,.0) 75%),
    linear-gradient(180deg, rgba(20,18,14,.55) 0%, rgba(20,18,14,.32) 28%, rgba(20,18,14,.42) 55%, rgba(20,18,14,.82) 88%, rgba(20,18,14,.95) 100%),
    linear-gradient(to right, rgba(20,18,14,.55) 0%, rgba(20,18,14,.0) 45%);
  z-index: 1;
}
@media (min-width: 768px) {
  .hero__bg::after {
    background:
      radial-gradient(ellipse 60% 65% at 22% 75%, rgba(20,18,14,.65) 0%, rgba(20,18,14,.25) 50%, rgba(20,18,14,.0) 80%),
      linear-gradient(180deg, rgba(20,18,14,.42) 0%, rgba(20,18,14,.05) 28%, rgba(20,18,14,.0) 50%, rgba(20,18,14,.55) 85%, rgba(20,18,14,.92) 100%),
      linear-gradient(to right, rgba(20,18,14,.55) 0%, rgba(20,18,14,.0) 45%);
  }
}
.hero__inner { padding-block: 3rem 0; }
.hero h1 { color: #fff; max-width: 18ch; margin-bottom: 1.2rem; text-shadow: 0 2px 18px rgba(0,0,0,.55), 0 1px 3px rgba(0,0,0,.5); }
.hero__sub {
  max-width: 50ch; font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: #f5efe2; line-height: 1.55; margin-bottom: 1.4rem;
  text-shadow: 0 2px 14px rgba(0,0,0,.7), 0 1px 3px rgba(0,0,0,.6);
}
.hero__trust {
  display: flex; flex-wrap: wrap; gap: .45rem .55rem;
  font-size: .75rem; letter-spacing: .14em; text-transform: uppercase;
  color: #fff; font-weight: 600;
  margin-bottom: 2rem;
}
.hero__trust span {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .35rem .7rem;
  background: rgba(20,18,14,.55);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 999px;
}
.hero__trust span::before { content: ""; width: 5px; height: 5px; background: var(--gold-soft); border-radius: 50%; flex: 0 0 auto; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .7rem; }
.hero__facts {
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.22);
  border-bottom: 1px solid rgba(255,255,255,.22);
  background: rgba(20, 18, 14, .42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.fact {
  padding: 1rem .75rem;
  border-right: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
  text-align: center;
  display: flex; flex-direction: column; justify-content: center; gap: .35rem;
  min-height: 92px;
}
.fact:nth-child(3n) { border-right: none; }
.fact:nth-last-child(-n+3) { border-bottom: none; }
.fact__value {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.6vw, 1.85rem);
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.01em;
}
.fact__label {
  display: block;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
}
@media (min-width: 992px) {
  .hero__facts { grid-template-columns: repeat(6, 1fr); }
  .fact { border-bottom: none; min-height: 96px; padding: 1.1rem .9rem; }
  .fact:nth-child(3n) { border-right: 1px solid rgba(255,255,255,.14); }
  .fact:last-child { border-right: none; }
}

/* ---------- intro ---------- */
.intro__grid {
  display: grid; gap: 2.5rem;
  align-items: start;
}
@media (min-width: 800px) {
  .intro__grid { grid-template-columns: 1fr 1.2fr; gap: clamp(2rem, 5vw, 5rem); }
}
.intro__copy p { font-size: 1.05rem; line-height: 1.75; margin: 0 0 1rem; color: var(--ink-soft); }
.intro__media { position: relative; }
.intro__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.intro__media .badge {
  position: absolute; bottom: -1rem; right: -1rem;
  background: var(--bg);
  padding: 1rem 1.4rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  border: 1px solid var(--gold-line);
  color: var(--ink);
  max-width: 16rem;
  box-shadow: var(--shadow-md);
}

/* ---------- highlights ---------- */
.highlights__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.highlight {
  background: var(--surface);
  padding: 2rem 1.5rem;
  display: flex; flex-direction: column; align-items: flex-start; gap: .9rem;
  transition: background .25s ease;
}
.highlight:hover { background: var(--bg); }
.highlight__icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold);
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  flex: 0 0 auto;
}
.highlight__icon svg { width: 22px; height: 22px; stroke-width: 1.5; }
.highlight h3 {
  font-size: 1.15rem; font-family: var(--sans); font-weight: 600;
  color: var(--ink); margin: 0;
}
.highlight p { margin: 0; font-size: .92rem; color: var(--muted); line-height: 1.5; }

/* ---------- video tour ---------- */
.video-tour__main {
  position: relative;
  margin-bottom: 1.5rem;
  background: #000;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.video-tour__main video,
.video-card video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.video-tour__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.video-card {
  position: relative;
  background: #000;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.video-card .play-overlay,
.video-tour__main .play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.45) 100%);
  cursor: pointer;
  transition: opacity .3s ease;
  z-index: 2;
  color: #fff;
}
.play-overlay__btn {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .25s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,.3);
}
.video-card:hover .play-overlay__btn { transform: scale(1.06); }
.play-overlay__btn svg { width: 28px; height: 28px; margin-left: 4px; }
.play-overlay__caption {
  position: absolute; bottom: 1.2rem; left: 1.2rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.is-playing .play-overlay { opacity: 0; pointer-events: none; }

/* ---------- gallery ---------- */
.gallery__filters {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-bottom: 1.5rem;
}
.gallery__filter {
  background: transparent;
  border: 1px solid var(--line);
  padding: .5rem 1.1rem;
  font-size: .85rem; font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: .03em;
  border-radius: 999px;
  transition: all .2s ease;
}
.gallery__filter:hover { border-color: var(--gold); color: var(--ink); background: rgba(163,126,60,.06); }
.gallery__filter:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.gallery__filter[aria-pressed="true"] {
  background: var(--ink); color: var(--bg); border-color: var(--ink);
}
.gallery__filter[aria-pressed="true"]:hover { background: var(--ink); color: var(--bg); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem;
}
@media (min-width: 700px) { .gallery__grid { grid-template-columns: repeat(3, 1fr); gap: .75rem; } }
@media (min-width: 1100px) { .gallery__grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }
.gallery__item {
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
  aspect-ratio: 4/3;
  cursor: zoom-in;
  border: none;
  padding: 0;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,.18) 100%);
  opacity: 0; transition: opacity .25s ease;
  pointer-events: none;
}
.gallery__item:hover img,
.gallery__item:focus-visible img { transform: scale(1.04); }
.gallery__item:hover::after { opacity: 1; }
.gallery__item:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
/* Featured tile spans the full row only on the very first item */
.gallery__item--featured {
  grid-column: 1 / -1;
  aspect-ratio: 21/9;
}
@media (max-width: 699.98px) {
  .gallery__item--featured { aspect-ratio: 4/3; }
}
.gallery__item.is-hidden { display: none; }
.gallery__cta { margin-top: 2rem; text-align: center; }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(15, 13, 10, .96);
  display: none;
  align-items: center; justify-content: center;
  padding: 0;
}
.lightbox.is-open { display: flex; }
.lightbox__inner {
  position: relative; width: 100%; height: 100%;
  display: flex; flex-direction: column;
}
.lightbox__top {
  position: absolute; top: 0; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.5rem;
  color: #d6cfbe;
  z-index: 2;
}
.lightbox__count { font-size: .85rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-soft); }
.lightbox__close {
  background: transparent; border: 1px solid rgba(255,255,255,.25);
  color: #fff; width: 44px; height: 44px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.lightbox__close:hover { background: rgba(255,255,255,.15); }
.lightbox__close svg { width: 18px; height: 18px; }
.lightbox__media {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 4rem 1rem 5rem;
  overflow: hidden;
}
.lightbox__media img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  user-select: none;
}
.lightbox__nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.lightbox__nav:hover { background: rgba(255,255,255,.18); }
.lightbox__nav svg { width: 22px; height: 22px; }
.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }
.lightbox__caption {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
  text-align: center; font-family: var(--serif); font-style: italic;
  color: #d6cfbe; font-size: .95rem;
}

/* ---------- details table ---------- */
.details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 700px) {
  .details { grid-template-columns: repeat(2, 1fr); column-gap: 3rem; }
}
.details__row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
  gap: 1rem;
}
.details__label { color: var(--muted); font-size: .92rem; flex: 0 0 auto; }
.details__value {
  font-family: var(--serif); font-size: 1.1rem; color: var(--ink);
  font-weight: 500;
  text-align: right;
  text-wrap: balance;
}

/* ---------- room layout ---------- */
.layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 800px) {
  .layout-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
}
.layout-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  border: 1px solid var(--line);
  position: relative;
}
.layout-card::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 60px; height: 1px; background: var(--gold);
}
.layout-card h3 { color: var(--ink); margin-bottom: 1.5rem; font-size: 1.6rem; }
.layout-card ul { list-style: none; padding: 0; margin: 0; }
.layout-card li {
  padding: .85rem 0 .85rem 1.6rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  font-size: .98rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.layout-card li:last-child { border-bottom: none; }
.layout-card li::before {
  content: ""; position: absolute;
  left: 0; top: 1.45em;
  width: 12px; height: 1px; background: var(--gold);
}

/* ---------- outdoor lifestyle ---------- */
.outdoor {
  position: relative; isolation: isolate;
  color: #f6efde;
  background: #14120e;
  overflow: hidden;
}
.outdoor::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: url('assets/images/03-bazen-igraliste-pogled.jpg') center/cover no-repeat;
  filter: brightness(0.45);
}
.outdoor h2, .outdoor h3 { color: #fff; }
.outdoor__grid {
  display: grid; gap: 2rem;
}
@media (min-width: 800px) { .outdoor__grid { grid-template-columns: 1.4fr 1fr; align-items: end; gap: 4rem; } }
.outdoor__copy { max-width: 50ch; font-size: 1.05rem; line-height: 1.75; color: #e7dec8; }
.outdoor__list {
  list-style: none; padding: 0; margin: 2rem 0 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem 1.5rem;
}
.outdoor__list li {
  font-size: .95rem; color: #f0e8d2;
  padding-left: 1.4rem; position: relative;
}
.outdoor__list li::before {
  content: ""; position: absolute; left: 0; top: .65em;
  width: 10px; height: 10px; border: 1px solid var(--gold-soft); border-radius: 50%;
}

/* ---------- location ---------- */
.location__grid {
  display: grid; gap: 2.5rem;
}
@media (min-width: 800px) {
  .location__grid { grid-template-columns: 1fr 1.1fr; align-items: center; gap: clamp(2rem, 5vw, 5rem); }
}
.location__map {
  aspect-ratio: 4/3;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  font-family: var(--serif);
  color: var(--muted);
  font-style: italic;
}
.location__map iframe { width: 100%; height: 100%; border: 0; }

/* ---------- FAQ ---------- */
.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq__item:first-of-type { border-top: 1px solid var(--line); }
.faq__item summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.35rem .25rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--ink);
  font-weight: 500;
  gap: 1rem;
  transition: color .2s ease;
  text-wrap: balance;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; flex: 0 0 auto;
  width: 16px; height: 16px;
  background: linear-gradient(currentColor, currentColor) center/100% 1.6px no-repeat,
              linear-gradient(currentColor, currentColor) center/1.6px 100% no-repeat;
  color: var(--gold);
  transition: transform .3s ease;
}
.faq__item[open] summary::after {
  background: linear-gradient(currentColor, currentColor) center/100% 1.6px no-repeat;
  transform: rotate(180deg);
}
.faq__item summary:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 2px; }
.faq__item p {
  margin: 0 .25rem 1.4rem;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 70ch;
  font-size: 1rem;
}
.faq__item:hover summary,
.faq__item[open] summary { color: var(--gold); }

/* ---------- exchange callout ---------- */
.exchange {
  background: var(--bg-alt);
  text-align: center;
}
.exchange .container { max-width: 720px; }
.exchange p { font-size: 1.1rem; line-height: 1.7; color: var(--ink-soft); }

/* ---------- contact ---------- */
.contact__grid {
  display: grid; gap: 2.5rem;
}
@media (min-width: 900px) {
  .contact__grid { grid-template-columns: 1fr 1.2fr; gap: 4rem; }
}
.contact__card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 2.5rem 2rem;
}
.contact__phone {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--ink);
  display: inline-block;
  margin-bottom: .25rem;
}
.contact__phone:hover { color: var(--gold); }
.contact__email {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: var(--ink);
  display: inline-block;
  margin-bottom: .25rem;
  word-break: break-all;
  border-bottom: 1px solid var(--gold-line);
  padding-bottom: 1px;
  transition: color .2s ease, border-color .2s ease;
}
.contact__email:hover { color: var(--gold); border-color: var(--gold); }
.contact-buttons { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.5rem; }
.contact__form { display: grid; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field label {
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.field input, .field textarea, .field select {
  padding: .85rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
  font-family: var(--sans);
  font-size: 1rem;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-soft); }
.field input:hover, .field textarea:hover, .field select:hover { border-color: var(--gold-line); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(163,126,60,.16);
}
.field input:invalid:not(:placeholder-shown), .field textarea:invalid:not(:placeholder-shown) {
  border-color: #b54828;
}
.field textarea { min-height: 130px; resize: vertical; line-height: 1.5; }
.privacy-note { font-size: .82rem; color: var(--muted); line-height: 1.55; }
.honeypot { position: absolute; left: -9999px; }

/* ---------- footer ---------- */
.site-footer {
  background: #14120e; color: #c1b89c;
  padding-block: 3.5rem 2.5rem;
}
.site-footer__grid {
  display: grid; gap: 2.5rem;
}
@media (min-width: 700px) {
  .site-footer__grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; }
}
.site-footer h4 {
  color: #f6efde; font-family: var(--sans); font-size: .82rem;
  letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
  margin-bottom: 1.1rem;
}
.site-footer p, .site-footer a, .site-footer li {
  font-size: .92rem; line-height: 1.65; color: #c1b89c;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: .55rem; }
.site-footer a { transition: color .2s ease; }
.site-footer a:hover { color: var(--gold-soft); }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 2.5rem; padding-top: 1.5rem;
  font-size: .8rem; color: #968d76;
  display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; justify-content: space-between; align-items: center;
}
.disclaimer { font-size: .82rem; color: #968d76; line-height: 1.65; max-width: 60ch; }

/* ---------- mobile sticky cta ---------- */
.mobile-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
  border-top: 1px solid var(--gold-line);
  box-shadow: 0 -8px 24px rgba(0,0,0,.18);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.mobile-cta a {
  display: flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1rem;
  color: #faf7f1;
  font-size: .92rem; font-weight: 600;
  letter-spacing: .04em;
  min-height: 52px;
}
.mobile-cta a + a { border-left: 1px solid rgba(255,255,255,.1); }
.mobile-cta a:active { background: rgba(255,255,255,.06); }
.mobile-cta a.is-wa { background: #1FAD54; color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,.35); }
.mobile-cta a.is-wa:active { background: #168944; }
.mobile-cta svg { width: 18px; height: 18px; flex: 0 0 auto; }
@media (min-width: 992px) { .mobile-cta { display: none; } }
@media (max-width: 991.98px) { body { padding-bottom: calc(56px + env(safe-area-inset-bottom, 0)); } }

/* ---------- utility ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.text-center { text-align: center; }
.no-underline { text-decoration: none; }

/* ---------- Cormorant from Google Fonts ---------- */
/* Loaded via <link> in HTML with display=swap */

/* ---------- print ---------- */
@media print {
  .site-header, .mobile-cta, .video-tour, .lightbox, .gallery__filters { display: none !important; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
