:root {
  color-scheme: dark;
  --ink: #f8f1e2;
  --muted: #cabb9b;
  --dim: #917f60;
  --bg: #0d120d;
  --bg-2: #161f16;
  --line: rgba(248, 241, 226, .16);
  --gold: #c99b52;
  --gold-2: #f0d28c;
  --green: #223425;
  --rust: #9d5b32;
  --paper: #fff8e8;
  --paper-ink: #22190f;
  --shadow: 0 30px 80px rgba(0, 0, 0, .34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(157, 91, 50, .2), transparent 34%),
    radial-gradient(circle at 78% 12%, rgba(240, 210, 140, .1), transparent 18%),
    linear-gradient(135deg, #090d09 0%, #132015 45%, #080b08 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 11, 8, .75), transparent 24%, transparent 76%, rgba(8, 11, 8, .82)),
    linear-gradient(120deg, transparent 0 42%, rgba(240, 210, 140, .07) 50%, transparent 58%),
    linear-gradient(rgba(13, 18, 13, .12), rgba(13, 18, 13, .42));
  mix-blend-mode: screen;
}

a {
  color: inherit;
}

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

.skip {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 20;
  padding: .6rem 1rem;
  background: var(--paper);
  color: var(--paper-ink);
  border-radius: 4px;
}

.skip:focus {
  top: 1rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1rem clamp(1rem, 3vw, 3rem);
  border-bottom: 1px solid var(--line);
  background: rgba(9, 13, 9, .82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: .8rem;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.brand-logo,
.footer-logo {
  flex: 0 0 auto;
  border: 1px solid rgba(201, 155, 82, .55);
  border-radius: 50%;
  box-shadow: 0 0 26px rgba(240, 210, 140, .18);
}

.brand-logo {
  width: 3rem;
  height: 3rem;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  justify-content: center;
  font-size: .9rem;
  color: var(--muted);
}

nav a,
.nav-cta {
  text-decoration: none;
}

.nav-cta,
.button,
.inline-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: .8rem 1.15rem;
  border-radius: 6px;
  font-weight: 760;
  text-decoration: none;
}

.nav-cta,
.button.primary,
.inline-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff1b0 0%, var(--gold-2) 32%, var(--gold) 58%, #875a22 100%);
  color: #221509;
  box-shadow: 0 14px 36px rgba(201, 155, 82, .2);
}

.nav-cta::after,
.button.primary::after,
.inline-cta::after {
  content: "";
  position: absolute;
  top: -80%;
  bottom: -80%;
  left: -40%;
  width: 32%;
  transform: rotate(22deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .55), transparent);
  animation: goldShine 6.8s ease-in-out infinite;
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, .04);
}

.button.tertiary {
  border: 1px solid rgba(240, 210, 140, .28);
  color: var(--gold-2);
  background: rgba(5, 8, 5, .22);
}

.button.wide {
  width: 100%;
}

.hero,
.section,
.final-cta {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: 0;
  padding: clamp(2.6rem, 5.8vw, 5rem) 0 3rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold-2);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.07;
  letter-spacing: 0;
}

h1 {
  max-width: 15ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.8vw, 5.45rem);
  font-weight: 500;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.8vw, 4.2rem);
  font-weight: 500;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.lead {
  max-width: 760px;
  margin: 1.2rem 0 0;
  color: var(--paper);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.hero-text {
  max-width: 760px;
  margin-top: 1.1rem;
  color: var(--muted);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem;
  max-width: 760px;
  padding: 0;
  margin: 1.25rem 0;
  list-style: none;
}

.quick-facts li,
.line-list span,
.recap-list span {
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, .045);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

.actions.center {
  justify-content: center;
}

.microcopy {
  max-width: 720px;
  color: var(--dim);
  font-size: .95rem;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  padding: 2rem;
  border: 1px solid rgba(201, 155, 82, .34);
  border-radius: 8px;
  background:
    linear-gradient(rgba(12, 16, 12, .1), rgba(12, 16, 12, .86)),
    url("/assets/tereza-portrait.jpg");
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.fire-ring {
  display: grid;
  place-items: center;
  width: 13rem;
  height: 13rem;
  margin: 3rem auto;
  border: 1px solid rgba(240, 210, 140, .5);
  border-radius: 50%;
  text-align: center;
}

.fire-ring span {
  color: var(--gold-2);
  font-family: Georgia, serif;
  font-size: 4.5rem;
  line-height: .8;
}

.fire-ring strong {
  max-width: 8rem;
  color: var(--paper);
  line-height: 1.2;
}

.hero-panel p {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  color: var(--paper);
  font-size: 1.12rem;
}

.photo-ribbon {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  width: min(760px, calc(100% - 2rem));
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.photo-ribbon::after {
  content: "";
  position: absolute;
  right: 18%;
  bottom: -1.4rem;
  left: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 210, 140, .28), transparent);
}

.photo-ribbon figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(201, 155, 82, .28);
  border-radius: 8px;
  background: #050805;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.photo-ribbon figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 46%, rgba(5, 8, 5, .55)),
    radial-gradient(circle at 18% 18%, rgba(240, 210, 140, .16), transparent 28%);
}

.photo-ribbon img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.photo-ribbon figure:first-child img {
  object-position: center;
}

.photo-ribbon figcaption {
  position: absolute;
  right: .9rem;
  bottom: .9rem;
  left: .9rem;
  padding: .65rem .75rem;
  border: 1px solid rgba(240, 210, 140, .28);
  border-radius: 6px;
  background: rgba(5, 8, 5, .7);
  color: var(--paper);
  font-size: .86rem;
  backdrop-filter: blur(10px);
}

.section {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid var(--line);
}

.section::before {
  content: "";
  position: absolute;
  top: -1px;
  left: max(1rem, calc((100% - 1180px) / 2));
  width: min(22rem, 34vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(240, 210, 140, .58), transparent);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.2rem;
}

.text-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.line-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
  margin-top: 2rem;
}

.symbol-grid,
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
}

.symbol-grid article,
.bonus-grid article {
  position: relative;
  min-height: 240px;
  padding: 1.4rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .025));
}

.symbol-grid article::before,
.bonus-grid article::before,
.program-grid article::before {
  content: "↘";
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: rgba(240, 210, 140, .42);
  font-size: 1.4rem;
}

.symbol-grid article::after,
.bonus-grid article::after {
  content: "";
  position: absolute;
  inset: auto -20% -45% 22%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 210, 140, .14), transparent 62%);
}

.symbol-mark {
  display: inline-grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(240, 210, 140, .48);
  border-radius: 50%;
  color: var(--gold-2);
  font-family: Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.symbol-mark.horse {
  font-size: 1.7rem;
}

.flow-cue {
  position: absolute;
  top: 3.2rem;
  right: clamp(.25rem, 4vw, 2rem);
  display: grid;
  place-items: center;
  width: 4.2rem;
  height: 4.2rem;
  border: 1px solid rgba(240, 210, 140, .36);
  border-radius: 50%;
  background: rgba(5, 8, 5, .48);
  color: var(--gold-2);
  font-size: 1.7rem;
}

.wide-note {
  max-width: 850px;
  margin-top: 2rem;
  color: var(--paper);
  font-size: 1.2rem;
}

.dark-band {
  width: 100%;
  max-width: none;
  padding-right: max(1rem, calc((100vw - 1180px) / 2));
  padding-left: max(1rem, calc((100vw - 1180px) / 2));
  background: #050805;
}

.fit-grid,
.price,
.about {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.fit-grid ul,
.program-grid ul,
.price-box ul {
  padding-left: 1.2rem;
}

.quiet-card,
.price-box,
.program-grid article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
}

.quiet-card {
  padding: 2rem;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .9rem;
}

.path-cue {
  position: absolute;
  top: 2.6rem;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  pointer-events: none;
}

.path-cue span {
  width: min(26rem, 52vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 210, 140, .48), transparent);
}

.path-cue strong {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(240, 210, 140, .32);
  border-radius: 50%;
  background: rgba(5, 8, 5, .62);
  color: var(--gold-2);
}

.bonus-grid {
  margin-bottom: 1rem;
}

.program-grid article {
  min-height: 280px;
  padding: 1.35rem;
}

.dates-weekend {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .95fr);
  gap: clamp(1.4rem, 3.6vw, 2.6rem);
  align-items: center;
  margin: 1.1rem 0 1.4rem;
  padding: clamp(1rem, 2.6vw, 1.6rem);
  border: 1px solid rgba(240, 210, 140, .26);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 248, 232, .075), rgba(201, 155, 82, .045));
  overflow: hidden;
  scroll-margin-top: 6rem;
}

.dates-copy {
  align-self: center;
  min-width: 0;
}

.dates-copy h3 {
  margin-bottom: .75rem;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  font-weight: 500;
}

.dates-copy p {
  margin: .65rem 0 0;
  color: var(--muted);
}

.capacity-note {
  padding-top: .75rem;
  border-top: 1px solid rgba(240, 210, 140, .18);
  color: var(--paper);
}

.safety-note {
  padding: .85rem 1rem;
  border: 1px solid rgba(240, 210, 140, .24);
  border-radius: 6px;
  background: rgba(5, 8, 5, .42);
  color: var(--paper);
  font-size: .96rem;
}

.inline-cta.subtle {
  margin-top: 1.1rem;
}

.dates-visual {
  display: block;
  min-width: 0;
  align-self: center;
}

.dates-photo {
  position: relative;
  display: grid;
  place-items: center;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(201, 155, 82, .3);
  border-radius: 8px;
  background: #f8f1e2;
  box-shadow: 0 18px 52px rgba(0, 0, 0, .26);
}

.dates-photo.main {
  width: 100%;
  min-height: 0;
  aspect-ratio: 4 / 3;
  height: auto;
}

.dates-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 42%, rgba(5, 8, 5, .68)),
    radial-gradient(circle at 60% 28%, rgba(240, 210, 140, .16), transparent 30%);
}

.dates-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.dates-photo.main img {
  object-position: center;
}

.dates-photo figcaption {
  position: absolute;
  right: .8rem;
  bottom: .8rem;
  left: .8rem;
  z-index: 1;
  padding: .55rem .65rem;
  border: 1px solid rgba(240, 210, 140, .26);
  border-radius: 6px;
  background: rgba(5, 8, 5, .68);
  color: var(--paper);
  font-size: .84rem;
  backdrop-filter: blur(10px);
}

.number {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--gold-2);
  font-family: Georgia, serif;
  font-size: 2.2rem;
}

.rhythm {
  max-width: none;
  width: 100%;
  padding-right: max(1rem, calc((100vw - 1180px) / 2));
  padding-left: max(1rem, calc((100vw - 1180px) / 2));
  background: linear-gradient(135deg, var(--paper), #e7d4aa);
  color: var(--paper-ink);
}

.rhythm .eyebrow {
  color: #6a3e17;
}

.rhythm-copy {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

blockquote {
  max-width: 880px;
  margin: 2.5rem 0 0;
  font-family: Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.18;
}

.about-visual {
  min-height: 520px;
  border: 1px solid rgba(201, 155, 82, .28);
  border-radius: 8px;
  background:
    linear-gradient(rgba(8, 11, 8, .02), rgba(8, 11, 8, .52)),
    url("/assets/tereza-forest-solo.jpg");
  background-position: center;
  background-size: cover;
}

.story {
  max-width: 980px;
}

.visual-story {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
}

.story-image {
  overflow: hidden;
  border: 1px solid rgba(201, 155, 82, .28);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.story-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.section-heading.compact {
  display: block;
  margin-bottom: 1.5rem;
}

.price-box {
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255, 248, 232, .1), rgba(201, 155, 82, .08));
}

.amount {
  margin: .35rem 0 .4rem;
  color: var(--gold-2);
  font-family: Georgia, serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
}

.price-comparison {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.8rem 0 0;
  padding: .8rem 0;
  border-top: 1px solid rgba(240, 210, 140, .22);
  border-bottom: 1px solid rgba(240, 210, 140, .22);
  color: var(--muted);
}

.price-comparison strong {
  color: rgba(255, 248, 232, .72);
  font-size: 1.25rem;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.current-price-label {
  margin: 0 0 1.4rem;
  color: var(--paper);
  font-weight: 700;
}

.price-note {
  margin: 0 0 1.4rem;
  color: var(--muted);
  font-size: .98rem;
}

.guarantee {
  max-width: 900px;
}

.faq-list {
  display: grid;
  gap: .8rem;
}

.faq-list details {
  padding: 1rem 1.2rem;
}

.faq-list summary {
  cursor: pointer;
  color: var(--paper);
  font-weight: 800;
}

.faq-list p {
  color: var(--muted);
}

.final-cta {
  padding: clamp(5rem, 10vw, 8rem) 0;
  text-align: center;
}

.final-cta h2,
.final-cta p {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
}

.final-cta p {
  color: var(--muted);
  font-size: 1.2rem;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #050805;
}

.footer a {
  text-decoration: none;
}

.side-entry {
  position: fixed;
  right: 1rem;
  top: 50%;
  z-index: 16;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8rem;
  min-height: 3rem;
  padding: .68rem 1rem;
  border: 1px solid rgba(240, 210, 140, .55);
  border-radius: 6px;
  background: linear-gradient(135deg, #fff1b0, var(--gold), #875a22);
  color: #221509;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-50%);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .36);
}

.side-entry::before {
  content: "";
  width: .5rem;
  height: .5rem;
  margin-right: .5rem;
  border-radius: 50%;
  background: #221509;
  opacity: .75;
}

.side-entry:hover,
.side-entry:focus-visible {
  outline: 2px solid rgba(255, 248, 232, .8);
  outline-offset: 3px;
  transform: translateY(-50%) translateX(-.15rem);
}

.cookie-note {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 14;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .9rem;
  align-items: center;
  width: min(680px, calc(100% - 2rem));
  padding: .9rem;
  border: 1px solid rgba(240, 210, 140, .34);
  border-radius: 8px;
  background: rgba(5, 8, 5, .92);
  color: var(--muted);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.cookie-note[hidden] {
  display: none;
}

.cookie-note p {
  margin: 0;
  font-size: .9rem;
}

.cookie-note button {
  min-height: 2.55rem;
  padding: .55rem .9rem;
  border: 0;
  border-radius: 6px;
  background: var(--paper);
  color: var(--paper-ink);
  font-weight: 800;
  cursor: pointer;
}

.legal-body {
  background: linear-gradient(135deg, #090d09 0%, #132015 45%, #080b08 100%);
}

.legal-page {
  width: min(920px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.legal-page h1 {
  max-width: none;
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
}

.legal-page h2 {
  margin-bottom: .75rem;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.legal-page section {
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
}

.legal-page p {
  color: var(--muted);
}

.legal-note {
  padding: 1rem;
  border: 1px solid rgba(240, 210, 140, .28);
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
}

.back-link {
  display: inline-flex;
  margin-bottom: 2rem;
  color: var(--gold-2);
  text-decoration: none;
}

.falling-particles {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.topbar,
.cookie-note,
main,
.footer {
  position: relative;
}

.topbar,
.side-entry,
.cookie-note {
  z-index: 10;
}

.side-entry {
  z-index: 16;
}

main,
.footer {
  z-index: 2;
}

.falling-particles span {
  position: absolute;
  top: -12vh;
  width: .42rem;
  height: .42rem;
  border-radius: 50%;
  background: rgba(255, 248, 232, .72);
  box-shadow: 0 0 16px rgba(240, 210, 140, .3);
  animation: driftDown 24s linear infinite;
}

.falling-particles span:nth-child(1) { left: 6%; animation-delay: -2s; animation-duration: 26s; }
.falling-particles span:nth-child(2) { left: 14%; animation-delay: -16s; animation-duration: 32s; }
.falling-particles span:nth-child(3) { left: 23%; animation-delay: -6s; animation-duration: 28s; }
.falling-particles span:nth-child(4) { left: 32%; animation-delay: -21s; animation-duration: 34s; }
.falling-particles span:nth-child(5) { left: 41%; animation-delay: -11s; animation-duration: 27s; }
.falling-particles span:nth-child(6) { left: 50%; animation-delay: -24s; animation-duration: 35s; }
.falling-particles span:nth-child(7) { left: 59%; animation-delay: -4s; animation-duration: 30s; }
.falling-particles span:nth-child(8) { left: 68%; animation-delay: -19s; animation-duration: 33s; }
.falling-particles span:nth-child(9) { left: 76%; animation-delay: -8s; animation-duration: 25s; }
.falling-particles span:nth-child(10) { left: 84%; animation-delay: -14s; animation-duration: 31s; }
.falling-particles span:nth-child(11) { left: 91%; animation-delay: -28s; animation-duration: 36s; }
.falling-particles span:nth-child(12) { left: 96%; animation-delay: -10s; animation-duration: 29s; }

@keyframes driftDown {
  0% {
    transform: translate3d(0, -12vh, 0) scale(.7);
    opacity: 0;
  }
  12% {
    opacity: .58;
  }
  100% {
    transform: translate3d(-5vw, 116vh, 0) scale(1.25);
    opacity: 0;
  }
}

@keyframes goldShine {
  0%, 52%, 100% {
    left: -44%;
  }
  68% {
    left: 124%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .falling-particles,
  .nav-cta::after,
  .button.primary::after,
  .inline-cta::after {
    animation: none;
    display: none;
  }
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .topbar nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .hero,
  .section-heading,
  .fit-grid,
  .price,
  .about,
  .visual-story,
  .text-columns,
  .rhythm-copy {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel,
  .about-visual {
    min-height: 360px;
  }

  .line-list,
  .program-grid,
  .symbol-grid,
  .bonus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dates-weekend {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topbar {
    position: static;
  }

  .brand strong {
    font-size: .95rem;
  }

  .nav-cta {
    display: none;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.2rem);
  }

  .lead {
    font-size: 1.03rem;
  }

  .quick-facts,
  .line-list,
  .program-grid,
  .symbol-grid,
  .bonus-grid,
  .dates-weekend {
    grid-template-columns: 1fr;
  }

  .actions,
  .button {
    width: 100%;
  }

  .hero-panel {
    min-height: 320px;
  }

  .photo-ribbon figure,
  .photo-ribbon img {
    min-height: 220px;
  }

  .dates-visual {
    display: block;
  }

  .dates-photo.main {
    min-height: 260px;
  }

  .story-image img {
    height: 300px;
  }

  .side-entry {
    position: static;
    display: flex;
    top: auto;
    z-index: 16;
    width: calc(100% - 2rem);
    min-width: 0;
    min-height: 3.15rem;
    margin: 0 auto 1rem;
    padding: .6rem .9rem;
    transform: none;
    box-shadow:
      0 18px 46px rgba(0, 0, 0, .36);
  }

  .side-entry:hover,
  .side-entry:focus-visible {
    transform: none;
  }

  .cookie-note {
    position: static;
    grid-template-columns: 1fr;
    width: calc(100% - 2rem);
    margin: 1rem auto 1rem;
  }

  .fire-ring {
    width: 10rem;
    height: 10rem;
    margin-top: 1.5rem;
  }

  .fire-ring span {
    font-size: 3.3rem;
  }
}
