/**
 * Variable fonts
 */
@font-face {
  font-family: 'Gambetta-Variable';
  src: url('fonts/Gambetta-Variable.woff2') format('woff2');
  font-weight: 300 700;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Gambetta-Variable';
  src: url('fonts/Gambetta-VariableItalic.woff2') format('woff2');
  font-weight: 300 700;
  font-display: swap;
  font-style: italic;
}

@font-face {
  font-family: 'Switzer';
  src: url('fonts/Switzer-Variable.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Switzer';
  src: url('fonts/Switzer-VariableItalic.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
  font-style: italic;
}

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

:root {
  --bg-base: #f5f0e8;
  --bg-highlight: #e8ddd0;
  --ink-strong: #1a1208;
  --ink-soft: rgba(26, 18, 8, 0.8);
  --ink-muted: rgba(26, 18, 8, 0.6);
  --paper: #fffdfa;
  --paper-deep: #faf8f5;
  --paper-edge: #f1f0ea;
  --accent: #c04235;
  --accent-deep: #a83920;
  --calendar-width: 320px;
  --calendar-height: 500px;
  --calendar-top: 48px;
  --calendar-total-height: calc(var(--calendar-height) + var(--calendar-top));
  --calendar-scale: 1;
}

html {
  min-height: 100%;
  cursor: url('img/cursor.png') 12 12, auto;
}

body {
  min-height: 100%;
  overflow-x: hidden;
  font-family: 'Switzer', sans-serif;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, var(--bg-highlight) 0%, transparent 65%),
    var(--bg-base);
  color: var(--ink-strong);
}

button,
a {
  cursor: pointer;
}

a,
button,
[role='button'],
input[type='submit'],
input[type='button'],
label[for],
select,
summary {
  cursor: url('img/cursor.png') 12 12, pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#video-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.2;
  z-index: -1;
}

.site-main {
  position: relative;
}

.experience {
  --scroll-zones: 5;
  position: relative;
  min-height: calc((var(--scroll-zones) + 2) * 100vh);
}

.experience-stage {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem 7rem;
}

.calendar-region {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.calendar-shell {
  position: relative;
  width: var(--calendar-width);
  z-index: 10;
  border-radius: 16px;
  box-shadow:
    0 1px 2px rgba(80, 40, 15, 0.08),
    0 8px 24px rgba(80, 40, 15, 0.14),
    0 24px 56px rgba(80, 40, 15, 0.1);
  transform: scale(var(--calendar-scale));
  transform-origin: top center;
}

#binding {
  position: relative;
  width: 100%;
  height: var(--calendar-top);
  background: linear-gradient(180deg, #cc4a28 0%, var(--accent-deep) 100%);
  border-radius: 16px 16px 0 0;
  z-index: 50;
}

#binding::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 8%, rgba(255, 255, 255, 0.22) 30%, rgba(255, 255, 255, 0.22) 70%, transparent 92%);
  border-radius: 16px 16px 0 0;
}

#torn-wrap {
  position: absolute;
  top: var(--calendar-top);
  left: 0;
  width: 100%;
  height: 16px;
  z-index: 60;
  pointer-events: none;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0));
}

#torn-wrap svg {
  display: block;
  width: 100%;
  height: 100%;
}

.calendar-stack {
  position: relative;
  width: var(--calendar-width);
  height: var(--calendar-height);
  perspective: 700px;
  perspective-origin: 50% -5%;
}

.calendar-stack::before,
.calendar-stack::after {
  content: '';
  position: absolute;
  z-index: 0;
  border-radius: 0 0 8px 8px;
}

.calendar-stack::after {
  bottom: -5px;
  left: 4px;
  right: 4px;
  height: 7px;
  background: linear-gradient(to bottom, #d8d0c6, #c8c0b6);
}

.calendar-stack::before {
  bottom: -10px;
  left: 8px;
  right: 8px;
  height: 5px;
  background: linear-gradient(to bottom, #ccc4ba, #bcb4aa);
}

.calendar-page,
.info-panel {
  position: absolute;
  inset: 0;
  background: var(--paper);
  border-radius: 0 0 16px 16px;
  overflow: hidden;
}

.calendar-page {
  z-index: var(--stack-order, 1);
  transform-origin: top center;
  will-change: transform, opacity;
}

.calendar-page::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 16;
  opacity: var(--page-curl-opacity, 0);
  border-radius: 0 0 16px 16px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 248, 240, 0.06) 38%,
    rgba(60, 28, 8, 0.10) 65%,
    rgba(60, 28, 8, 0.22) 100%
  );
}

.page-shadow-overlay {
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0;
  border-radius: 0 0 16px 16px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, transparent 50%);
}

.page-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 32px 28px 18px;
  overflow: hidden;
}

.hero-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
  margin-bottom: 4rem;
}

.hero-kicker {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

#site-title,
.site-title {
  font-family: 'Gambetta-Variable', serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink-strong);
}

#site-title {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  user-select: none;
  position: relative;
}

.site-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

#site-sub {
  max-width: 40ch;
  text-align: center;
  font-family: 'Gambetta-Variable', serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(26, 18, 8, 0.61);
}

.calendar-header {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  color: #9a7a64;
  font-family: 'Switzer', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.calendar-day {
  font-weight: 500;
}

.calendar-month {
  font-weight: 600;
}

.calendar-number {
  display: block;
  margin-top: 0.125rem;
  text-align: center;
  font-family: 'Gambetta-Variable', serif;
  font-weight: 700;
  font-size: 7rem;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.calendar-image {
  width: 176px;
  height: 136px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  margin: 0.5rem 0 1rem;
}

.calendar-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.animal-name {
  font-family: 'Gambetta-Variable', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink-strong);
  text-align: center;
}

.latin-name {
  font-family: 'Gambetta-Variable', serif;
  font-size: 0.75rem;
  font-weight: 300;
  color: #9a7a64;
  margin: 0.125rem auto 0.5rem;
}

.squig {
  display: block;
  width: 44px;
  height: 7px;
  margin: 0.5rem auto;
  overflow: visible;
}

.animal-fact {
  font-family: 'Gambetta-Variable', serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.4;
  color: #2e1e0e;
  text-align: center;
}

.info-panel {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}

.info-eyebrow {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: 'Switzer', sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}

.info-title {
  margin-bottom: 0.5rem;
  font-family: 'Gambetta-Variable', serif;
  font-size: 1.42rem;
  font-weight: 900;
  line-height: 1.3;
  color: var(--ink-strong);
  text-align: center;
}

.info-description {
  margin-bottom: 1rem;
  font-family: 'Gambetta-Variable', serif;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--ink-soft);
  text-align: center;
}

.info-bullets {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  padding: 0;
  list-style: none;
}

.info-bullet {
  font-family: 'Switzer', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: center;
}

.info-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.info-cta {
  cursor: pointer;
}

.info-cta img,
.cover-image {
  max-width: 100%;
}

.calendar-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
}

.interaction-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  transition: opacity 0.6s ease;
  margin-top: auto;
}

.interaction-hint span {
  font-size: 0.52rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.hint-label--swipe {
  display: none;
}

.scroll-mouse {
  width: 18px;
  height: 28px;
  border: 1.5px solid rgba(26, 18, 8, 0.3);
  border-radius: 9px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.scroll-dot {
  width: 3px;
  height: 6px;
  background: rgba(26, 18, 8, 0.4);
  border-radius: 2px;
  animation: scrollPulse 2.2s ease-in-out infinite;
}

.swipe-hint {
  display: none;
}

.swipe-finger {
  width: 28px;
  height: 28px;
  animation: swipeUp 2.2s ease-in-out infinite;
  opacity: 0.5;
}

.advance-button {
  border: 1px solid rgba(26, 18, 8, 0.16);
  border-radius: 999px;
  background: rgba(255, 253, 250, 0.92);
  color: var(--ink-strong);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 1.2rem;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.advance-button:hover {
  transform: translateY(-1px);
  border-color: rgba(26, 18, 8, 0.28);
}

.advance-button:focus-visible,
#footer a:focus-visible,
.info-cta:focus-visible,
.tear-tab__link:focus-visible,
.secondary-link:focus-visible {
  outline: 2px solid rgba(26, 18, 8, 0.7);
  outline-offset: 4px;
}

#footer {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  pointer-events: auto;
}

 #footer .footer-links {
    display: flex;
    gap: 1rem;
  }

#footer a {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(26, 18, 8, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
  border-radius: 2rem;
  padding: 0 0.25rem;
  cursor: pointer;
}

#footer a:hover {
  color: rgba(26, 18, 8, 0.8);
}

@media (pointer: coarse) {
  .hint-label--scroll,
  .scroll-mouse {
    display: none;
  }

  .hint-label--swipe,
  .swipe-hint {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  #video-overlay {
    display: none;
  }

  .scroll-dot,
  .swipe-finger {
    animation: none;
  }

  .interaction-hint {
    transition: none;
  }

  .calendar-page {
    transition: opacity 0.2s linear;
  }
}

body.secondary-page {
  min-height: 100dvh;
}

.page-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  min-height: 100svh;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  opacity: 0.28;
  mix-blend-mode: multiply;
  z-index: -1;
}

.secondary-main {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 3rem 1.5rem;
}

.secondary-card {
  width: min(100%, 560px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.secondary-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}

.page-kicker {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}

.page-subtitle {
  max-width: 34ch;
  font-family: 'Gambetta-Variable', serif;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(26, 18, 8, 0.7);
}

.paper-sheet {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.paper-sheet--lifted {
  position: relative;
  padding: 4.5rem 3.5rem;
  border-radius: 2px;
  border: 1px solid rgba(26, 18, 8, 0.03);
  background: linear-gradient(179deg, var(--paper) 0%, var(--paper) 75%, #f9f7f0 90%, #f0eee5 100%);
  box-shadow:
    0 1px 2px rgba(26, 18, 8, 0.05),
    0 10px 40px -15px rgba(26, 18, 8, 0.12);
}

.paper-sheet--lifted::before,
.paper-sheet--lifted::after {
  content: '';
  position: absolute;
  bottom: 10px;
  width: 45%;
  height: 20px;
  background: rgba(26, 18, 8, 0.15);
  z-index: -1;
  filter: blur(8px);
}

.paper-sheet--lifted::before {
  left: 12px;
  transform: rotate(-4deg) skewX(-4deg);
}

.paper-sheet--lifted::after {
  right: 12px;
  transform: rotate(4deg) skewX(4deg);
}

.paper-sheet--tearoff {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.paper-sheet__body {
  position: relative;
  padding: 4rem 3.5rem 3rem;
  border: 1px solid rgba(26, 18, 8, 0.04);
  border-bottom: none;
  border-radius: 1px 1px 0 0;
  background: linear-gradient(179deg, var(--paper-deep) 0%, var(--paper-deep) 80%, var(--paper-edge) 100%);
  box-shadow: 0 4px 15px -5px rgba(26, 18, 8, 0.1);
  display: flex;
  align-items: center;
  flex-direction: column;
}

.paper-sheet>.page-kicker,
.paper-sheet__body>.page-kicker {
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1rem;
  font-family: 'Gambetta-Variable', serif;
  font-size: 1.6rem;
  line-height: 1.2;
  text-align: center;
}

.prose-block {
  font-family: 'Gambetta-Variable', serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(26, 18, 8, 0.85);
  text-align: center;
}

.prose-block p + p {
  margin-top: 1.5rem;
}

.prose-block__closing {
  margin-top: 2rem;
  font-weight: 600;
  color: var(--ink-strong);
}

.paper-footnote {
  margin-top: 2rem;
  font-family: 'Gambetta-Variable', serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(26, 18, 8, 0.55);
  text-align: center;
}

.perforated-edge {
  display: flex;
  width: 100%;
  height: 10px;
  margin-top: -1px;
  position: relative;
  z-index: 25;
}

.rip {
  flex: 1;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.rip:nth-child(1) {
  background-image: url('img/svg/rip-1.svg');
}

.rip:nth-child(2) {
  background-image: url('img/svg/rip-2.svg');
}

.rip:nth-child(3) {
  background-image: url('img/svg/rip-3.svg');
}

.rip:nth-child(4) {
  background-image: url('img/svg/rip-4.svg');
}

.rip:nth-child(5) {
  background-image: url('img/svg/rip-5.svg');
}

.rip:nth-child(6) {
  background-image: url('img/svg/rip-6.svg');
}

.tear-tabs {
  display: flex;
  justify-content: space-around;
  width: 100%;
  list-style: none;
  margin-top: -10px;
  position: relative;
  z-index: 10;
}

.tear-tab {
  flex: 1;
  height: 170px;
  transform-origin: top center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tear-tab:nth-child(1) {
  transform: rotate(-1.5deg);
}

.tear-tab:nth-child(2) {
  transform: rotate(0.8deg);
}

.tear-tab:nth-child(3) {
  transform: rotate(-0.5deg);
}

.tear-tab:nth-child(4) {
  transform: rotate(1.2deg);
}

.tear-tab:nth-child(5) {
  transform: rotate(-1.2deg);
}

.tear-tab:nth-child(6) {
  transform: rotate(0.4deg);
}

.tear-tab__link {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 0;
  text-decoration: none;
  writing-mode: vertical-rl;
  color: rgba(26, 18, 8, 0.7);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: linear-gradient(180deg, var(--paper-edge) 0%, var(--paper-deep) 24%, var(--paper-deep) 100%);
  box-shadow: 0 10px 20px -10px rgba(26, 18, 8, 0.1);
  transition: color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.tear-tab__link::before {
  content: '';
  position: absolute;
  top: -9px;
  left: 0;
  width: 100%;
  aspect-ratio: 10 / 1;
  background-position: bottom center;
  background-size: contain;
  background-repeat: no-repeat;
}

.tear-tab:nth-child(1) .tear-tab__link::before {
  background-image: url('img/svg/tab-1.svg');
}

.tear-tab:nth-child(2) .tear-tab__link::before {
  background-image: url('img/svg/tab-2.svg');
}

.tear-tab:nth-child(3) .tear-tab__link::before {
  background-image: url('img/svg/tab-3.svg');
}

.tear-tab:nth-child(4) .tear-tab__link::before {
  background-image: url('img/svg/tab-4.svg');
}

.tear-tab:nth-child(5) .tear-tab__link::before {
  background-image: url('img/svg/tab-5.svg');
}

.tear-tab:nth-child(6) .tear-tab__link::before {
  background-image: url('img/svg/tab-6.svg');
}

.tear-tab:hover,
.tear-tab:focus-within {
  transform: translateY(6px) rotate(0deg) scale(1.02);
}

.tear-tab__icon {
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: 0.6;
}

.secondary-actions {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  padding: 0 0.25rem;
  border-radius: 2rem;
}

.secondary-link--primary {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(26, 18, 8, 0.42);
}

.secondary-link--primary:hover,
.secondary-link--primary:focus-visible {
  color: var(--accent);
  transform: translateY(-2px);
}

.tear-tab__link:focus-visible {
  color: var(--accent);
  box-shadow: 0 15px 30px -10px rgba(26, 18, 8, 0.15);
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }

  50% {
    opacity: 0.25;
    transform: translateY(5px);
  }
}

@keyframes swipeUp {
  0% {
    transform: translateY(6px);
    opacity: 0.25;
  }

  40% {
    transform: translateY(-4px);
    opacity: 0.6;
  }

  70% {
    transform: translateY(-8px);
    opacity: 0.2;
  }

  100% {
    transform: translateY(6px);
    opacity: 0.25;
  }
}

@media (max-height: 750px), (max-width: 400px) {
  .experience-stage {
    padding-top: 1.25rem;
    padding-bottom: 1rem;
  }

  .hero-page {
    margin-bottom: 1.5rem;
    gap: 0.05rem;
  }

  #site-title {
    font-size: clamp(1.6rem, 8vw, 2.4rem);
  }

  #site-sub {
    font-size: 0.85rem;
  }

  .calendar-shell {
    --calendar-scale: min(1, calc((100dvh - 230px) / var(--calendar-total-height)), calc((100vw - 32px) / var(--calendar-width)));
  }

  .scroll-mouse {
    display: none;
  }

  .swipe-hint {
    display: block;
  }

  .interaction-hint {
    gap: 6px;
  }

  #footer {
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
  }
}

@media (max-height: 580px) {
  .experience-stage {
    padding-top: 0.75rem;
  }

  .hero-page {
    margin-bottom: 1rem;
  }

  #site-sub {
    display: none;
  }
}

@media (max-width: 640px) {
  .secondary-main {
    padding: 2rem 1rem;
  }

  .secondary-card {
    gap: 1.5rem;
  }

  .page-subtitle {
    font-size: 0.95rem;
  }

  .paper-sheet--lifted,
  .paper-sheet__body {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .paper-sheet--lifted {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .paper-sheet__body {
    padding-top: 3rem;
  }

  .section-title {
    font-size: 1.35rem;
  }

  .prose-block {
    font-size: 1rem;
  }

  .tear-tabs {
    gap: 0.125rem;
  }

  .tear-tab {
    height: 148px;
  }

  .tear-tab__link {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }
}

@media (max-width: 420px) {
  .site-title {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .page-kicker {
    font-size: 0.58rem;
    letter-spacing: 0.24em;
  }

  .tear-tab {
    height: 132px;
  }

  .tear-tab__link {
    gap: 0.5rem;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .tear-tab__icon {
    width: 1rem;
    height: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  #video-overlay {
    display: none;
  }

  .scroll-dot,
  .swipe-finger {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}
