
:root {
  --pine: #102018;
  --pine-2: #172b21;
  --moss: #60715f;
  --gold: #b9955f;
  --cream: #efe5d1;
  --paper: #f7f3ea;
  --paper-2: #ebe3d3;
  --ink: #142019;
  --muted: #687169;
  --line: rgba(16, 32, 24, .16);
  --white-line: rgba(255,255,255,.18);
  --shadow: 0 30px 90px rgba(11, 25, 17, .18);
  --shell: min(1320px, calc(100% - 48px));
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.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;
}
.skip-link {
  position: fixed; top: -100px; left: 20px; z-index: 999;
  padding: 12px 18px; color: var(--pine); background: var(--cream); border-radius: 999px;
}
.skip-link:focus { top: 20px; }
.page-noise {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 1000; width: 100%; height: 3px;
  background: transparent; pointer-events: none;
}
.scroll-progress span { display: block; width: 0; height: 100%; background: var(--gold); }

h1, h2, h3, p, blockquote { margin-top: 0; }
h1, h2, h3, blockquote { font-family: var(--serif); font-weight: 500; letter-spacing: -.05em; }
h1 em, h2 em, blockquote em { color: var(--gold); font-weight: 500; }
h2 { font-size: clamp(3.4rem, 6.8vw, 7rem); line-height: .88; margin-bottom: 0; }
h3 { font-size: clamp(2rem, 3.8vw, 4rem); line-height: .9; }
.section { padding: 140px 0; }
.eyebrow {
  margin-bottom: 24px; color: var(--moss); font-size: .69rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
}
.eyebrow.light { color: var(--cream); }

.site-header {
  position: fixed; top: 16px; left: 50%; z-index: 100; width: min(1420px, calc(100% - 32px));
  transform: translateX(-50%);
}
.nav-shell {
  min-height: 74px; padding: 0 16px 0 22px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  color: var(--cream); border: 1px solid rgba(255,255,255,.18); border-radius: 999px;
  background: rgba(10, 25, 17, .62); box-shadow: 0 20px 50px rgba(0,0,0,.18);
  backdrop-filter: blur(22px) saturate(125%);
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 49px; height: 33px; fill: none; stroke: currentColor; stroke-width: 2.1;
  stroke-linecap: round; stroke-linejoin: round;
}
.brand strong {
  display: block; font-family: var(--serif); font-size: 1.03rem; font-weight: 600;
  letter-spacing: .025em; text-transform: uppercase;
}
.brand small {
  display: block; margin-top: 1px; color: rgba(255,255,255,.5); font-size: .5rem;
  font-weight: 700; letter-spacing: .17em; text-transform: uppercase;
}
.desktop-nav { display: flex; align-items: center; gap: 30px; }
.desktop-nav a {
  position: relative; color: rgba(255,255,255,.8); text-decoration: none; font-size: .78rem; font-weight: 600;
}
.desktop-nav a:after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px;
  background: var(--gold); transition: width .25s ease;
}
.desktop-nav a:hover:after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.live-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 12px;
  color: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.12); border-radius: 999px;
  font-size: .64rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
}
.live-pill i {
  width: 6px; height: 6px; border-radius: 50%; background: #c7a66d;
  box-shadow: 0 0 0 5px rgba(199,166,109,.1);
}
.live-pill.is-live i { background: #74c996; box-shadow: 0 0 0 5px rgba(116,201,150,.12); }
.store-link {
  padding: 12px 17px; color: var(--pine); background: var(--cream); border-radius: 999px;
  text-decoration: none; font-size: .75rem; font-weight: 700;
}
.menu-toggle {
  display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; color: var(--cream);
}
.menu-toggle span {
  display: block; width: 22px; height: 1px; margin: 6px auto; background: currentColor;
  transition: transform .25s ease;
}
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-menu {
  display: none; margin-top: 8px; padding: 14px; border: 1px solid rgba(255,255,255,.15); border-radius: 24px;
  color: var(--cream); background: rgba(10,25,17,.92); backdrop-filter: blur(20px); box-shadow: var(--shadow);
}
.mobile-menu a { display: block; padding: 14px; text-decoration: none; font-weight: 600; }

.hero {
  position: relative; min-height: 100svh; display: flex; align-items: end; overflow: hidden; color: white; background: var(--pine);
}
.hero-image, .hero-wash { position: absolute; inset: 0; }
.hero-image {
  background: url("assets/images/hero.webp") center 48% / cover no-repeat;
  transform: scale(1.08);
  will-change: transform;
}
.hero-wash {
  background:
    radial-gradient(circle at 76% 24%, rgba(201,166,109,.16), transparent 22%),
    linear-gradient(90deg, rgba(7,18,12,.93) 0%, rgba(7,18,12,.69) 43%, rgba(7,18,12,.18) 76%, rgba(7,18,12,.08) 100%),
    linear-gradient(0deg, rgba(7,18,12,.86) 0%, transparent 45%);
}
.hero-ornament {
  position: absolute; z-index: 1; border: 1px solid rgba(255,255,255,.16); border-radius: 50%;
}
.hero-ornament-one { width: 370px; height: 370px; top: 16%; right: 8%; }
.hero-ornament-two { width: 230px; height: 230px; top: 24%; right: 13%; border-color: rgba(185,149,95,.35); }
.hero-grid {
  position: relative; z-index: 2; padding: 180px 0 112px;
  display: grid; grid-template-columns: 1fr .35fr; align-items: end; gap: 70px;
}
.kicker {
  display: flex; align-items: center; gap: 12px; margin-bottom: 28px;
  color: rgba(255,255,255,.67); font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
}
.kicker span { width: 42px; height: 1px; background: var(--gold); }
.hero h1 { max-width: 900px; margin-bottom: 34px; font-size: clamp(5rem, 11.5vw, 11rem); line-height: .75; }
.hero .lead { max-width: 610px; margin-bottom: 34px; color: rgba(255,255,255,.72); font-size: 1.12rem; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  min-height: 54px; padding: 0 24px; border: 1px solid transparent; border-radius: 999px;
  text-decoration: none; font-size: .78rem; font-weight: 700; letter-spacing: .02em;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.button:hover { transform: translateY(-3px); }
.button-gold { color: var(--pine); background: var(--gold); }
.button-glass { color: white; border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.07); backdrop-filter: blur(10px); }
.button-cream { color: var(--pine); background: var(--cream); }
.hero-card {
  max-width: 330px; margin-left: auto; padding: 26px;
  border: 1px solid rgba(255,255,255,.19); border-radius: 24px;
  background: rgba(255,255,255,.07); backdrop-filter: blur(16px);
}
.hero-card-label {
  display: block; margin-bottom: 50px; color: var(--gold); font-size: .65rem;
  font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
}
.hero-card p { margin-bottom: 36px; font-family: var(--serif); font-size: 1.35rem; line-height: 1.24; }
.hero-card div { display: flex; justify-content: space-between; color: rgba(255,255,255,.5); font-size: .65rem; text-transform: uppercase; }
.hero-bottom {
  position: absolute; z-index: 3; left: 0; right: 0; bottom: 0;
  border-top: 1px solid rgba(255,255,255,.14);
}
.hero-bottom-inner {
  min-height: 66px; display: grid; grid-template-columns: repeat(3, 1fr) auto; align-items: center; gap: 30px;
  color: rgba(255,255,255,.48); font-size: .65rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
}
.hero-bottom-inner span:before { content: "◆"; margin-right: 8px; color: var(--gold); font-size: .48rem; }
.hero-bottom-inner a { color: var(--cream); text-decoration: none; text-align: right; }

.marquee { overflow: hidden; padding: 19px 0; color: var(--cream); background: var(--pine); border-top: 1px solid rgba(255,255,255,.08); }
.marquee-track {
  width: max-content; display: flex; align-items: center; gap: 34px;
  animation: marquee 32s linear infinite;
}
.marquee span { font-family: var(--serif); font-size: 1.1rem; font-style: italic; }
.marquee i { color: var(--gold); font-size: .45rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

.world { background: var(--paper); }
.editorial-heading {
  display: grid; grid-template-columns: .65fr 1.45fr .6fr; align-items: end; gap: 50px; margin-bottom: 70px;
}
.editorial-heading .eyebrow { align-self: start; margin-top: 10px; }
.editorial-heading .side-copy { margin: 0 0 6px; color: var(--muted); }
.world-grid { display: grid; grid-template-columns: 1.3fr .7fr; grid-template-rows: repeat(2, 380px); gap: 18px; }
.world-panel {
  position: relative; overflow: hidden; border-radius: 26px; cursor: pointer; background: var(--pine);
  box-shadow: 0 20px 55px rgba(16,32,24,.08);
}
.world-large { grid-row: 1 / 3; }
.world-panel img { height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.8,.2,1), filter .5s ease; }
.world-panel:hover img { transform: scale(1.055); filter: saturate(.84); }
.world-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,18,12,.85), transparent 68%); }
.world-content { position: absolute; inset: auto 0 0; padding: 34px; color: white; }
.world-content > span { display: block; margin-bottom: 18px; color: var(--gold); font-size: .66rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.world-content h3 { margin-bottom: 16px; }
.world-content p { max-width: 330px; color: rgba(255,255,255,.66); }
.world-content button {
  padding: 0; border: 0; color: var(--cream); background: transparent; cursor: pointer;
  font-size: .75rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
}

.shop { background: var(--paper-2); }
.shop-head {
  display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 60px; margin-bottom: 60px;
}
.shop-tools { padding-bottom: 8px; }
.shop-tools > p { margin-bottom: 22px; color: var(--muted); font-size: .82rem; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter {
  min-height: 42px; padding: 0 16px; border: 1px solid var(--line); border-radius: 999px;
  color: var(--pine); background: rgba(255,255,255,.48); cursor: pointer; font-size: .73rem; font-weight: 700;
  transition: .22s ease;
}
.filter:hover, .filter.is-active { color: var(--cream); border-color: var(--pine); background: var(--pine); }

.product-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px 18px; }
.product-card {
  grid-column: span 4; overflow: hidden; border-radius: 24px; background: rgba(255,255,255,.6);
  border: 1px solid rgba(16,32,24,.1); box-shadow: 0 18px 50px rgba(16,32,24,.06);
  transform-style: preserve-3d; transition: transform .35s ease, box-shadow .35s ease;
}
.product-card:nth-child(5n + 1), .product-card:nth-child(5n + 5) { grid-column: span 6; }
.product-card:hover { box-shadow: 0 28px 80px rgba(16,32,24,.16); }
.product-image {
  position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: #ded8cb;
}
.product-card:nth-child(5n + 1) .product-image,
.product-card:nth-child(5n + 5) .product-image { aspect-ratio: 1.35 / 1; }
.product-image img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.8,.2,1), opacity .35s ease;
}
.product-image img.secondary { position: absolute; inset: 0; opacity: 0; }
.product-card:hover .product-image img.primary { transform: scale(1.035); }
.product-card:hover .product-image img.secondary { opacity: 1; transform: scale(1.03); }
.product-index {
  position: absolute; left: 16px; top: 16px; width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 50%; color: var(--pine); background: rgba(247,243,234,.9); backdrop-filter: blur(8px);
  font-size: .65rem; font-weight: 700;
}
.product-badge {
  position: absolute; right: 16px; top: 16px; padding: 9px 11px; border-radius: 999px;
  color: var(--cream); background: rgba(16,32,24,.82); backdrop-filter: blur(8px);
  font-size: .58rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.product-info { padding: 24px; }
.product-meta { display: flex; justify-content: space-between; gap: 20px; color: var(--moss); font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.product-info h3 { margin: 12px 0 12px; font-size: clamp(1.7rem, 2.6vw, 2.6rem); line-height: .98; }
.product-info p { min-height: 48px; margin-bottom: 22px; color: var(--muted); font-size: .88rem; }
.product-footer { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.product-link {
  display: inline-flex; align-items: center; gap: 8px; color: var(--pine); text-decoration: none;
  font-size: .72rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
}
.product-link:after { content: "↗"; transition: transform .2s ease; }
.product-link:hover:after { transform: translate(3px,-3px); }
.product-price { font-family: var(--serif); font-size: 1.12rem; }
.catalog-error {
  margin-top: 24px; padding: 18px 20px; border: 1px solid rgba(185,149,95,.45);
  border-radius: 16px; color: #715f42; background: rgba(255,248,231,.62); font-size: .84rem;
}
.skeleton {
  grid-column: span 4; min-height: 520px; border-radius: 24px;
  background: linear-gradient(90deg, rgba(255,255,255,.35), rgba(255,255,255,.7), rgba(255,255,255,.35));
  background-size: 200% 100%; animation: shimmer 1.5s infinite;
}
@keyframes shimmer { to { background-position: -200% 0; } }

.statement {
  position: relative; overflow: hidden; padding: 145px 0; color: white; background: var(--pine);
}
.statement-art { position: absolute; inset: auto 0 0; opacity: .18; }
.statement-art svg { display: block; width: 100%; height: 420px; fill: none; stroke: var(--cream); stroke-width: 1.2; }
.statement-inner { position: relative; z-index: 2; text-align: center; }
.statement blockquote { margin: 0; font-size: clamp(4rem, 9vw, 9.5rem); line-height: .84; }

.story { background: var(--paper); }
.story-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 105px; align-items: center; }
.story-visual { position: relative; }
.story-visual img { min-height: 720px; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow); }
.story-badge {
  position: absolute; right: -50px; bottom: 45px; width: 205px; height: 205px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border-radius: 50%; color: var(--cream); background: var(--pine); text-align: center;
  box-shadow: var(--shadow); transform: rotate(-8deg);
}
.story-badge span { font-size: .62rem; letter-spacing: .13em; text-transform: uppercase; }
.story-badge strong { margin: 5px 0; font-family: var(--serif); font-size: 1.65rem; font-weight: 500; }
.story-copy h2 { margin-bottom: 34px; }
.story-lead { font-family: var(--serif); font-size: 1.6rem; line-height: 1.25; color: var(--ink) !important; }
.story-copy > p { max-width: 600px; color: var(--muted); }
.story-points {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 38px 0;
}
.story-points span {
  padding-top: 15px; border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem;
}
.story-points b { display: block; margin-bottom: 8px; color: var(--gold); }
.underline-link {
  display: inline-block; padding-bottom: 5px; border-bottom: 1px solid var(--ink);
  color: var(--ink); text-decoration: none; font-size: .78rem; font-weight: 700;
}

.coming { padding: 100px 0; color: white; background: #0a1710; }
.coming-grid { display: grid; grid-template-columns: .35fr 1.1fr .55fr; gap: 70px; align-items: end; }
.coming-label {
  width: 145px; height: 145px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.2); border-radius: 50%; text-align: center;
}
.coming-label span { font-family: var(--serif); font-size: 1.1rem; }
.coming-label small { margin-top: 5px; color: var(--gold); font-size: .57rem; letter-spacing: .12em; text-transform: uppercase; }
.coming-copy p { color: rgba(255,255,255,.6); }
.coming-copy .button { margin-top: 14px; }

.footer { padding: 90px 0 28px; color: rgba(255,255,255,.68); background: #07110b; }
.footer-main { display: grid; grid-template-columns: 1.1fr .45fr .5fr 1fr; gap: 70px; padding-bottom: 80px; }
.footer-brand { color: var(--cream); }
.footer-brand .brand-mark { margin-bottom: 25px; }
.footer-brand h2 { font-size: clamp(3.2rem, 5vw, 5.3rem); }
.footer-nav { display: flex; flex-direction: column; gap: 13px; }
.footer-nav > span, .footer-note > span {
  margin-bottom: 8px; color: var(--gold); font-size: .62rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
}
.footer-nav a { text-decoration: none; font-size: .85rem; }
.footer-note p { max-width: 400px; margin: 0; color: rgba(255,255,255,.44); font-size: .8rem; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 20px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.38); font-size: .68rem;
}
.footer-bottom a { color: inherit; text-decoration: none; }

.reveal-up { opacity: 0; transform: translateY(26px); animation: revealUp .9s .15s cubic-bezier(.16,1,.3,1) forwards; }
.delay-2 { animation-delay: .38s; }
@keyframes revealUp { to { opacity: 1; transform: none; } }
.reveal-card { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s cubic-bezier(.16,1,.3,1); }
.reveal-card.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .section { padding: 110px 0; }
  .desktop-nav, .live-pill { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu.is-open { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .hero-bottom-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-bottom-inner span:nth-child(3) { display: none; }
  .editorial-heading { grid-template-columns: 1fr 2fr; }
  .editorial-heading .side-copy { grid-column: 2; }
  .product-card, .product-card:nth-child(5n + 1), .product-card:nth-child(5n + 5) { grid-column: span 6; }
  .story-grid { gap: 65px; }
  .story-badge { right: 25px; }
  .coming-grid { grid-template-columns: .35fr 1fr; }
  .coming-copy { grid-column: 2; }
  .footer-main { grid-template-columns: 1.2fr .6fr .6fr; }
  .footer-note { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 28px, 680px); }
  .section { padding: 85px 0; }
  .site-header { top: 10px; width: calc(100% - 20px); }
  .nav-shell { min-height: 64px; padding: 0 10px 0 16px; }
  .brand-mark { width: 42px; }
  .brand strong { font-size: .9rem; }
  .brand small { font-size: .43rem; }
  .store-link { display: none; }
  .hero { min-height: 820px; }
  .hero-image { background-position: 62% 45%; }
  .hero-wash {
    background:
      radial-gradient(circle at 70% 20%, rgba(201,166,109,.15), transparent 25%),
      linear-gradient(0deg, rgba(7,18,12,.96) 0%, rgba(7,18,12,.73) 58%, rgba(7,18,12,.2) 100%);
  }
  .hero-ornament-one { width: 280px; height: 280px; right: -95px; }
  .hero-ornament-two { width: 180px; height: 180px; right: -45px; }
  .hero-grid { padding: 145px 0 130px; }
  .hero h1 { font-size: clamp(4.6rem, 22vw, 7rem); }
  .hero .lead { font-size: 1rem; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-bottom-inner { min-height: 70px; grid-template-columns: 1fr auto; }
  .hero-bottom-inner span:nth-child(2), .hero-bottom-inner span:nth-child(3) { display: none; }

  .editorial-heading, .shop-head, .story-grid, .coming-grid { grid-template-columns: 1fr; gap: 30px; }
  .editorial-heading .side-copy, .coming-copy { grid-column: auto; }
  .world-grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 370px); }
  .world-large { grid-row: auto; }
  .shop-tools { padding-bottom: 0; }
  .product-card, .product-card:nth-child(5n + 1), .product-card:nth-child(5n + 5) { grid-column: 1 / -1; }
  .product-card:nth-child(5n + 1) .product-image, .product-card:nth-child(5n + 5) .product-image { aspect-ratio: 1 / 1; }
  .statement { padding: 110px 0; }
  .statement blockquote { font-size: clamp(3.3rem, 15vw, 5.5rem); }
  .story-visual img { min-height: 500px; }
  .story-badge { width: 155px; height: 155px; right: 14px; bottom: 20px; }
  .story-badge strong { font-size: 1.3rem; }
  .story-points { grid-template-columns: 1fr; }
  .coming-label { width: 120px; height: 120px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 42px 24px; }
  .footer-brand, .footer-note { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *:before, *:after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal-card, .reveal-up { opacity: 1; transform: none; }
}
