/* ============================================================
   AWAKE — awake.lv
   Dizaina sistēma: "Tuvāk sev" estētika (smiltis / mežs / māls)
   Fonti: Cormorant Garamond (virsraksti) + Inter (teksts)
   ============================================================ */

/* Fonti: css/fonts.css */
/* ---------- tokeni ---------- */
:root {
  --sand: #F6F1E6;
  --paper: #FBF8F2;
  --sand-deep: #ECE2CB;
  --forest-900: #232E24;
  --forest-800: #2C3A2D;
  --forest-700: #3C4F3C;
  --forest-500: #56694F;
  --clay: #9C5430;
  --clay-deep: #833F22;
  --clay-soft: #C98055;
  --gold: #D9C79C;
  --gold-soft: #A9B39F;
  --ink: #2B2620;
  --ink-soft: #5C564A;
  --line: #DED2B8;
  --cream: #F3ECD9;
  --radius: 18px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---------- bāze ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }
svg { display: block; }
video { max-width: 100%; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  margin: 0;
  color: var(--forest-900);
}
:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
  border-radius: 4px;
}
::selection { background: var(--gold); color: var(--forest-900); }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
}
.section { padding: clamp(64px, 10vw, 120px) 0; }
.section--tight { padding: clamp(48px, 7vw, 84px) 0; }
.section--paper { background: var(--paper); }
.section--sand-deep { background: var(--sand-deep); }
.section--dark {
  background: var(--forest-900);
  color: var(--cream);
  position: relative;
}
.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 60% at 50% 0%, rgba(217, 199, 156, .08), transparent 70%);
  pointer-events: none;
}
.section--dark h2, .section--dark h3 { color: var(--paper); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--clay);
  flex-shrink: 0;
}
.section--dark .eyebrow, .eyebrow--gold { color: var(--gold); }
.section--dark .eyebrow::before, .eyebrow--gold::before { background: var(--gold); }

.head { max-width: 640px; margin: 0 0 48px; }
.head h1 { font-size: clamp(40px, 6vw, 64px); margin-top: 14px; }
.head h2 { font-size: clamp(34px, 5vw, 52px); margin-top: 14px; }
.head p { margin-top: 16px; color: var(--ink-soft); font-size: 17px; }
.section--dark .head p { color: var(--gold-soft); }
.head--center { margin-left: auto; margin-right: auto; text-align: center; }
.head--center .eyebrow { justify-content: center; }

.skiplink {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--forest-900);
  color: var(--cream);
  padding: 12px 20px;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skiplink:focus { left: 0; }

/* ---------- reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- mini reklāma (paziņojumu josla) ---------- */
.announce {
  position: relative;
  z-index: 60;
  background: linear-gradient(90deg, var(--forest-900), var(--forest-700) 55%, var(--forest-900));
  color: var(--cream);
  overflow: hidden;
  /* Vieta rezervēta no pirmā kadra → josla neienāk stumjot saturu (nav CLS);
     parādās tikai ar caurspīdību. */
  max-height: 200px;
  opacity: 0;
  transition: opacity .5s var(--ease), max-height .5s var(--ease);
}
.announce.is-open { opacity: 1; }
.announce.is-closing { max-height: 0; opacity: 0; padding: 0; }
.announce-hidden .announce { display: none; }
@media (prefers-reduced-motion: reduce) { .announce { transition: none; } }
.announce-row {
  max-width: 1180px;
  margin: 0 auto;
  padding: 11px clamp(48px, 5vw, 56px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
  letter-spacing: .02em;
  text-align: center;
}
.announce-spark { color: var(--gold); flex-shrink: 0; }
.announce-spark svg { width: 15px; height: 15px; }
.announce b { font-weight: 600; color: #fff; }
.announce-date { color: var(--gold); }
.announce-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--gold);
  border-bottom: 1px solid rgba(217, 199, 156, .45);
  padding-bottom: 1px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.announce-link:hover { color: #fff; border-color: #fff; }
.announce-link svg { width: 13px; height: 13px; }
.announce-close {
  position: absolute;
  right: clamp(10px, 2vw, 18px);
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  border-radius: 50%;
  color: var(--cream);
  opacity: .6;
  cursor: pointer;
  transition: opacity .2s var(--ease), background .2s var(--ease);
}
.announce-close:hover { opacity: 1; background: rgba(255, 255, 255, .08); }
.announce-close svg { width: 14px; height: 14px; }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 241, 230, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease);
}
.nav.is-scrolled { border-color: var(--line); }
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(20px, 5vw, 56px);
  max-width: 1180px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img { height: 26px; width: auto; }
.nav-logo span {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-left: 10px;
  border-left: 1px solid var(--line);
}
.nav-links {
  display: none;
  gap: clamp(18px, 2.6vw, 32px);
  font-size: 15px;
}
.nav-links a {
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.nav-links a:hover { border-color: var(--clay); color: var(--clay); }
.nav-links a.is-active { border-color: var(--clay); color: var(--clay); }
.nav .nav-cta { display: none; }
.burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  color: var(--forest-900);
}
.burger svg { width: 20px; height: 20px; }
@media (min-width: 1000px) {
  .nav-links { display: flex; align-items: center; }
  .nav .nav-cta { display: inline-flex; }
  .burger { display: none; }
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px clamp(20px, 5vw, 56px) 24px;
  border-bottom: 1px solid var(--line);
  background: var(--sand);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  padding: 12px 6px;
  font-size: 17px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-of-type { border-bottom-color: transparent; }
.mobile-menu .btn { margin-top: 12px; align-self: flex-start; }
@media (min-width: 1000px) { .mobile-menu { display: none !important; } }

/* ---------- pogas ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 28px;
  background: var(--clay);
  color: var(--cream);
  border: 1px solid var(--clay);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: .03em;
  cursor: pointer;
  transition: background .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.btn:hover { background: var(--clay-deep); box-shadow: 0 10px 24px -8px rgba(156, 84, 48, .55); }
.btn:active { transform: translateY(1px); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn--ghost {
  background: transparent;
  color: var(--forest-900);
  border-color: var(--forest-900);
}
.btn--ghost:hover { background: var(--forest-900); color: var(--cream); box-shadow: none; }
.btn--light { background: var(--cream); color: var(--forest-900); border-color: var(--cream); }
.btn--light:hover { background: #fff; box-shadow: 0 10px 24px -8px rgba(0, 0, 0, .35); }
.btn--sm { min-height: 40px; padding: 9px 20px; font-size: 14px; }
.section--dark .btn--ghost, .btn--ghost-light { background: transparent; color: var(--cream); border-color: rgba(243, 236, 217, .5); }
.section--dark .btn--ghost:hover, .btn--ghost-light:hover { background: var(--cream); color: var(--forest-900); }
/* Ghost poga uz tumšā hero fona — gaišs teksts/rāmis (citādi tumšs uz tumša = neredzams) */
.hero .btn--ghost, .page-hero .btn--ghost { color: var(--cream); border-color: rgba(243, 236, 217, .5); }
.hero .btn--ghost:hover, .page-hero .btn--ghost:hover { background: var(--cream); color: var(--forest-900); }

/* ---------- hero (sākumlapa) ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 840px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 15% 0%, rgba(86, 105, 79, .55), transparent 60%),
    linear-gradient(200deg, #2E3B27 0%, #232E24 45%, #1B241B 100%);
}
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-media video, .hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(27, 36, 27, .55) 0%, rgba(27, 36, 27, .35) 40%, rgba(27, 36, 27, .82) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(90px, 20vh, 150px) clamp(20px, 5vw, 56px) 76px;
  max-width: 1180px;
  margin: 0 auto;
  color: var(--cream);
}
.hero h1 {
  color: var(--paper);
  font-size: clamp(42px, 7.4vw, 84px);
  letter-spacing: -.01em;
  margin-top: 18px;
  max-width: 15ch;
}
.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 2.6vw, 27px);
  color: var(--gold);
  margin-top: 14px;
  max-width: 46ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}
.scrolldown {
  position: absolute;
  right: clamp(20px, 5vw, 56px);
  bottom: 28px;
  z-index: 2;
  display: none;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  opacity: .75;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scrolldown svg { width: 14px; height: 14px; animation: bounce 2.2s ease-in-out infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@media (min-width: 700px) { .scrolldown { display: flex; } }
@media (prefers-reduced-motion: reduce) { .scrolldown svg { animation: none; } }

/* ---------- apakšlapu hero ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 15% 0%, rgba(86, 105, 79, .55), transparent 60%),
    linear-gradient(200deg, #2E3B27 0%, #232E24 45%, #1B241B 100%);
  color: var(--cream);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255, 255, 255, .035) 0 2px, transparent 2px 120px);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(72px, 13vh, 120px) clamp(20px, 5vw, 56px) clamp(48px, 8vh, 84px);
}
.page-hero h1 {
  color: var(--paper);
  font-size: clamp(42px, 7.5vw, 88px);
  letter-spacing: -.01em;
  margin-top: 16px;
}
.page-hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 2.6vw, 26px);
  color: var(--gold);
  margin-top: 12px;
  max-width: 52ch;
}
.page-hero-trees {
  position: absolute;
  inset: auto 0 -2px 0;
  height: 46%;
  opacity: .45;
  pointer-events: none;
}

/* ---------- dzejas bloki ---------- */
.poem {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.poem-lines {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 3.4vw, 31px);
  color: var(--forest-900);
  line-height: 1.55;
}
.poem-lines p { margin-top: 26px; }
.poem-lines p:first-child { margin-top: 0; }
.poem-lede {
  margin: 44px auto 0;
  max-width: 580px;
  font-size: 18px;
  color: var(--ink-soft);
}
.section--dark .poem-lines { color: var(--paper); font-size: clamp(21px, 3vw, 27px); line-height: 1.75; }
.poem-byline {
  margin-top: 32px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* ---------- info josla ---------- */
.infobar {
  margin: 56px auto 0;
  max-width: 920px;
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  grid-template-columns: 1fr;
}
.infobar li {
  background: var(--paper);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--ink-soft);
}
.infobar svg { width: 20px; height: 20px; color: var(--clay); flex-shrink: 0; }
.infobar strong { display: block; color: var(--forest-900); font-weight: 500; }
@media (min-width: 760px) { .infobar { grid-template-columns: repeat(3, 1fr); } }

/* ---------- kartītes ---------- */
.cards {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) {
  .cards--3 { grid-template-columns: repeat(3, 1fr); }
  .cards--5 { grid-template-columns: repeat(5, 1fr); }
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(35, 46, 36, .25); }
.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--sand-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card-icon svg { width: 22px; height: 22px; color: var(--forest-500); }
.card h3 { font-size: 21px; }
.card p { margin-top: 10px; font-size: 15px; color: var(--ink-soft); }

/* ---------- feature (pasākums sākumlapā) ---------- */
.feature {
  display: grid;
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow: 0 30px 60px -40px rgba(35, 46, 36, .35);
}
@media (min-width: 900px) { .feature { grid-template-columns: 1.05fr 1fr; } }
.feature-media {
  position: relative;
  min-height: 300px;
  background: var(--sand-deep);
}
.feature-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* buklets + poga sākumlapas Pasākumu blokā (bez info dublēšanas) */
.poster-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 3vw, 34px);
}
.poster-cta-media {
  display: block;
  width: 100%;
  max-width: 560px;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow: 0 30px 60px -35px rgba(35, 46, 36, .5);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.poster-cta-media img { width: 100%; display: block; }
.poster-cta-media:hover { transform: translateY(-5px); box-shadow: 0 40px 74px -34px rgba(35, 46, 36, .6); }
.feature-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(35, 46, 36, .82);
  color: var(--gold);
  backdrop-filter: blur(6px);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
}
.feature-body { padding: clamp(28px, 4vw, 52px); display: flex; flex-direction: column; }
.feature-body h3 { font-size: clamp(30px, 3.6vw, 42px); margin-top: 12px; }
.feature-body > p { margin-top: 14px; color: var(--ink-soft); font-size: 16px; }
.feature-meta { margin-top: 24px; display: grid; gap: 12px; }
.feature-meta li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--ink-soft); }
.feature-meta svg { width: 17px; height: 17px; color: var(--clay); flex-shrink: 0; margin-top: 3px; }
.feature-meta strong { color: var(--forest-900); font-weight: 500; }
.feature-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

/* mazā pasākuma rinda (LIVE sarunas) */
.event-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px clamp(22px, 3vw, 34px);
}
.event-row-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--sand-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.event-row-icon svg { width: 24px; height: 24px; color: var(--forest-500); }
.event-row-text { flex: 1 1 320px; }
.event-row-text h3 { font-size: 24px; }
.event-row-text p { margin-top: 6px; color: var(--ink-soft); font-size: 15px; }

/* ---------- split (attēls + teksts) ---------- */
.split {
  display: grid;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1.1fr; }
  .split--rev { grid-template-columns: 1.1fr 1fr; }
  .split--rev .split-media { order: 2; }
}
.split-media { position: relative; }
.split-media img {
  border-radius: var(--radius);
  box-shadow: 0 30px 60px -35px rgba(35, 46, 36, .45);
  width: 100%;
}
.split-media--book { max-width: 440px; margin: 0 auto; }
.split-media--frame::before {
  content: "";
  position: absolute;
  inset: -16px auto auto -16px;
  width: 60%;
  height: 60%;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
  opacity: .6;
}
.split-body .eyebrow { margin-bottom: 4px; }
.split-body h2 { font-size: clamp(32px, 4.4vw, 48px); margin-top: 12px; }
.split-body p { margin-top: 16px; color: var(--ink-soft); font-size: 16.5px; }
.section--dark .split-body p { color: var(--gold-soft); }
.split-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.split-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 2.4vw, 24px);
  color: var(--forest-700);
  border-left: 2px solid var(--gold);
  padding-left: 18px;
  margin-top: 22px;
  line-height: 1.5;
}
.section--dark .split-quote { color: var(--gold); border-color: rgba(217, 199, 156, .4); }

/* ---------- galerijas ---------- */
.gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
.ph {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand-deep);
  aspect-ratio: 4 / 5;
}
.ph--wide { aspect-ratio: 8 / 5; grid-column: span 2; }
.ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.ph:hover img { transform: scale(1.045); }
.ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(35, 46, 36, .72) 100%);
  pointer-events: none;
}
.ph--plain::after { display: none; }
.ph figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 18px 20px;
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--paper);
}
@media (min-width: 700px) {
  .gallery { grid-template-columns: repeat(4, 1fr); }
  .ph--wide { grid-column: span 2; }
}

/* masonry (grāmatas galerija) */
.masonry { columns: 2; column-gap: 16px; }
@media (min-width: 700px) { .masonry { columns: 3; } }
@media (min-width: 1020px) { .masonry { columns: 4; } }
.masonry a {
  display: block;
  margin: 0 0 16px;
  border-radius: 14px;
  overflow: hidden;
  break-inside: avoid;
  position: relative;
}
.masonry img {
  width: 100%;
  transition: transform .5s var(--ease), filter .5s var(--ease);
}
.masonry a:hover img { transform: scale(1.03); filter: brightness(1.05); }

/* ---------- video bloks ---------- */
.video-frame {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  background: var(--forest-900);
  box-shadow: 0 40px 80px -45px rgba(35, 46, 36, .6);
}
.video-frame video { display: block; width: 100%; height: auto; }
.video-note {
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  color: var(--ink-soft);
}
.section--dark .video-note { color: var(--gold-soft); }

/* ---------- atsauksmes ---------- */
.quotes { columns: 1; column-gap: 20px; }
@media (min-width: 700px) { .quotes { columns: 2; } }
@media (min-width: 1020px) { .quotes--3 { columns: 3; } }
.quote {
  break-inside: avoid;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  margin: 0 0 20px;
}
.quote-mark {
  font-family: var(--serif);
  font-size: 52px;
  line-height: .6;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18.5px;
  line-height: 1.55;
  color: var(--forest-800);
}
.quote footer {
  margin-top: 18px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 600;
}
.quote footer span { color: var(--ink-soft); font-weight: 400; letter-spacing: .04em; text-transform: none; margin-left: 8px; }

/* ---------- CTA josla ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--clay) 0%, var(--clay-deep) 100%);
  border-radius: calc(var(--radius) + 8px);
  color: var(--cream);
  padding: clamp(40px, 6vw, 72px);
  display: grid;
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 900px) { .cta-band { grid-template-columns: 1.4fr auto; } }
.cta-band::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(243, 236, 217, .25);
  border-radius: 50%;
}
.cta-band::after {
  content: "";
  position: absolute;
  right: 40px;
  bottom: -80px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(243, 236, 217, .18);
  border-radius: 50%;
}
.cta-band h2 { color: #fff; font-size: clamp(28px, 3.6vw, 42px); }
.cta-band p { margin-top: 12px; color: rgba(243, 236, 217, .85); font-size: 16px; max-width: 56ch; }
.cta-band .btn { position: relative; z-index: 2; }

/* ---------- praktiskā info ---------- */
.info-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .info-grid { grid-template-columns: repeat(2, 1fr); } }
.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.info-item svg { width: 22px; height: 22px; color: var(--clay); flex-shrink: 0; margin-top: 2px; }
.info-item h3 { font-size: 20px; }
.info-item p { margin-top: 6px; font-size: 15px; color: var(--ink-soft); }

/* ---------- tagu rinda ---------- */
.tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.tags li {
  font-size: 13px;
  letter-spacing: .05em;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 999px;
  padding: 7px 16px;
}

/* ---------- forma (biedrība) ---------- */
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(26px, 4vw, 44px);
}
.form-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } }
.field label {
  display: block;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--forest-700);
  margin-bottom: 8px;
}
.field input, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--sand);
  padding: 13px 16px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(156, 84, 48, .14);
}
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 13px; color: var(--ink-soft); margin-top: 14px; }
.form-note a { color: var(--clay); border-bottom: 1px solid rgba(156, 84, 48, .3); }

/* ---------- detaļas / statūti ---------- */
.details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.details + .details { margin-top: 14px; }
.details summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 26px;
  font-family: var(--serif);
  font-size: 21px;
  color: var(--forest-900);
  transition: background .2s var(--ease);
}
.details summary::-webkit-details-marker { display: none; }
.details summary:hover { background: var(--sand); }
.details summary svg {
  width: 18px;
  height: 18px;
  color: var(--clay);
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.details[open] summary svg { transform: rotate(45deg); }
.details-body {
  padding: 4px 26px 26px;
  color: var(--ink-soft);
  font-size: 15px;
}
.details-body h4 {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--forest-700);
  margin: 22px 0 8px;
}
.details-body p { margin-top: 10px; }
.details-body p:first-child { margin-top: 0; }

/* ---------- kontaktu bloks ---------- */
.contact-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.contact-card svg { width: 22px; height: 22px; color: var(--clay); margin-bottom: 14px; }
.contact-card h3 { font-size: 20px; }
.contact-card p { margin-top: 8px; font-size: 15px; color: var(--ink-soft); line-height: 1.7; }
.contact-card a { color: var(--clay); }
.contact-card a:hover { text-decoration: underline; }

/* ---------- teksta lapa (privātums) ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: clamp(28px, 3.6vw, 38px); margin: 48px 0 16px; }
.prose h3 { font-size: 22px; margin: 34px 0 10px; }
.prose p, .prose li { color: var(--ink-soft); font-size: 15.5px; margin-top: 10px; }
.prose ul { list-style: disc; padding-left: 22px; }
.prose a { color: var(--clay); border-bottom: 1px solid rgba(156, 84, 48, .3); }
.prose .meta { font-size: 13.5px; letter-spacing: .04em; color: var(--ink-soft); }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(27, 36, 27, .92);
  padding: clamp(16px, 4vw, 48px);
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: calc(100vh - 96px);
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .7);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(246, 241, 230, .12);
  border: 1px solid rgba(246, 241, 230, .25);
  color: var(--cream);
  cursor: pointer;
  transition: background .2s var(--ease);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(246, 241, 230, .25); }
.lightbox-close { top: 18px; right: 18px; }
.lightbox-prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 14px; top: 50%; transform: translateY(-50%); }
.lightbox svg { width: 18px; height: 18px; }

/* ---------- footer ---------- */
.footer {
  background: var(--forest-900);
  color: var(--cream);
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 199, 156, .5), transparent);
}
.footer-grid {
  display: grid;
  gap: 40px;
  padding: clamp(52px, 7vw, 80px) 0 44px;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1.2fr; } }
.footer-brand img { height: 30px; width: auto; }
.footer-brand p {
  margin-top: 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  max-width: 34ch;
  line-height: 1.6;
}
.footer h4 {
  color: var(--paper);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}
.footer-links li { margin-top: 10px; }
.footer-links a {
  color: rgba(243, 236, 217, .8);
  font-size: 15px;
  transition: color .2s var(--ease);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 12px;
  font-size: 14.5px;
  color: rgba(243, 236, 217, .8);
  line-height: 1.6;
}
.footer-contact svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 4px; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(243, 236, 217, .14);
  padding: 22px 0 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(243, 236, 217, .6);
}
.footer-bottom a { transition: color .2s var(--ease); }
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 18px; }

/* ---------- palīgi ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.section-cta { margin-top: 44px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
