/* ═══════════════════════════════════════════════════════════════
   STĀRĶU CIEMATS — stilu sistēma
   Fraunces (display) + Inter (text)
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Palete */
  --pine:        #14231A;
  --pine-soft:   #1C3024;
  --forest:      #25402F;
  --moss:        #4A6354;
  --sage:        #93A899;
  --cream:       #F7F3EA;
  --bone:        #EFE8D9;
  --sand:        #DCD1B8;
  --line:        rgba(20, 35, 26, 0.12);
  --gold:        #C19A3F;
  --gold-deep:   #A8842F;
  --gold-soft:   #E6CE93;
  --ink:         #20281F;
  --ink-soft:    #5A6657;
  --white:       #FFFFFF;
  --danger:      #B3402F;

  /* Tipogrāfija */
  --font-display: 'Fraunces', Georgia, serif;
  --font-text:    'Inter', -apple-system, sans-serif;

  /* Ritmi */
  --nav-h: 76px;
  --radius: 20px;
  --radius-lg: 28px;
  --shadow-soft: 0 18px 60px -18px rgba(20, 35, 26, 0.25);
  --shadow-card: 0 10px 40px -12px rgba(20, 35, 26, 0.18);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Bāze ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-text);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Filmas graudainums pār visu lapu */
body::after {
  content: '';
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 2147483000;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 520;
  line-height: 1.12;
  color: var(--pine);
  letter-spacing: -0.01em;
}

h2 { font-size: clamp(2rem, 1.2rem + 3vw, 3.1rem); }
h3 { font-size: 1.35rem; }

.icon { width: 22px; height: 22px; }

::selection { background: var(--gold-soft); color: var(--pine); }

/* ── Izkārtojums ──────────────────────────────────────────────── */
.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section { padding: clamp(72px, 6vw + 40px, 130px) 0; }
.section-bone { background: var(--bone); }
.section-dark {
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(193, 154, 63, 0.10), transparent 60%),
    radial-gradient(900px 500px at 0% 110%, rgba(37, 64, 47, 0.7), transparent 55%),
    var(--pine);
}

.section-header { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-header h2 { margin-bottom: 14px; }
.section-sub { color: var(--ink-soft); font-size: 1.02rem; }
.section-header-light h2 { color: var(--cream); }
.section-header-light .section-sub { color: var(--sage); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.eyebrow-gold  { color: var(--gold); }
.eyebrow-light { color: var(--gold-soft); }

.lead { font-size: 1.14rem; color: var(--ink); }

/* ── Pogas ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-family: var(--font-text);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
              background-color 0.25s, color 0.25s, border-color 0.25s;
}
.btn:active { transform: scale(0.97); }

.btn-gold {
  background: linear-gradient(135deg, #D4AC52, var(--gold) 55%, var(--gold-deep));
  color: var(--pine);
  box-shadow: 0 10px 28px -10px rgba(193, 154, 63, 0.55);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -10px rgba(193, 154, 63, 0.65); }

.btn-forest { background: var(--pine); color: var(--cream); }
.btn-forest:hover { background: var(--forest); transform: translateY(-2px); box-shadow: var(--shadow-card); }

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.16); border-color: var(--white); transform: translateY(-2px); }

.btn-outline { border-color: var(--line); color: var(--pine); background: transparent; }
.btn-outline:hover { border-color: var(--pine); }

.btn-lg   { padding: 18px 40px; font-size: 0.98rem; }
.btn-sm   { padding: 11px 22px; font-size: 0.84rem; }
.btn-full { width: 100%; }
.btn-arr  { transition: transform 0.3s var(--ease-out); display: inline-block; }
.btn:hover .btn-arr { transform: translateX(4px); }

/* ── Navigācija ───────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background-color 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.nav-inner {
  width: min(1280px, calc(100% - 40px));
  margin-inline: auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 36px;
}
#nav.scrolled {
  background: rgba(17, 28, 21, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.07), 0 12px 40px -18px rgba(0,0,0,0.5);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 560;
  color: var(--white);
  letter-spacing: 0.01em;
}
.nav-logo img { width: 34px; height: 34px; object-fit: contain; }

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  position: relative;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 6px 0;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.active { color: var(--white); }

.nav-cta { padding: 12px 26px; font-size: 0.85rem; }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1102;
}
.nav-burger span {
  display: block;
  width: 26px;
  height: 2px;
  margin-inline: auto;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

/* Mobilā izvēlne */
#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background:
    radial-gradient(800px 500px at 80% 0%, rgba(193, 154, 63, 0.12), transparent 60%),
    var(--pine);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease-out), visibility 0.45s;
}
#mobile-menu.open { opacity: 1; visibility: visible; }
.mm-links { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.mm-links a {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 7vw, 2.4rem);
  font-weight: 480;
  color: var(--cream);
  padding: 8px 16px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), color 0.25s;
}
#mobile-menu.open .mm-links a { opacity: 1; transform: none; }
#mobile-menu.open .mm-links a:nth-child(1) { transition-delay: 0.08s; }
#mobile-menu.open .mm-links a:nth-child(2) { transition-delay: 0.14s; }
#mobile-menu.open .mm-links a:nth-child(3) { transition-delay: 0.20s; }
#mobile-menu.open .mm-links a:nth-child(4) { transition-delay: 0.26s; }
#mobile-menu.open .mm-links a:nth-child(5) { transition-delay: 0.32s; }
.mm-links a:hover { color: var(--gold-soft); }
.mm-cta { margin-top: 28px; opacity: 0; transform: translateY(18px); transition: all 0.5s var(--ease-out) 0.4s; }
#mobile-menu.open .mm-cta { opacity: 1; transform: none; }
.mm-meta {
  position: absolute;
  bottom: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  color: var(--sage);
}
.mm-meta a { color: var(--gold-soft); font-weight: 600; }

/* ── Hero ─────────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--pine);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 22s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.04) translateY(0); }
  to   { transform: scale(1.10) translateY(-1.2%); }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(13, 22, 16, 0.55) 0%, rgba(13, 22, 16, 0.18) 32%, rgba(13, 22, 16, 0.16) 60%, rgba(13, 22, 16, 0.72) 100%),
    radial-gradient(140% 90% at 50% 105%, rgba(13, 22, 16, 0.42), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 880px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 26px;
  opacity: 0;
  animation: heroUp 1.1s var(--ease-out) 0.15s forwards;
}
.eyebrow-line { width: 44px; height: 1px; background: var(--gold-soft); opacity: 0.7; }

#hero h1 {
  font-size: clamp(3.2rem, 2rem + 7.5vw, 7rem);
  font-weight: 480;
  color: var(--white);
  letter-spacing: -0.015em;
  line-height: 1.02;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  animation: heroUp 1.2s var(--ease-out) 0.3s forwards;
}

.hero-sub {
  margin-top: 22px;
  font-size: clamp(1.05rem, 0.9rem + 0.8vw, 1.35rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  opacity: 0;
  animation: heroUp 1.2s var(--ease-out) 0.48s forwards;
}

.hero-actions {
  margin-top: 42px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroUp 1.2s var(--ease-out) 0.64s forwards;
}

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

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: heroUp 1.2s var(--ease-out) 1s forwards;
}
.hero-scroll-line {
  width: 1px;
  height: 52px;
  background: rgba(255, 255, 255, 0.45);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--gold-soft);
  animation: scrollDrop 2.2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { top: -50%; }
  70%, 100% { top: 110%; }
}
.hero-scroll-txt {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

/* ── Statistika ───────────────────────────────────────────────── */
.stats-bar {
  position: relative;
  z-index: 3;
  width: min(1080px, calc(100% - 48px));
  margin: -64px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.stat {
  padding: 34px 18px;
  text-align: center;
  position: relative;
}
.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 26%;
  height: 48%;
  width: 1px;
  background: var(--line);
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 1.2rem + 1.6vw, 2.4rem);
  font-weight: 540;
  color: var(--pine);
  line-height: 1.1;
}
.stat span {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

/* ── Par mums ─────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 5vw, 90px);
  align-items: center;
}
.about-text h2 { margin-bottom: 22px; max-width: 480px; }
.about-text p + p { margin-top: 16px; }
.about-text .lead { margin-bottom: 4px; }
.about-text > .btn { margin-top: 38px; }

.feature-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
}
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-icon {
  flex: 0 0 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--bone);
  border-radius: 14px;
  color: var(--gold-deep);
}
.feature-item strong { display: block; font-size: 0.95rem; color: var(--pine); }
.feature-item small { color: var(--ink-soft); font-size: 0.82rem; }

.about-visual {
  position: relative;
  padding-bottom: 76px;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.about-img-main img { width: 100%; aspect-ratio: 4 / 4.6; object-fit: cover; }
.about-img-offset {
  position: absolute;
  right: -8%;
  bottom: 0;
  width: 56%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-soft);
}
.about-img-offset img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.about-stamp {
  position: absolute;
  left: -26px;
  top: 38px;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: var(--pine);
  color: var(--gold-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  box-shadow: var(--shadow-card);
  rotate: -8deg;
}
.about-stamp em {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 0.86rem;
  line-height: 1.2;
}

/* ── Naktsmītņu kartes ────────────────────────────────────────── */
.acc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.acc-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.acc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); }

.acc-card-img { position: relative; overflow: hidden; aspect-ratio: 16 / 10.5; }
.acc-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.acc-card:hover .acc-card-img img { transform: scale(1.06); }
.acc-badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 7px 14px;
  background: var(--gold);
  color: var(--pine);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
}

.acc-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 26px 26px 24px;
}
.acc-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.acc-card-price { white-space: nowrap; color: var(--ink-soft); font-size: 0.82rem; }
.acc-card-price strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 560;
  color: var(--gold-deep);
  margin-right: 2px;
}
.acc-card-desc { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 18px; }

.acc-amenities {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.acc-amenities li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  background: var(--bone);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink);
}
.acc-amenities .icon { width: 15px; height: 15px; color: var(--gold-deep); }

.acc-card-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.acc-cap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.acc-cap .icon { width: 17px; height: 17px; }

/* ── Pieredze ─────────────────────────────────────────────────── */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.exp-item {
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.exp-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.exp-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--pine), var(--forest));
  color: var(--gold-soft);
  border-radius: 18px;
  margin-bottom: 20px;
}
.exp-icon .icon { width: 26px; height: 26px; }
.exp-item h3 { font-size: 1.18rem; margin-bottom: 10px; }
.exp-item p { font-size: 0.9rem; color: var(--ink-soft); }

/* ── Kino josla ───────────────────────────────────────────────── */
.cinema { padding: 0 0 clamp(72px, 6vw + 40px, 130px); }
.cinema-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 21 / 10;
  min-height: 320px;
  background: var(--pine);
}
.cinema-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cinema-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 22, 16, 0.65), transparent 55%);
}
.cinema-caption {
  position: absolute;
  left: clamp(24px, 4vw, 56px);
  bottom: clamp(22px, 3.5vw, 46px);
  z-index: 2;
}
.cinema-caption .eyebrow { margin-bottom: 8px; }
.cinema-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1rem + 2vw, 2.2rem);
  font-weight: 480;
  color: var(--white);
  line-height: 1.2;
}

/* ── Galerija ─────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}
.g-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out), filter 0.5s;
}
.g-item:hover img { transform: scale(1.05); filter: brightness(1.05); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

#lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 4vmin;
  background: rgba(11, 18, 14, 0.92);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
#lightbox.open { opacity: 1; visibility: visible; }
#lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 14px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
  transform: scale(0.96);
  transition: transform 0.35s var(--ease-out);
}
#lightbox.open img { transform: none; }
#lbClose {
  position: absolute;
  top: 22px; right: 26px;
  width: 46px; height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.25s;
}
#lbClose:hover { background: rgba(255, 255, 255, 0.25); }

/* ── Atsauksmes ───────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.t-card {
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.t-stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 18px; }
.t-stars .icon { width: 16px; height: 16px; }
.t-card blockquote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 420;
  font-style: italic;
  line-height: 1.55;
  color: var(--pine);
  flex: 1;
}
.t-card figcaption {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.t-card figcaption strong { display: block; font-size: 0.92rem; color: var(--pine); }
.t-card figcaption span { font-size: 0.8rem; color: var(--ink-soft); }

/* ═══════════════════════════════════════════════════════════════
   REZERVĀCIJAS VEDNIS
   ═══════════════════════════════════════════════════════════════ */
.bk-shell {
  background: var(--cream);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 120px -30px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

/* Soļi */
.bk-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px 24px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.bk-step {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bk-dot {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bone);
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.35s var(--ease-out);
}
.bk-step.active .bk-dot {
  background: var(--pine);
  color: var(--gold-soft);
  box-shadow: 0 0 0 5px rgba(20, 35, 26, 0.08);
}
.bk-step.done .bk-dot { background: var(--gold); color: var(--pine); }
.bk-lbl { font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); }
.bk-step.active .bk-lbl { color: var(--pine); }
.bk-line { width: clamp(20px, 6vw, 70px); height: 1.5px; background: var(--line); }

.bk-body { position: relative; }
.bk-panel { display: none; }
.bk-panel.active {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 0;
  animation: bkFade 0.45s var(--ease-out);
}
@keyframes bkFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
#bkStep3.active { display: block; }

.bk-main { padding: clamp(24px, 3.5vw, 44px); }
.bk-aside {
  padding: clamp(24px, 3.5vw, 40px);
  background: var(--white);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bk-title {
  font-size: 1.3rem;
  margin-bottom: 22px;
}

/* Tipa izvēle */
.bk-acc-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 26px;
}
.bk-acc-option {
  padding: 18px 14px 16px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 16px;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-text);
  transition: all 0.3s var(--ease-out);
}
.bk-acc-option:hover { border-color: var(--moss); transform: translateY(-2px); }
.bk-acc-option.selected {
  border-color: var(--pine);
  background: var(--pine);
  box-shadow: var(--shadow-card);
}
.bk-acc-option .acc-icon { color: var(--gold-deep); margin-bottom: 10px; }
.bk-acc-option.selected .acc-icon { color: var(--gold-soft); }
.bk-acc-option .acc-name { font-size: 0.88rem; font-weight: 600; color: var(--pine); }
.bk-acc-option.selected .acc-name { color: var(--cream); }
.bk-acc-option .acc-price { font-size: 0.8rem; font-weight: 600; color: var(--gold-deep); margin-top: 2px; }
.bk-acc-option.selected .acc-price { color: var(--gold-soft); }
.bk-acc-option .acc-guests { font-size: 0.72rem; color: var(--ink-soft); margin-top: 2px; }
.bk-acc-option.selected .acc-guests { color: var(--sage); }

/* Kalendārs */
.bk-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 60px 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.bk-spinner {
  width: 22px; height: 22px;
  border: 2.5px solid var(--line);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.bk-spinner-lg { width: 40px; height: 40px; border-width: 3px; }
@keyframes spin { to { transform: rotate(360deg); } }

.bk-cal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.bk-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.bk-cal-title {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 560;
  color: var(--pine);
}
.bk-cal-nav {
  width: 34px; height: 34px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--pine);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.25s;
}
.bk-cal-nav:hover { background: var(--pine); color: var(--cream); border-color: var(--pine); }
.bk-cal-nav.hidden { visibility: hidden; }

.bk-cal-dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 6px;
}
.bk-cal-dow span {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  padding: 4px 0;
}
.bk-cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.bk-day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: none;
  background: var(--white);
  border-radius: 10px;
  font-family: var(--font-text);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.bk-day:not(:disabled):hover { background: var(--sand); transform: scale(1.06); }
.bk-day-empty { background: transparent; pointer-events: none; }
.bk-day-disabled { background: transparent; color: var(--sand); cursor: default; }
.bk-day-booked {
  background: repeating-linear-gradient(135deg, #EBE2D0 0 4px, #E2D7C0 4px 8px);
  color: #B0A488;
  cursor: not-allowed;
  text-decoration: line-through;
}
.bk-day-limited { background: #F1E9D6; color: #B0A488; cursor: not-allowed; }
.bk-day-today { box-shadow: inset 0 0 0 1.5px var(--gold); }
.bk-day-start, .bk-day-end {
  background: var(--pine) !important;
  color: var(--gold-soft) !important;
  font-weight: 700;
}
.bk-day-in-range { background: #E2EAE2; color: var(--pine); }
.bk-day-hover-range { background: #ECF1EC; color: var(--pine); }

.bk-minnights-msg {
  display: none;
  margin-top: 14px;
  padding: 11px 16px;
  background: #F8EEDC;
  border: 1px solid var(--gold-soft);
  border-radius: 12px;
  font-size: 0.84rem;
  color: var(--gold-deep);
}
.bk-minnights-msg.visible { display: block; animation: bkFade 0.3s var(--ease-out); }

.bk-legend {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.bk-legend > span { display: inline-flex; align-items: center; gap: 7px; }
.leg-dot { width: 12px; height: 12px; border-radius: 4px; }
.leg-avail  { background: var(--white); box-shadow: inset 0 0 0 1px var(--line); }
.leg-booked { background: repeating-linear-gradient(135deg, #EBE2D0 0 3px, #E2D7C0 3px 6px); }
.leg-sel    { background: var(--pine); }

/* Viesu / mājiņu rindas */
.bk-guests-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-top: 14px;
}
.bk-guests-label { font-size: 0.92rem; font-weight: 600; color: var(--pine); }
.bk-guests-sublabel { font-size: 0.76rem; color: var(--ink-soft); }
.bk-guests-ctrl { display: flex; align-items: center; gap: 16px; }
.bk-guests-ctrl span { min-width: 22px; text-align: center; font-weight: 700; font-size: 1.05rem; color: var(--pine); }
.bk-gbtn {
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--cream);
  color: var(--pine);
  font-size: 1.15rem;
  cursor: pointer;
  transition: all 0.25s;
}
.bk-gbtn:not(:disabled):hover { background: var(--pine); color: var(--cream); border-color: var(--pine); }
.bk-gbtn:disabled { opacity: 0.35; cursor: default; }

/* Sānjosla */
.bk-acc-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--bone);
  border-radius: 16px;
}
.bk-acc-icon {
  flex: 0 0 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--pine);
  color: var(--gold-soft);
  border-radius: 14px;
}
.bk-acc-card strong { font-size: 0.95rem; color: var(--pine); }
.bk-acc-card p { font-size: 0.8rem; color: var(--ink-soft); margin: 4px 0 10px; }
.bk-price-tag {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 560;
  color: var(--gold-deep);
}
.bk-price-tag small { font-family: var(--font-text); font-size: 0.74rem; color: var(--ink-soft); font-weight: 500; }

.bk-summary { flex: 1; }
.bk-sum-placeholder {
  padding: 22px 16px;
  text-align: center;
  font-size: 0.86rem;
  color: var(--ink-soft);
  background: var(--bone);
  border-radius: 14px;
}
.bk-sum-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 2px;
  font-size: 0.88rem;
  color: var(--ink);
  border-bottom: 1px dashed var(--line);
}
.bk-sum-row:last-child {
  border-bottom: none;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1.5px solid var(--pine);
  font-weight: 700;
  font-size: 1rem;
  color: var(--pine);
}

.bk-aside-title {
  font-size: 1.02rem;
  margin: 0;
}
.bk-summary-detail { flex: 1; }
.bk-sum-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 2px;
  font-size: 0.86rem;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--line);
}
.bk-sum-item strong { color: var(--pine); font-weight: 600; text-align: right; }
.bk-sum-total {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  padding: 14px 2px 0;
  border-top: 1.5px solid var(--pine);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--pine);
}
.bk-aside-note { font-size: 0.78rem; color: var(--ink-soft); }

/* Forma */
.bk-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.bk-field:nth-child(3), .bk-field:nth-child(4) { grid-column: 1 / -1; }
.bk-field label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--pine);
  margin-bottom: 7px;
}
.req { color: var(--danger); }
.opt { opacity: 0.55; font-weight: 400; }
.bk-field input, .bk-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  font-family: var(--font-text);
  font-size: 0.92rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  resize: vertical;
}
.bk-field input:focus, .bk-field textarea:focus {
  border-color: var(--pine);
  box-shadow: 0 0 0 4px rgba(20, 35, 26, 0.07);
}
.bk-err { display: block; min-height: 18px; font-size: 0.76rem; color: var(--danger); margin-top: 4px; }

/* Rezultāts */
.bk-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: clamp(40px, 6vw, 80px) 24px;
}
.bk-result h3 { font-size: 1.5rem; }
.bk-result p { color: var(--ink-soft); font-size: 0.94rem; }
.bk-result-icon {
  width: 72px; height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.bk-ok { background: #E5EDE2; color: #3E6B45; }
.bk-err-icon { background: #F6E3DE; color: var(--danger); }
.bk-result-recap {
  width: min(420px, 100%);
  margin-top: 18px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: left;
}
.bk-recap-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  font-size: 0.86rem;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--line);
}
.bk-recap-row:last-child {
  border-bottom: none;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1.5px solid var(--pine);
  font-weight: 700;
  color: var(--pine);
}
.bk-recap-row strong { color: var(--pine); font-weight: 600; }
.bk-result-actions { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; justify-content: center; }

.bk-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px clamp(24px, 3.5vw, 44px);
  border-top: 1px solid var(--line);
  background: var(--white);
}
.bk-nav:has(#bkBack[style*="none"]):has(#bkSubmit[style*="none"]) { display: none; }
.bk-back-btn { background: transparent; color: var(--ink-soft); padding-left: 8px; }
.bk-back-btn:hover { color: var(--pine); }

/* ── Kontakti ─────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.contact-info h2 { margin-bottom: 30px; }
.contact-items { display: flex; flex-direction: column; gap: 22px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  flex: 0 0 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--bone);
  color: var(--gold-deep);
  border-radius: 14px;
}
.contact-item strong { display: block; font-size: 0.92rem; color: var(--pine); }
.contact-item p { font-size: 0.92rem; color: var(--ink-soft); }
.contact-item a:hover { color: var(--gold-deep); }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 100%;
  min-height: 420px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: saturate(0.85) contrast(1.02);
}

/* ── Kājene ───────────────────────────────────────────────────── */
footer {
  background:
    radial-gradient(900px 400px at 90% 0%, rgba(193, 154, 63, 0.08), transparent 55%),
    var(--pine);
  color: rgba(255, 255, 255, 0.75);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 48px;
  padding: 72px 0 56px;
}
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 540;
  color: var(--cream);
  margin-bottom: 18px;
}
.footer-logo-row img { width: 40px; height: 40px; object-fit: contain; }
.footer-tagline { font-size: 0.9rem; color: rgba(255, 255, 255, 0.55); max-width: 300px; }
.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 18px;
}
.footer-links-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links-list a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.25s, padding-left 0.25s;
}
.footer-links-list a:hover { color: var(--gold-soft); padding-left: 4px; }
.footer-note { font-size: 0.86rem; color: rgba(255, 255, 255, 0.55); line-height: 1.65; margin-bottom: 20px; }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.8rem; color: rgba(255, 255, 255, 0.4); }
.footer-policy a { font-size: 0.8rem; color: rgba(255, 255, 255, 0.4); }
.footer-policy a:hover { color: var(--gold-soft); }

/* ── Atklāšanās animācijas ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }

/* Pakāpeniska parādīšanās režģos */
.acc-cards .reveal:nth-child(2),
.exp-grid .reveal:nth-child(2),
.testimonials-grid .reveal:nth-child(2) { transition-delay: 0.12s; }
.acc-cards .reveal:nth-child(3),
.exp-grid .reveal:nth-child(3),
.testimonials-grid .reveal:nth-child(3) { transition-delay: 0.24s; }
.exp-grid .reveal:nth-child(4) { transition-delay: 0.36s; }

/* ── Responsīvs ───────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .acc-cards { grid-template-columns: repeat(2, 1fr); }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
  .bk-panel.active { grid-template-columns: 1.4fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-visual { max-width: 520px; margin-inline: auto; }

  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }

  .bk-panel.active { grid-template-columns: 1fr; }
  .bk-aside { border-left: none; border-top: 1px solid var(--line); }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { min-height: 340px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand-col { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .stats-bar { grid-template-columns: 1fr 1fr; margin-top: -52px; }
  .stat { padding: 24px 12px; }
  .stat:nth-child(3)::before { display: none; }

  .acc-cards { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .exp-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; gap: 12px; }

  .bk-acc-selector { grid-template-columns: 1fr; }
  .bk-cal-grid { grid-template-columns: 1fr; gap: 20px; }
  .bk-form { grid-template-columns: 1fr; }
  .bk-field:nth-child(3), .bk-field:nth-child(4) { grid-column: auto; }
  .bk-progress { gap: 8px; }
  .bk-lbl { display: none; }
  .bk-line { width: 24px; }

  .hero-actions .btn { width: 100%; }
  .cinema-frame { aspect-ratio: 4 / 3; }

  .about-img-offset { right: 0; }
  .about-stamp { left: -8px; width: 92px; height: 92px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding: 56px 0 44px; }
}

/* ── Samazināta kustība ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-video { animation: none; }
}
