:root {
  --bg: #071722;
  --darker: #041019;
  --surface: #102536;
  --elevated: #17364A;
  --deep: #12364A;
  --accent: #38D5FF;
  --accent2: #5B8CFF;
  --secondary: #7BE7FF;
  --snow: #F2FBFF;
  --frost: #A7C7D8;
  --divider: #2E6078;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--snow);
  background:
    radial-gradient(1200px 600px at 70% -10%, rgba(56, 213, 255, 0.18), transparent 55%),
    radial-gradient(900px 500px at 10% 30%, rgba(91, 140, 255, 0.12), transparent 50%),
    linear-gradient(180deg, var(--darker), var(--bg) 28%, #0a1c29 100%);
  line-height: 1.55;
}

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

a {
  color: var(--accent);
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--elevated);
  color: var(--snow);
  padding: 0.75rem 1rem;
  z-index: 20;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
}

/* —— Hero: full-bleed ice lake —— */
.ice-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.ice-hero__media {
  position: absolute;
  inset: 0;
}

.ice-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.ice-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 16, 25, 0.35) 0%, rgba(7, 23, 34, 0.55) 45%, rgba(7, 23, 34, 0.92) 100%),
    radial-gradient(circle at 50% 58%, transparent 0 14%, rgba(7, 23, 34, 0.55) 42%);
}

.ice-hero__hole {
  position: absolute;
  left: 50%;
  top: 46%;
  width: min(42vw, 280px);
  height: min(42vw, 280px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(56, 213, 255, 0.35);
  box-shadow:
    0 0 0 1px rgba(184, 247, 255, 0.12) inset,
    0 0 60px rgba(56, 213, 255, 0.2);
  pointer-events: none;
  animation: holePulse 7s ease-in-out infinite;
}

@keyframes holePulse {
  0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.9; transform: translate(-50%, -50%) scale(1.03); }
}

.ice-hero__copy {
  position: relative;
  z-index: 2;
  padding: clamp(1.5rem, 5vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 8vw, 4.5rem);
  max-width: 44rem;
}

.ice-hero__kicker {
  margin: 0 0 0.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 600;
}

.ice-hero__brand {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.8rem, 10vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--snow);
  text-shadow: 0 8px 40px rgba(4, 16, 25, 0.65);
}

.ice-hero__tag {
  margin: 1rem 0 1.6rem;
  max-width: 28rem;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  color: var(--frost);
}

.ice-hero__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
}

.ice-hero__links a {
  color: var(--snow);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(56, 213, 255, 0.45);
  padding-bottom: 0.15rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.ice-hero__links a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* —— Cast log: vertical ice crack —— */
.cast-log {
  position: relative;
  padding: clamp(3rem, 8vw, 5.5rem) clamp(1.25rem, 5vw, 3rem);
  max-width: 720px;
  margin: 0 auto;
}

.cast-log__rail {
  position: absolute;
  left: clamp(1.55rem, 5vw, 3.35rem);
  top: 7.5rem;
  bottom: 3rem;
  width: 2px;
  background: linear-gradient(
    180deg,
    transparent,
    var(--divider) 8%,
    var(--accent) 50%,
    var(--divider) 92%,
    transparent
  );
  opacity: 0.7;
}

.cast-log__head {
  margin-bottom: 2.5rem;
  padding-left: 1.75rem;
}

.eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent2);
  font-weight: 600;
}

.cast-log h2,
.catch-shelf h2,
.frost-notes h2,
.support-strip h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lede {
  margin: 0.75rem 0 0;
  color: var(--frost);
  max-width: 34rem;
}

.cast-entries {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.75rem;
}

.cast-entry {
  position: relative;
  padding-left: 1.75rem;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.cast-entry.is-in {
  opacity: 1;
  transform: none;
}

.cast-entry__mark {
  position: absolute;
  left: -0.15rem;
  top: 0.35rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  box-shadow: 0 0 12px rgba(56, 213, 255, 0.45);
}

.cast-entry h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.cast-entry p {
  margin: 0;
  color: var(--frost);
}

/* —— Catch shelf —— */
.catch-shelf {
  padding: clamp(2.5rem, 7vw, 4.5rem) 0 clamp(3rem, 8vw, 5rem);
  border-top: 1px solid rgba(46, 96, 120, 0.45);
  background: linear-gradient(180deg, rgba(16, 37, 54, 0.55), transparent);
}

.catch-shelf__head {
  padding: 0 clamp(1.25rem, 5vw, 3rem) 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.catch-shelf__track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding: 0.5rem clamp(1.25rem, 5vw, 3rem) 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.tip {
  flex: 0 0 min(78vw, 300px);
  margin: 0;
  scroll-snap-align: start;
  transform: rotate(-1.5deg);
  transition: transform 0.35s ease;
}

.tip--tilt {
  transform: rotate(2.2deg);
}

.tip:hover {
  transform: rotate(0deg) translateY(-4px);
}

.tip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px 4px 18px 4px;
  border: 1px solid rgba(56, 213, 255, 0.28);
  box-shadow: 0 18px 40px rgba(4, 16, 25, 0.45);
}

.tip figcaption {
  margin-top: 0.65rem;
  font-size: 0.85rem;
  color: var(--frost);
  letter-spacing: 0.04em;
}

/* —— Privacy frost notes —— */
.frost-notes {
  padding: clamp(3rem, 8vw, 5rem) clamp(1.25rem, 5vw, 3rem);
  max-width: 820px;
  margin: 0 auto;
}

.frost-notes__sheet {
  margin-top: 1.5rem;
  padding: clamp(1.4rem, 4vw, 2.2rem);
  background:
    linear-gradient(145deg, rgba(23, 54, 74, 0.92), rgba(16, 37, 54, 0.88));
  border: 1px solid rgba(46, 96, 120, 0.65);
  border-radius: 2px 18px 2px 18px;
  box-shadow: 0 20px 50px rgba(4, 16, 25, 0.35);
}

.frost-notes__sheet h3 {
  margin: 1.4rem 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--secondary);
}

.frost-notes__sheet p {
  margin: 0.55rem 0;
  color: var(--frost);
}

.frost-notes__sheet strong {
  color: var(--snow);
}

/* —— Support —— */
.support-strip {
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.25rem, 5vw, 3rem) 3rem;
  text-align: center;
  background: radial-gradient(600px 220px at 50% 0%, rgba(56, 213, 255, 0.12), transparent 70%);
}

.support-strip p {
  color: var(--frost);
  max-width: 32rem;
  margin: 0.85rem auto;
}

.mail-line {
  display: inline-block;
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(56, 213, 255, 0.4);
}

.foot {
  padding: 1.5rem;
  text-align: center;
  color: var(--divider);
  font-size: 0.85rem;
  border-top: 1px solid rgba(46, 96, 120, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ice-hero__hole { animation: none; }
  .cast-entry {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (min-width: 900px) {
  .ice-hero__copy {
    padding-left: clamp(3rem, 8vw, 6rem);
  }

  .cast-log__rail {
    left: calc(50% - 340px);
  }
}
