/* Miško terapija — dark lodge editorial, Fraunces/Outfit, solid green header, 2026-08-28e */
:root {
  --forest: #2e4a40;
  --forest-deep: #1c322c;
  --forest-night: #14241f;
  --forest-panel: #24382f;
  --moss: #2e4a40;
  --moss-deep: #264139;
  --sage: #d7e4dc;
  --cream: #f3ece3;
  --cream-soft: #e8e0d4;
  --ink: #14211c;
  --ink-soft: #44554d;
  --line: rgba(46, 74, 64, 0.18);
  --gold: #c5a059;
  --wood: #a6a098;
  --serif: "Fraunces", "Palatino Linotype", Palatino, serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
  --nav-h: 93px;
  --wrap: 1120px;
  --wide: 1280px;
  --nav-glass: #2e4a40;
  --nav-solid: #2e4a40;
  --radius: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }
section[id], article[id], footer[id], main[id] {
  scroll-margin-top: calc(var(--nav-h) + 8px);
}
body {
  font-family: var(--sans);
  color: var(--cream);
  background: var(--forest-night);
  font-size: 17.5px;
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
picture { display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }
button { cursor: pointer; }

.wrap { width: min(var(--wrap), calc(100% - 48px)); margin-inline: auto; }
.wide { width: min(var(--wide), calc(100% - 48px)); margin-inline: auto; }

.skip {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  background: var(--forest);
  color: var(--cream);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.skip:focus { top: 12px; }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.14;
}
h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  color: var(--cream);
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  background: var(--forest);
  color: var(--cream);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 0;
  border-radius: var(--radius);
  transition: background 0.2s ease, color 0.2s ease;
}
.btn:hover { background: var(--moss-deep); }
.btn-nav {
  background: var(--cream);
  color: var(--forest);
}
.btn-nav:hover { background: #e8d9b0; color: var(--forest); }
.btn-light {
  background: var(--cream);
  color: var(--forest);
}
.btn-light:hover { background: #e8d9b0; color: var(--forest); }

/* ——— HEADER: solid brand green so white 88×73 logo is visible ——— */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: #2e4a40;
  border-bottom: 0;
  transition: none;
}
.nav.scrolled,
body.sub .nav {
  background: #2e4a40;
  box-shadow: none;
  border-bottom: 0;
}
.nav-inner {
  width: min(var(--wide), calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}
.nav-logo,
.nav-logo picture {
  display: flex;
  align-items: center;
  height: 80px;
  width: 88px;
  padding: 0;
  overflow: visible;
}
.nav-logo img {
  width: 88px;
  height: 73px;
  max-width: 88px;
  object-fit: contain;
  object-position: left center;
  filter: none;
  opacity: 1;
}
.nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 16px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f6f1ea;
  opacity: 0.94;
  white-space: nowrap;
}
.nav-links a:hover { opacity: 1; color: #e8d9b0; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.lang {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(246, 241, 234, 0.5);
}
.lang a { color: inherit; cursor: pointer; }
.lang a:hover { color: #f6f1ea; }
.lang .on { color: #e8d9b0; }

.burger {
  display: none;
  width: 44px; height: 44px;
  border: 0; background: transparent;
  cursor: pointer;
  position: relative;
}
.burger span,
.burger span:before,
.burger span:after {
  position: absolute; left: 10px;
  width: 24px; height: 1.5px;
  background: #f6f1ea;
  content: "";
  transition: transform 0.2s ease, top 0.2s ease, background 0.2s ease;
}
.burger span { top: 21px; }
.burger span:before { top: -7px; }
.burger span:after { top: 7px; }

#nav-toggle { position: absolute; opacity: 0; pointer-events: none; }

/* ——— HERO: split photo | green panel, above the fold ——— */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: calc(100vh - var(--nav-h));
  min-height: calc(100dvh - var(--nav-h));
  margin-top: var(--nav-h);
  background: var(--forest);
  color: var(--cream);
}
.hero-photo {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  min-height: calc(100dvh - var(--nav-h));
  overflow: hidden;
  background: var(--forest-deep);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% 42%;
  position: absolute;
  inset: 0;
}
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,36,31,0.12) 0%, rgba(20,36,31,0.28) 100%);
  pointer-events: none;
}
.hero-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 48px 48px 48px 44px;
  background: var(--forest);
}
.hero-panel .eyebrow { color: #e8d9b0; }
.hero-panel h1 {
  margin: 12px 0 10px;
  font-size: clamp(2.4rem, 4.4vw, 4.1rem);
  font-weight: 600;
  color: #f7f3ec;
  line-height: 0.96;
}
.hero-tag {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-style: italic;
  font-weight: 500;
  color: #e8d9b0;
  margin: 0 0 22px;
}
.hero-rule {
  width: 44px; height: 1px;
  background: var(--gold);
  margin: 0 0 22px;
}
.hero-panel p {
  max-width: 32rem;
  font-size: 1.05rem;
  line-height: 1.58;
  color: rgba(247, 243, 236, 0.9);
  margin-bottom: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; }

/* ——— ABOUT: headline left, forest chapter ——— */
.about {
  padding: 88px 0 80px;
  background: var(--forest-deep);
  color: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px 64px;
  align-items: start;
}
.about h2 {
  margin: 8px 0 20px;
  max-width: 16ch;
}
.about .lead {
  font-size: 1.12rem;
  color: #f3ece3;
  margin-bottom: 16px;
}
.about p {
  color: rgba(243, 236, 227, 0.82);
  margin-bottom: 14px;
}
.about .note {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.about-photo { position: relative; margin-top: 28px; }
.about-photo-frame {
  position: relative;
  height: 520px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-photo figcaption {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(243, 236, 227, 0.55);
}

/* ——— CABINS: large photo + story + facts + small strip ——— */
.cabins { background: var(--forest-night); }
.cabin {
  padding: 0 0 48px;
  background: var(--forest-night);
}
.cabin-alt { background: var(--forest-deep); padding: 0 0 48px; }
.cabin-hero {
  position: relative;
  height: min(58vh, 560px);
  overflow: hidden;
  background: #1a2a24;
}
.cabin-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cabin-hero::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10,16,12,0.04) 42%, rgba(10,16,12,0.58) 100%);
  pointer-events: none;
}
.cabin-kicker {
  position: absolute;
  left: max(24px, calc((100% - var(--wide)) / 2));
  right: 24px;
  bottom: 28px;
  z-index: 5;
  color: #f3ece3;
}
.cabin-kicker .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d4b56a;
  margin-bottom: 6px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.65);
}
.cabin-kicker h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  color: #f3ece3;
  text-shadow: 0 2px 10px rgba(10,16,12,0.7);
}
.cabin-body {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px 56px;
  padding: 40px 0 8px;
  align-items: start;
}
.cabin-alt .cabin-body { grid-template-columns: 0.85fr 1.15fr; }
.cabin-alt .cabin-story { order: 2; }
.cabin-story p {
  color: rgba(243, 236, 227, 0.84);
  margin-bottom: 14px;
  font-size: 1.02rem;
}
.cabin-story .lede {
  font-size: 1.12rem;
  color: #f3ece3;
}
.cabin-facts {
  background: rgba(46, 74, 64, 0.35);
  border: 1px solid rgba(201, 164, 92, 0.18);
  padding: 26px 26px 22px;
}
.cabin-facts h3 {
  font-size: 1.28rem;
  margin: 0 0 10px;
  color: #f3ece3;
}
.cabin-facts + .cabin-facts,
.facts-block + .facts-block { margin-top: 18px; }
.amenity {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  list-style: none;
  margin: 0;
  padding: 0;
  color: rgba(243, 236, 227, 0.82);
  font-size: 0.95rem;
}
.amenity li {
  white-space: nowrap;
  flex: 0 0 auto;
}
.amenity li::before {
  content: "· ";
  color: var(--gold);
  font-weight: 700;
}
.sleep-list,
.paid-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sleep-list li,
.paid-list li {
  position: relative;
  padding-left: 14px;
  margin: 6px 0;
  color: #f3ece3;
  font-size: 0.98rem;
}
.sleep-list li::before,
.paid-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.58em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.pets {
  margin-top: 14px;
  font-size: 0.95rem;
  color: rgba(243, 236, 227, 0.78);
}
.house-price {
  margin-top: 16px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: #f7f3ec;
}
.house-price span {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e8d9b0;
  font-weight: 600;
  margin-top: 4px;
}
.cabin-cta { margin-top: 18px; }

.cabin-scroller {
  position: relative;
  width: min(var(--wide), calc(100% - 48px));
  margin: 18px auto 0;
}
.h-strip {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 8px;
  height: 118px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-x pan-y;
}
.h-strip::-webkit-scrollbar { display: none; }
.h-shot {
  flex: 0 0 168px;
  height: 118px;
  padding: 0;
  border: 0;
  background: #1a2a24;
  overflow: hidden;
  cursor: zoom-in;
  scroll-snap-align: start;
  display: block;
}
.h-shot picture, .h-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: none;
}
.g-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  box-shadow: 0 2px 12px rgba(12, 18, 14, 0.22);
}
.g-nav:hover:not(:disabled) {
  background: var(--forest);
  color: var(--cream);
}
.g-nav:disabled { opacity: 0.28; cursor: default; }
.h-prev, .g-prev { left: 8px; }
.h-next, .g-next { right: 8px; }

/* ——— GALLERY: visible L-R scroller ~45vh ——— */
.gallery {
  background: #101c18;
  padding: 56px 0 64px;
}
.gallery .g-bar {
  width: min(var(--wide), calc(100% - 48px));
  margin-inline: auto;
  padding: 0 0 18px;
}
.gallery .g-bar h2 { margin: 6px 0 0; }
.gallery .g-stage {
  position: relative;
  width: min(var(--wide), calc(100% - 48px));
  margin-inline: auto;
  height: 46vh;
  min-height: 280px;
  max-height: 520px;
}
.g-scroll {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 10px;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-x pan-y;
}
.g-scroll::-webkit-scrollbar { display: none; }
.g-tile {
  flex: 0 0 calc((100% - 40px) / 5);
  height: 100%;
  min-width: 160px;
  padding: 0;
  border: 0;
  background: #1a2a24;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  scroll-snap-align: start;
  display: block;
}
.g-tile.is-portrait { flex-basis: calc((100% - 40px) / 5); }
.g-tile.is-wide { flex-basis: calc((100% - 30px) / 4); }
.g-tile picture, .g-tile img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
}
.g-cap { display: none !important; /* captions off */
  position: absolute;
  left: 10px; bottom: 10px;
  z-index: 1;
  padding: 4px 9px;
  background: rgba(20, 33, 28, 0.55);
  color: #f7f3ec;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
}

/* ——— REVIEWS ——— */
.review {
  padding: 64px 0 56px;
  background: var(--moss-deep);
  color: var(--cream);
  text-align: center;
}
.review .eyebrow { color: #d4b56a; margin-bottom: 8px; }
.rev-wrap { max-width: 46rem; margin-inline: auto; }
.rev-stage {
  position: relative;
  min-height: 200px;
  margin: 14px auto 0;
}
.rev-card {
  position: absolute;
  inset: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rev-card[hidden] {
  display: flex !important;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.review blockquote {
  font-family: var(--serif);
  font-size: clamp(1.28rem, 2.4vw, 1.85rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.38;
  max-width: 40rem;
  margin: 0 auto 16px;
  color: #f7f3ec;
}
.review cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e8d9b0;
}
.rev-card figcaption {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e8d9b0;
}
.rev-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
}
.rev-nav {
  width: 42px; height: 42px;
  border: 1px solid rgba(232, 217, 176, 0.35);
  background: transparent;
  color: #e8d9b0;
  font-size: 26px;
  line-height: 1;
  border-radius: var(--radius);
}
.rev-nav:hover { background: rgba(248, 244, 238, 0.08); color: #f7f3ec; }
.rev-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  max-width: 16rem;
}
.rev-dot {
  width: 8px; height: 8px;
  padding: 0; border: 0;
  border-radius: 50%;
  background: rgba(232, 217, 176, 0.35);
}
.rev-dot.is-on { background: #e8d9b0; }

/* ——— GIFT: two matching cards ——— */
.gift {
  padding: 64px 0 56px;
  background: #1b3022;
  color: #f6f1ea;
}
.gift-head { margin-bottom: 22px; max-width: 42rem; }
.gift-head .eyebrow { color: #c5a059; }
.gift-head h2 { color: #f6f1ea; margin: 6px 0 10px; }
.gift-head .lead { color: #f7f3ec; font-size: 1.08rem; margin: 0; }
.gift-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}
.gift-card {
  background: rgba(36, 56, 47, 0.72);
  border: 1px solid rgba(197, 160, 89, 0.22);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.gift-visual {
  background: #1b3022;
  border: 0;
}
.gift-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.gift-photo {
  margin: 0;
  background: #1b3022;
  aspect-ratio: 1;
  overflow: hidden;
}
.gift-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.gift-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.gift-points p {
  margin: 0;
  padding: 12px 12px 12px 14px;
  background: rgba(20, 36, 31, 0.45);
  border-left: 2px solid #c5a059;
  color: rgba(246, 241, 234, 0.88);
  font-size: 0.86rem;
  line-height: 1.45;
}
.gift-form { padding: 22px 24px 24px; }
.gift-form-kicker {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c5a059;
}
.gift-form .form {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
  align-content: start;
}
.gift-form .field-wide { grid-column: 1 / -1; }
.gift .field label { color: #c5a059; }
.gift .field input,
.gift .field textarea,
.gift .field select {
  color: #f6f1ea;
  border-bottom-color: rgba(246, 241, 234, 0.28);
}
.gift .field input:focus,
.gift .field textarea:focus { border-bottom-color: #c5a059; }
.gift .form-note { color: rgba(246, 241, 234, 0.7); margin: 0; }
.gift .form-note a { color: #e8d9b0; }
.gift .btn { background: #f6f1ea; color: #2e4a40; }
.gift .btn:hover { background: #e8d9b0; color: #2e4a40; }
.gift .form-status { color: #e8d9b0; }
.gift .form-status.is-error { color: #f3cfd4; }
@media (max-width: 720px) {
  .gift-points,
  .gift-form .form { grid-template-columns: 1fr; }
}

/* ——— MAUDYNĖS: one strong photo + copy ——— */
.exp {
  padding: 72px 0 68px;
  background: var(--forest-deep);
}
.bath-teaser {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px 52px;
  align-items: center;
}
.bath-photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.bath-teaser h2 { margin: 8px 0 14px; }
.bath-teaser .lead {
  font-size: 1.1rem;
  color: #f3ece3;
  margin: 0 0 14px;
}
.bath-teaser p {
  color: rgba(243, 236, 227, 0.82);
  margin-bottom: 12px;
}

/* ——— FAQ two columns ——— */
.faq {
  padding: 64px 0 56px;
  background: #1a2c26;
}
.faq h2 { margin: 8px 0 8px; }
.faq > .wide > p:not(.eyebrow) {
  color: rgba(243, 236, 227, 0.75);
  max-width: 46rem;
  margin-bottom: 8px;
}
.faq-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  margin-top: 18px;
}
.faq-list details {
  padding: 14px 0;
  border-bottom: 1px solid rgba(243, 236, 227, 0.12);
}
.faq-list summary {
  font-family: var(--serif);
  font-size: 1.22rem;
  cursor: pointer;
  list-style: none;
  color: #f3ece3;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details p {
  font-size: 0.98rem;
  margin-top: 10px;
  color: rgba(243, 236, 227, 0.78);
}

/* ——— FORMS ——— */
.form { display: grid; gap: 14px; }
.field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(243, 236, 227, 0.28);
  padding: 7px 0 8px;
  font-size: 1rem;
  color: var(--cream);
  border-radius: 0;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23e8d9b0' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 6px center;
  cursor: pointer;
}
.field textarea {
  min-height: 4.2em;
  resize: vertical;
  line-height: 1.5;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.form-note {
  font-size: 13px;
  color: rgba(243, 236, 227, 0.65);
}
.form-note a {
  color: #e8d9b0;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-status {
  font-size: 13px;
  font-weight: 600;
  color: #e8d9b0;
  min-height: 1.2em;
}
.form-status.is-error { color: #f3cfd4; }

/* ——— REZERVUOTI: form left, calendar right, contact under calendar ——— */
.rez {
  padding: 64px 0 36px;
  background: var(--forest-night);
}
.rez-band {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, 1.05fr);
  gap: 28px 40px;
  align-items: start;
}
.rez-form h2 { margin: 8px 0 10px; }
.rez .contact-lead {
  margin-bottom: 16px;
  font-size: 1rem;
  color: rgba(243, 236, 227, 0.8);
}
.rez-right { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.occ-public .occ-head { text-align: left; margin-bottom: 10px; }
.occ-public .occ-head h2 { font-size: 1.35rem; margin: 4px 0 6px; color: #f3ece3; }
.occ-public .occ-head p { margin: 0; max-width: none; color: rgba(243, 236, 227, 0.72); }
.occ-public .occ-tabs { flex-direction: row; flex-wrap: wrap; margin-bottom: 0; }
.occ-public .occ-cal { max-width: none; }
.occ-public .occ-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  padding-top: 0;
  color: #f3ece3;
}
.find-us {
  background: rgba(46, 74, 64, 0.4);
  border: 1px solid rgba(201, 164, 92, 0.16);
  padding: 18px 20px 16px;
}
.find-us h3 { font-size: 1.35rem; margin: 0 0 8px; color: #f3ece3; }
.find-us dl dt {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e8d9b0;
  margin-top: 10px;
}
.find-us dl dd { margin-top: 3px; font-size: 1rem; color: #f3ece3; }
.find-us a:hover { color: #e8d9b0; }

.map-sec {
  padding: 12px 0 64px;
  background: var(--forest-night);
}
.map-sec h2 { margin: 6px 0 0; font-size: clamp(1.5rem, 2.4vw, 2rem); }
.contact-map {
  width: 100%;
  margin: 16px 0 0;
  background: #1a2a24;
}
.contact-map .sodybos-map {
  display: block;
  width: 100%;
  height: 380px;
  background: #1a2a24;
}
.contact-map .leaflet-control-attribution,
.contact-map .leaflet-bottom { display: none !important; }
.contact-map .leaflet-control-zoom {
  border: 0; box-shadow: none; overflow: hidden; border-radius: 4px;
}
.contact-map .leaflet-control-zoom a {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; line-height: 1; font-size: 18px; font-weight: 700;
  color: var(--forest); background: var(--cream); border: 1px solid var(--forest);
  text-decoration: none;
}
.contact-map .leaflet-control-zoom a:last-child { border-top: 0; }
.contact-map .leaflet-control-zoom a:hover {
  background: var(--forest); color: var(--cream);
}
.contact-map .map-layers {
  display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 4px;
  background: var(--cream); border-radius: var(--radius); padding: 4px;
  font-family: var(--sans);
}
.contact-map .map-layer {
  border: 0; background: transparent; color: var(--ink);
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 8px 10px; border-radius: 6px;
  cursor: pointer; white-space: nowrap;
}
.contact-map .map-layer.is-on { background: var(--forest); color: var(--cream); }

/* ——— FOOTER small ——— */
.footer {
  background: #10201b;
  color: #cfc6ba;
  padding: 28px 0 20px;
  font-size: 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
  padding-bottom: 0;
}
.footer .eyebrow { color: #c5a059; font-size: 11px; }
.footer p { font-size: 13px; }
.footer a:hover { color: #fff; }
.social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.social a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e8d9b0;
}

/* ——— LIGHTBOX ——— */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(10, 16, 12, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: min(1200px, 92vw);
  max-height: 86vh;
  width: auto; height: auto;
  object-fit: contain;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  border: 0; background: transparent;
  color: #f8f4ee;
  font-size: 42px; line-height: 1;
  width: 56px; height: 56px;
}
.lb-close { top: 16px; right: 18px; font-size: 36px; }
.lb-prev { left: 12px; }
.lb-next { right: 12px; }

/* ——— OCCUPANCY ——— */
.occ-layout {
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(220px, 1fr);
  gap: 28px 40px;
  align-items: start;
}
.occ-head { margin-bottom: 16px; }
.occ-head h1, .occ-head h2 { color: #f3ece3; }
.occ-head p { color: rgba(243, 236, 227, 0.75); }
.occ-hint {
  font-size: 0.95rem;
  color: rgba(20, 33, 28, 0.75);
  margin: 0 0 14px;
  line-height: 1.45;
}
.occ-tabs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.occ-tab {
  border: 1px solid rgba(243, 236, 227, 0.22);
  background: rgba(46, 74, 64, 0.35);
  color: #f3ece3;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius);
  text-align: left;
}
.occ-tab:hover { border-color: var(--gold); color: #e8d9b0; }
.occ-tab.is-on {
  background: var(--cream);
  color: var(--forest);
  border-color: var(--cream);
}
.occ-cal {
  max-width: 380px;
  width: 100%;
  background: #fff;
  border: 1px solid rgba(46, 74, 64, 0.2);
  border-radius: 2px;
  overflow: hidden;
  padding-bottom: 10px;
}
.occ-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #e6e0d7;
  padding: 6px 8px;
  margin-bottom: 8px;
}
.occ-nav {
  width: 28px; height: 28px;
  border: 0; background: transparent;
  color: var(--ink);
  font-size: 22px; line-height: 1;
  border-radius: var(--radius);
}
.occ-nav:hover { background: rgba(28, 27, 24, 0.08); color: var(--forest); }
.occ-month { display: flex; }
.occ-select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  padding: 2px 24px 2px 8px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%231c1b18' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 6px center;
  cursor: pointer;
}
.occ-week, .occ-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  padding: 0 10px;
}
.occ-week { margin-bottom: 4px; }
.occ-week span {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #5a554c;
  padding: 2px 0 4px;
}
.occ-day {
  position: relative;
  min-height: 34px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  border: 0;
  font-family: inherit;
  color: var(--ink);
  border-radius: 1px;
}
.occ-day.is-empty { background: transparent; height: 36px; }
.occ-day.is-free { background: #d7ead3; }
.occ-day.is-busy { background: #f3cfd4; }
.occ-day.is-checkin {
  background: linear-gradient(to top right, #d7ead3 0 49.5%, #f3cfd4 50.5% 100%);
}
.occ-day.is-checkout {
  background: linear-gradient(to top right, #f3cfd4 0 49.5%, #d7ead3 50.5% 100%);
}
.occ-num { font-size: 12px; font-weight: 600; line-height: 1; }
button.occ-day { cursor: pointer; }
button.occ-day.is-pending { box-shadow: inset 0 0 0 2px var(--gold); }
.occ-legend {
  list-style: none;
  display: grid;
  gap: 10px;
  padding-top: 12px;
  font-size: 14px;
  font-weight: 600;
}
.occ-legend li { display: flex; align-items: center; gap: 10px; }
.occ-swatch {
  width: 18px; height: 18px;
  border-radius: 1px;
  flex: 0 0 18px;
}
.occ-swatch.is-free { background: #d7ead3; border: 1px solid #c3d9bf; }
.occ-swatch.is-busy { background: #f3cfd4; border: 1px solid #e4bdc2; }
.occ-status {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #e8d9b0;
}
.occ-status.is-error { color: #f3cfd4; }

.admin-page {
  padding: calc(var(--nav-h) + 24px) 0 48px;
  background: var(--sage);
  min-height: 100vh;
  color: var(--ink);
}
.admin-page .occ-head { text-align: left; margin-bottom: 20px; }
.admin-page .occ-head h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 8px 0 10px;
  color: var(--ink);
}
.admin-page .occ-head p { margin-left: 0; max-width: 40rem; color: var(--ink-soft); }
.admin-page .occ-hint { color: var(--ink-soft); }
.admin-page .occ-tab {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
.admin-page .occ-tab.is-on {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.admin-page .occ-legend { color: var(--ink); }

/* Inner pages */
.page-main {
  padding: calc(var(--nav-h) + 56px) 0 80px;
  background: var(--sage);
  min-height: 70vh;
  color: var(--ink);
}
.doc { max-width: 42rem; }
.doc h1 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  margin: 10px 0 22px;
  color: var(--ink);
}
.doc h2 { font-size: 1.4rem; margin: 28px 0 10px; color: var(--ink); }
.doc p, .doc li { color: var(--ink-soft); margin-bottom: 14px; }
.doc a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.notfound { text-align: center; padding-top: 8vh; }
.notfound h1 { margin-bottom: 16px; color: var(--ink); }
.notfound p { color: var(--ink-soft); margin-bottom: 28px; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-in { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  .nav-links { display: none; }
  .lang { display: none; }
  .burger { display: block; }
  .nav-inner {
    width: calc(100% - 24px);
    grid-template-columns: auto 1fr;
    gap: 12px;
  }
  .nav-actions { justify-self: end; margin-left: auto; }
  #nav-toggle:checked ~ .nav { background: #2e4a40; }
  #nav-toggle:checked ~ .nav .nav-links {
    display: flex;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: #2e4a40;
    flex-direction: column;
    padding: 52px 24px 28px;
    gap: 4px;
    box-shadow: 0 16px 32px rgba(18, 22, 18, 0.28);
  }
  #nav-toggle:checked ~ .nav .lang {
    display: flex;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    z-index: 52;
    padding: 14px 24px 8px;
    background: #2e4a40;
    gap: 16px;
    color: rgba(246, 241, 234, 0.5);
  }
  #nav-toggle:checked ~ .nav .lang a { color: inherit; }
  #nav-toggle:checked ~ .nav .lang a.on { color: #e8d9b0; }
  #nav-toggle:checked ~ .nav .nav-links a {
    color: #f6f1ea;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(246, 241, 234, 0.14);
  }
  #nav-toggle:checked ~ .nav .burger span { background: transparent; }
  #nav-toggle:checked ~ .nav .burger span:before,
  #nav-toggle:checked ~ .nav .burger span:after { background: #f6f1ea; top: 0; }
  #nav-toggle:checked ~ .nav .burger span:before { transform: rotate(45deg); }
  #nav-toggle:checked ~ .nav .burger span:after { transform: rotate(-45deg); }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-photo {
    min-height: 52vh;
    height: 52vh;
  }
  .hero-panel {
    padding: 32px 24px 40px;
    min-height: 0;
  }
  .about-grid,
  .cabin-body,
  .cabin-alt .cabin-body,
  .gift-grid,
  .bath-teaser,
  .faq-cols,
  .rez-band,
  .footer-grid { grid-template-columns: 1fr; }
  .cabin-alt .cabin-story { order: 0; }
  .about-photo-frame { height: 320px; }
  .bath-photo img { height: 280px; }
  .gallery .g-stage { height: 38vh; min-height: 240px; }
  .g-tile, .g-tile.is-wide, .g-tile.is-portrait {
    flex-basis: 72%;
  }
  .cabin-hero { height: 42vh; }
  .map-sec .sodybos-map,
  .contact-map .sodybos-map { height: 280px; }
  .occ-layout { grid-template-columns: 1fr; }
  .occ-cal { max-width: 100%; }
}

@media (max-width: 760px) {
  :root { --nav-h: 84px; }
  .nav-logo, .nav-logo picture { height: 68px; width: 80px; }
  .nav-logo img { width: 80px; height: 66px; }
  .wrap, .wide { width: calc(100% - 32px); }
  .hero-photo { height: 46vh; min-height: 46vh; }
  .cabin-scroller, .gallery .g-bar, .gallery .g-stage, .gallery .rituals { width: calc(100% - 32px); }
  .h-shot { flex-basis: 148px; }
  .h-strip, .h-shot { height: 104px; }
  .rev-stage { min-height: 0; }
  .about, .gallery, .gift, .review, .exp, .faq, .rez {
    padding-top: 48px;
    padding-bottom: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .nav { transition: none; }
}

.btn-gold { background: var(--cream); color: var(--forest); }
.chap { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }




.nav {
  background: rgba(46, 74, 64, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.35s ease;
}
.nav.scrolled,
body.sub .nav {
  background: rgba(46, 74, 64, 0.74);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav-logo {
  display: flex;
  align-items: center;
  width: auto;
  height: 80px;
  background: none;
  padding: 0;
  border-radius: 0;
}
.nav-logo picture { display: contents; }
.nav-logo img {
  width: 88px;
  height: 73px;
  object-fit: contain;
  filter: drop-shadow(0 0 1px rgba(0,0,0,0.35));
  opacity: 1;
}


/* reviews: static stage, only the quote swaps */
.review {
  padding: 56px 0 48px;
  --rev-gap: calc(2 * clamp(1.28rem, 2.4vw, 1.85rem) * 1.4);
}
.rev-wrap { max-width: 48rem; }
.rev-stage {
  position: relative;
  min-height: 0;
  margin: 10px auto 0;
  padding: 0 8px;
}
.rev-card {
  position: absolute;
  inset: 0;
  padding: 0 4px;
  box-sizing: border-box;
  justify-content: flex-start;
}
.rev-card[hidden] {
  position: absolute;
  inset: 0;
}
.review blockquote {
  margin: 0 auto 14px;
  line-height: 1.4;
}
.rev-controls {
  position: relative;
  z-index: 2;
  margin-top: var(--rev-gap);
  padding-top: 0;
}
@media (max-width: 720px) {
  .review { padding: 44px 0 40px; }
}

/* gallery captions off */
.g-cap { display: none !important; }


.cabin-hero picture {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cabin-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: auto;
  transform: none;
}
.cabin-hero::after { z-index: 1; }
.cabin-kicker { z-index: 5; }

.occ-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px 16px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.occ-toolbar .occ-legend { margin-left: auto; }
.admin-page .occ-toolbar {
  flex-direction: column;
  align-items: stretch;
}
.admin-page .occ-toolbar .occ-legend { margin-left: 0; }


.hero-geo {
  position: absolute;
  top: auto;
  bottom: 20px;
  left: 28px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-align: left;
  color: rgba(247, 243, 236, 0.92);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}
.hero-geo:hover,
.hero-geo:focus-visible {
  color: #e8d9b0;
}
@media (max-width: 760px) {
  .hero-geo {
    bottom: 12px;
    left: 16px;
    font-size: 11px;
    letter-spacing: 0.12em;
  }
}






@media (min-width: 981px) {
  .about-photo-frame.is-frozen img { opacity: 0; }
}
@media (max-width: 980px) {
  .about-photo-frame { background-attachment: scroll !important; }
  .about-photo-frame img { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .about-photo-frame { background-attachment: scroll !important; }
  .about-photo-frame img { opacity: 1; }
}

/* Cookie consent bar */
.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom, 0px));
  background: var(--forest-night);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.45;
  box-shadow: 0 -8px 28px rgba(10, 20, 16, 0.35);
}
.cookie-bar[hidden] { display: none !important; }
.cookie-bar p {
  margin: 0;
  max-width: 46rem;
}
.cookie-bar a {
  color: #e8d9b0;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-bar a:hover { color: #fff; }
.cookie-bar .btn {
  flex: 0 0 auto;
  padding: 8px 18px;
  background: var(--cream);
  color: var(--forest);
}
.cookie-bar .btn:hover { background: #e8d9b0; color: var(--forest); }
@media (max-width: 640px) {
  .cookie-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px 16px calc(14px + env(safe-area-inset-bottom, 0px));
  }
  .cookie-bar .btn { width: 100%; }
}

/* Four amenity tiles under the gallery */
.rituals {
  width: min(var(--wide), calc(100% - 48px));
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 28px;
}
.ritual {
  text-align: center;
}
.ritual-ico {
  width: 48px;
  height: 48px;
  display: block;
  margin: 0 auto 16px;
  overflow: visible;
  stroke: #e8d9b0;
  fill: none;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ritual-ico path {
  fill: none;
  stroke: inherit;
  stroke-width: inherit;
}
.ritual h3 {
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--cream);
  margin: 0 0 10px;
}
.ritual p {
  font-size: 0.94rem;
  line-height: 1.55;
  color: rgba(243, 236, 227, 0.78);
  margin: 0;
}
@media (max-width: 980px) {
  .rituals { grid-template-columns: 1fr 1fr; gap: 28px 24px; }
}
@media (max-width: 640px) {
  .rituals {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    max-width: 28rem;
    gap: 28px;
  }
}

/* Persistent mobile call bar */
.call-bar {
  display: none;
}
@media (max-width: 980px) {
  :root { --call-bar-h: 54px; }
  .call-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    height: calc(var(--call-bar-h) + env(safe-area-inset-bottom, 0px));
    padding: 0 16px env(safe-area-inset-bottom, 0px);
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--cream);
    color: var(--forest);
    font-family: var(--serif);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 -6px 20px rgba(10, 20, 16, 0.18);
  }
  .call-bar svg {
    width: 18px;
    height: 18px;
    display: block;
    flex: 0 0 auto;
  }
  body {
    padding-bottom: calc(var(--call-bar-h) + env(safe-area-inset-bottom, 0px));
  }
  .cookie-bar {
    bottom: calc(var(--call-bar-h) + env(safe-area-inset-bottom, 0px));
    padding-bottom: 12px;
  }
}
