:root {
  --ink: #173129;
  --muted: #607168;
  --pine: #245845;
  --pine-dark: #163d30;
  --moss: #82a06a;
  --leaf: #dce9c8;
  --clay: #d96f4d;
  --clay-dark: #a54831;
  --sun: #f1bd57;
  --cream: #f5efdd;
  --paper: #fffdf7;
  --line: #d8d4c6;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(23, 49, 41, 0.12);
  --shadow-soft: 0 12px 34px rgba(23, 49, 41, 0.08);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 4% 8%, rgba(241, 189, 87, 0.2), transparent 25rem),
    radial-gradient(circle at 96% 30%, rgba(130, 160, 106, 0.16), transparent 28rem),
    var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--pine-dark);
  border-radius: 12px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.season-strip {
  padding: 9px 20px;
  color: #fff9e8;
  background: var(--pine-dark);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(23, 49, 41, 0.1);
  background: rgba(255, 253, 247, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 50% 50% 45% 45%;
  background: var(--sun);
  box-shadow: 4px 4px 0 var(--clay);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  bottom: 11px;
  width: 19px;
  height: 27px;
  background: var(--pine);
  border: 2px solid var(--ink);
}

.brand-mark::before {
  left: 5px;
  border-radius: 100% 0 100% 0;
  transform: rotate(-20deg);
}

.brand-mark::after {
  right: 5px;
  border-radius: 0 100% 0 100%;
  transform: rotate(20deg);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 800;
}

.brand-note {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 7px;
}

.main-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--white);
  background: var(--pine);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--sun);
  font-size: 0;
  cursor: pointer;
}

.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 0.2s ease;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-4px) rotate(-45deg);
}

.page-main {
  overflow: hidden;
}

.hero {
  position: relative;
  padding: clamp(64px, 9vw, 116px) 0 68px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--clay-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  content: "";
  border-radius: 99px;
  background: var(--clay);
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.6rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.hero-lead,
.section-lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.25rem);
}

.hero-lead {
  margin: 0 0 30px;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--white);
  background: var(--pine);
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  background: var(--pine-dark);
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(2px, 2px);
}

.button.secondary {
  color: var(--ink);
  background: var(--paper);
}

.button.small {
  min-height: 40px;
  padding: 8px 15px;
  font-size: 0.85rem;
  box-shadow: 3px 3px 0 var(--ink);
}

.plant-stage {
  position: relative;
  min-height: 510px;
  border: 2px solid var(--ink);
  border-radius: 48% 48% 34px 34px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0)),
    var(--leaf);
  box-shadow: 14px 14px 0 var(--pine);
  isolation: isolate;
}

.plant-stage::before {
  position: absolute;
  right: 12%;
  bottom: 22%;
  width: 72%;
  height: 20px;
  content: "";
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: rgba(23, 49, 41, 0.16);
  filter: blur(1px);
  z-index: -1;
}

.plant-pot {
  position: absolute;
  left: 50%;
  bottom: 48px;
  width: 210px;
  height: 188px;
  border: 5px solid var(--ink);
  border-radius: 18px 18px 70px 70px;
  background: var(--clay);
  transform: translateX(-50%);
}

.plant-pot::before {
  position: absolute;
  top: -28px;
  left: -19px;
  width: 238px;
  height: 48px;
  content: "";
  border: 5px solid var(--ink);
  border-radius: 18px;
  background: var(--sun);
}

.plant-stem {
  position: absolute;
  left: calc(50% - 4px);
  bottom: 234px;
  width: 8px;
  height: 188px;
  border-radius: 20px;
  background: var(--ink);
}

.leaf-shape {
  position: absolute;
  left: 50%;
  bottom: 250px;
  width: 142px;
  height: 92px;
  border: 5px solid var(--ink);
  background: var(--pine);
  transform-origin: 0 100%;
  animation: sway 4.5s ease-in-out infinite alternate;
}

.leaf-shape.left {
  border-radius: 100% 0 100% 0;
}

.leaf-shape.right {
  border-radius: 0 100% 0 100%;
}

.leaf-shape.one {
  transform: translate(-4px, -24px) rotate(-37deg) scale(1.05);
}

.leaf-shape.two {
  transform: translate(3px, -73px) rotate(33deg) scale(0.95);
  animation-delay: -1s;
}

.leaf-shape.three {
  transform: translate(-3px, -130px) rotate(-54deg) scale(0.72);
  animation-delay: -2s;
}

.leaf-shape.four {
  transform: translate(3px, -162px) rotate(50deg) scale(0.62);
  animation-delay: -3s;
}

.stage-note {
  position: absolute;
  top: 34px;
  right: 28px;
  max-width: 160px;
  padding: 12px 15px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--sun);
  font-size: 0.82rem;
  font-weight: 800;
  transform: rotate(3deg);
}

.bulletin {
  position: relative;
  z-index: 4;
  margin-top: -10px;
  padding-bottom: 28px;
}

.bulletin-grid {
  display: grid;
  grid-template-columns: 0.8fr repeat(3, 1fr);
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.bulletin-title,
.bulletin-item {
  min-height: 108px;
  padding: 20px;
}

.bulletin-title {
  display: grid;
  align-content: center;
  color: var(--white);
  background: var(--pine);
}

.bulletin-title strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.bulletin-title span,
.bulletin-item time {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.bulletin-item {
  border-left: 1px solid var(--line);
}

.bulletin-item time {
  color: var(--clay-dark);
}

.bulletin-item p {
  margin: 6px 0 0;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.4;
}

.section {
  padding: clamp(66px, 9vw, 112px) 0;
}

.section.paper {
  background: var(--paper);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}

.section-header > div:first-child {
  max-width: 760px;
}

.section-lead {
  margin: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.care-card,
.plant-card,
.month-card,
.principle-card {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: 7px 7px 0 rgba(23, 49, 41, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.care-card:hover,
.plant-card:hover,
.month-card:hover,
.principle-card:hover {
  box-shadow: 10px 10px 0 var(--sun);
  transform: translateY(-4px);
}

.care-card {
  min-height: 272px;
  padding: 28px;
}

.card-number {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--white);
  background: var(--clay);
  font-weight: 950;
}

.care-card p,
.plant-card p,
.month-card p,
.principle-card p {
  margin: 0;
  color: var(--muted);
}

.content-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 26px;
  align-items: start;
}

.article-card {
  padding: clamp(28px, 5vw, 58px);
  border: 2px solid var(--ink);
  border-radius: var(--radius-xl);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.article-card > *:last-child {
  margin-bottom: 0;
}

.article-card p,
.article-card li {
  font-size: 1.03rem;
}

.article-card h2 {
  margin-top: 44px;
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.article-card h2:first-child {
  margin-top: 0;
}

.article-card h3 {
  margin-top: 30px;
}

.article-card ol,
.article-card ul {
  padding-left: 1.3rem;
}

.callout {
  margin: 30px 0;
  padding: 24px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--leaf);
  box-shadow: 6px 6px 0 var(--sun);
}

.callout strong {
  display: block;
  margin-bottom: 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.side-stack {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 16px;
}

.side-card {
  padding: 22px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.side-card.accent {
  color: var(--white);
  background: var(--pine);
}

.side-card h2,
.side-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.side-card p {
  margin: 0;
  font-size: 0.9rem;
}

.side-list,
.checklist {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.side-list a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 750;
  text-decoration: none;
}

.side-list li:last-child a {
  border-bottom: 0;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
}

.filter-button {
  padding: 9px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper);
  font-weight: 850;
  cursor: pointer;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--white);
  background: var(--pine);
}

.plant-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.plant-card {
  display: grid;
  min-height: 310px;
  padding: 22px;
  align-content: space-between;
}

.plant-card[hidden] {
  display: none;
}

.plant-icon {
  display: grid;
  min-height: 138px;
  margin: -6px -6px 22px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 20px;
  background: var(--leaf);
  font-size: 4.4rem;
}

.plant-card:nth-child(3n + 2) .plant-icon {
  background: #f5d49a;
}

.plant-card:nth-child(3n + 3) .plant-icon {
  background: #e9c2ad;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.tag {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--paper);
  font-size: 0.7rem;
  font-weight: 850;
}

.search-box {
  position: relative;
  width: min(420px, 100%);
}

.search-box input {
  width: 100%;
  min-height: 48px;
  padding: 10px 44px 10px 16px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper);
}

.search-box::after {
  position: absolute;
  top: 50%;
  right: 16px;
  content: "⌕";
  font-size: 1.35rem;
  transform: translateY(-54%);
}

.empty-state {
  margin-top: 24px;
  padding: 24px;
  border: 2px dashed var(--moss);
  border-radius: var(--radius-md);
  color: var(--muted);
  text-align: center;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.month-card {
  padding: 24px;
}

.month-card.is-current {
  background: var(--leaf);
  box-shadow: 8px 8px 0 var(--clay);
}

.month-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.month-label h3 {
  margin: 0;
}

.month-label span {
  color: var(--clay-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.checklist label {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
}

.checklist input {
  width: 19px;
  height: 19px;
  margin: 2px 0 0;
  accent-color: var(--pine);
}

.checklist input:checked + span {
  color: var(--muted);
  text-decoration: line-through;
}

.progress-card {
  margin-bottom: 26px;
  padding: 22px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--pine);
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
  font-weight: 850;
}

.progress-track {
  height: 13px;
  overflow: hidden;
  border: 2px solid var(--white);
  border-radius: 999px;
}

.progress-fill {
  width: 0;
  height: 100%;
  background: var(--sun);
  transition: width 0.35s ease;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.faq summary {
  padding: 18px 52px 18px 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.faq details[open] {
  box-shadow: 5px 5px 0 var(--sun);
}

.page-hero {
  padding: clamp(58px, 8vw, 96px) 0 46px;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.crumbs a {
  color: var(--pine);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.principle-card {
  padding: 28px;
}

.site-footer {
  margin-top: 70px;
  color: #f8f3e5;
  background: var(--pine-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr;
  gap: 40px;
  padding: 58px 0 38px;
}

.footer-grid h2,
.footer-grid h3 {
  font-size: 1.25rem;
}

.footer-grid p,
.footer-grid a {
  color: #cbd8cf;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--sun);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #aebfb5;
  font-size: 0.8rem;
}

.back-to-top {
  position: fixed;
  z-index: 40;
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--sun);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 1.25rem;
  font-weight: 950;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes sway {
  from { margin-left: -3px; }
  to { margin-left: 4px; }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 83px 16px auto;
    display: none;
    padding: 15px;
    border: 2px solid var(--ink);
    border-radius: 22px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 13px 15px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .plant-stage {
    width: min(560px, 100%);
    min-height: 470px;
    margin-inline: auto;
  }

  .bulletin-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bulletin-item:nth-child(odd) {
    border-left: 0;
  }

  .bulletin-item {
    border-top: 1px solid var(--line);
  }

  .card-grid,
  .calendar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plant-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-shell {
    grid-template-columns: 1fr;
  }

  .side-stack {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .season-strip {
    padding-inline: 12px;
    font-size: 0.66rem;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-note {
    font-size: 0.58rem;
  }

  .main-nav {
    top: 73px;
  }

  .hero {
    padding-top: 52px;
  }

  h1 {
    font-size: clamp(2.65rem, 16vw, 4.6rem);
  }

  .plant-stage {
    min-height: 390px;
    border-radius: 44% 44% 26px 26px;
    box-shadow: 8px 8px 0 var(--pine);
  }

  .plant-pot {
    bottom: 36px;
    width: 160px;
    height: 142px;
  }

  .plant-pot::before {
    left: -14px;
    width: 178px;
  }

  .plant-stem {
    bottom: 180px;
    height: 150px;
  }

  .leaf-shape {
    bottom: 195px;
    width: 110px;
    height: 70px;
  }

  .stage-note {
    top: 22px;
    right: 18px;
  }

  .bulletin-grid,
  .card-grid,
  .plant-grid,
  .calendar-grid,
  .principle-grid,
  .side-stack,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .bulletin-item {
    border-left: 0;
  }

  .section-header {
    display: grid;
    align-items: start;
  }

  .article-card {
    border-radius: 24px;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
