:root {
  --cream-50: #fffdf8;
  --cream-100: #fbf7ed;
  --cream-200: #f2ead9;
  --cream-300: #e6d8bd;
  --olive-50: #eef2ec;
  --olive-100: #d9e0d5;
  --olive-500: #556a57;
  --olive-700: #3b503e;
  --olive-800: #314334;
  --olive-900: #243127;
  --gold-100: #f2e8d1;
  --gold-300: #d4bd83;
  --gold-500: #b38b3f;
  --gold-600: #7f602b;
  --walnut-500: #765645;
  --walnut-700: #593d31;
  --walnut-900: #38261f;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua",
    Palatino, Georgia, serif;
  --radius-card: 1.35rem;
  --radius-sheet: 1.75rem;
  --radius-pill: 999px;
  --shadow-soft: 0 14px 45px -28px rgba(36, 49, 39, 0.38);
  --shadow-lift: 0 18px 55px -30px rgba(36, 49, 39, 0.55);
  --shadow-rich: 0 28px 70px -36px rgba(36, 49, 39, 0.62);
  --header-height: 100px;
  --page-gutter: clamp(1rem, 4vw, 1.5rem);
  --wrap: 1152px;
  color: var(--olive-900);
  background: var(--cream-100);
  font-family: var(--font-sans);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  overscroll-behavior-x: none;
  scroll-behavior: auto;
  scroll-padding-top: calc(var(--header-height) + 14px);
  background: var(--cream-100);
}

body {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 100vh;
  margin: 0;
  overflow-x: clip;
  overscroll-behavior-x: none;
  background:
    radial-gradient(circle at 8% 2%, rgba(179, 139, 63, 0.08), transparent 28rem),
    var(--cream-100);
}

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

img,
picture,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
[role="button"] {
  -webkit-tap-highlight-color: transparent;
}

button,
a {
  touch-action: manipulation;
}

button:focus-visible,
a:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--cream-50);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--olive-900);
}

::selection {
  color: var(--cream-50);
  background: var(--olive-500);
}

h1,
h2,
h3,
p,
blockquote,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.65rem, 6.4vw, 5.75rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.2rem, 4.8vw, 4.35rem);
  line-height: 1.02;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.18;
}

.wrap {
  width: min(100% - (2 * var(--page-gutter)), var(--wrap));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(4.75rem, 9vw, 8rem);
  scroll-margin-top: calc(var(--header-height) + 10px);
}

.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 200;
  padding: 0.8rem 1rem;
  border-radius: 0.75rem;
  color: var(--cream-50);
  background: var(--olive-900);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

main[tabindex="-1"]:focus {
  outline: none;
}

.eyebrow {
  margin-bottom: 1.1rem;
  color: var(--gold-600);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.19em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--gold-300);
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0 1.25rem;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 760;
  line-height: 1;
  white-space: nowrap;
  box-shadow: var(--shadow-soft);
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.button svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button--large {
  min-height: 52px;
  padding-inline: 1.5rem;
  font-size: 0.97rem;
}

.button--small {
  min-height: 40px;
  padding-inline: 1rem;
  font-size: 0.76rem;
}

.button--olive {
  color: var(--cream-50);
  background: var(--olive-800);
}

.button--gold {
  color: #1b261d;
  background: var(--gold-500);
}

.button--cream {
  color: var(--olive-900);
  background: rgba(255, 253, 248, 0.96);
}

.button--outline {
  border-color: rgba(49, 67, 52, 0.25);
  color: var(--olive-900);
  background: var(--cream-50);
}

.button--outline-light {
  border-color: rgba(255, 253, 248, 0.46);
  color: var(--cream-50);
  background: rgba(255, 253, 248, 0.08);
  backdrop-filter: blur(8px);
}

@media (hover: hover) {
  .button:hover {
    transform: translateY(-2px) scale(1.015);
    box-shadow: var(--shadow-lift);
  }

  .button--olive:hover {
    background: var(--olive-900);
  }

  .button--gold:hover {
    background: var(--gold-300);
  }

  .button--cream:hover {
    background: var(--cream-200);
  }

  .button--outline:hover {
    border-color: var(--olive-500);
    background: var(--olive-50);
  }

  .button--outline-light:hover {
    border-color: var(--cream-50);
    background: rgba(255, 253, 248, 0.18);
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--header-height);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 253, 248, 0.1);
  color: var(--cream-50);
  background: var(--olive-800);
  box-shadow: var(--shadow-soft);
}

/* Keep the private WordPress preview usable without changing the public layout. */
.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

.site-header__media {
  position: absolute;
  inset-block: 0;
  right: 0;
  z-index: 0;
  width: 64%;
  overflow: hidden;
  pointer-events: none;
}

.site-header__video,
.site-header__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.site-header__poster {
  display: none;
}

.site-header__gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #314334 0%,
    #314334 24%,
    rgba(49, 67, 52, 0.94) 34%,
    rgba(49, 67, 52, 0.48) 47%,
    rgba(49, 67, 52, 0.12) 64%,
    rgba(49, 67, 52, 0) 82%
  );
}

.site-header__inner {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100% - (2 * var(--page-gutter)), var(--wrap));
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-inline: auto;
}

.brand {
  display: grid;
  min-width: 0;
  align-content: center;
  justify-items: start;
  gap: 0;
}

.brand__home {
  display: block;
}

.brand img {
  width: 150px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.brand__place {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.125rem;
  color: var(--cream-200);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.brand__place svg {
  width: 0.78rem;
  height: 0.78rem;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold-300);
  stroke-width: 1.8;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.35rem;
  margin-left: auto;
  color: rgba(255, 253, 248, 0.84);
  font-size: 0.77rem;
  font-weight: 650;
}

.desktop-nav a {
  position: relative;
  padding-block: 0.7rem;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.25rem;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold-300);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--cream-50);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-header__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.45rem;
}

.rating-pill {
  display: inline-flex;
  min-height: 20px;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.25rem;
  padding: 0.25rem 0.5rem;
  border: 1px solid rgba(255, 253, 248, 0.5);
  border-radius: 0.75rem;
  color: var(--olive-900);
  background: rgba(255, 253, 248, 0.95);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.rating-pill strong {
  font-size: 10px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.rating-pill__stars {
  display: flex;
  align-items: center;
  gap: 1px;
  color: var(--gold-500);
}

.rating-pill__stars svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
  stroke: currentColor;
  animation: header-star-twinkle 3.2s ease-in-out infinite;
}

.rating-pill__stars svg:nth-child(2) {
  animation-delay: 120ms;
}

.rating-pill__stars svg:nth-child(3) {
  animation-delay: 240ms;
}

.rating-pill__stars svg:nth-child(4) {
  animation-delay: 360ms;
}

.rating-pill__stars svg:nth-child(5) {
  animation-delay: 480ms;
}

.rating-pill__count {
  padding-left: 0.375rem;
  border-left: 1px solid rgba(36, 49, 39, 0.15);
  color: var(--walnut-700);
  font-size: 8px;
  font-weight: 700;
}

@keyframes header-star-twinkle {
  0%,
  62%,
  100% {
    filter: brightness(1);
    transform: scale(1) rotate(0);
  }

  72% {
    filter: brightness(1.22);
    transform: scale(1.28) rotate(-8deg);
  }

  82% {
    filter: brightness(1);
    transform: scale(1) rotate(0);
  }
}

.menu-toggle {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-content: center;
  gap: 4px;
  padding: 0;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 50%;
  color: var(--cream-50);
  background: rgba(36, 49, 39, 0.74);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 220ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(5.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-5.5px) rotate(-45deg);
}

.header-carta {
  display: none;
}

.mobile-menu {
  position: fixed;
  top: var(--header-height);
  right: 0;
  z-index: 65;
  width: min(88vw, 22rem);
  max-height: calc(100svh - var(--header-height) - 1rem);
  padding: 1rem;
  overflow-y: auto;
  border: 1px solid rgba(255, 253, 248, 0.12);
  border-radius: 0 0 0 var(--radius-sheet);
  color: var(--cream-50);
  background: rgba(36, 49, 39, 0.985);
  box-shadow: var(--shadow-rich);
  animation: menu-in 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  padding: 1rem 0.6rem;
  border-bottom: 1px solid rgba(255, 253, 248, 0.1);
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.mobile-menu__actions {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.menu-backdrop {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 62;
  width: 100%;
  height: calc(100svh - var(--header-height));
  padding: 0;
  border: 0;
  background: rgba(36, 49, 39, 0.36);
  backdrop-filter: blur(3px);
}

@keyframes menu-in {
  from {
    opacity: 0;
    transform: translateX(1rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Hero */
.hero {
  position: relative;
  display: block;
  min-height: clamp(520px, 78svh, 600px);
  overflow: hidden;
  color: var(--cream-50);
  background: var(--olive-900);
}

.hero__picture {
  position: absolute;
  inset: 0;
  display: block;
  height: 100%;
  overflow: hidden;
  background: #d9c9aa;
}

.hero__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
}

.hero__shade {
  position: absolute;
  inset: 0;
  display: block;
  background:
    linear-gradient(
      180deg,
      rgba(24, 34, 26, 0.9) 0%,
      rgba(24, 34, 26, 0.64) 37%,
      rgba(24, 34, 26, 0.12) 72%,
      rgba(24, 34, 26, 0) 100%
    ),
    linear-gradient(
      90deg,
      rgba(24, 34, 26, 0.72) 0%,
      rgba(24, 34, 26, 0.2) 67%,
      rgba(24, 34, 26, 0) 100%
    );
}

.hero__content {
  position: relative;
  display: flex;
  min-height: clamp(520px, 78svh, 600px);
  align-items: flex-start;
  padding-block: clamp(1.5rem, 6vw, 2rem) 2rem;
}

.hero__copy {
  width: min(88%, 20rem);
  max-width: 20rem;
}

.hero h1 {
  max-width: 9.2ch;
  margin-bottom: 0.85rem;
  font-size: clamp(2.05rem, 9.5vw, 2.55rem);
  line-height: 0.96;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.hero .eyebrow {
  margin-bottom: 0.7rem;
  font-size: 0.62rem;
}

.hero__lead {
  max-width: 19rem;
  margin-bottom: 1.15rem;
  color: rgba(255, 253, 248, 0.9);
  font-size: 0.95rem;
  line-height: 1.4;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero__actions .button {
  min-height: 44px;
  padding-inline: 1rem;
  font-size: 0.82rem;
}

.product-strip {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid rgba(49, 67, 52, 0.12);
  color: var(--olive-800);
  background: var(--cream-50);
  box-shadow: var(--shadow-soft);
}

.product-strip__inner {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: clamp(0.7rem, 3vw, 2rem);
  font-family: var(--font-display);
  font-size: clamp(0.82rem, 2.2vw, 1.06rem);
  font-weight: 600;
  text-align: center;
}

.product-strip i {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold-500);
}

/* Pistachio */
.pistachio {
  background:
    radial-gradient(circle at 84% 20%, rgba(85, 106, 87, 0.12), transparent 24rem),
    var(--cream-100);
}

.split-layout {
  display: grid;
  align-items: center;
  gap: clamp(2.8rem, 8vw, 7rem);
}

.pistachio__media {
  position: relative;
  width: min(82vw, 19rem);
  aspect-ratio: 4 / 3;
  justify-self: center;
  overflow: hidden;
  border-radius: var(--radius-sheet);
  background: var(--olive-100);
  box-shadow: var(--shadow-rich);
}

.pistachio__media picture,
.pistachio__media img {
  width: 100%;
  height: 100%;
}

.pistachio__media img {
  object-fit: cover;
  object-position: center 44%;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.media-stamp {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: 8rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(255, 253, 248, 0.45);
  border-radius: 0.9rem;
  color: var(--cream-50);
  background: rgba(36, 49, 39, 0.84);
  box-shadow: var(--shadow-soft);
  font-size: 0.68rem;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  backdrop-filter: blur(7px);
}

.section-copy__lead {
  max-width: 38rem;
  margin-bottom: 1.7rem;
  color: rgba(36, 49, 39, 0.76);
  font-size: clamp(1.06rem, 2.4vw, 1.28rem);
  line-height: 1.7;
}

.texture-note {
  display: flex;
  max-width: 30rem;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
  color: var(--walnut-700);
  font-size: 0.82rem;
  font-weight: 650;
}

.texture-note p {
  margin-bottom: 0;
}

.texture-note__line {
  width: 2.5rem;
  height: 1px;
  flex: 0 0 auto;
  background: var(--gold-500);
}

/* Editorial gallery */
.gallery-section {
  border-block: 1px solid rgba(49, 67, 52, 0.08);
  background: var(--cream-50);
}

.section-heading {
  display: grid;
  align-items: end;
  gap: 1rem;
  margin-bottom: clamp(2.2rem, 5vw, 4rem);
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 31rem;
  margin-bottom: 0.25rem;
  color: rgba(36, 49, 39, 0.68);
  font-size: 1.03rem;
  line-height: 1.65;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.editorial-card {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--olive-100);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.editorial-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: linear-gradient(0deg, rgba(36, 49, 39, 0.74), transparent 58%);
}

.editorial-card picture,
.editorial-card img {
  width: 100%;
  height: 100%;
}

.editorial-card picture {
  position: absolute;
  inset: 0;
}

.editorial-card img {
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.editorial-card__label {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  color: var(--cream-50);
}

.editorial-card__label > span {
  display: inline-flex;
  width: 1.75rem;
  height: 1.75rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
  border: 1px solid rgba(255, 253, 248, 0.48);
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 800;
}

.editorial-card__label h3 {
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.editorial-card__label p {
  max-width: 23rem;
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.82rem;
  line-height: 1.5;
}

.editorial-card__corner {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(255, 253, 248, 0.35);
  border-radius: 0.8rem;
  color: var(--cream-50);
  background: rgba(36, 49, 39, 0.72);
  font-size: 0.68rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.editorial-card--gelato img {
  object-position: center 44%;
}

.editorial-card--tarta img,
.editorial-card--brownie img {
  object-position: center;
}

.editorial-card--real {
  min-height: 18rem;
}

.editorial-card--real img {
  object-position: center 44%;
}

.editorial-card--coffee img {
  object-position: center 45%;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 5vw, 3.75rem);
  text-align: center;
}

@media (hover: hover) {
  .pistachio__media:hover img,
  .editorial-card:hover img {
    transform: scale(1.02);
  }

  .editorial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lift);
  }

  .rating-pill:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lift);
  }
}

/* Reels */
.reels-section {
  overflow: hidden;
  color: var(--cream-50);
  background:
    radial-gradient(circle at 8% 18%, rgba(179, 139, 63, 0.18), transparent 22rem),
    radial-gradient(circle at 92% 74%, rgba(85, 106, 87, 0.38), transparent 25rem),
    var(--olive-900);
}

.section-heading--light > p {
  color: rgba(242, 234, 217, 0.72);
}

.reels-grid {
  display: grid;
  grid-auto-columns: min(82vw, 21rem);
  grid-auto-flow: column;
  gap: 1rem;
  margin-right: calc(-1 * var(--page-gutter));
  padding: 0.4rem var(--page-gutter) 1.3rem 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.reels-grid::-webkit-scrollbar {
  display: none;
}

.reel-card {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.13);
  border-radius: var(--radius-card);
  background: var(--olive-700);
  box-shadow: 0 22px 65px -34px rgba(0, 0, 0, 0.72);
  scroll-snap-align: center;
  isolation: isolate;
  transition: transform 240ms ease, border-color 180ms ease, box-shadow 240ms ease;
}

.reel-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(0deg, rgba(14, 24, 16, 0.86), transparent 48%),
    linear-gradient(180deg, rgba(14, 24, 16, 0.18), transparent 25%);
}

.reel-card picture,
.reel-card img {
  width: 100%;
  height: 100%;
}

.reel-card picture {
  position: absolute;
  inset: 0;
}

.reel-card img {
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reel-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.65);
  border-radius: 50%;
  color: var(--olive-900);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow-lift);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(8px);
}

.reel-card__play svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: currentColor;
}

.reel-card__number {
  position: absolute;
  bottom: 1.25rem;
  left: 1.15rem;
  z-index: 2;
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.38);
  border-radius: 50%;
  color: var(--gold-300);
  font-size: 0.6rem;
  font-weight: 800;
}

.reel-card__title {
  position: absolute;
  right: 1rem;
  bottom: 1.28rem;
  left: 3.55rem;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  line-height: 1.1;
}

.reel-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-pill);
  color: var(--olive-900);
  background: var(--gold-300);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reels-note {
  max-width: 38rem;
  margin: 1.25rem auto 0;
  color: rgba(242, 234, 217, 0.64);
  font-size: 0.74rem;
  line-height: 1.55;
  text-align: center;
}

@media (hover: hover) {
  .reel-card:hover {
    border-color: rgba(212, 189, 131, 0.58);
    box-shadow: 0 28px 78px -34px rgba(0, 0, 0, 0.9);
    transform: translateY(-4px);
  }

  .reel-card:hover img {
    transform: scale(1.02);
  }
}

.reel-dialog {
  width: min(calc(100% - 1.25rem), 27rem);
  max-width: 27rem;
  max-height: calc(100dvh - 1.25rem);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: var(--radius-sheet);
  color: var(--olive-900);
  background: var(--cream-50);
  box-shadow: 0 30px 90px -24px rgba(14, 24, 16, 0.88);
}

.reel-dialog::backdrop {
  background: rgba(14, 24, 16, 0.76);
  backdrop-filter: blur(8px);
}

.reel-dialog__panel {
  display: grid;
  max-height: calc(100dvh - 1.25rem);
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
}

.reel-dialog__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0.85rem;
  border-bottom: 1px solid rgba(49, 67, 52, 0.1);
}

.reel-dialog__header .eyebrow {
  margin-bottom: 0.2rem;
  font-size: 0.56rem;
}

.reel-dialog__header h2 {
  margin-bottom: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.reel-dialog__close {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(49, 67, 52, 0.16);
  border-radius: 50%;
  color: var(--olive-900);
  background: var(--cream-100);
  cursor: pointer;
}

.reel-dialog__close svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.reel-dialog__frame {
  width: min(100%, 25rem);
  aspect-ratio: 9 / 16;
  justify-self: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--cream-200), var(--cream-50));
}

.reel-dialog__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--cream-50);
}

.reel-dialog__actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
  padding: 0.75rem 0.85rem;
  border-top: 1px solid rgba(49, 67, 52, 0.1);
  background: var(--cream-50);
}

.reel-dialog__actions .button {
  min-width: 0;
  min-height: 44px;
  padding-inline: 0.9rem;
  font-size: 0.75rem;
}

/* Reviews */
.reviews-section {
  background:
    radial-gradient(circle at 92% 4%, rgba(179, 139, 63, 0.11), transparent 24rem),
    var(--cream-100);
}

.reviews-header {
  display: grid;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: clamp(2.4rem, 5vw, 4rem);
}

.reviews-header h2 {
  margin-bottom: 0.8rem;
}

.reviews-header__lead {
  max-width: 34rem;
  margin-bottom: 0;
  color: rgba(36, 49, 39, 0.67);
  line-height: 1.65;
}

.google-summary {
  display: inline-flex;
  width: fit-content;
  min-width: 13rem;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(49, 67, 52, 0.13);
  border-radius: 1rem;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.google-summary__score {
  font-family: var(--font-display);
  font-size: 2.05rem;
  font-weight: 700;
  line-height: 1;
}

.google-summary > span:last-child {
  display: grid;
  gap: 0.18rem;
}

.google-summary small {
  color: var(--walnut-700);
  font-size: 0.68rem;
  font-weight: 680;
}

.stars {
  color: var(--gold-500);
  font-size: 0.87rem;
  letter-spacing: 0.03em;
}

.carousel-shell {
  min-width: 0;
}

.reviews-track {
  display: grid;
  grid-auto-columns: min(88%, 22rem);
  grid-auto-flow: column;
  gap: 1rem;
  padding: 0.5rem 0.25rem 1.75rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  position: relative;
  display: grid;
  min-height: 31rem;
  align-content: start;
  overflow: hidden;
  border: 1px solid rgba(49, 67, 52, 0.11);
  border-radius: var(--radius-card);
  background: var(--cream-50);
  box-shadow: var(--shadow-soft);
  scroll-snap-align: start;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.review-card__media {
  display: block;
  height: 11.25rem;
  overflow: hidden;
  background: var(--olive-100);
}

.review-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.review-card__body {
  display: grid;
  align-content: start;
  padding: 1.25rem;
}

.review-card__source {
  width: fit-content;
  margin-bottom: 0.72rem;
  padding: 0.38rem 0.58rem;
  border-radius: var(--radius-pill);
  color: var(--olive-700);
  background: var(--olive-50);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.review-card .stars {
  margin-bottom: 0.6rem;
}

.review-card h3 {
  margin-bottom: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.review-card blockquote {
  margin-bottom: 1rem;
  color: rgba(36, 49, 39, 0.78);
  font-size: 0.88rem;
  line-height: 1.62;
}

.review-card__body > a {
  width: fit-content;
  margin-top: auto;
  color: var(--olive-700);
  font-size: 0.73rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(59, 80, 62, 0.35);
  text-underline-offset: 0.24rem;
}

.review-card--text {
  min-height: 31rem;
  align-content: start;
  padding-top: 3rem;
  background:
    radial-gradient(circle at 86% 12%, rgba(179, 139, 63, 0.17), transparent 9rem),
    var(--cream-50);
}

.review-card__monogram {
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  margin: 0 1.25rem 1.6rem;
  border: 1px solid rgba(49, 67, 52, 0.16);
  border-radius: 50%;
  color: var(--cream-50);
  background: var(--olive-700);
  font-family: var(--font-display);
  font-size: 1.55rem;
  box-shadow: var(--shadow-soft);
}

.carousel-controls {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.carousel-arrows {
  display: flex;
  gap: 0.55rem;
}

.carousel-arrows button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(49, 67, 52, 0.18);
  border-radius: 50%;
  color: var(--olive-900);
  background: var(--cream-50);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.carousel-arrows svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-arrows button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0;
}

.carousel-dots button {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.carousel-dots button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--olive-100);
  transform: translate(-50%, -50%);
  transition:
    width 180ms ease,
    border-radius 180ms ease,
    background-color 180ms ease;
}

.carousel-dots button[aria-current="true"]::after {
  width: 24px;
  border-radius: var(--radius-pill);
  background: var(--gold-500);
}

@media (hover: hover) {
  .google-summary:hover,
  .review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lift);
  }

  .review-card:hover .review-card__media img {
    transform: scale(1.02);
  }

  .carousel-arrows button:not(:disabled):hover {
    color: var(--cream-50);
    background: var(--olive-800);
    transform: translateY(-2px);
  }
}

/* Location */
.location-section {
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
  background: var(--cream-50);
}

.location-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.1);
  border-radius: var(--radius-sheet);
  color: var(--cream-50);
  background: var(--olive-800);
  box-shadow: var(--shadow-rich);
}

.location-card__media {
  min-height: 18rem;
  overflow: hidden;
  background: var(--olive-700);
}

.location-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.location-card__content {
  padding: clamp(1.7rem, 5vw, 3.6rem);
}

.location-card h2 {
  max-width: 10ch;
}

.location-card__lead {
  max-width: 32rem;
  margin-bottom: 2rem;
  color: rgba(242, 234, 217, 0.78);
  font-size: 1.03rem;
  line-height: 1.65;
}

.business-details {
  display: grid;
  gap: 1.1rem;
  margin-bottom: 2rem;
}

.business-details > div {
  display: grid;
  gap: 0.32rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 253, 248, 0.12);
}

.business-details dt {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--gold-300);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.business-details dt svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.business-details dd {
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.88);
  font-size: 0.86rem;
  line-height: 1.5;
}

.location-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-top: 1.5rem;
}

.social-links a {
  color: var(--cream-200);
  font-size: 0.74rem;
  font-weight: 780;
  text-decoration: underline;
  text-decoration-color: rgba(242, 234, 217, 0.35);
  text-underline-offset: 0.25rem;
}

/* Footer */
.site-footer {
  position: relative;
  min-height: 19rem;
  padding-top: 3rem;
  overflow: hidden;
  border-top: 1px solid rgba(255, 253, 248, 0.1);
  color: var(--cream-200);
  background: var(--olive-900);
}

.site-footer__image {
  position: absolute;
  inset: 0 0 0 auto;
  width: 78%;
  pointer-events: none;
}

.site-footer__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.58;
  animation: footer-drift 9s ease-in-out infinite alternate;
}

.site-footer__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #243127 0%,
    #243127 32%,
    rgba(36, 49, 39, 0.94) 46%,
    rgba(36, 49, 39, 0.7) 70%,
    rgba(36, 49, 39, 0.45) 100%
  );
}

.site-footer__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.7rem;
}

.site-footer__brand img {
  width: 9.65rem;
  height: auto;
  margin-bottom: 1rem;
}

.site-footer__brand p {
  max-width: 24rem;
  margin-bottom: 0.65rem;
  color: rgba(242, 234, 217, 0.8);
  font-size: 0.72rem;
  line-height: 1.55;
}

.site-footer__brand .site-footer__place {
  color: var(--cream-200);
  font-weight: 730;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  align-content: start;
  gap: 0.8rem 1.5rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.site-footer__nav a {
  width: fit-content;
  border-bottom: 1px solid rgba(242, 234, 217, 0.25);
  transition: color 180ms ease, border-color 180ms ease;
}

.footer-rating {
  display: inline-flex;
  width: fit-content;
  min-height: 48px;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(255, 253, 248, 0.55);
  border-radius: 1rem;
  color: var(--olive-900);
  background: rgba(255, 253, 248, 0.95);
  box-shadow: var(--shadow-lift);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.footer-rating strong {
  font-size: 1.05rem;
}

.footer-rating > span:last-child {
  padding-left: 0.55rem;
  border-left: 1px solid rgba(36, 49, 39, 0.14);
  color: var(--walnut-700);
  font-size: 0.64rem;
  font-weight: 800;
}

.site-footer__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-block: 1rem 6.5rem;
  border-top: 1px solid rgba(255, 253, 248, 0.1);
  color: rgba(242, 234, 217, 0.58);
  font-size: 0.62rem;
}

@keyframes footer-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.09) translate3d(-1.2%, -1%, 0);
  }
}

@media (hover: hover) {
  .site-footer__nav a:hover {
    color: var(--gold-300);
    border-color: var(--gold-300);
  }

  .footer-rating:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 65px -30px rgba(0, 0, 0, 0.62);
  }
}

/* Mobile fixed CTA */
.mobile-cta {
  position: fixed;
  right: 0.75rem;
  bottom: 0.7rem;
  left: 0.75rem;
  z-index: 55;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.55rem;
  padding: 0.55rem;
  padding-bottom: max(0.55rem, env(safe-area-inset-bottom));
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 1.2rem;
  background: rgba(36, 49, 39, 0.94);
  box-shadow: 0 18px 55px -20px rgba(36, 49, 39, 0.82);
  backdrop-filter: blur(15px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 1.5rem));
  visibility: hidden;
  transition:
    opacity 220ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 220ms ease;
}

.mobile-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.mobile-cta .button {
  min-width: 0;
  min-height: 45px;
  padding-inline: 0.7rem;
  font-size: 0.74rem;
}

/* Reveal */
.reveal-ready .reveal {
  opacity: 1;
  transform: none;
}

.reveal-ready .reveal.is-visible {
  animation: reveal-in 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

/*
 * Capture mode is used only by the local QA workflow to compose full-page
 * screenshots without repeating fixed or sticky interface elements.
 */
.capture-mode .site-header {
  position: absolute;
  right: 0;
  left: 0;
}

.capture-mode,
.capture-mode * {
  scrollbar-width: none;
}

.capture-mode::-webkit-scrollbar,
.capture-mode *::-webkit-scrollbar {
  display: none;
}

.capture-mode .mobile-cta {
  display: none !important;
}

.capture-mode .reveal-ready .reveal.is-visible {
  animation: none;
}

@keyframes reveal-in {
  from {
    opacity: 0.3;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 640px) {
  .site-header__media {
    width: 58%;
  }

  .reviews-track {
    grid-auto-columns: calc((100% - 1rem) / 2);
  }

  .site-footer__inner {
    grid-template-columns: minmax(15rem, 1.3fr) 0.8fr;
  }

  .footer-rating {
    grid-column: 2;
  }
}

@media (min-width: 768px) {
  :root {
    --header-height: 108px;
  }

  .site-header__actions {
    gap: 0.7rem;
  }

  .brand img {
    width: 11.25rem;
  }

  .brand__place {
    font-size: 11px;
  }

  .hero {
    display: block;
    min-height: clamp(620px, 78svh, 790px);
  }

  .hero__picture {
    position: absolute;
    inset: 0;
    height: 100%;
  }

  .hero__picture img {
    object-position: center;
  }

  .hero__shade {
    position: absolute;
    inset: 0;
    display: block;
    background:
      linear-gradient(
        90deg,
        rgba(25, 35, 27, 0.94) 0%,
        rgba(25, 35, 27, 0.82) 28%,
        rgba(25, 35, 27, 0.5) 43%,
        rgba(25, 35, 27, 0.09) 59%,
        rgba(25, 35, 27, 0) 72%
      ),
      linear-gradient(0deg, rgba(25, 35, 27, 0.26), transparent 35%);
  }

  .hero__content {
    height: clamp(620px, 78svh, 790px);
    min-height: 0;
    align-items: center;
    padding-block: 4rem;
  }

  .hero__copy {
    width: min(54%, 43rem);
    max-width: 43rem;
  }

  .hero h1 {
    max-width: 9.6ch;
    margin-bottom: 1.25rem;
    font-size: clamp(2.65rem, 6.4vw, 5.75rem);
    line-height: 0.98;
  }

  .hero .eyebrow {
    margin-bottom: 1.1rem;
    font-size: 0.72rem;
  }

  .hero__lead {
    max-width: 31rem;
    margin-bottom: 1.75rem;
    font-size: clamp(1.08rem, 2vw, 1.35rem);
    line-height: 1.5;
  }

  .hero__actions {
    gap: 0.85rem;
  }

  .hero__actions .button {
    min-height: 52px;
    padding-inline: 1.5rem;
    font-size: 0.97rem;
  }

  .product-strip__inner {
    min-height: 64px;
  }

  .split-layout {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  }

  .pistachio__media {
    width: 100%;
    max-width: 31rem;
    aspect-ratio: auto;
    justify-self: auto;
  }

  .pistachio__media picture,
  .pistachio__media img {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.58fr);
  }

  .editorial-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 10rem;
    gap: 1rem;
  }

  .editorial-card {
    min-height: 0;
  }

  .editorial-card--gelato {
    grid-column: 1 / 8;
    grid-row: 1 / 5;
  }

  .editorial-card--tarta {
    grid-column: 8 / 13;
    grid-row: 1 / 4;
  }

  .editorial-card--real {
    grid-column: 8 / 13;
    grid-row: 4 / 6;
  }

  .editorial-card--brownie {
    grid-column: 1 / 6;
    grid-row: 5 / 8;
  }

  .editorial-card--coffee {
    grid-column: 6 / 13;
    grid-row: 6 / 8;
  }

  .reviews-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .location-card {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  }

  .location-card__media {
    min-height: 40rem;
  }

  .location-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .site-footer__inner {
    grid-template-columns: minmax(18rem, 1.2fr) minmax(10rem, 0.55fr) auto;
    align-items: start;
  }

  .footer-rating {
    grid-column: auto;
  }

  .site-footer__bottom {
    padding-bottom: 1rem;
  }

  .mobile-cta {
    display: none;
  }
}

@media (min-width: 1024px) {
  .reels-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 360px));
    grid-auto-flow: row;
    justify-content: center;
    gap: clamp(1rem, 2.4vw, 1.75rem);
    margin-right: 0;
    padding: 1.25rem 0;
    overflow: visible;
  }

  .reel-card {
    width: 100%;
  }

  .reel-card--featured {
    transform: translateY(-1.1rem);
  }

  @media (hover: hover) {
    .reel-card--featured:hover {
      transform: translateY(calc(-1.1rem - 4px));
    }
  }

  .reviews-track {
    grid-auto-columns: calc((100% - 2rem) / 3);
  }

  .review-card,
  .review-card--text {
    min-height: 33rem;
  }
}

@media (max-width: 430px) {
  .hero__actions .button {
    flex: 1 1 7.5rem;
    padding-inline: 0.65rem;
    font-size: 0.75rem;
  }

  .location-card__actions .button {
    width: 100%;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 359px) {
  .mobile-cta {
    right: 0.4rem;
    bottom: 0.4rem;
    left: 0.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header__video {
    display: none;
  }

  .site-header__poster {
    display: block;
  }

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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