/* ============================================================
   AETHER — Stylesheet
   Premium footwear storefront.
   ============================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  --bg:        #f4efe6;
  --bg-soft:   #ebe3d4;
  --ink:       #14110f;
  --ink-soft:  #5a544c;
  --line:      rgba(20, 17, 15, 0.10);
  --accent:    #c0522f;
  --accent-2:  #6f7d63;
  --gold:      #b89358;
  --shadow-sm: 0 6px 18px -8px rgba(20,17,15,.18);
  --shadow-md: 0 24px 60px -24px rgba(20,17,15,.25);
  --shadow-lg: 0 40px 80px -28px rgba(20,17,15,.35);
  --radius:    14px;
  --ease:      cubic-bezier(.2, .8, .2, 1);
}

/* ---------- BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image:
    radial-gradient(rgba(20,17,15,.025) 1px, transparent 1px),
    radial-gradient(rgba(20,17,15,.018) 1px, transparent 1px);
  background-size: 22px 22px, 11px 11px;
  background-position: 0 0, 11px 11px;
}
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; font-weight: 600; letter-spacing: -.01em; margin: 0; }

.wrap { width: min(1240px, 92vw); margin: 0 auto; }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  background: rgba(244, 239, 230, .82);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: .28em;
  font-size: 20px;
  display: flex; align-items: center; gap: 10px;
}
.brand-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(192,82,47,.18);
}
.nav-links {
  display: flex; gap: 36px; align-items: center;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft);
}
.nav-links a { position: relative; padding: 4px 0; transition: color .3s var(--ease); }
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--ink); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }

.cart-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  transition: background .3s var(--ease), color .3s var(--ease);
  position: relative;
}
.cart-btn:hover { background: var(--ink); color: var(--bg); }
.cart-count {
  min-width: 22px; height: 22px; padding: 0 6px;
  border-radius: 999px;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
  transform: scale(0);
  transition: transform .35s var(--ease);
}
.cart-count.show { transform: scale(1); }
.cart-count.bump { animation: bump .5s var(--ease); }
@keyframes bump {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.35); }
  100% { transform: scale(1); }
}

.menu-btn { display: none; }
@media (max-width: 860px) {
  .nav-links { display: none; }
  .menu-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 50%;
    border: 1px solid var(--line); background: transparent;
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 96px 0 64px;
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px;
  align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--ink-soft);
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.4);
}
.eyebrow .pulse {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: .35; transform: scale(.6); }
}
.hero h1 {
  font-size: clamp(48px, 7vw, 96px);
  line-height: .98;
  margin: 22px 0 20px;
  font-weight: 600;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}
.hero p.lede {
  font-size: 17px; line-height: 1.6; color: var(--ink-soft);
  max-width: 520px;
  margin: 0 0 32px;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  background: var(--ink); color: var(--bg);
  border-radius: 999px;
  font-size: 13px; letter-spacing: .18em; text-transform: uppercase;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  box-shadow: var(--shadow-md);
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.hero-cta svg { transition: transform .35s var(--ease); }
.hero-cta:hover svg { transform: translateX(4px); }

.hero-stats {
  display: flex; gap: 38px; margin-top: 56px;
  padding-top: 28px; border-top: 1px solid var(--line);
}
.hero-stats div { display: flex; flex-direction: column; gap: 4px; }
.hero-stats strong {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 600;
}
.hero-stats span {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-soft);
}

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid; place-items: center;
  isolation: isolate;
}
.hero-disc {
  position: absolute;
  width: 78%; aspect-ratio: 1/1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #ffffff 0%, #f7f1e3 55%, #ebe1cb 100%);
  box-shadow:
    inset 0 -20px 40px rgba(20,17,15,.06),
    0 30px 60px -20px rgba(20,17,15,.18);
  animation: discBreath 7s ease-in-out infinite;
  z-index: 0;
}
@keyframes discBreath {
  0%,100% { transform: scale(1); }
  50%     { transform: scale(1.04); }
}

.hero-floor {
  position: absolute;
  left: 18%; right: 18%; bottom: 14%;
  height: 22px;
  background: radial-gradient(ellipse at center, rgba(20,17,15,.32), transparent 70%);
  filter: blur(8px);
  animation: floorBreath 5.5s ease-in-out infinite;
  z-index: 1;
}
@keyframes floorBreath {
  0%,100% { transform: scaleX(1);   opacity: .9; }
  50%     { transform: scaleX(.86); opacity: .55; }
}

.hero-shoe {
  position: relative;
  width: 86%;
  transform-origin: center 90%;
  animation: heroFloat 9s ease-in-out infinite;
  z-index: 2;
  will-change: transform;
}
@keyframes heroFloat {
  0%   { transform: translate(0px,   0px)   rotate(-4deg); }
  25%  { transform: translate(8px,  -10px)  rotate(-3deg); }
  50%  { transform: translate(14px, -18px)  rotate(-3deg); }
  75%  { transform: translate(7px,  -10px)  rotate(-4deg); }
  100% { transform: translate(0px,   0px)   rotate(-4deg); }
}
.hero-shoe img {
  width: 100%; height: auto;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 22px 22px rgba(20,17,15,.12));
}

.chip {
  position: absolute;
  padding: 10px 14px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 12px; letter-spacing: .04em;
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 8px;
  z-index: 3;
}
.chip strong { font-family: 'Playfair Display', serif; font-size: 15px; }
.chip.c1 { top: 8%;  left: -2%; animation: chipFloatA 5s   ease-in-out infinite; }
.chip.c2 { bottom: 18%; right: -4%; animation: chipFloatB 6.5s ease-in-out infinite; }
.chip.c3 { top: 38%; right: -8%; animation: chipFloatA 7s   ease-in-out infinite; }
@keyframes chipFloatA { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);} }
@keyframes chipFloatB { 0%,100%{transform:translateY(0);} 50%{transform:translateY(10px);} }

@media (max-width: 860px) {
  .hero { padding: 56px 0 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { order: -1; max-width: 460px; margin: 0 auto; }
  .chip.c3 { right: 0; }
}

/* ---------- MARQUEE ---------- */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  background: var(--bg-soft);
}
.strip-track {
  display: flex; gap: 64px;
  animation: marquee 32s linear infinite;
  white-space: nowrap;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink-soft);
}
.strip-track span { display: inline-flex; align-items: center; gap: 64px; }
.strip-track span::after { content: '✦'; color: var(--accent); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- SECTION HEADERS ---------- */
.section { padding: 96px 0; }
.section-head {
  display: flex; align-items: end; justify-content: space-between;
  margin-bottom: 36px; gap: 32px; flex-wrap: wrap;
}
.section-head h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  max-width: 600px;
}
.section-head h2 em { font-style: italic; color: var(--accent); font-weight: 500; }
.section-head .meta {
  max-width: 340px; color: var(--ink-soft); font-size: 15px; line-height: 1.6;
}

/* ---------- CATEGORY FILTERS ---------- */
.filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 36px;
}
.filter {
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.filter:hover { color: var(--ink); border-color: var(--ink); }
.filter.active {
  background: var(--ink); color: var(--bg); border-color: var(--ink);
}

/* ---------- PRODUCT GRID ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 1100px) { .grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .grid { grid-template-columns: 1fr; } }

.card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.card-img {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg-soft);
  overflow: hidden;
}
.card-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  mix-blend-mode: multiply;
  animation: cardFloat 7s ease-in-out infinite;
  transition: transform .9s var(--ease), filter .6s var(--ease);
  transform-origin: center 60%;
  will-change: transform;
}
@keyframes cardFloat {
  0%,100% { transform: translateY(0)    scale(1.0); }
  50%     { transform: translateY(-8px) scale(1.02); }
}
.card:hover .card-img img {
  transform: scale(1.16);
}

.swatches {
  position: absolute; top: 14px; right: 14px;
  display: flex; flex-direction: column; gap: 8px;
  z-index: 4;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.card:hover .swatches, .card:focus-within .swatches {
  opacity: 1; transform: translateX(0);
}
.swatch {
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.9);
  box-shadow: 0 2px 6px rgba(0,0,0,.18);
  cursor: pointer;
  transition: transform .25s var(--ease);
  position: relative;
}
.swatch:hover { transform: scale(1.18); }
.swatch.active {
  transform: scale(1.18);
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.badge {
  position: absolute; top: 14px; left: 14px;
  padding: 6px 12px;
  background: var(--ink); color: var(--bg);
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  border-radius: 999px;
  z-index: 4;
}
.badge.new   { background: var(--accent); }
.badge.limit { background: var(--accent-2); }

.card-body {
  padding: 18px 20px 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.card-title {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px;
}
.card-title h3 {
  font-size: 19px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}
.card-title .price {
  font-size: 15px; font-weight: 500;
  letter-spacing: .02em;
}
.card-sub {
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: -4px;
}

.card-actions {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-top: 6px;
}
.color-label {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft);
}
.color-label strong { color: var(--ink); font-weight: 600; }

.add-btn {
  padding: 10px 16px;
  background: var(--ink); color: var(--bg);
  border-radius: 999px;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.add-btn:hover { background: var(--accent); transform: translateY(-1px); }
.add-btn svg { width: 13px; height: 13px; }

/* ---------- STORY ---------- */
.story {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.story h2 { font-size: clamp(32px, 4.5vw, 56px); line-height: 1.05; }
.story h2 em { font-style: italic; color: var(--accent); font-weight: 500; }
.story p { color: var(--ink-soft); font-size: 16px; line-height: 1.7; margin: 18px 0 28px; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.pillar {
  background: #fff; border-radius: 12px; padding: 20px;
  border: 1px solid var(--line);
}
.pillar h4 {
  font-family: 'Inter', sans-serif;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 8px;
}
.pillar p { font-size: 13px; line-height: 1.55; margin: 0; }

.story-img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}
.story-img img {
  width: 100%; height: 100%; object-fit: cover;
  mix-blend-mode: multiply;
  animation: cardFloat 9s ease-in-out infinite;
}
@media (max-width: 860px) {
  .story-grid { grid-template-columns: 1fr; gap: 36px; }
  .pillars { grid-template-columns: 1fr; }
}

/* ---------- FOOTER ---------- */
footer {
  padding: 72px 0 32px;
  background: var(--ink);
  color: var(--bg);
}
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
}
.foot-grid h5 {
  font-family: 'Inter', sans-serif;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  margin-bottom: 18px; color: rgba(255,255,255,.6);
}
.foot-grid ul { list-style: none; padding: 0; margin: 0; }
.foot-grid li { padding: 6px 0; font-size: 14px; color: rgba(255,255,255,.86); cursor: pointer; transition: color .25s; }
.foot-grid li:hover { color: var(--accent); }
.foot-brand { font-family: 'Playfair Display', serif; font-size: 32px; letter-spacing: .2em; margin-bottom: 14px; }
.foot-brand small { display: block; font-family: 'Inter', sans-serif; font-size: 12px; letter-spacing: .2em; color: rgba(255,255,255,.5); margin-top: 8px; }
.news { display: flex; gap: 8px; margin-top: 14px; }
.news input {
  flex: 1; padding: 12px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,.2);
  background: transparent; color: #fff; font-family: inherit;
}
.news input::placeholder { color: rgba(255,255,255,.4); }
.news button {
  padding: 12px 18px; background: var(--accent); color: #fff;
  border-radius: 999px; font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
}
.legal {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 56px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12px; color: rgba(255,255,255,.4);
}
@media (max-width: 860px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .foot-grid { grid-template-columns: 1fr; }
  .legal { flex-direction: column; gap: 12px; text-align: center; }
}

/* ---------- CART PANEL ---------- */
.scrim {
  position: fixed; inset: 0;
  background: rgba(20,17,15,.4);
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
  z-index: 90;
}
.scrim.open { opacity: 1; visibility: visible; }

.panel {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(440px, 100vw);
  background: var(--bg);
  z-index: 100;
  transform: translateX(100%);
  transition: transform .5s var(--ease);
  display: flex; flex-direction: column;
  box-shadow: -40px 0 80px -20px rgba(0,0,0,.4);
}
.panel.open { transform: translateX(0); }
.panel-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; border-bottom: 1px solid var(--line);
}
.panel-head h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 600;
}
.panel-head .x {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line); display: inline-flex; align-items: center; justify-content: center;
  transition: background .25s var(--ease);
}
.panel-head .x:hover { background: var(--bg-soft); }

.panel-body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.empty {
  height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
  text-align: center; color: var(--ink-soft);
}
.empty .e-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--bg-soft);
  display: grid; place-items: center;
}
.empty h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; color: var(--ink);
}
.empty p { font-size: 14px; max-width: 240px; line-height: 1.5; }

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cart-item:last-child { border-bottom: 0; }
.cart-thumb {
  width: 72px; height: 72px; border-radius: 10px;
  background: var(--bg-soft); overflow: hidden;
}
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; }
.cart-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 600;
}
.cart-info .meta {
  font-size: 12px; color: var(--ink-soft);
  letter-spacing: .08em; text-transform: uppercase;
  margin-top: 4px;
}
.cart-info .qty {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 8px;
}
.qty button {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--bg-soft);
  transition: background .2s;
}
.qty button:hover { background: var(--ink); color: var(--bg); }
.qty span { font-size: 13px; min-width: 18px; text-align: center; }
.cart-side { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.cart-side .price { font-weight: 600; }
.cart-side .remove {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft);
  transition: color .2s;
}
.cart-side .remove:hover { color: var(--accent); }

.panel-foot {
  padding: 22px 24px; border-top: 1px solid var(--line);
  background: rgba(255,255,255,.5);
}
.row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; color: var(--ink-soft);
  padding: 6px 0;
}
.row.total {
  font-size: 18px; color: var(--ink); font-weight: 600;
  margin-top: 8px; padding-top: 14px; border-top: 1px solid var(--line);
}
.checkout {
  margin-top: 14px; width: 100%;
  padding: 16px; background: var(--ink); color: var(--bg);
  border-radius: 999px;
  font-size: 13px; letter-spacing: .18em; text-transform: uppercase;
  transition: background .25s var(--ease);
}
.checkout:hover { background: var(--accent); }

/* ---------- TOAST ---------- */
.toast {
  position: fixed; left: 50%; bottom: 32px;
  transform: translate(-50%, 140%);
  background: var(--ink); color: var(--bg);
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; letter-spacing: .04em;
  z-index: 95;
  transition: transform .5s var(--ease);
}
.toast.show { transform: translate(-50%, 0); }
.toast .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(192,82,47,.3);
}
.toast .name { font-family: 'Playfair Display', serif; font-size: 15px; }

/* ---------- FLY-TO-CART ---------- */
.fly {
  position: fixed;
  width: 80px; height: 80px;
  border-radius: 12px; overflow: hidden;
  z-index: 200;
  box-shadow: var(--shadow-md);
  pointer-events: none;
  transition:
    transform 1s var(--ease),
    opacity   1s var(--ease),
    width     1s var(--ease),
    height    1s var(--ease);
}
.fly img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- UTILITY ---------- */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
