/* ============ C3 — Cooking w/ Carl Camacho ============ */
:root {
  --flour: #FAF6EE;
  --flour-2: #F3EDE0;
  --card: #FFFFFF;
  --ink: #23281E;
  --ink-soft: #58604F;
  --basil: #2F6B40;
  --basil-deep: #24522F;
  --tomato: #C2402E;
  --tomato-deep: #A33323;
  --lemon: #E9B949;
  --line: #E5DCC9;
  --shadow: 0 10px 30px rgba(35, 40, 30, .08);
  --shadow-lift: 0 18px 44px rgba(35, 40, 30, .14);
  --r: 18px;
  --ease: cubic-bezier(.22, .8, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--flour);
  color: var(--ink);
  font-family: "Figtree", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: "Playfair Display", serif; line-height: 1.15; margin: 0 0 .4em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
a { color: var(--basil); text-decoration: none; }
img { max-width: 100%; display: block; }
main { min-height: 62vh; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px clamp(18px, 4vw, 44px);
  background: rgba(250, 246, 238, .82);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(35,40,30,.06); }
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.brand-logo {
  width: 58px; height: 58px; border-radius: 50%;
  object-fit: cover; background: #fff;
  box-shadow: 0 4px 14px rgba(35, 40, 30, .16);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.brand:hover .brand-logo { transform: rotate(-5deg) scale(1.04); box-shadow: 0 8px 22px rgba(35, 40, 30, .18); }
.brand-words { line-height: 1.15; font-size: .98rem; }
.brand-words strong { display: block; font-family: "Playfair Display", serif; font-size: 1.18rem; }
.brand-words span { color: var(--ink-soft); font-size: .85rem; }

.site-nav { display: flex; align-items: center; gap: clamp(8px, 1.5vw, 22px); }
.site-nav a {
  color: var(--ink); font-weight: 600; font-size: .95rem;
  padding: 6px 2px; position: relative;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--tomato);
  transition: right .35s var(--ease);
}
.site-nav a:hover::after, .site-nav a.on::after { right: 0; }
.site-nav a.nav-cta {
  background: var(--tomato); color: #fff;
  padding: 9px 20px; border-radius: 999px;
  transition: background .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.site-nav a.nav-cta::after { display: none; }
.site-nav a.nav-cta:hover { background: var(--tomato-deep); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(194,64,46,.3); }

.nav-burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 24px; height: 2.5px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: transform .35s var(--ease), opacity .25s; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-burger { display: block; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--flour);
    border-bottom: 1px solid var(--line);
    padding: 8px 20px 18px;
    opacity: 0; transform: translateY(-8px); pointer-events: none;
    transition: opacity .3s var(--ease), transform .3s var(--ease);
  }
  .site-nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .site-nav a { padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .site-nav a:last-child { border-bottom: 0; }
  .site-nav a.nav-cta { text-align: center; margin-top: 10px; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block; font-weight: 700; font-size: 1rem;
  padding: 13px 28px; border-radius: 999px; border: 0; cursor: pointer;
  background: var(--tomato); color: #fff;
  transition: background .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.btn:hover { background: var(--tomato-deep); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(194,64,46,.32); }
.btn.green { background: var(--basil); }
.btn.green:hover { background: var(--basil-deep); box-shadow: 0 10px 24px rgba(47,107,64,.32); }
.btn.ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.75); }
.btn.ghost:hover { background: rgba(255,255,255,.14); box-shadow: none; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 78vh;
  display: grid; place-items: center; text-align: center;
  overflow: hidden; color: #fff;
  padding: 60px 20px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  animation: heroZoom 18s var(--ease) forwards;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,24,16,.35), rgba(20,24,16,.62));
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-inner { position: relative; max-width: 800px; }
.hero-kicker {
  display: inline-block; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  font-size: .82rem; color: var(--lemon); margin-bottom: 14px;
}
.hero h1 { color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.hero p.sub { font-size: 1.15rem; opacity: .92; max-width: 560px; margin: 0 auto 30px; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.text-link { font-weight: 800; color: var(--tomato); }
.text-link:hover { color: var(--tomato-deep); }

/* ---------- shared sections ---------- */
.section { padding: clamp(56px, 9vw, 104px) clamp(18px, 5vw, 48px); }
.section.tint { background: var(--flour-2); }
.section-head { max-width: 1100px; margin: 0 auto 40px; text-align: center; }
.section-head .kicker {
  display: inline-block; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  font-size: .78rem; color: var(--tomato); margin-bottom: 8px;
}
.section-head p { color: var(--ink-soft); max-width: 620px; margin: 8px auto 0; }
.wrap { max-width: 1100px; margin: 0 auto; }

/* ---------- cards grid ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 26px; max-width: 1100px; margin: 0 auto; }
.card {
  background: var(--card); border-radius: var(--r); overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), opacity .5s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.card.leaving { opacity: 0; transform: scale(.94); }
.card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--flour-2); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-body h3 a { color: var(--ink); }
.card-body h3 a:hover { color: var(--tomato); }
.card-body p { margin: 0; color: var(--ink-soft); font-size: .95rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--basil-deep); background: rgba(47,107,64,.1);
  padding: 4px 12px; border-radius: 999px;
}

/* ---------- experiences ---------- */
.experience-hero {
  position: relative; min-height: 72vh;
  display: grid; place-items: center; text-align: center;
  overflow: hidden; color: #fff; padding: 70px 20px;
  background-size: cover; background-position: center 58%;
}
.experience-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,24,16,.38), rgba(20,24,16,.68)),
    radial-gradient(ellipse at 50% 85%, rgba(194,64,46,.22), transparent 58%);
}
.experience-hero-inner { position: relative; max-width: 860px; }
.experience-logo-stamp {
  width: clamp(104px, 16vw, 156px); height: clamp(104px, 16vw, 156px);
  object-fit: contain; margin: 0 auto 18px;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,.34));
}
.experience-hero p.sub { font-size: 1.15rem; opacity: .94; max-width: 700px; margin: 0 auto 30px; }
.experience-band { background: #fffaf0; }
.experience-intro { align-items: start; }
.experience-intro .kicker {
  display: inline-block; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  font-size: .78rem; color: var(--tomato); margin-bottom: 8px;
}
.experience-intro p { margin-top: 0; color: var(--ink-soft); }
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  max-width: 1100px; margin: 34px auto 0;
}
.feature-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 26px; box-shadow: var(--shadow);
}
.feature-card h3 { margin-top: 8px; }
.feature-card p { margin: 0; color: var(--ink-soft); font-size: .96rem; }
.feature-number {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; height: 32px; padding: 0 12px; border-radius: 999px;
  background: rgba(47,107,64,.1); color: var(--basil-deep);
  font-weight: 800; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
}
.process-list {
  display: grid; gap: 16px;
}
.process-list > div {
  display: grid; grid-template-columns: 42px 1fr; column-gap: 16px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 18px; box-shadow: var(--shadow);
}
.process-list span {
  grid-row: span 2; width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--tomato); color: #fff; font-family: "Playfair Display", serif; font-weight: 700;
}
.process-list h3 { margin: 0 0 4px; }
.process-list p { margin: 0; color: var(--ink-soft); }
.idea-cloud {
  max-width: 920px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
}
.idea-cloud span {
  background: var(--card); color: var(--ink); border: 1.5px solid var(--line);
  border-radius: 999px; padding: 10px 16px; font-weight: 700; box-shadow: var(--shadow);
}
.service-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  max-width: 1100px; margin: 0 auto 44px;
}
.service-strip > div {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 22px; box-shadow: var(--shadow);
}
.service-strip span {
  display: inline-block; color: var(--tomato); font-size: .74rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 8px;
}
.service-strip h3 { margin-bottom: 6px; }
.service-strip p { margin: 0; color: var(--ink-soft); font-size: .94rem; }
@media (max-width: 820px) {
  .feature-grid, .service-strip { grid-template-columns: 1fr; }
  .experience-hero { min-height: 64vh; }
}

/* filter chips row */
.filter-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin: 0 auto 36px; max-width: 900px; }
.filter-chip {
  font-size: .88rem; font-weight: 700; cursor: pointer;
  color: var(--ink-soft); background: var(--card);
  border: 1.5px solid var(--line); border-radius: 999px; padding: 8px 20px;
  transition: all .3s var(--ease);
}
.filter-chip:hover { border-color: var(--basil); color: var(--basil); transform: translateY(-1px); }
.filter-chip.on { background: var(--basil); border-color: var(--basil); color: #fff; }

/* ---------- video cards ---------- */
.video-card .card-media { aspect-ratio: 16 / 9; cursor: pointer; }
.play-badge {
  position: absolute; inset: 0; display: grid; place-items: center;
}
.play-badge span {
  display: grid; place-items: center; width: 62px; height: 62px; border-radius: 50%;
  background: rgba(255,255,255,.92); color: var(--tomato);
  box-shadow: 0 8px 26px rgba(0,0,0,.3);
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.video-card:hover .play-badge span { transform: scale(1.12); background: #fff; }
.play-badge svg { margin-left: 4px; }

.poster-ph {
  display: block; width: 100%; height: 100%;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(233,185,73,.25), transparent 55%),
    radial-gradient(ellipse at 75% 80%, rgba(194,64,46,.3), transparent 55%),
    linear-gradient(150deg, #2F6B40, #24522F 60%, #1d4226);
}
.lightbox-frame video { width: 100%; height: 100%; background: #000; }

/* video lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(18, 21, 14, .88);
  display: grid; place-items: center; padding: 4vw;
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-frame {
  width: min(1080px, 100%); aspect-ratio: 16/9;
  border-radius: 14px; overflow: hidden; background: #000;
  transform: scale(.94); transition: transform .35s var(--ease);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.lightbox.open .lightbox-frame { transform: scale(1); }
.lightbox-frame iframe { width: 100%; height: 100%; border: 0; }
.lightbox-close {
  position: absolute; top: 22px; right: 26px;
  background: none; border: 0; color: #fff; font-size: 2.2rem; cursor: pointer;
  opacity: .8; transition: opacity .25s, transform .3s var(--ease);
}
.lightbox-close:hover { opacity: 1; transform: rotate(90deg); }

/* ---------- recipe page ---------- */
.recipe-hero { position: relative; }
.recipe-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 64px);
  max-width: 1100px; margin: 0 auto; align-items: center;
  padding: clamp(40px, 7vw, 80px) clamp(18px, 5vw, 48px);
}
.recipe-hero-media { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lift); aspect-ratio: 4/5; }
.recipe-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.recipe-meta { color: var(--ink-soft); font-weight: 600; margin-bottom: 10px; }
@media (max-width: 780px) { .recipe-hero-grid { grid-template-columns: 1fr; } .recipe-hero-media { aspect-ratio: 4/3; } }

.recipe-columns {
  display: grid; grid-template-columns: minmax(280px, 380px) 1fr; gap: clamp(28px, 5vw, 60px);
  max-width: 1100px; margin: 0 auto;
}
@media (max-width: 820px) { .recipe-columns { grid-template-columns: 1fr; } }
.ing-panel {
  background: var(--card); border-radius: var(--r); padding: 28px 30px;
  box-shadow: var(--shadow); align-self: start; position: sticky; top: 96px;
}
.ing-panel h3 { color: var(--basil-deep); margin-top: 18px; }
.ing-panel h3:first-child { margin-top: 0; }
.ing-list { list-style: none; margin: 0 0 6px; padding: 0; }
.ing-list li {
  padding: 8px 0 8px 30px; position: relative; cursor: pointer;
  border-bottom: 1px dashed var(--line); font-size: .97rem;
  transition: color .25s var(--ease);
}
.ing-list li:last-child { border-bottom: 0; }
.ing-list li::before {
  content: ""; position: absolute; left: 2px; top: 13px;
  width: 16px; height: 16px; border-radius: 5px;
  border: 2px solid var(--basil); background: transparent;
  transition: background .25s var(--ease);
}
.ing-list li.done { color: #B4AE9E; text-decoration: line-through; }
.ing-list li.done::before {
  background: var(--basil);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.5l3 3 7-7' stroke='white' stroke-width='2.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 12px; background-position: center; background-repeat: no-repeat;
}
.steps h3 { color: var(--tomato-deep); margin-top: 26px; }
.steps h3:first-child { margin-top: 0; }
.steps ol { counter-reset: step; list-style: none; margin: 0; padding: 0; }
.steps ol li {
  counter-increment: step; position: relative;
  padding: 0 0 22px 58px; margin: 0;
}
.steps ol li::before {
  content: counter(step);
  position: absolute; left: 0; top: -2px;
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--flour-2); color: var(--basil-deep);
  font-family: "Playfair Display", serif; font-weight: 700; font-size: 1.05rem;
  border: 1.5px solid var(--line);
}
.steps ol li::after {
  content: ""; position: absolute; left: 19px; top: 40px; bottom: 4px;
  width: 1.5px; background: var(--line);
}
.steps ol li:last-child::after { display: none; }

/* ---------- catering ---------- */
.menu-tabs { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 44px; }
.menu-panel { max-width: 880px; margin: 0 auto; }
.menu-section { margin-bottom: 44px; }
.menu-section > h3 {
  text-align: center; color: var(--tomato-deep);
  font-size: 1.45rem; margin-bottom: 22px; position: relative;
}
.menu-section > h3::after {
  content: ""; display: block; width: 54px; height: 3px; border-radius: 2px;
  background: var(--lemon); margin: 10px auto 0;
}
.menu-item {
  padding: 16px 4px; border-bottom: 1px dashed var(--line);
  display: flex; flex-direction: column; gap: 3px;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.menu-item:last-child { border-bottom: 0; }
.menu-item h4 { margin: 0; font-size: 1.06rem; letter-spacing: .02em; }
.menu-item p { margin: 0; color: var(--ink-soft); font-size: .95rem; }
.fade-swap { animation: fadeSwap .45s var(--ease); }
@keyframes fadeSwap { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ---------- banners ---------- */
.banner {
  position: relative; overflow: hidden; color: #fff; text-align: center;
  padding: clamp(70px, 11vw, 130px) 22px;
  background-size: cover; background-position: center 35%;
}
.banner::before { content: ""; position: absolute; inset: 0; background: rgba(24, 28, 18, .55); }
.banner > * { position: relative; }
.banner h2 { color: #fff; font-style: italic; font-size: clamp(1.7rem, 4vw, 2.6rem); }
.banner p { font-size: 1.1rem; opacity: .92; margin-bottom: 26px; }

/* ---------- forms ---------- */
.form-grid { display: grid; gap: 16px; max-width: 560px; }
.form-grid input, .form-grid textarea, .form-grid select {
  width: 100%; font: inherit; color: var(--ink);
  background: var(--card); border: 1.5px solid var(--line); border-radius: 12px;
  padding: 13px 16px; outline: none;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.form-grid input:focus, .form-grid textarea:focus, .form-grid select:focus {
  border-color: var(--basil); box-shadow: 0 0 0 4px rgba(47,107,64,.12);
}
.form-grid textarea { min-height: 140px; resize: vertical; }
.form-note {
  background: rgba(47,107,64,.1); color: var(--basil-deep);
  border-radius: 12px; padding: 14px 18px; font-weight: 600;
  animation: fadeSwap .5s var(--ease);
}
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- contact / about ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 6vw, 70px); max-width: 1050px; margin: 0 auto; align-items: center; }
@media (max-width: 780px) { .split { grid-template-columns: 1fr; } }
.portrait { border-radius: 50%; overflow: hidden; width: min(340px, 78vw); aspect-ratio: 1; margin: 0 auto; box-shadow: var(--shadow-lift); border: 8px solid #fff; }
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.contact-lines { display: grid; gap: 12px; margin: 22px 0; }
.contact-lines a { font-weight: 700; font-size: 1.08rem; }
.socials { display: flex; gap: 12px; }
.socials a {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--card); color: var(--ink); box-shadow: var(--shadow);
  transition: transform .3s var(--ease), color .3s var(--ease);
}
.socials a:hover { transform: translateY(-3px) scale(1.06); color: var(--tomato); }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #D8D4C6; margin-top: 40px; }
.footer-inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px;
  max-width: 1100px; margin: 0 auto; padding: 60px clamp(18px, 5vw, 48px) 36px;
}
@media (max-width: 720px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-brand p { color: #A9A695; max-width: 300px; }
.footer-logo {
  width: 92px; height: 92px; border-radius: 50%; object-fit: cover;
  background: #fff; box-shadow: 0 8px 26px rgba(0,0,0,.24);
}
.footer-col h4 {
  font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--lemon); margin: 0 0 14px;
}
.footer-col p { margin: 0 0 8px; }
.footer-col a { color: #EFEBDD; }
.footer-col a:hover { color: var(--lemon); }
.site-footer .socials a { background: rgba(255,255,255,.08); color: #EFEBDD; box-shadow: none; }
.site-footer .socials a:hover { color: var(--lemon); }
.footer-fine {
  text-align: center; padding: 18px; margin: 0;
  border-top: 1px solid rgba(255,255,255,.09);
  color: #8E8B7C; font-size: .85rem;
}

/* ---------- 404 ---------- */
.err-wrap { text-align: center; padding: 120px 20px; }
.err-wrap h1 { font-size: clamp(3rem, 9vw, 5rem); }

/* ---------- entrance animation ---------- */
.rev { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.rev.in { opacity: 1; transform: none; }
.rev-d1 { transition-delay: .08s; } .rev-d2 { transition-delay: .16s; } .rev-d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .rev { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
