:root {
  --ink: #14171a;
  --slate: #1e2429;
  --slate-soft: #2a3138;
  --mist: #ece8e0;
  --mist-soft: rgba(236, 232, 224, 0.88);
  --mist-faint: rgba(236, 232, 224, 0.66);
  --copper: #c96b41;
  --copper-deep: #a04f2c;
  --gold: #c9a15b;
  --gold-light: #e6cd96;
  --sage: #5f7361;
  --white: #fffdf9;
  --line: rgba(232, 228, 220, 0.16);
  --line-strong: rgba(230, 205, 150, 0.34);
  --glass: rgba(24, 29, 33, 0.72);
  --glass-soft: rgba(32, 38, 43, 0.6);
  --shadow-sm: 0 14px 34px rgba(0, 0, 0, 0.34);
  --shadow-lg: 0 36px 84px rgba(0, 0, 0, 0.52);
  --radius: 26px;
  --header: 92px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--mist);
  background-color: #22262a;
  background-image: url("../assets/images/page-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  font-family: var(--font-body);
  /* Jost runs a smaller x-height than the old body face, so the base size goes up. */
  font-size: 18px;
  font-weight: 300;
  line-height: 1.72;
  overflow-x: hidden;
}

/* The stone texture is high contrast on its own, so a fixed scrim + vignette keeps
   plain body copy readable without hiding the pattern. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(10, 13, 16, 0.28), rgba(10, 13, 16, 0.62) 70%),
    linear-gradient(180deg, rgba(12, 15, 18, 0.42), rgba(12, 15, 18, 0.5));
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
.display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.005em;
  color: var(--mist);
}

::selection {
  background: rgba(201, 161, 91, 0.35);
}

/* ---------- page layers ---------- */

/* The header must outrank main, otherwise equal z-index makes later DOM content
   (hero copy, cards) paint over the sticky bar and the open mobile menu. */
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  z-index: 50;
}

/* ---------- header ---------- */

.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  z-index: 100;
  background: var(--gold);
  color: #1a140c;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header);
  padding: 0.9rem 5vw;
  background: rgba(18, 22, 25, 0.55);
  backdrop-filter: blur(18px) saturate(130%);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.stuck {
  background: rgba(15, 18, 21, 0.88);
  border-bottom-color: var(--line);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
}

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

.brand-mark {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 25%, #33393f, #0e1114);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  box-shadow: 0 0 0 1px rgba(201, 161, 91, 0.55), 0 10px 26px rgba(0, 0, 0, 0.5);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 161, 91, 0.38);
  animation: haloSpin 14s linear infinite;
}

@keyframes haloSpin {
  to {
    transform: rotate(360deg);
  }
}

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

.brand-text strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--mist);
}

.brand-text span {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem;
  border-radius: 999px;
  background: rgba(32, 38, 43, 0.62);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav-links a {
  position: relative;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--mist-soft);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  color: #1a140c;
  background: linear-gradient(120deg, var(--gold), var(--gold-light));
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.lang-toggle {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(32, 38, 43, 0.7);
}

.lang-toggle button {
  border: 0;
  background: transparent;
  padding: 0.42rem 0.75rem;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--mist-soft);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.lang-toggle button[aria-pressed="true"] {
  background: var(--gold);
  color: #1a140c;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(32, 38, 43, 0.7);
  color: var(--mist);
  border-radius: 999px;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  cursor: pointer;
}

/* ---------- buttons ---------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.95rem 1.6rem;
  font: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s var(--ease);
}

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

.btn-primary {
  background: linear-gradient(120deg, var(--copper), #dd8050 60%, var(--copper-deep));
  color: #17110c;
  box-shadow: 0 16px 38px rgba(201, 107, 65, 0.35);
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-18deg);
  transition: left 0.7s var(--ease);
}

.btn-primary:hover::after {
  left: 130%;
}

.btn-ghost {
  background: rgba(232, 228, 220, 0.06);
  color: var(--mist);
  border: 1px solid rgba(232, 228, 220, 0.24);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(201, 161, 91, 0.14);
}

.btn-gold {
  background: linear-gradient(120deg, var(--gold), var(--gold-light) 55%, #b98f45);
  color: #1a140c;
  box-shadow: 0 16px 38px rgba(201, 161, 91, 0.32);
}

/* ---------- hero ---------- */

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  padding: 5vw 5vw 4vw;
  min-height: calc(100vh - var(--header));
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.1rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--gold);
}

.kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5.4vw, 4.9rem);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.45);
}

.shimmer {
  background: linear-gradient(100deg, var(--copper) 0%, #e0a05f 30%, var(--gold-light) 50%, var(--copper) 72%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 7s linear infinite;
}

@keyframes shimmer {
  to {
    background-position: -250% 0;
  }
}

.signature {
  display: block;
  width: min(320px, 60%);
  margin: 0.6rem 0 0.2rem;
  overflow: visible;
}

.signature path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
  animation: draw 2.8s var(--ease) 0.5s forwards;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

.lede {
  max-width: 34rem;
  font-size: 1.14rem;
  color: var(--mist-soft);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}

.hero-meta strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--gold-light);
}

.hero-meta span {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--mist-faint);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
}

.hero-visual {
  position: relative;
  margin: 0;
  padding: 0;
}

.frame {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.6s var(--ease);
  animation: floaty 9s ease-in-out infinite;
}

.hero-visual:hover .frame {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg) scale(1.015);
}

@keyframes floaty {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -14px;
  }
}

.frame::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(230, 205, 150, 0.55);
  border-radius: 20px;
  pointer-events: none;
}

.frame img {
  width: 100%;
  aspect-ratio: 921 / 1024;
  object-fit: cover;
}

.badge {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.9rem 1.15rem;
  border-radius: 18px;
  background: rgba(14, 17, 20, 0.9);
  border: 1px solid var(--line-strong);
  color: var(--mist);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(6px);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge b {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold-light);
}

.badge-price {
  right: -24px;
  bottom: -22px;
  animation: floaty 7s ease-in-out infinite 0.4s;
}

.badge-note {
  left: -22px;
  top: 34px;
  background: linear-gradient(140deg, rgba(230, 205, 150, 0.96), rgba(201, 161, 91, 0.92));
  border-color: rgba(255, 255, 255, 0.35);
  color: #1a140c;
  animation: floaty 8s ease-in-out infinite 1.1s;
}

.badge-note b {
  color: #3a2a10;
}

/* ---------- marquee ---------- */

/* The band is a tilted 3D ribbon: the stage supplies perspective, the track scrolls
   inside it, and a sheen sweeps across the whole strip. */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 1.9rem 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background:
    radial-gradient(80% 180% at 50% 50%, rgba(201, 161, 91, 0.12), transparent 70%),
    linear-gradient(180deg, rgba(8, 10, 12, 0.9), rgba(26, 31, 36, 0.75) 45%, rgba(8, 10, 12, 0.9));
  perspective: 620px;
  user-select: none;
  /* Words dissolve into the page at both ends instead of clipping hard. */
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-stage {
  display: flex;
  transform-style: preserve-3d;
  transform: rotateX(16deg);
  animation: ribbonSway 14s ease-in-out infinite;
}

@keyframes ribbonSway {
  0%,
  100% {
    transform: rotateX(16deg) rotateZ(-0.6deg);
  }
  50% {
    transform: rotateX(9deg) rotateZ(0.6deg);
  }
}

.marquee-track {
  display: flex;
  gap: 3rem;
  padding-right: 3rem;
  white-space: nowrap;
  transform-style: preserve-3d;
  animation: slide 38s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee span {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.01em;
  color: #f4ead6;
  /* Stacked shadows extrude the letters downward, then a warm glow lifts them. */
  text-shadow:
    0 1px 0 #b9924e,
    0 2px 0 #a07c3f,
    0 3px 0 #7d5f2e,
    0 4px 0 #5c4522,
    0 5px 0 #3d2d16,
    0 6px 10px rgba(0, 0, 0, 0.55),
    0 0 26px rgba(201, 161, 91, 0.35);
  transition: transform 0.4s var(--ease), color 0.4s var(--ease);
}

.marquee span:hover {
  transform: translateZ(38px) scale(1.04);
  color: var(--gold-light);
}

.marquee span::after {
  content: "✦";
  display: inline-block;
  margin-left: 3rem;
  color: var(--gold);
  font-size: 0.8rem;
  vertical-align: middle;
  text-shadow: 0 0 14px rgba(201, 161, 91, 0.7);
  animation: starSpin 6s linear infinite;
}

@keyframes starSpin {
  to {
    transform: rotateY(360deg);
  }
}

/* Travelling highlight that reads as light catching the ribbon. */
.marquee-sheen {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    100deg,
    transparent 35%,
    rgba(255, 245, 220, 0.16) 48%,
    rgba(255, 245, 220, 0.28) 52%,
    transparent 65%
  );
  mix-blend-mode: screen;
  animation: sheenSweep 7s ease-in-out infinite;
}

@keyframes sheenSweep {
  0% {
    transform: translateX(-60%);
  }
  55%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes slide {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- sections ---------- */

.section {
  padding: 6.5rem 5vw;
}

/* Anchor jumps stop below the sticky bar instead of behind it. The extra cushion
   absorbs the small reflow that happens as lazy images below the fold load in. */
main [id] {
  scroll-margin-top: calc(var(--header) + 46px);
}

.section-head {
  max-width: 44rem;
  margin-bottom: 3rem;
}

.section-head h2 {
  margin: 0.2rem 0 0.9rem;
  font-size: clamp(2.1rem, 3.8vw, 3.3rem);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.section-head .muted {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
}

.muted {
  color: var(--mist-soft);
}

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

.card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--glass);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-lg);
}

.card-media {
  position: relative;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.6s var(--ease);
}

.card:hover .card-media img {
  transform: scale(1.08);
  filter: saturate(1.12);
}

.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 17, 20, 0) 40%, rgba(14, 17, 20, 0.75));
}

.card-index {
  position: absolute;
  left: 1.2rem;
  top: 1.1rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(230, 205, 150, 0.7);
  background: rgba(14, 17, 20, 0.65);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 0.9rem;
  backdrop-filter: blur(4px);
}

.card-body {
  padding: 1.5rem 1.6rem 1.8rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
  color: var(--gold-light);
}

/* ---------- interactive 3D collection ---------- */

.model-section {
  position: relative;
}

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

.model-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--glass);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.model-card:hover {
  transform: translateY(-8px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-lg);
}

.model-stage {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(230, 205, 150, 0.22), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(201, 107, 65, 0.15), transparent 45%),
    linear-gradient(145deg, rgba(46, 53, 59, 0.9), rgba(13, 16, 19, 0.96));
  border-bottom: 1px solid var(--line);
}

.model-stage::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  border: 1px solid rgba(230, 205, 150, 0.2);
  border-radius: 22px;
  pointer-events: none;
}

model-viewer {
  display: block;
  width: 100%;
  height: 440px;
  --poster-color: transparent;
  --progress-bar-color: var(--gold);
  --progress-bar-height: 3px;
}

.model-hint {
  position: absolute;
  right: 1.6rem;
  bottom: 1.4rem;
  z-index: 2;
  padding: 0.48rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 13, 16, 0.72);
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
  backdrop-filter: blur(8px);
}

.model-copy {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 1.6rem 1.7rem;
}

.model-copy h3 {
  margin: 0 0 0.35rem;
  color: var(--gold-light);
  font-size: 1.45rem;
}

.model-copy p {
  margin: 0;
}

.model-number {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.82rem;
}

/* ---------- workshop feature ---------- */

.workshop {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border-radius: 34px;
  overflow: hidden;
  color: var(--mist);
  background:
    radial-gradient(90% 120% at 90% 10%, rgba(201, 161, 91, 0.18), transparent 60%),
    linear-gradient(135deg, #171c20, #2b3339);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.workshop::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  pointer-events: none;
  z-index: 2;
}

.workshop-media {
  position: relative;
  overflow: hidden;
}

.workshop-media img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.workshop:hover .workshop-media img {
  transform: scale(1.06);
}

.workshop-copy {
  padding: 3.2rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.workshop .kicker {
  color: var(--gold-light);
}

.workshop .kicker::before {
  background: linear-gradient(90deg, var(--gold-light), transparent);
}

.workshop h2 {
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  margin: 0 0 0.8rem;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.8rem 0 2rem;
}

.price {
  padding: 1.1rem 1.2rem;
  border-radius: 20px;
  background: rgba(232, 228, 220, 0.05);
  border: 1px solid rgba(201, 161, 91, 0.35);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}

.price:hover {
  transform: translateY(-4px);
  background: rgba(232, 228, 220, 0.1);
}

.price b {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 2.1rem;
  color: var(--gold-light);
}

.price span {
  font-size: 0.9rem;
  color: var(--mist-soft);
}

.occasion-stack {
  display: grid;
  gap: 1.6rem;
}

/* ---------- party band ---------- */

.party-band {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
  padding: 3rem 3.2rem;
  border-radius: 34px;
  overflow: hidden;
  isolation: isolate;
  color: var(--mist);
  background:
    radial-gradient(70% 90% at 78% 50%, rgba(201, 107, 65, 0.28), transparent 62%),
    radial-gradient(60% 80% at 15% 20%, rgba(201, 161, 91, 0.16), transparent 60%),
    linear-gradient(135deg, #0f1215, #1c2227 55%, #0d1013);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.party-band::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  pointer-events: none;
  z-index: 2;
}

.party-copy .kicker {
  color: var(--gold-light);
}

.party-copy .kicker::before {
  background: linear-gradient(90deg, var(--gold-light), transparent);
}

.party-copy h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 3.2vw, 2.9rem);
}

.party-copy .btn {
  margin-top: 1.3rem;
}

/* Footage is on solid black, so screen blending drops the box and leaves the dancers. */
.party-video {
  width: 100%;
  height: 440px;
  object-fit: contain;
  transform: scale(1.25);
  mix-blend-mode: screen;
  filter: saturate(1.12);
}

/* ---------- festive film band ---------- */

.film {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 620px;
  padding: 3.2rem;
  border-radius: 34px;
  overflow: hidden;
  color: var(--mist);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.film-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.film-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 13, 16, 0.92) 0%, rgba(10, 13, 16, 0.6) 45%, rgba(10, 13, 16, 0.15) 75%),
    linear-gradient(0deg, rgba(10, 13, 16, 0.65), transparent 55%);
}

.film::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  pointer-events: none;
}

.film-copy {
  max-width: 34rem;
}

.film-copy h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2.1rem, 3.6vw, 3.2rem);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.film-copy p {
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.5);
}

.film-copy .kicker {
  color: var(--gold-light);
}

.film-copy .kicker::before {
  background: linear-gradient(90deg, var(--gold-light), transparent);
}

.film-copy .btn {
  margin-top: 1.4rem;
}

.film-toggle {
  position: absolute;
  right: 2rem;
  top: 2rem;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(230, 205, 150, 0.55);
  background: rgba(10, 13, 16, 0.55);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.film-toggle:hover {
  background: rgba(10, 13, 16, 0.85);
  transform: scale(1.06);
}

/* ---------- about ---------- */

/* Title on the left, story on the right, quote spanning the full width — the block
   fills the section instead of leaving a dead column of background. */
.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.4rem 4.5rem;
  align-items: start;
}

.about-head h2 {
  margin: 0.2rem 0 0;
  font-size: clamp(2.1rem, 3.8vw, 3.3rem);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.about-body {
  display: grid;
  gap: 1.1rem;
  max-width: 42rem;
}

.about-body p {
  margin: 0;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
}

.quote {
  position: relative;
  grid-column: 1 / -1;
  max-width: 58rem;
  margin: 2.6rem 0 0;
  padding: 2rem 2.4rem 2rem 4.2rem;
  border-left: 3px solid var(--gold);
  background: var(--glass-soft);
  border-radius: 0 22px 22px 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: var(--mist);
  backdrop-filter: blur(8px);
}

.quote::before {
  content: "✦";
  position: absolute;
  left: 1.7rem;
  top: 2.1rem;
  font-size: 1.35rem;
  line-height: 1;
  color: rgba(201, 161, 91, 0.75);
}

/* ---------- gallery ---------- */

/* Masonry columns keep each photo's real proportions — no cropping — while the
   narrow column width keeps the thumbnails small. */
.gallery {
  columns: 5 168px;
  column-gap: 0.75rem;
}

.gallery figure {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 0.75rem;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  break-inside: avoid;
}

.gallery img {
  width: 100%;
  height: auto;
  transition: transform 1s var(--ease);
}

.gallery figure:hover img {
  transform: scale(1.09);
}

.gallery figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.1rem 0.7rem 0.55rem;
  background: linear-gradient(180deg, transparent, rgba(10, 13, 16, 0.92));
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 1;
  transform: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.gallery figure:hover figcaption {
  opacity: 1;
  transform: none;
}

/* ---------- visit + contact ---------- */

.visit {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.6rem;
  margin-top: 4.5rem;
}

.panel {
  padding: 2.2rem;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-sm);
}

.panel h2 {
  margin-top: 0;
}

.panel a {
  color: var(--gold-light);
  font-weight: 700;
}

.map-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

/* Border and shadow are left off because the filter below would invert them into a light halo. */
.map {
  display: block;
  width: 100%;
  min-height: 460px;
  border: 0;
  border-radius: var(--radius);
  /* Invert + hue-rotate turns the light Google tiles into a dark map that sits with the theme. */
  filter: invert(0.9) hue-rotate(180deg) saturate(0.65) contrast(0.9) brightness(0.95);
}

/* The marker floats above the shop location; the filter above is not inherited here,
   so it keeps its true colours against the darkened tiles. */
.map-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 132px;
  height: 168px;
  /* Element-level model-viewer rules further down set a min-height for the
     showcase models; the marker has to opt out of it. */
  min-height: 0;
  transform: translate(-50%, -87%);
  pointer-events: none;
  background: transparent;
  --poster-color: transparent;
  --progress-bar-color: transparent;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.55));
  animation: markerFloat 4.2s ease-in-out infinite;
}

@keyframes markerFloat {
  0%,
  100% {
    transform: translate(-50%, -87%);
  }
  50% {
    transform: translate(-50%, -93%);
  }
}

/* Ground pulse under the marker so it reads as pinned to a spot. */
.map-pulse {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 74px;
  height: 26px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 62, 48, 0.5), transparent 70%);
  pointer-events: none;
  animation: markerPulse 4.2s ease-in-out infinite;
}

@keyframes markerPulse {
  0%,
  100% {
    opacity: 0.85;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0.82);
  }
}

@media (max-width: 700px) {
  .map-marker {
    width: 84px;
    height: 108px;
    min-height: 0;
  }

  .map-pulse {
    width: 48px;
    height: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .map-marker,
  .map-pulse {
    animation: none;
  }
}

.visit .panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-panel {
  max-width: 760px;
  margin: 0 auto;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  font: inherit;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(12, 15, 18, 0.6);
  color: var(--mist);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}

.contact-form option {
  background: #171c20;
  color: var(--mist);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--mist-faint);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(12, 15, 18, 0.85);
  box-shadow: 0 0 0 4px rgba(201, 161, 91, 0.2);
}

.form-note {
  font-size: 0.86rem;
  color: var(--mist-faint);
}

/* ---------- footer ---------- */

.site-footer {
  overflow: hidden;
  padding: 5rem 5vw 2rem;
  background: linear-gradient(180deg, rgba(13, 16, 19, 0.94), rgba(6, 8, 10, 0.99));
  border-top: 1px solid var(--line-strong);
  color: var(--mist-soft);
  backdrop-filter: blur(10px);
}

/* A soft gold bloom along the top edge lifts the footer off the page. */
.site-footer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(880px, 90%);
  height: 220px;
  transform: translateX(-50%);
  background: radial-gradient(60% 100% at 50% 0%, rgba(201, 161, 91, 0.28), transparent 70%);
  pointer-events: none;
}

.footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.site-footer a {
  color: var(--mist-soft);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

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

.footer-brand .brand {
  margin-bottom: 1.2rem;
}

.footer-tagline {
  max-width: 30rem;
  margin: 0 0 1.6rem;
  font-size: 0.95rem;
  color: var(--mist-faint);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.social {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(232, 228, 220, 0.04);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.social svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  transition: fill 0.3s var(--ease);
}

.social:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(201, 161, 91, 0.12);
}

.social:hover svg {
  fill: var(--gold-light);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-col address {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-style: normal;
  font-size: 0.92rem;
}

.footer-cta {
  align-self: flex-start;
  margin-top: 0.9rem;
  padding: 0.8rem 1.4rem;
  font-size: 0.88rem;
}

.site-footer .footer-cta {
  color: #1a140c;
}

/* Ornamental divider between the columns and the closing line. */
.footer-rule {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin: 3rem 0 1.8rem;
  color: var(--gold);
  font-size: 0.9rem;
  text-shadow: 0 0 16px rgba(201, 161, 91, 0.6);
}

.footer-rule::before,
.footer-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 161, 91, 0.75), transparent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.footer-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 1rem;
  margin: 0;
  font-size: 0.78rem;
  color: var(--mist-faint);
}

.footer-copy {
  color: rgba(236, 232, 224, 0.45);
}

.credit {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mist-faint);
}

.credit img {
  height: 58px;
  width: auto;
  padding: 0.4rem;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  transition: transform 0.4s var(--ease);
}

.credit:hover img {
  transform: translateY(-3px);
}

.toast {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 60;
  padding: 0.9rem 1.2rem;
  border-radius: 14px;
  background: linear-gradient(120deg, var(--gold), var(--gold-light));
  color: #1a140c;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.toast.show {
  opacity: 1;
  transform: none;
}

/* ---------- scroll reveal ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

[data-reveal].in {
  opacity: 1;
  transform: none;
}

/* ---------- responsive ---------- */

@media (max-width: 1040px) {
  .hero,
  .workshop,
  .visit,
  .card-grid,
  .model-grid,
  .about {
    grid-template-columns: 1fr;
  }

  .quote {
    padding: 1.6rem 1.6rem 1.6rem 3.6rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .hero {
    padding-top: 3rem;
    gap: 2.5rem;
  }

  .workshop-media img {
    min-height: 320px;
  }

  .workshop-copy {
    padding: 2.2rem 1.8rem 2.6rem;
  }

  .film {
    min-height: 520px;
    padding: 2rem 1.6rem 2.4rem;
  }

  .party-band {
    grid-template-columns: 1fr;
    padding: 2.2rem 1.8rem 1rem;
  }

  .party-video {
    height: 280px;
  }

  .model-stage,
  model-viewer {
    height: 390px;
    min-height: 390px;
  }

  .film-toggle {
    right: 1.2rem;
    top: 1.2rem;
  }

  .nav-links {
    position: fixed;
    inset: var(--header) 1rem auto 1rem;
    z-index: 60;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    border-radius: 22px;
    border: 1px solid var(--line-strong);
    background: #0d1013;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(-16px);
    pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }

  .nav-links a {
    padding: 0.85rem 1rem;
    font-size: 1rem;
  }

  .nav-links.open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
    background-attachment: scroll;
  }

  .section {
    padding: 4.2rem 6vw;
  }

  .model-stage,
  model-viewer {
    height: 340px;
    min-height: 340px;
  }

  .model-hint {
    right: 1rem;
    bottom: 1rem;
  }

  .price-row {
    grid-template-columns: 1fr;
  }

  .gallery {
    columns: 2 130px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .badge-price {
    right: 4px;
    bottom: 12px;
  }

  .badge-note {
    left: 4px;
    top: 12px;
  }

  .header-actions .btn-primary {
    display: none;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    font-size: 0.9rem;
  }

  .brand-text strong {
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .brand-text span {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
  }
}

@media (max-width: 400px) {
  .brand-text {
    display: none;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
