/* ============================================================
   Atherbloom — Where the Quiet Comes Into Bloom
   A still spring photograph brought to life: drifting petals,
   swaying blossom washes, a wind-brushed flower field, slow
   mist, a breathing sun, and floating dust.
   ============================================================ */

:root {
  --ink: #ffffff;
  --ink-soft: rgba(255, 255, 255, 0.85);
  --ink-mute: rgba(255, 255, 255, 0.62);

  --glass: rgba(255, 255, 255, 0.10);
  --glass-soft: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.22);

  --shadow-text: 0 1px 2px rgba(10, 20, 45, 0.45), 0 2px 22px rgba(10, 20, 45, 0.45);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --pad: clamp(1rem, 4vw, 2.5rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* Keyboard focus: a clear ring that adapts to whatever it's sitting on.
   Mouse clicks don't trigger it (:focus-visible), so the calm look stays. */
:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; border-radius: 3px; }
:focus:not(:focus-visible) { outline: none; }

/* On-brand text selection + scrollbar: small details, but they read as care. */
::selection { background: rgba(181, 111, 142, 0.28); color: inherit; }
html { scrollbar-width: thin; scrollbar-color: rgba(181, 111, 142, 0.5) transparent; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(181, 111, 142, 0.45); border-radius: 999px;
  border: 3px solid transparent; background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover { background: rgba(181, 111, 142, 0.7); background-clip: padding-box; }

body {
  min-height: 100svh;
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: #0b0b0d;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- Living scene ---------- */
.scene { position: fixed; inset: 0; z-index: 0; overflow: hidden; }

.scene__image {
  position: absolute;
  inset: -2%;
  background-image: url("assets/hero.webp");
  background-size: cover;
  background-position: center;
  /* the photo is essentially still; just the faintest breath of life */
  animation: breathe 46s ease-in-out infinite alternate;
  transform-origin: 50% 55%;
  will-change: transform;
}
@keyframes breathe {
  from { transform: scale(1.0); }
  to   { transform: scale(1.035); }
}

/* Crossfade layer: the incoming season fades in over the current one */
.scene__xfade {
  position: absolute; inset: -2%;
  background-size: cover; background-position: center;
  opacity: 0; z-index: 0; will-change: opacity;
  transition: opacity 0.9s ease;
}

/* Real moving backdrop (image-to-video), sits over the still fallback */
.scene__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 1;
  transition: opacity 0.8s ease;
}
/* atmosphere washes + vignettes layer above the moving footage */
.sun-shimmer, .mist, .blossom-sway, .field-sway, .dust,
.scene__tint, .scene__vignette-top, .scene__vignette-bottom { z-index: 2; }

/* Top-corner blossom sway — rosy washes over the cherry branches,
   swinging from a top anchor like boughs in the breeze. */
.blossom-sway {
  position: absolute;
  pointer-events: none;
  will-change: transform;
  transform-origin: 50% 0%;
  mix-blend-mode: soft-light;
  opacity: 0.55;
}
.blossom-sway--tl {
  top: -4%; left: -6%; width: 40vw; height: 34vh;
  background: radial-gradient(ellipse at 30% 35%, rgba(255,205,225,0.55) 0%, rgba(255,205,225,0.18) 35%, transparent 65%);
  animation: swayLeft 9s ease-in-out infinite alternate;
}
.blossom-sway--tr {
  top: -4%; right: -6%; width: 40vw; height: 34vh;
  background: radial-gradient(ellipse at 70% 35%, rgba(255,205,225,0.55) 0%, rgba(255,205,225,0.18) 35%, transparent 65%);
  animation: swayRight 10.5s ease-in-out infinite alternate;
}
@keyframes swayLeft {
  from { transform: rotate(-0.6deg) translateX(0); }
  to   { transform: rotate(1.2deg) translateX(4px); }
}
@keyframes swayRight {
  from { transform: rotate(0.6deg) translateX(0); }
  to   { transform: rotate(-1.2deg) translateX(-4px); }
}

/* Flower-field sway — soft wind moving across the meadow. */
.field-sway {
  position: absolute;
  left: -4%; right: -4%; bottom: 0; height: 34vh;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 60% at 20% 80%, rgba(255,220,235,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 70% 90%, rgba(255,230,240,0.16) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 50% 70%, rgba(255,255,255,0.10) 0%, transparent 65%);
  mix-blend-mode: soft-light;
  will-change: transform;
  animation: fieldSway 11s ease-in-out infinite alternate;
}
.field-sway--2 {
  bottom: -2%; height: 22vh; opacity: 0.85;
  background:
    radial-gradient(ellipse 40% 60% at 30% 90%, rgba(220,255,220,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 80% 95%, rgba(255,235,220,0.12) 0%, transparent 65%);
  animation: fieldSway 14s ease-in-out -3s infinite alternate-reverse;
}
@keyframes fieldSway {
  0%   { transform: translate3d(-1.2%, 0, 0) scaleX(1.00); }
  50%  { transform: translate3d(0.6%, -2px, 0) scaleX(1.02); }
  100% { transform: translate3d(1.2%, 0, 0) scaleX(1.00); }
}

/* Slow crossing mist / haze. */
.mist {
  position: absolute;
  inset: -10% -20%;
  pointer-events: none;
  background:
    radial-gradient(ellipse 40% 50% at 20% 35%, rgba(255,240,210,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 75% 25%, rgba(255,255,255,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 60% at 50% 60%, rgba(255,255,255,0.05) 0%, transparent 70%);
  mix-blend-mode: screen;
  filter: blur(20px);
  will-change: transform, opacity;
  animation: mistMove 28s ease-in-out infinite alternate;
}
@keyframes mistMove {
  0%   { transform: translate3d(-3%, 0, 0); opacity: 0.55; }
  50%  { transform: translate3d(2%, -1%, 0); opacity: 0.85; }
  100% { transform: translate3d(4%, 0, 0); opacity: 0.65; }
}

/* Breathing sun glow, upper-left. */
.sun-shimmer {
  position: absolute;
  top: -6%; left: -4%; width: 32vw; height: 32vw;
  pointer-events: none;
  background: radial-gradient(circle at 30% 30%, rgba(255,235,200,0.35) 0%, rgba(255,225,180,0.10) 30%, transparent 60%);
  mix-blend-mode: screen;
  filter: blur(10px);
  animation: sunBreathe 9s ease-in-out infinite alternate;
}
@keyframes sunBreathe {
  from { opacity: 0.55; transform: translate3d(0, 0, 0); }
  to   { opacity: 0.85; transform: translate3d(0.6%, 0.4%, 0); }
}

/* Floating dust motes. */
.dust {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 30%, rgba(255,255,255,.35) 0, transparent 1.2px),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,.30) 0, transparent 1.4px),
    radial-gradient(circle at 65% 60%, rgba(255,255,255,.25) 0, transparent 1px),
    radial-gradient(circle at 30% 78%, rgba(255,255,255,.25) 0, transparent 1px),
    radial-gradient(circle at 92% 70%, rgba(255,255,255,.28) 0, transparent 1.2px);
  mix-blend-mode: screen;
  opacity: .55;
  animation: dustFloat 14s ease-in-out infinite alternate;
}
@keyframes dustFloat {
  from { transform: translate3d(0, 0, 0); opacity: .45; }
  to   { transform: translate3d(0, -8px, 0); opacity: .65; }
}

/* Tint + readability vignettes. */
.scene__tint {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(160deg, rgba(255,200,170,0.07) 0%, rgba(255,170,210,0.05) 50%, rgba(180,200,255,0.04) 100%);
}
.scene__vignette-top {
  position: absolute; inset-inline: 0; top: 0; height: 44vh; pointer-events: none; opacity: 0.5;
  background: linear-gradient(to bottom, rgba(8,12,28,0.55) 0%, rgba(8,12,28,0.22) 28%, transparent 55%);
}
.scene__vignette-bottom {
  position: absolute; inset-inline: 0; bottom: 0; height: 42vh; pointer-events: none; opacity: 0.55;
  background: linear-gradient(to top, rgba(8,12,28,0.55) 0%, rgba(8,12,28,0.12) 30%, transparent 55%);
}

/* ---------- Petal canvases ---------- */
.petal-layer { position: fixed; inset: 0; pointer-events: none; }
.petal-layer--back  { z-index: 5; }
.petal-layer--front { z-index: 60; }

/* ---------- Glass surfaces ---------- */
.glass, .nav__center, .btn--claim {
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--glass-border);
  box-shadow: 0 1px 0 rgba(255,255,255,0.35) inset, 0 20px 60px -20px rgba(20,24,60,0.35);
}

/* ---------- Page shell ---------- */
.page {
  position: relative;
  z-index: 10;
  min-height: 100svh;
  padding: clamp(1.1rem, 2.6vh, 1.9rem) var(--pad) clamp(1.4rem, 3vh, 2.4rem);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(1.2rem, 3vh, 2.4rem);
}

/* ---------- Navigation ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav__brand {
  display: inline-flex; align-items: center; gap: 0.6rem;
  text-decoration: none; color: #fff;
}
.brand-mark { display: grid; place-items: center; color: #fff; filter: drop-shadow(0 2px 8px rgba(20,40,70,0.3)); transition: transform 0.7s var(--ease); }
.nav__brand:hover .brand-mark { transform: rotate(45deg); }
.brand-word {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem; font-weight: 500; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.96); text-shadow: var(--shadow-text);
}

.nav__center {
  border-radius: 999px;
  padding: 0.45rem 0.6rem;
}
.nav__links {
  display: flex; align-items: center; gap: clamp(0.1rem, 0.8vw, 0.4rem); list-style: none;
}
.nav__links a {
  position: relative;
  display: inline-block;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.9rem; font-weight: 300; letter-spacing: 0.01em;
  text-shadow: var(--shadow-text);
  transition: color 0.3s ease;
  white-space: nowrap;
}
.nav__links a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 7px; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: center; opacity: 0.8;
  transition: transform 0.4s var(--ease);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__links a.is-active { color: #fff; }

.nav__end { display: flex; align-items: center; gap: 0.6rem; }

.nav__menu {
  display: none; flex-direction: column; gap: 4px;
  width: 42px; height: 42px; align-items: center; justify-content: center;
  border: 1px solid var(--glass-border); border-radius: 50%;
  background: var(--glass-soft); backdrop-filter: blur(14px); cursor: pointer;
}
.nav__menu span { width: 16px; height: 1.5px; background: #fff; border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s ease; }
.nav__menu.is-open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav__menu.is-open span:nth-child(2) { opacity: 0; }
.nav__menu.is-open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ---------- Season switcher (home) ---------- */
.season-switch {
  position: fixed; z-index: 80;
  right: clamp(1rem, 3vw, 2.2rem);
  bottom: clamp(4rem, 11vh, 6.5rem);
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.5rem 0.7rem 0.5rem 1.05rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 14px 36px -16px rgba(20,24,60,0.45);
}
.season-switch__name {
  font-family: "Cormorant Garamond", Georgia, serif; font-style: italic;
  font-size: 1.08rem; color: #fff; letter-spacing: 0.02em;
  text-shadow: var(--shadow-text);
  min-width: 4.4rem; text-align: right;
}
.season-switch__dots { display: flex; gap: 0.5rem; }
.season-switch__dot {
  width: 14px; height: 14px; border-radius: 50%; cursor: pointer; padding: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.5); background: var(--dot, #f3aecb);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, border-color 0.3s ease;
}
.season-switch__dot[data-season="spring"] { --dot: #f3aecb; }
.season-switch__dot[data-season="summer"] { --dot: #8fc98f; }
.season-switch__dot[data-season="autumn"] { --dot: #e3a45c; }
.season-switch__dot[data-season="winter"] { --dot: #cfe0ef; }
.season-switch__dot:hover { transform: scale(1.18); }
.season-switch__dot.is-active {
  transform: scale(1.25); border-color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.22);
}
@media (max-width: 560px) {
  .season-switch { bottom: 1.1rem; padding: 0.45rem 0.6rem 0.45rem 0.9rem; }
  .season-switch__name { font-size: 1rem; min-width: 4rem; }
}

/* ---------- Mobile nav drawer ---------- */
.nav-drawer {
  position: fixed; inset: 0; z-index: 200;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.4rem;
  background: rgba(12, 16, 32, 0.86);
  backdrop-filter: blur(22px) saturate(130%);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
  opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.nav-drawer.is-open { opacity: 1; visibility: visible; }
.nav-drawer a {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem; font-weight: 400; color: rgba(255,255,255,0.78);
  text-decoration: none; padding: 0.55rem 1rem; letter-spacing: 0.01em;
  transform: translateY(12px); opacity: 0; transition: color 0.3s ease, transform 0.5s var(--ease), opacity 0.5s ease;
}
.nav-drawer.is-open a { transform: none; opacity: 1; }
.nav-drawer a:nth-child(1) { transition-delay: 0.08s; }
.nav-drawer a:nth-child(2) { transition-delay: 0.14s; }
.nav-drawer a:nth-child(3) { transition-delay: 0.20s; }
.nav-drawer a:nth-child(4) { transition-delay: 0.26s; }
.nav-drawer a:nth-child(5) { transition-delay: 0.32s; }
.nav-drawer a:hover, .nav-drawer a.is-active { color: #fff; font-style: italic; }
.nav-drawer .btn { margin-top: 1rem; }
@media (min-width: 981px) { .nav-drawer { display: none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: inherit; font-weight: 500; text-decoration: none;
  border-radius: 999px; cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px) scale(1.02); }

.btn--claim {
  padding: 0.6rem 1.1rem; color: #fff; font-size: 0.85rem;
  text-shadow: var(--shadow-text);
}
.btn--claim:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.5); }

.btn--primary {
  padding: 0.9rem 1.7rem; font-size: 0.95rem; letter-spacing: 0.01em;
  color: #1a1a22;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 10px 30px -10px rgba(255,255,255,0.45), 0 1px 0 rgba(255,255,255,0.9) inset;
}
.btn--primary:hover { background: #fff; box-shadow: 0 16px 40px -10px rgba(255,255,255,0.55), 0 1px 0 #fff inset; }

.btn--glass {
  padding: 0.85rem 1.4rem; font-size: 0.95rem; color: #fff;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.40);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  text-shadow: var(--shadow-text);
}
.btn--glass:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.7); }
.btn__play {
  display: grid; place-items: center; width: 28px; height: 28px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.6);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  align-self: center;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  max-width: 54rem; margin-inline: auto;
}
/* Soft focal scrim so white type reads over the bright sky and lake */
.hero::before {
  content: "";
  position: absolute; inset: -22% -28%; z-index: -1;
  background: radial-gradient(62% 64% at 50% 50%, rgba(12, 20, 44, 0.50) 0%, rgba(12, 20, 44, 0.24) 52%, transparent 76%);
  pointer-events: none;
}

.chip {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.42rem 1rem; margin-bottom: clamp(1.2rem, 3.5vh, 2.2rem);
  border-radius: 999px;
  background: var(--glass-soft);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-soft); text-shadow: var(--shadow-text);
}
.chip__dot {
  width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.9);
  box-shadow: 0 0 8px rgba(255,255,255,0.8);
  flex: 0 0 auto;
}
.chip__text { transition: opacity 0.6s ease; }

.hero__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.01em;
  font-size: clamp(2.7rem, 7.4vw, 6.6rem);
  text-wrap: balance;
  color: #fff;
  text-shadow: 0 1px 2px rgba(10, 20, 45, 0.45), 0 3px 34px rgba(10, 20, 45, 0.55);
}
.hero__line { display: block; }
.hero__line--italic { font-style: italic; font-weight: 300; margin-top: 0.08em; }

.hero__lede {
  max-width: 38rem;
  margin-top: clamp(1.3rem, 3vh, 2rem);
  color: var(--ink-soft);
  font-size: clamp(0.98rem, 1.25vw, 1.16rem);
  font-weight: 300;
  line-height: 1.65;
  text-wrap: pretty;
  text-shadow: 0 1px 2px rgba(10, 20, 45, 0.55), 0 2px 26px rgba(10, 20, 45, 0.6);
}

.hero__actions {
  display: flex; align-items: center; gap: clamp(0.5rem, 1.5vw, 1rem);
  margin-top: clamp(1.7rem, 3.6vh, 2.6rem);
}

/* ---------- Partners ---------- */
.partners { width: 100%; max-width: 64rem; margin-inline: auto; }
.hairline {
  height: 1px; margin-bottom: clamp(0.9rem, 2vh, 1.4rem); opacity: 0.6;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.5), transparent);
}
.partners__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(0.8rem, 2vw, 2rem); flex-wrap: wrap;
}
.partners__caption, .partners__est {
  font-size: 0.66rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 300; text-shadow: var(--shadow-text);
}
.partners__est { display: none; }
.partners__logos {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(1.2rem, 4vw, 3.6rem); list-style: none; flex: 1; flex-wrap: wrap;
}
.partners__logos li {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic; font-weight: 400;
  font-size: clamp(1.15rem, 1.9vw, 1.55rem); letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6); text-shadow: var(--shadow-text);
  transition: color 0.5s ease, transform 0.5s var(--ease);
  cursor: default;
  animation: floatSlow 9s ease-in-out infinite alternate;
}
.partners__logos li:nth-child(2) { animation-delay: 0.6s; }
.partners__logos li:nth-child(3) { animation-delay: 1.2s; }
.partners__logos li:nth-child(4) { animation-delay: 1.8s; }
.partners__logos li:nth-child(5) { animation-delay: 2.4s; }
.partners__logos li:hover { color: rgba(255,255,255,0.9); }
@keyframes floatSlow { from { transform: translateY(0); } to { transform: translateY(-6px); } }

/* ---------- Daily trio (home) ---------- */
.daily-trio {
  position: relative; z-index: 0;
  width: 100%; max-width: 64rem; margin-inline: auto;
  display: flex; flex-direction: column; align-items: center;
  gap: clamp(1.4rem, 3.4vh, 2.4rem);
  padding-top: clamp(0.6rem, 2vh, 1.6rem);
}
/* A soft, season-independent scrim so the heading and cards stay legible
   even over the brightest seasons, where the scene vignettes don't reach. */
.daily-trio::before {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 116%; height: 134%;
  background: radial-gradient(58% 52% at 50% 42%,
    rgba(8, 12, 28, 0.50) 0%, rgba(8, 12, 28, 0.26) 48%, rgba(8, 12, 28, 0) 76%);
}
.daily-trio__head { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 0.7rem; }
.daily-trio__eyebrow {
  font-size: 0.66rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 300; text-shadow: var(--shadow-text);
}
.daily-trio__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400; line-height: 1.05;
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  color: #fff; text-shadow: var(--shadow-text); letter-spacing: -0.01em;
}
.daily-trio__theme { font-style: italic; }
.daily-trio__note {
  max-width: 32rem;
  color: var(--ink-soft); font-weight: 300; line-height: 1.6;
  font-size: clamp(0.92rem, 1.1vw, 1.04rem);
  text-shadow: var(--shadow-text);
}

.daily-trio__grid {
  width: 100%;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.9rem, 1.8vw, 1.4rem);
}

.trio-card {
  display: flex; flex-direction: column; gap: 1.1rem;
  padding: clamp(1.3rem, 2.4vw, 1.7rem);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(22, 27, 52, 0.42), rgba(13, 17, 36, 0.54));
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(26px) saturate(125%);
  -webkit-backdrop-filter: blur(26px) saturate(125%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 22px 60px -26px rgba(8,12,34,0.6);
  transition: transform 0.5s var(--ease), box-shadow 0.5s ease, background 0.5s ease;
}
.trio-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(180deg, rgba(30, 36, 64, 0.48), rgba(17, 21, 44, 0.58));
  box-shadow: 0 1px 0 rgba(255,255,255,0.26) inset, 0 30px 70px -28px rgba(8,12,34,0.7);
}
.trio-card__label {
  align-self: flex-start;
  font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 400;
  padding-bottom: 0.7rem; border-bottom: 1px solid rgba(255,255,255,0.14);
}
.trio-card__quote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic; font-weight: 400;
  font-size: clamp(1.18rem, 1.7vw, 1.42rem); line-height: 1.4;
  color: #fff; text-wrap: pretty;
  text-shadow: 0 1px 2px rgba(10,20,45,0.4), 0 2px 22px rgba(10,20,45,0.45);
  flex: 1;
}
.trio-card__attr { display: flex; flex-direction: column; gap: 0.25rem; }
.trio-card__author {
  font-family: "Manrope", system-ui, sans-serif; font-weight: 500;
  font-size: 0.92rem; color: var(--ink-soft); letter-spacing: 0.01em;
  text-shadow: var(--shadow-text);
}
.trio-card__work {
  font-size: 0.78rem; color: var(--ink-mute); font-weight: 300; font-style: italic;
  text-shadow: var(--shadow-text);
}
.trio-card__prov {
  font-size: 0.72rem; color: var(--ink-mute); font-weight: 300; letter-spacing: 0.02em;
  text-shadow: var(--shadow-text);
}

/* Scroll-in for the trio (matches the .rise -> .in pattern; staggered). */
.trio-card.rise {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: calc(var(--i, 0) * 0.09s);
}
.trio-card.rise.in { opacity: 1; transform: none; }

@media (max-width: 760px) {
  .daily-trio__grid { grid-template-columns: 1fr; }
}

/* ---------- Entrance reveals ---------- */
.reveal {
  opacity: 0; transform: translateY(18px); filter: blur(6px);
  animation: revealIn 1.2s var(--ease) forwards;
}
@keyframes revealIn { to { opacity: 1; transform: translateY(0); filter: blur(0); } }
.reveal--1 { animation-delay: 0.15s; }
.reveal--2 { animation-delay: 0.35s; }
.reveal--3 { animation-delay: 0.55s; }
.reveal--4 { animation-delay: 0.75s; }
.reveal--5 { animation-delay: 1.0s; }
.reveal--6 { animation-delay: 1.3s; }

/* ---------- Responsive ---------- */
@media (min-width: 768px) {
  .partners__est { display: inline; }
}
@media (max-width: 980px) {
  .nav__center { display: none; }
  .nav__menu { display: flex; }
}
@media (max-width: 560px) {
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .btn--claim { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .scene__image, .blossom-sway, .field-sway, .mist, .sun-shimmer, .dust, .partners__logos li { animation: none; }
  .scene__video { display: none; } /* show the still image instead */
  .reveal { animation-duration: 0.001ms; }
  .trio-card.rise { opacity: 1; transform: none; transition: none; }
}
