/* Lil Shack Ice Cream — Temperance, MI
   Palette pulled from their real logo: mint, soft pink, teal, coral, cream. */

:root {
  --cream: #fbf6ee;
  --cream-deep: #f0e6d6;
  --paper: #fffdf8;
  --mint: #c9e4d4;
  --mint-deep: #8fbfa3;
  --pink: #e89ab0;
  --pink-deep: #d47c95;
  --teal: #2b9a9e;
  --teal-deep: #1f7578;
  --coral: #e07868;
  --chocolate: #2c211c;
  --ink: #3a2f2a;
  --muted: #6e5f56;
  --line: #e5d8c6;
  --shadow: 0 12px 30px rgba(44, 33, 28, 0.08);
  --shadow-lift: 0 18px 40px rgba(44, 33, 28, 0.14);
  --radius: 6px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Nunito Sans", "Segoe UI", sans-serif;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(232, 154, 176, 0.18), transparent 28%),
    radial-gradient(circle at 88% 0%, rgba(201, 228, 212, 0.35), transparent 32%),
    var(--cream);
  line-height: 1.55;
  font-size: 1.05rem;
  font-weight: 500;
}

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

a {
  color: var(--teal-deep);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--coral);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--chocolate);
  color: white;
  padding: 0.6rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 238, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(44, 33, 28, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(44, 33, 28, 0.12);
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.brand-place {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

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

.nav-cta {
  background: var(--teal);
  color: white !important;
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius);
  text-decoration: none !important;
}

.nav-cta:hover {
  background: var(--teal-deep);
  color: white !important;
}

.nav-toggle {
  display: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.45rem 0.7rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
}

/* ---------- Banner ---------- */

.announce {
  background: var(--mint);
  color: var(--chocolate);
  border-bottom: 1px solid #b5d4c1;
}

.announce-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  font-weight: 650;
  font-size: 0.95rem;
}

.announce a {
  color: var(--teal-deep);
  font-weight: 800;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.15rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  font-family: inherit;
  font-weight: 800;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.28s var(--ease),
    color 0.28s var(--ease),
    border-color 0.28s var(--ease),
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--coral);
  color: white;
  border-color: var(--coral);
}

.btn-primary:hover {
  background: #c96556;
  border-color: #c96556;
  color: white;
}

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

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

/* ---------- Hero ---------- */

.hero {
  padding: 2.5rem 0 1rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-deep);
  background: var(--mint);
  padding: 0.35rem 0.65rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  color: var(--chocolate);
}

.hero-copy {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 34rem;
  margin: 0 0 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-meta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
}

.hero-frame {
  background: var(--paper);
  padding: 0.7rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.hero-frame:hover {
  transform: rotate(0.4deg) translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.hero-frame img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  border-radius: 4px;
  background: var(--cream-deep);
  transition: transform 0.7s var(--ease);
}

.hero-sticker {
  position: absolute;
  left: -0.75rem;
  bottom: 1.5rem;
  background: var(--pink);
  color: var(--chocolate);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.7rem 0.9rem;
  border-radius: 4px;
  transform: rotate(-6deg);
  box-shadow: 0 6px 16px rgba(44, 33, 28, 0.12);
  max-width: 10rem;
  line-height: 1.2;
  transition: transform 0.45s var(--ease);
}

.hero-visual:hover .hero-sticker {
  transform: rotate(-3deg) translateY(-2px);
}

/* ---------- Sections ---------- */

section {
  padding: 3.5rem 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-head h2,
.legal-page h1,
.about-copy h2,
.visit-card h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  color: var(--chocolate);
}

.section-intro {
  color: var(--muted);
  margin: 0;
  max-width: 28rem;
}

.kicker {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 0.5rem;
}

/* ---------- Flavors chalkboard ---------- */

.flavors {
  background: var(--chocolate);
  color: #f7efe4;
  border-block: 1px solid #1d1612;
}

.flavors .wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.flavors h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 0.5rem;
  color: #fff8ee;
}

.flavors-note {
  color: #cbb9a8;
  margin: 0;
}

.flavor-board {
  display: grid;
  gap: 0.75rem;
}

.flavor-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  padding: 0.95rem 1.1rem;
  background: rgba(255, 248, 238, 0.07);
  border: 1px dashed rgba(255, 248, 238, 0.3);
  border-radius: 6px;
  transition: background 0.3s var(--ease);
}

.flavor-row:hover {
  background: rgba(255, 248, 238, 0.12);
}

.flavor-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
}

.flavor-note {
  color: #d8c4b0;
  font-size: 0.92rem;
}

/* ---------- Menu ---------- */

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.filter-btn {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 0.45rem 0.85rem;
  font-family: inherit;
  font-weight: 750;
  cursor: pointer;
  transition:
    background 0.28s var(--ease),
    color 0.28s var(--ease),
    border-color 0.28s var(--ease),
    transform 0.28s var(--ease);
}

.filter-btn.is-active,
.filter-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
}

.filter-btn:hover {
  transform: translateY(-1px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.product-card {
  grid-column: span 4;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 0 rgba(44, 33, 28, 0.04);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    border-color 0.45s var(--ease);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: #d7c4aa;
}

.product-card.featured {
  grid-column: span 6;
}

.product-card .media-shot {
  overflow: hidden;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: var(--cream-deep);
  transition: transform 0.7s var(--ease);
}

.product-body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--mint);
  color: var(--teal-deep);
  padding: 0.2rem 0.45rem;
  border-radius: 3px;
}

.product-body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  margin: 0;
  letter-spacing: -0.01em;
}

.product-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.product-price {
  margin-top: auto;
  font-weight: 800;
  color: var(--coral);
}

.product-card.is-hidden {
  display: none;
}

/* ---------- About + perks ---------- */

.about {
  background: linear-gradient(180deg, transparent, rgba(201, 228, 212, 0.28) 40%, transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: center;
}

.about-portrait {
  background: var(--paper);
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.about-portrait:hover {
  transform: rotate(-0.4deg) translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.about-portrait img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 4px;
  background: var(--cream-deep);
  transition: transform 0.7s var(--ease);
}

.about-copy p {
  color: var(--muted);
  margin: 0 0 1rem;
  max-width: 36rem;
}

.perk-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.perk-grid .perk:last-child {
  grid-column: 1 / -1;
  max-width: 28rem;
}

.perk {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1rem;
}

.perk h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-family: var(--font-display);
  font-weight: 600;
}

.perk p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Notes / quotes ---------- */

.notes {
  background: var(--cream-deep);
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.note-card {
  background: var(--paper);
  border-left: 4px solid var(--pink);
  padding: 1.35rem 1.25rem;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 6px 18px rgba(44, 33, 28, 0.05);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.note-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.note-card blockquote {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.35;
  color: var(--chocolate);
}

.note-card cite {
  font-style: normal;
  font-weight: 800;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---------- Gallery ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.9rem;
}

.gallery-item {
  grid-column: span 3;
  background: var(--paper);
  padding: 0.55rem 0.55rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(44, 33, 28, 0.06);
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}

.gallery-item:nth-child(3n) {
  transform: rotate(1deg);
}

.gallery-item:nth-child(3n + 1) {
  transform: rotate(-1deg);
}

.gallery-item:nth-child(4),
.gallery-item:nth-child(5) {
  grid-column: span 6;
}

.gallery-item:hover {
  transform: rotate(0deg) translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-lift);
  z-index: 2;
}

.gallery-item .media-shot {
  overflow: hidden;
  border-radius: 2px;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 2px;
  background: var(--cream-deep);
  transition: transform 0.7s var(--ease);
}

.gallery-item figcaption {
  margin-top: 0.55rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
}

/* ---------- Visit ---------- */

.visit-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
}

.visit-card,
.hours-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.5rem;
}

.visit-card p {
  color: var(--muted);
}

.visit-details {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0;
}

.visit-details li {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.98rem;
}

.visit-details strong {
  color: var(--chocolate);
}

.hours-card h3 {
  font-family: var(--font-display);
  margin: 0 0 1rem;
  font-size: 1.4rem;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px dotted var(--line);
  font-weight: 650;
}

.hours-list li.is-today {
  color: var(--teal-deep);
}

.hours-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.map-embed {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  min-height: 220px;
  background: var(--cream-deep);
}

.map-embed iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--chocolate);
  color: #f3e9dc;
  padding: 2.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.footer-brand p,
.site-footer p {
  margin: 0;
  color: #cbb9a8;
}

.site-footer h3 {
  margin: 0 0 0.7rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e8d7c4;
}

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

.site-footer li + li {
  margin-top: 0.4rem;
}

.site-footer a {
  color: #f7efe4;
  text-decoration: none;
  font-weight: 650;
}

.site-footer a:hover {
  color: var(--pink);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
  color: #b8a693;
}

.footer-bottom a {
  color: #e8d7c4;
}

/* ---------- Legal pages ---------- */

.legal-page {
  padding: 3rem 0 4rem;
}

.legal-page .wrap {
  max-width: 720px;
}

.legal-page h1 {
  margin-bottom: 0.5rem;
}

.legal-page .updated {
  color: var(--muted);
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 2rem 0 0.6rem;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

/* ---------- Responsive ---------- */

@media (max-width: 920px) {
  .hero-grid,
  .about-grid,
  .flavors .wrap,
  .visit-grid,
  .section-head,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-frame {
    transform: none;
    max-width: 420px;
  }

  .hero-sticker {
    left: auto;
    right: 0.65rem;
    bottom: auto;
    top: 0.65rem;
    max-width: 8.5rem;
    font-size: 0.9rem;
  }

  .product-card,
  .product-card.featured {
    grid-column: span 6;
  }

  .gallery-item,
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) {
    grid-column: span 6;
  }

  .notes-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.75rem;
  }

  .nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .product-card,
  .product-card.featured,
  .gallery-item,
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) {
    grid-column: span 12;
  }

  .perk-grid {
    grid-template-columns: 1fr;
  }

  .perk-grid .perk:last-child {
    grid-column: auto;
    max-width: none;
  }

  .visit-details li {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .hero {
    padding-top: 1.5rem;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Soft photo motion: full on hero/about, barely there on small cards */
@keyframes photo-shine {
  0% { transform: translateX(-120%) skewX(-18deg); opacity: 0; }
  35% { opacity: 0.32; }
  100% { transform: translateX(160%) skewX(-18deg); opacity: 0; }
}

@keyframes photo-soft-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.988);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-frame,
.about-portrait {
  position: relative;
  overflow: hidden;
}

.hero-frame::after,
.about-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 62%
  );
  opacity: 0;
  transform: translateX(-120%) skewX(-18deg);
  border-radius: inherit;
  z-index: 1;
}

.hero-frame:hover::after,
.about-portrait:hover::after {
  animation: photo-shine 0.85s var(--ease);
}

.hero-frame img,
.about-portrait img {
  animation: photo-soft-in 0.8s var(--ease) both;
  transition: transform 0.5s var(--ease);
}

.hero-frame:hover img,
.about-portrait:hover img {
  transform: scale(1.02);
}

.product-card .media-shot img,
.gallery-item .media-shot img {
  transition: transform 0.45s var(--ease);
}

.product-card:hover .media-shot img,
.gallery-item:hover .media-shot img {
  transform: scale(1.01);
}

.product-card.reveal:nth-child(1),
.gallery-item.reveal:nth-child(1) { transition-delay: 0.02s; }
.product-card.reveal:nth-child(2),
.gallery-item.reveal:nth-child(2) { transition-delay: 0.06s; }
.product-card.reveal:nth-child(3),
.gallery-item.reveal:nth-child(3) { transition-delay: 0.1s; }
.product-card.reveal:nth-child(4),
.gallery-item.reveal:nth-child(4) { transition-delay: 0.14s; }
.product-card.reveal:nth-child(5),
.gallery-item.reveal:nth-child(5) { transition-delay: 0.18s; }
.product-card.reveal:nth-child(6),
.gallery-item.reveal:nth-child(6) { transition-delay: 0.22s; }
.product-card.reveal:nth-child(7),
.gallery-item.reveal:nth-child(7) { transition-delay: 0.26s; }
.product-card.reveal:nth-child(8),
.gallery-item.reveal:nth-child(8) { transition-delay: 0.3s; }
.product-card.reveal:nth-child(9),
.gallery-item.reveal:nth-child(9) { transition-delay: 0.34s; }

.nav {
  transition: opacity 0.28s var(--ease);
}

.site-header {
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .filter-btn,
  .gallery-item,
  .product-card,
  .hero-frame,
  .about-portrait,
  .reveal,
  .hero-frame img,
  .about-portrait img,
  .product-card img,
  .gallery-item img,
  .media-shot {
    transition: none !important;
    animation: none !important;
    filter: none !important;
  }

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

  .hero-frame,
  .about-portrait,
  .gallery-item,
  .gallery-item:nth-child(3n),
  .gallery-item:nth-child(3n + 1),
  .hero-sticker,
  .product-card:hover,
  .btn:hover {
    transform: none;
  }

  .hero-frame:hover img,
  .about-portrait:hover img,
  .product-card:hover img,
  .gallery-item:hover img {
    transform: none;
  }

  .hero-frame::after,
  .about-portrait::after {
    display: none;
  }
}
