:root {
  --ink: #2b2116;
  --gold: #c98a26;
  --gold-soft: #efc574;
  --gold-dark: #6b4212;
  --muted: #76664e;
  --line: rgba(201, 138, 38, 0.34);
  --stone: #f5efe6;
  --stone-bright: #fffefb;
  --glass: rgba(255, 253, 248, 0.86);
  --soft-shadow: 0 18px 42px rgba(107, 66, 18, 0.1);
  --max: 2048px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(118deg, transparent 0 32%, rgba(216, 206, 192, 0.24) 32.18% 32.4%, transparent 32.65% 100%),
    linear-gradient(36deg, transparent 0 54%, rgba(201, 138, 38, 0.1) 54.1% 54.26%, transparent 54.55% 100%),
    linear-gradient(180deg, #fffefb 0%, #f8f1e7 48%, #fffaf2 100%),
    var(--stone-bright);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  min-width: 320px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(115deg, transparent 0 31%, rgba(216, 206, 192, 0.12) 31.2% 31.35%, transparent 31.55% 100%),
    linear-gradient(64deg, transparent 0 58%, rgba(201, 138, 38, 0.06) 58.15% 58.3%, transparent 58.5% 100%);
  background-size: 420px 420px, 620px 620px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.62), transparent 78%);
}

.fairytale-ready .shimmer-detail {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.detail-shimmer {
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: 0;
  z-index: 8;
  width: 58%;
  pointer-events: none;
  background:
    linear-gradient(
      100deg,
      transparent 0%,
      rgba(255, 255, 255, 0.036) 24%,
      rgba(255, 245, 210, 0.324) 39%,
      rgba(246, 202, 92, 0.428) 49%,
      rgba(255, 255, 255, 0.324) 58%,
      transparent 78%
    );
  filter: blur(0.2px) drop-shadow(0 0 12px rgba(239, 197, 116, 0.261));
  opacity: 0;
  transform: translateX(-150%) rotate(16deg);
  animation: detailShimmer 4.8s ease-in-out infinite;
}

.detail-shimmer::before,
.detail-shimmer::after {
  content: "";
  position: absolute;
  left: 52%;
  top: 42%;
  width: 10px;
  aspect-ratio: 1;
  background: #fff8d8;
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
  filter: drop-shadow(0 0 10px rgba(239, 197, 116, 0.95));
}

.detail-shimmer::after {
  left: 64%;
  top: 56%;
  width: 6px;
}

.shimmer-detail:nth-of-type(2n) .detail-shimmer {
  animation-delay: -1.5s;
}

.shimmer-detail:nth-of-type(3n) .detail-shimmer {
  animation-delay: -3s;
}

.fairytale-dust {
  position: fixed;
  inset: 0;
  z-index: 30;
  overflow: hidden;
  pointer-events: none;
}

.fairytale-dust span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0 18%, #ffd872 42%, rgba(246, 216, 138, 0) 74%);
  box-shadow: 0 0 18px rgba(239, 197, 116, 1), 0 0 36px rgba(255, 255, 255, 0.425);
  animation: fairyFloat var(--duration) ease-in-out infinite;
  animation-delay: var(--delay);
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes cardRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes subtleGlow {
  0%,
  100% {
    box-shadow: 0 22px 55px rgba(43, 33, 22, 0.12);
  }

  50% {
    box-shadow: 0 26px 70px rgba(201, 138, 38, 0.18);
  }
}

@keyframes detailShimmer {
  0% {
    transform: translateX(-175%) rotate(16deg);
    opacity: 0;
  }

  12% {
    opacity: 0.405;
  }

  42% {
    opacity: 0.378;
  }

  62%,
  100% {
    transform: translateX(185%) rotate(16deg);
    opacity: 0;
  }
}

@keyframes fairyFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.72);
    opacity: 0;
  }

  18% {
    opacity: 1;
  }

  52% {
    transform: translate3d(22px, -44px, 0) scale(1.22);
    opacity: 0.975;
  }

  82% {
    opacity: 0.3;
  }
}

button,
input {
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 20;
  width: auto;
  height: auto;
  clip: auto;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: #100902;
  border-radius: 4px;
}

body.age-gate-open {
  overflow: hidden;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 50% 0%, rgba(239, 197, 116, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(8, 6, 4, 0.92), rgba(8, 6, 4, 0.98));
  color: #fffdf8;
}

.age-gate[hidden] {
  display: none;
}

.age-gate-panel {
  position: relative;
  display: grid;
  gap: 1rem;
  width: min(100%, 31rem);
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border: 1px solid rgba(239, 197, 116, 0.58);
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 138, 38, 0.18), transparent 36%),
    linear-gradient(145deg, #17100a, #090705 58%, #1a1008);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(255, 236, 187, 0.1) inset;
  text-align: center;
}

.age-gate-panel::before {
  content: "";
  position: absolute;
  inset: 0.55rem;
  border: 1px solid rgba(239, 197, 116, 0.28);
  pointer-events: none;
}

.age-gate-panel > * {
  position: relative;
  z-index: 1;
}

.age-gate-mark {
  display: grid;
  place-items: center;
  width: 3.35rem;
  aspect-ratio: 1;
  margin-inline: auto;
  color: #120902;
  border: 1px solid rgba(255, 236, 187, 0.68);
  background: linear-gradient(140deg, #fff3bd, var(--gold), #5f350d);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  font-weight: 700;
  box-shadow: 0 0 26px rgba(201, 138, 38, 0.35);
}

.age-gate-kicker {
  margin: 0;
  color: var(--gold-soft);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.age-gate h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 7vw, 3.5rem);
  font-weight: 500;
  line-height: 0.95;
}

.age-gate p {
  margin: 0;
}

.age-gate #age-gate-copy {
  color: rgba(255, 253, 248, 0.82);
  font-size: clamp(0.95rem, 2.4vw, 1.08rem);
  line-height: 1.45;
}

.age-gate-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.4rem;
}

.age-gate button {
  min-height: 3.2rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(239, 197, 116, 0.62);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.age-gate-enter {
  background: linear-gradient(140deg, #efd088, var(--gold) 48%, #7d4b14);
  color: #120902;
}

.age-gate-exit {
  background: rgba(255, 253, 248, 0.04);
  color: #fffdf8;
}

.age-gate button:hover,
.age-gate button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background:
    linear-gradient(180deg, rgba(255, 254, 251, 0.96), rgba(250, 245, 237, 0.9));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 34px rgba(107, 66, 18, 0.1);
}

.topbar,
.navbar,
main,
.site-footer {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 35px;
  padding: 0.35rem clamp(1rem, 2vw, 2rem);
  color: var(--gold-dark);
  border-bottom: 1px solid rgba(201, 138, 38, 0.34);
  font-size: clamp(0.63rem, 1vw, 0.76rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.topbar p {
  margin: 0;
}

.topbar p span::before {
  content: "-";
  margin-inline: 0.75rem;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--ink);
  letter-spacing: 0;
}

.topbar-actions a {
  font-size: 0.72rem;
  text-transform: uppercase;
  opacity: 0.88;
}

.topbar-actions a:hover,
.topbar-actions a:focus-visible,
.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--gold-dark);
}

.navbar {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  min-height: 80px;
  padding: 0 clamp(1rem, 2vw, 2rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: clamp(2.5rem, 4vw, 3.4rem);
  aspect-ratio: 1;
  color: #120a02;
  border: 1px solid var(--gold-soft);
  border-radius: 4px;
  background: linear-gradient(140deg, #fff3bd, var(--gold), #5f350d);
  box-shadow: 0 0 24px rgba(201, 138, 38, 0.26);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
}

.brand-name {
  display: grid;
  gap: 0.1rem;
  text-transform: uppercase;
}

.brand-name strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.brand-name small {
  color: var(--gold-dark);
  font-size: 0.63rem;
  letter-spacing: 0.38em;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 1.8vw, 2rem);
  font-size: clamp(0.66rem, 0.9vw, 0.82rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.primary-nav a {
  position: relative;
  padding-block: 2rem;
  color: rgba(43, 33, 22, 0.78);
}

.primary-nav a.active {
  color: var(--gold-dark);
}

.primary-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
}

.search-button,
.nav-toggle {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.search-button {
  position: relative;
  width: 2.5rem;
  aspect-ratio: 1;
  border-radius: 50%;
}

.search-button span {
  position: absolute;
  inset: 0.7rem;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.search-button span::after {
  content: "";
  position: absolute;
  width: 0.6rem;
  height: 2px;
  right: -0.45rem;
  bottom: -0.18rem;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 4px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 1.35rem;
  height: 2px;
  margin: 0.28rem auto;
  background: currentColor;
}

.site-search {
  display: flex;
  gap: 0.7rem;
  padding: 0 2rem 1rem;
  border-top: 1px solid rgba(201, 138, 38, 0.24);
}

.site-search[hidden] {
  display: none;
}

.site-search input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 0.85rem 1rem;
}

.site-search button,
.newsletter button {
  border: 1px solid rgba(255, 236, 187, 0.35);
  background: linear-gradient(140deg, #efd088, var(--gold) 45%, #7d4b14);
  color: #120902;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

main {
  overflow: hidden;
  border-inline: 0;
  background: rgba(255, 253, 248, 0.46);
  box-shadow: 0 28px 70px rgba(107, 66, 18, 0.08);
}

.hero {
  position: relative;
  display: grid;
  place-items: start center;
  overflow: hidden;
  border-bottom: 0;
  background:
    linear-gradient(180deg, #fffefb, var(--stone) 58%, #fffefb);
  isolation: isolate;
  aspect-ratio: 1280 / 590;
  max-height: clamp(17rem, 57svh, 37rem);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hero::before {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.34), transparent 16%, transparent 74%, rgba(255, 253, 248, 0.5)),
    linear-gradient(90deg, rgba(255, 253, 248, 0.5), rgba(255, 253, 248, 0.14) 12%, transparent 27%, transparent 76%, rgba(255, 253, 248, 0.1) 89%, rgba(255, 253, 248, 0.44));
}

.hero::after {
  left: 0;
  right: 0;
  bottom: 0;
  height: min(6vw, 72px);
  background: linear-gradient(180deg, transparent, rgba(255, 253, 248, 0.96));
}

.hero picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  background: var(--stone);
}

.hero-hotspots {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.hotspot {
  position: absolute;
  display: block;
  border-radius: 6px;
  outline-offset: 4px;
}

.hotspot span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.hotspot:focus-visible {
  outline: 2px solid var(--gold-soft);
  background: rgba(239, 197, 116, 0.12);
}

.hotspot-products {
  left: 5.6%;
  bottom: 7.5%;
  width: 13.8%;
  height: 8.2%;
}

.hotspot-about {
  left: 20.1%;
  bottom: 7.6%;
  width: 11.8%;
  height: 8.1%;
}

.mobile-action-bar {
  display: none;
}

.mobile-wide-artwork,
.mobile-only-card {
  display: none;
}

.mobile-bottom-nav {
  display: none;
}

.product-tiles {
  position: relative;
  z-index: 2;
  scroll-margin-top: 8.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 1.7vw, 2rem);
  padding: clamp(1.2rem, 2.8vw, 2.8rem) clamp(1rem, 3vw, 4rem);
  border-top: 1px solid rgba(201, 138, 38, 0.16);
  border-bottom: 1px solid rgba(201, 138, 38, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(245, 239, 230, 0.88));
}

.image-card,
.feature-card,
.coming-soon-card,
.text-card {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #120d08;
  box-shadow: 0 22px 55px rgba(43, 33, 22, 0.12);
  animation: cardRise 680ms ease both;
}

.image-card {
  aspect-ratio: 14 / 9;
}

.text-card {
  aspect-ratio: 14 / 9;
  border: 1px solid rgba(201, 138, 38, 0.44);
  background:
    radial-gradient(circle at 22% 0%, rgba(239, 197, 116, 0.14), transparent 32%),
    linear-gradient(135deg, #17100a, #090705 54%, #1a1008);
  color: var(--gold-soft);
  font-size: clamp(2.2rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.92;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.7), 0 0 20px rgba(201, 138, 38, 0.38);
}

.text-card::before {
  content: "";
  position: absolute;
  inset: clamp(0.8rem, 1.5vw, 1.4rem);
  border: 1px solid rgba(239, 197, 116, 0.48);
  pointer-events: none;
}

.text-card span {
  position: relative;
  z-index: 1;
}

.accessories-card {
  grid-column: 1 / -1;
  aspect-ratio: auto;
  min-height: clamp(9rem, 18vw, 18rem);
}

.coming-soon-card {
  aspect-ratio: 1220 / 580;
  border: 1px solid rgba(201, 138, 38, 0.36);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.95), rgba(245, 239, 230, 0.88)),
    var(--stone-bright);
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.8vw, 1.8rem);
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.coming-soon-card::before {
  content: "";
  position: absolute;
  inset: 0.45rem;
  border: 1px solid rgba(201, 138, 38, 0.28);
  pointer-events: none;
}

.coming-soon-card span {
  position: relative;
  z-index: 1;
}

.image-card:nth-child(2),
.feature-card:nth-child(2) {
  animation-delay: 80ms;
}

.image-card:nth-child(3),
.feature-card:nth-child(3) {
  animation-delay: 160ms;
}

.image-card:nth-child(4),
.feature-card:nth-child(4) {
  animation-delay: 240ms;
}

.image-card:nth-child(5) {
  animation-delay: 320ms;
}

.image-card::after,
.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.02), transparent 34%, rgba(255, 253, 248, 0.06));
  opacity: 0;
  transition: opacity 180ms ease;
}

.image-card:hover::after,
.image-card:focus-visible::after,
.feature-card:hover::after,
.feature-card:focus-visible::after {
  opacity: 1;
}

.image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease, filter 220ms ease;
}

.image-card:hover img,
.image-card:focus-visible img,
.feature-card:hover img,
.feature-card:focus-visible img {
  transform: scale(1.018);
  filter: brightness(1.08);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(1rem, 1.7vw, 2rem);
  padding: clamp(1.2rem, 2.8vw, 2.8rem) clamp(1rem, 3vw, 4rem);
  border-bottom: 1px solid rgba(201, 138, 38, 0.2);
  background:
    linear-gradient(180deg, rgba(245, 239, 230, 0.86), rgba(255, 253, 248, 0.96));
}

.feature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  object-fit: contain;
  object-position: center;
  transition: transform 220ms ease, filter 220ms ease;
}

.feature-card {
  aspect-ratio: 1.62 / 1;
}

.image-feature {
  justify-items: start;
  align-items: end;
  border: 1px solid rgba(201, 138, 38, 0.28);
  background: #120d08;
}

.image-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(14, 10, 7, 0.88), rgba(14, 10, 7, 0.52) 42%, rgba(14, 10, 7, 0.1) 74%),
    linear-gradient(180deg, rgba(14, 10, 7, 0.08), rgba(14, 10, 7, 0.48));
  pointer-events: none;
}

.image-feature .feature-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(0.45rem, 0.9vw, 0.75rem);
  width: min(58%, 28rem);
  padding: clamp(1.1rem, 2.4vw, 2rem);
  color: #fffdf8;
}

.image-feature strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.8vw, 3.7rem);
  font-weight: 500;
  line-height: 0.95;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.52);
}

.image-feature .feature-note {
  color: rgba(255, 253, 248, 0.86);
  font-size: clamp(0.76rem, 1.05vw, 0.96rem);
  line-height: 1.45;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.story-card img {
  inset: 0 0 0 auto;
  width: 185%;
  max-width: none;
  object-fit: cover;
  object-position: right center;
  filter: brightness(0.92) contrast(1.05);
}

.text-feature {
  justify-items: start;
  align-content: center;
  gap: clamp(0.55rem, 1vw, 0.9rem);
  padding: clamp(1.1rem, 2.8vw, 2.4rem);
  border: 1px solid rgba(201, 138, 38, 0.32);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(245, 239, 230, 0.9)),
    var(--stone-bright);
  color: var(--ink);
  box-shadow: 0 22px 55px rgba(107, 66, 18, 0.11);
}

.text-feature::before {
  content: "";
  position: absolute;
  inset: 0.6rem;
  border: 1px solid rgba(201, 138, 38, 0.22);
  pointer-events: none;
}

.text-feature::after {
  background:
    linear-gradient(135deg, transparent 0 38%, rgba(201, 138, 38, 0.1) 38.1% 38.35%, transparent 38.65% 100%);
  opacity: 1;
}

.text-feature > * {
  position: relative;
  z-index: 1;
}

.feature-kicker {
  color: var(--gold-dark);
  font-size: clamp(0.66rem, 1vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.text-feature strong {
  max-width: 13ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.2vw, 4rem);
  font-weight: 500;
  line-height: 0.95;
}

.text-feature p {
  max-width: 46rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.86rem, 1.25vw, 1.08rem);
  line-height: 1.5;
}

.events-card {
  aspect-ratio: auto;
  min-height: clamp(9.5rem, 15vw, 13rem);
}

.events-card strong {
  font-size: clamp(1.85rem, 3vw, 3.2rem);
}

.brand-strip {
  display: grid;
  grid-template-columns: minmax(14rem, auto) minmax(18rem, 0.95fr);
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  min-height: 124px;
  padding: clamp(1rem, 2vw, 1.6rem) clamp(1rem, 3vw, 3.2rem);
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.94), rgba(255, 255, 255, 0.76), rgba(255, 253, 248, 0.95)),
    url("/assets/footer_strip_4k.jpg?v=20260627-assets&cf=20260706-folderfix") center / cover;
  border-bottom: 1px solid var(--line);
}

.value-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.7rem, 1.5vw, 1.4rem);
}

.value-list div {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.line-icon {
  display: grid;
  place-items: center;
  flex: 0 0 2.1rem;
  aspect-ratio: 1;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-dark);
  font-size: 0.68rem;
}

.value-list p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(0.63rem, 0.8vw, 0.78rem);
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.signature {
  margin: 0;
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-style: italic;
  white-space: nowrap;
  text-shadow: 0 0 20px rgba(201, 138, 38, 0.32);
}

.newsletter {
  display: grid;
  gap: 0.55rem;
}

.newsletter label {
  color: var(--gold-dark);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.newsletter > div {
  display: flex;
  gap: 0.55rem;
}

.newsletter input {
  min-width: 0;
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  padding: 0.8rem 0.9rem;
}

.newsletter button {
  padding: 0.8rem 1rem;
}

.form-note {
  min-height: 1rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 2vw, 2rem) 1.4rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold-dark);
  font-weight: 700;
}

@media (max-width: 1320px) {
  .topbar {
    justify-content: center;
  }

  .topbar-actions {
    display: none;
  }

  .navbar {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 0.5rem;
    background: rgba(255, 253, 248, 0.98);
    border: 1px solid var(--line);
    box-shadow: 0 18px 50px rgba(107, 66, 18, 0.15);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav a {
    padding: 1rem;
    border-bottom: 1px solid rgba(201, 138, 38, 0.18);
  }

  .primary-nav a.active::after {
    display: none;
  }

  .brand-strip {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .value-list {
    max-width: 860px;
    margin-inline: auto;
  }

  .newsletter {
    width: min(100%, 620px);
    margin-inline: auto;
  }
}

@media (max-width: 980px) {
  main {
    border-inline: 0;
  }

  .product-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-card img {
    height: 100%;
    object-fit: cover;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card {
    border-bottom: 0;
  }

  .feature-card img {
    height: 100%;
    object-fit: contain;
  }

  .mobile-action-bar {
    display: none;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 3.35rem;
  }

  .topbar {
    min-height: 28px;
    padding-inline: 0.8rem;
    font-size: 0.56rem;
    letter-spacing: 0.16em;
  }

  .topbar p span::before {
    margin-inline: 0.35rem;
  }

  .navbar {
    min-height: 66px;
    gap: 0.75rem;
    padding-inline: 0.8rem;
  }

  .brand-name strong {
    font-size: 1rem;
  }

  .brand-name small {
    font-size: 0.52rem;
    letter-spacing: 0.24em;
  }

  .search-button {
    width: 2.25rem;
  }

  .site-search {
    padding: 0.8rem;
    flex-direction: column;
  }

  .site-search button {
    min-height: 2.75rem;
  }

  .primary-nav {
    grid-template-columns: 1fr;
    left: 0.8rem;
    right: 0.8rem;
  }

  .hero {
    aspect-ratio: 1280 / 590;
    max-height: clamp(12rem, 42svh, 24rem);
  }

  .hero::after {
    height: min(8vw, 44px);
  }

  .hotspot-products {
    left: 5%;
    bottom: 7.2%;
    width: 36%;
    height: 8.3%;
  }

  .hotspot-about {
    left: 43%;
    bottom: 7.2%;
    width: 31%;
    height: 8.3%;
  }

  .product-tiles,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .mobile-action-bar {
    display: none;
  }

  .image-card,
  .feature-card {
    border-right: 0;
    border-bottom: 0;
  }

  .product-tiles,
  .feature-grid {
    gap: 0.75rem;
    padding: 1rem 0.9rem;
    background: rgba(255, 253, 248, 0.72);
  }

  .product-tiles {
    border-bottom: 0;
  }

  .featured-product,
  .standard-product {
    grid-column: 1 / -1;
  }

  .compact-product,
  .coming-soon-card {
    grid-column: auto;
  }

  .image-card,
  .feature-card {
    border: 0;
    border-radius: 0;
  }

  .mobile-only-card {
    display: block;
  }

  .image-card img {
    height: 100%;
    object-fit: cover;
  }

  .feature-card img {
    height: 100%;
    min-height: 0;
    object-fit: contain;
  }

  .image-feature .feature-copy {
    width: min(74%, 24rem);
    padding: 1rem;
  }

  .image-feature strong {
    font-size: clamp(1.7rem, 10vw, 3rem);
  }

  .image-feature .feature-note {
    font-size: 0.78rem;
  }

  .story-card img {
    width: 188%;
    object-fit: cover;
    object-position: right center;
  }

  .product-tiles {
    grid-template-columns: 1fr;
  }

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

  .text-feature {
    min-height: 10rem;
    padding: 1.2rem;
  }

  .events-card {
    min-height: 10rem;
  }

  .mobile-wide-artwork {
    display: grid;
    gap: 0.75rem;
    padding: 1rem 0.9rem;
    border-bottom: 1px solid var(--line);
  }

  .mobile-wide-artwork > img {
    height: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    object-fit: contain;
    object-position: center;
  }

  .mobile-values {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .mobile-values div {
    min-height: 5rem;
    padding: 0.85rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
  }

  .mobile-values span {
    color: var(--gold-dark);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
  }

  .mobile-values p {
    margin: 0.38rem 0 0;
    color: var(--ink);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    line-height: 1.35;
    text-transform: uppercase;
  }

  .value-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    text-align: left;
  }

  .signature {
    white-space: normal;
  }

  .newsletter > div,
  .site-footer {
    flex-direction: column;
  }

  .site-footer {
    text-align: center;
  }

  .mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 25;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    width: min(100%, var(--max));
    margin-inline: auto;
    background: var(--line);
    border-top: 1px solid var(--line);
  }

  .mobile-bottom-nav a {
    display: grid;
    min-height: 3.35rem;
    place-items: center;
    background: rgba(255, 253, 248, 0.96);
    color: var(--ink);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.1;
    padding: 0.45rem;
    text-align: center;
    text-transform: uppercase;
  }
}

@media (max-width: 760px) and (orientation: portrait) {
  .hero-hotspots {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .detail-shimmer,
  .fairytale-dust {
    display: none !important;
  }
}
