/* The Hungry Lion — teal-blue, brown & lion-mane palette */
:root {
  /* Logo teal — primary brand color, lifted from the wordmark */
  --teal: #6ec2c4;
  --teal-deep: #08808e;
  --teal-dark: #0d3a42;
  --teal-darker: #08272d;

  /* Lion body */
  --brown: #4d3930;
  --brown-deep: #2f221c;

  /* Lion mane — warm yellows */
  --mane: #f7e594;
  --mane-deep: #e8d36c;
  --cream: #decc9c;
  --bone: #f6ecd1;

  /* Neutrals */
  --black: #0a0a0a;
  --charcoal: #1a1a1a;
  --ink: #1a1f23;
  --gray-900: #2a2a2a;
  --gray-600: #5a5a5a;
  --gray-400: #8a8a8a;
  --white: #ffffff;

  /* Legacy gold aliases now point at the lion-mane palette so existing
     references keep working without repainting every selector. */
  --gold: var(--mane);
  --gold-deep: var(--mane-deep);
  --gold-soft: var(--mane);

  --shadow-lg: 0 24px 64px rgba(8, 39, 45, 0.28);
  --shadow-md: 0 12px 32px rgba(8, 39, 45, 0.2);
  --shadow-sm: 0 4px 12px rgba(8, 39, 45, 0.12);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
h4 {
  font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin: 0;
  color: var(--black);
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--teal-deep);
  margin-bottom: 16px;
}

.eyebrow-center {
  display: block;
  text-align: center;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  color: var(--gray-600);
  font-size: 18px;
}

/* ------- Buttons ------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 8px 24px rgba(247, 229, 148, 0.45);
}

.btn-primary:hover {
  background: var(--gold-deep);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(247, 229, 148, 0.55);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--black);
}

.btn-light {
  background: var(--white);
  color: var(--black);
}

.btn-light:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-large {
  padding: 18px 36px;
  font-size: 16px;
}

.btn-small {
  padding: 10px 20px;
  font-size: 14px;
}

/* ------- Header / Nav ------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 39, 45, 0.94);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid rgba(110, 194, 196, 0.22);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--white);
}

.logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 14px rgba(8, 128, 142, 0.35));
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  margin: 0 auto;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.order-btn {
  flex-shrink: 0;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
}

/* ------- Hero ------- */
.hero {
  position: relative;
  background: radial-gradient(
    ellipse at top right,
    var(--teal-deep) 0%,
    var(--teal-dark) 38%,
    var(--teal-darker) 75%,
    var(--brown-deep) 100%
  );
  color: var(--white);
  overflow: hidden;
  padding: 0;
  min-height: min(820px, 92vh);
  display: flex;
  align-items: stretch;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  width: 100%;
  flex: 1;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(247, 229, 148, 0.16) 0%, transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(110, 194, 196, 0.22) 0%, transparent 55%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px clamp(32px, 6vw, 96px) 96px clamp(32px, 8vw, 128px);
  max-width: 720px;
  justify-self: end;
  width: 100%;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(110, 194, 196, 0.18);
  color: var(--teal);
  border: 1px solid rgba(110, 194, 196, 0.42);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  color: var(--white);
  margin-bottom: 20px;
}

.highlight {
  color: var(--gold);
  font-style: italic;
}

.hero-subtitle {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 0.05em;
}

.hero-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: min(820px, 92vh);
  overflow: hidden;
}

.hero-food-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 39, 45, 0.78) 0%,
    rgba(8, 39, 45, 0.28) 28%,
    transparent 55%
  );
  pointer-events: none;
}

/* ------- Trust strip ------- */
.trust-strip {
  background: var(--brown);
  color: var(--mane);
  padding: 18px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  flex-wrap: wrap;
  border-top: 1px solid rgba(247, 229, 148, 0.22);
  border-bottom: 1px solid rgba(247, 229, 148, 0.22);
}

.trust-strip .dot {
  color: rgba(247, 229, 148, 0.55);
}

/* ------- Featured / Menu ------- */
.featured {
  padding: 100px 0;
  background: var(--bone);
  text-align: center;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  text-align: left;
  margin-top: 16px;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(10, 10, 10, 0.04);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.menu-card-featured {
  border: 2px solid var(--gold);
  box-shadow: 0 8px 32px rgba(247, 229, 148, 0.28);
}

.menu-card-image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gray-900);
}

.menu-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.menu-card:hover .menu-card-image {
  transform: scale(1.05);
}

.menu-card-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(8, 128, 142, 0.92);
  color: var(--mane);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.menu-card-content {
  padding: 24px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-card-tag {
  display: inline-block;
  background: var(--cream);
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.menu-card-tag.signature {
  background: var(--brown);
  color: var(--mane);
}

.menu-card-tag.favorite {
  background: var(--gold);
  color: var(--black);
}

.menu-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.menu-card-head h3 {
  font-size: 22px;
  margin: 0;
}

.menu-card-price {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--gold-deep);
  white-space: nowrap;
}

.menu-card-content p {
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 16px;
}

.menu-card-cta {
  margin-top: auto;
  font-weight: 700;
  font-size: 14px;
  color: var(--black);
  letter-spacing: 0.02em;
}

.menu-footnote {
  margin: 36px auto 0;
  max-width: 720px;
  color: var(--gray-600);
  font-size: 15px;
  text-align: center;
}

.menu-cta {
  margin-top: 40px;
}

/* ------- Lotus drinks builder ------- */
.lotus {
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    var(--brown-deep) 0%,
    var(--brown) 50%,
    var(--teal-dark) 100%
  );
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.lotus::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 30%, rgba(247, 229, 148, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 100% 80%, rgba(110, 194, 196, 0.32) 0%, transparent 55%);
  pointer-events: none;
}

.lotus-container {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: center;
}

.lotus-copy h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.lotus-copy > p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  margin-bottom: 36px;
  max-width: 600px;
}

.lotus-builder {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.lotus-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(247, 229, 148, 0.28);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  position: relative;
}

.lotus-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 12px;
}

.lotus-step h3 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.lotus-step ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lotus-step li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding-left: 16px;
}

.lotus-step li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 9px;
  top: 6px;
}

.lotus-meta {
  margin-top: 12px;
  font-size: 12px;
  color: var(--gold-soft);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lotus-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

/* ------- About ------- */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--gray-600);
  font-size: 17px;
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 36px 0 28px;
  padding: 28px;
  background: var(--bone);
  border-radius: var(--radius-md);
  border: 1px solid rgba(10, 10, 10, 0.05);
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 800;
  color: var(--teal-deep);
  margin-bottom: 4px;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 500;
  line-height: 1.35;
  display: block;
}

.about-cta {
  margin-top: 8px;
}

.about-image {
  position: relative;
}

.about-food-image {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

/* ------- Order banner ------- */
.order-banner {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  padding: 80px 24px;
  text-align: center;
  color: var(--black);
  position: relative;
  overflow: hidden;
}

.order-banner::before {
  content: '🦁';
  position: absolute;
  font-size: 320px;
  right: -40px;
  bottom: -120px;
  opacity: 0.06;
  pointer-events: none;
}

.order-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--black);
  margin-bottom: 12px;
}

.order-banner p {
  font-size: 18px;
  margin-bottom: 28px;
  color: rgba(10, 10, 10, 0.75);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ------- Location ------- */
.location {
  padding: 100px 0;
  background: var(--bone);
}

.location-content {
  margin-top: 16px;
}

.location-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.location-detail {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
  border: 1px solid rgba(10, 10, 10, 0.05);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.location-detail h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.location-detail p {
  color: var(--gray-600);
  margin-bottom: 4px;
}

.location-address-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.location-address-link:hover,
.location-address-link:focus-visible {
  color: var(--teal-deep);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.location-detail strong {
  color: var(--ink);
  font-weight: 700;
}

.location-detail .hours-note {
  color: var(--teal-deep);
  font-style: italic;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.location-detail .btn {
  margin-top: 16px;
}

.location-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream);
  font-size: 26px;
  margin-bottom: 16px;
}

.location-icon-dark {
  background: var(--teal-deep);
  color: var(--mane);
}

.location-icon-gold {
  background: var(--gold);
}

.location-detail-gold {
  border-top: 4px solid var(--gold);
}

.location-detail-cream {
  border-top: 4px solid var(--teal);
}

.closed {
  color: var(--gray-400);
}

/* ------- Footer ------- */
.footer {
  background: linear-gradient(
    180deg,
    var(--teal-dark) 0%,
    var(--teal-darker) 60%,
    var(--brown-deep) 100%
  );
  color: rgba(255, 255, 255, 0.75);
  padding: 72px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  margin-top: 16px;
  max-width: 320px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-logo {
  height: 120px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 20px;
  filter: drop-shadow(0 6px 20px rgba(8, 128, 142, 0.35));
}

.footer-links h4,
.footer-social h4 {
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease;
}

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

.footer-icon-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 20px;
}

.footer-icon-links > div {
  display: contents;
}

.footer-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(247, 229, 148, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.04);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-link-icon:hover,
.footer-link-icon:focus-visible {
  background: rgba(247, 229, 148, 0.12);
  border-color: rgba(247, 229, 148, 0.45);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-link-icon svg {
  width: 20px;
  height: 20px;
}

.footer-link-icon-disabled {
  cursor: default;
  opacity: 0.45;
}

.footer-link-icon-disabled:hover,
.footer-link-icon-disabled:focus-visible {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(247, 229, 148, 0.2);
  color: rgba(255, 255, 255, 0.85);
  transform: none;
}

.footer-contact {
  margin-bottom: 8px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-social .btn {
  margin-top: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.powered-by a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

.powered-by a:hover {
  text-decoration: underline;
}

/* ------- Responsive ------- */
@media (max-width: 960px) {
  .hero {
    min-height: 0;
    display: block;
    padding: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
  }

  .hero-content {
    align-items: center;
    text-align: center;
    padding: 48px 20px 64px;
    max-width: 100%;
    justify-self: stretch;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-image {
    order: -1;
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .hero-image::after {
    background: linear-gradient(180deg, transparent 60%, rgba(8, 39, 45, 0.92) 100%);
  }

  .hero-food-image {
    height: 100%;
  }

  .lotus-container,
  .about .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .lotus-image {
    order: -1;
  }

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

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }
}

@media (max-width: 640px) {
  .featured,
  .lotus,
  .about,
  .location {
    padding: 72px 0;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .trust-strip {
    gap: 14px;
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .order-btn {
    display: none;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--teal-darker);
    padding: 20px 24px;
    gap: 18px;
    border-top: 1px solid rgba(110, 194, 196, 0.22);
  }
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}
