:root {
  --ink: #fff4e4;
  --muted: #d3b99b;
  --bg: #301c11;
  --panel: #4a2e1c;
  --line: rgba(232, 187, 119, .22);
  --gold: #e3b35f;
  --ember: #b86a3f;
  --green: #6f7f56;
  --wood: #4a2e1c;
  --wood-deep: #1b100a;
  --shadow: 0 28px 80px rgba(32, 17, 9, .48);
  --content: 1120px;
  --narrow: 860px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 12%, rgba(227,179,95,.2), transparent 30%),
    radial-gradient(circle at 16% 45%, rgba(111,127,86,.13), transparent 34%),
    repeating-linear-gradient(103deg, rgba(255,231,174,.04) 0 1px, transparent 1px 19px, rgba(83,49,27,.12) 19px 28px),
    repeating-linear-gradient(96deg, rgba(255,244,228,.025) 0 2px, transparent 2px 54px),
    linear-gradient(180deg, #513019 0%, #301c11 42%, #22130c 100%);
  z-index: -2;
}

@keyframes heroDrift {
  0%, 100% { transform: scale(1.02) translate3d(0, 0, 0); }
  50% { transform: scale(1.08) translate3d(-1.5%, .8%, 0); }
}

@keyframes heroSlide {
  0%, 28% { opacity: 1; transform: scale(1.04) translate3d(0, 0, 0); }
  34%, 94% { opacity: 0; transform: scale(1.1) translate3d(-1.5%, .8%, 0); }
  100% { opacity: 1; transform: scale(1.04) translate3d(0, 0, 0); }
}

@keyframes softPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(215, 168, 90, 0); }
  50% { box-shadow: 0 0 34px rgba(215, 168, 90, .18); }
}

@keyframes lightboxFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes lightboxImageIn {
  from { opacity: 0; transform: translateY(10px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes splashExit {
  0% { opacity: 1; transform: scale(1); visibility: visible; pointer-events: auto; }
  100% { opacity: 0; transform: scale(1.015); visibility: hidden; pointer-events: none; }
}

@keyframes stageSettle {
  0% { opacity: 0; transform: translateY(12px) scale(.94); filter: blur(3px); }
  42% { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes ringAssemble {
  0% { opacity: 0; transform: rotate(-42deg) scale(.78); clip-path: inset(0 54% 0 54%); }
  55% { opacity: 1; clip-path: inset(0 0 0 0); }
  100% { opacity: 1; transform: rotate(0deg) scale(1); clip-path: inset(0 0 0 0); }
}

@keyframes ringOrbit {
  from { transform: rotate(0deg) scale(1); }
  to { transform: rotate(360deg) scale(1); }
}

@keyframes logoBuild {
  0% { opacity: 0; transform: scale(.86) rotate(-8deg); filter: blur(7px) brightness(1.35); }
  48% { opacity: 1; transform: scale(1.07) rotate(1.2deg); filter: blur(0) brightness(1.26); }
  100% { opacity: 1; transform: scale(1) rotate(0); filter: blur(0) brightness(1); }
}

@keyframes wordReveal {
  0% { opacity: 0; transform: translateY(10px); clip-path: inset(0 50% 0 50%); }
  100% { opacity: 1; transform: translateY(0); clip-path: inset(0 0 0 0); }
}

@keyframes beamSweep {
  0% { opacity: 0; transform: translateX(-42%) rotate(var(--beam-rotate)) scaleX(.5); }
  25% { opacity: .85; }
  100% { opacity: 0; transform: translateX(42%) rotate(var(--beam-rotate)) scaleX(1.12); }
}

@keyframes sparkPop {
  0% { opacity: 0; transform: translate3d(0, 0, 0) scale(.4); }
  42% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(var(--spark-x), var(--spark-y), 0) scale(1); }
}

@keyframes emberLine {
  0% { transform: translateX(-115%) scaleX(.72); opacity: 0; }
  24% { opacity: .9; }
  100% { transform: translateX(115%) scaleX(1); opacity: 0; }
}

@keyframes priceGlow {
  0% { opacity: 0; transform: translateX(-42px) rotate(16deg); }
  44% { opacity: .74; }
  100% { opacity: 0; transform: translateX(82px) rotate(16deg); }
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.intro-splash {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 36%, rgba(227,179,95,.22), transparent 24%),
    radial-gradient(circle at 50% 62%, rgba(111,127,86,.14), transparent 34%),
    linear-gradient(145deg, rgba(83,49,27,.98), rgba(30,18,11,.98) 48%, rgba(18,12,8,.98));
  animation: splashExit 520ms var(--ease-out) 2550ms forwards;
}
.intro-splash::before,
.intro-splash::after {
  content: "";
  position: absolute;
  inset: -20%;
  pointer-events: none;
}
.intro-splash::before {
  background:
    repeating-linear-gradient(96deg, rgba(255,244,228,.045) 0 1px, transparent 1px 20px),
    radial-gradient(circle at 50% 50%, transparent 0 18%, rgba(215,168,90,.1) 18.2% 18.8%, transparent 19%);
  opacity: .8;
}
.intro-splash::after {
  background: linear-gradient(90deg, transparent, rgba(255,231,174,.2), transparent);
  transform: translateX(-46%) rotate(-12deg);
  animation: beamSweep 1200ms var(--ease-in-out) 620ms both;
}
.intro-stage {
  position: relative;
  display: grid;
  place-items: center;
  justify-items: center;
  width: min(620px, calc(100vw - 42px));
  min-height: clamp(320px, 56vw, 540px);
  padding: 46px 24px;
  isolation: isolate;
  animation: stageSettle 780ms var(--ease-out) both;
}
.intro-logo-mark {
  position: relative;
  z-index: 2;
  width: clamp(210px, 34vw, 340px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,.42));
  animation: logoBuild 920ms var(--ease-out) 360ms both;
}
.intro-ring {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: clamp(292px, 48vw, 470px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(227,179,95,.42);
  box-shadow: 0 0 34px rgba(227,179,95,.16), inset 0 0 24px rgba(227,179,95,.1);
  translate: -50% -50%;
  animation: ringAssemble 980ms var(--ease-out) 120ms both, ringOrbit 1800ms linear 900ms both;
}
.intro-ring-outer {
  border-top-color: rgba(255,231,174,.94);
  border-right-color: rgba(255,231,174,.16);
}
.intro-ring-inner {
  width: clamp(214px, 35vw, 340px);
  border-color: rgba(111,127,86,.48);
  border-left-color: rgba(255,231,174,.88);
  animation-delay: 220ms, 980ms;
  animation-direction: normal, reverse;
}
.intro-beam {
  position: absolute;
  z-index: 0;
  left: -18%;
  right: -18%;
  top: 40%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,231,174,.86), transparent);
  box-shadow: 0 0 28px rgba(227,179,95,.42);
  transform-origin: center;
  pointer-events: none;
  animation: beamSweep 980ms var(--ease-in-out) both;
}
.intro-beam-one { --beam-rotate: 14deg; animation-delay: 260ms; }
.intro-beam-two { --beam-rotate: -18deg; animation-delay: 520ms; }
.intro-spark {
  position: absolute;
  z-index: 3;
  top: 42%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--gold);
  box-shadow: 0 0 22px rgba(227,179,95,.74);
  transform: rotate(45deg);
  animation: sparkPop 780ms var(--ease-out) both;
}
.intro-spark-one { --spark-x: -130px; --spark-y: -84px; animation-delay: 760ms; }
.intro-spark-two { --spark-x: 118px; --spark-y: 76px; animation-delay: 900ms; }
.intro-splash.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 56px);
  transition: background 180ms ease, border-color 180ms ease, padding 180ms var(--ease-out), backdrop-filter 180ms ease;
}
.site-header.is-scrolled {
  padding-block: 10px;
  background:
    linear-gradient(90deg, rgba(51, 31, 19, .86), rgba(30, 17, 10, .78));
  border-bottom: 1px solid rgba(227,179,95,.2);
  backdrop-filter: blur(12px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; }
.brand img { width: 48px; height: 48px; object-fit: contain; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-size: 15px; }
.brand-copy small { color: var(--gold); font-size: 12px; font-weight: 900; }
.main-nav { display: flex; gap: 8px; align-items: center; }
.main-nav a {
  padding: 10px 14px;
  color: rgba(248, 242, 232, .82);
  font-weight: 700;
  font-size: 14px;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--ease-out);
}
.main-nav a:hover { color: var(--gold); }
.main-nav a:hover::after { transform: scaleX(1); }
.nav-cta {
  border: 1px solid rgba(215,168,90,.55);
  background: rgba(215,168,90,.14);
  color: var(--gold) !important;
}
.nav-cta::after { display: none; }
.nav-toggle { display: none; }

.hero {
  min-height: 96vh;
  position: relative;
  display: grid;
  align-items: end;
  padding: 120px clamp(18px, 5vw, 72px) 38px;
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroSlide 21s var(--ease-in-out) infinite;
}
.hero-media.slide-two { animation-delay: 7s; }
.hero-media.slide-three { animation-delay: 14s; }
.hero-media.slide-one {
  opacity: 1;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(43, 25, 14, .9) 0%, rgba(51, 30, 17, .66) 42%, rgba(87,54,29,.22) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(36,21,13,.64) 24%, transparent 52%);
  z-index: -1;
}
.hero-content {
  width: min(var(--content), 100%);
  margin-inline: auto;
  padding-bottom: 190px;
}
.eyebrow, .section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 13px;
}
.hero .eyebrow {
  text-transform: none;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: 0;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 900px;
  font-size: clamp(48px, 8vw, 112px);
  line-height: .88;
  letter-spacing: 0;
  margin-bottom: 26px;
}
h2 { font-size: clamp(32px, 4.2vw, 62px); line-height: 1; letter-spacing: 0; }
h3 { font-size: 20px; margin-bottom: 8px; }
.hero-copy {
  max-width: 650px;
  font-size: clamp(18px, 2vw, 23px);
  color: rgba(248, 242, 232, .82);
}
.hero-actions, .contact-direct { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--line);
  padding: 13px 20px;
  font-weight: 900;
  transition: transform 160ms var(--ease-out), background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}
.button.primary { background: var(--gold); color: #18100b; border-color: var(--gold); }
.button.ghost { background: rgba(91, 56, 32, .34); backdrop-filter: blur(12px); }
.button:active { transform: scale(.97); }
.hero-panel {
  position: absolute;
  left: 50%;
  width: min(var(--content), calc(100% - 36px));
  transform: translateX(-50%);
  bottom: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(215,168,90,.28);
  background:
    linear-gradient(135deg, rgba(227,179,95,.16), rgba(255,242,222,.045) 34%, rgba(111,127,86,.14)),
    rgba(50, 30, 18, .7);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 70px rgba(30,15,7,.48), inset 0 1px 0 rgba(255,244,228,.1);
}
.hero-panel div {
  position: relative;
  min-height: 116px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background:
    linear-gradient(145deg, rgba(72, 45, 27, .86), rgba(31, 18, 11, .76)),
    repeating-linear-gradient(92deg, rgba(255,244,228,.035) 0 1px, transparent 1px 16px);
  transition: background 200ms ease, transform 220ms var(--ease-out), border-color 200ms ease, box-shadow 200ms ease;
}
.hero-panel div:nth-child(1) { --item-delay: 80ms; }
.hero-panel div:nth-child(2) { --item-delay: 340ms; }
.hero-panel div:nth-child(3) { --item-delay: 600ms; }
.hero-panel div:nth-child(4) { --item-delay: 860ms; }
.hero-panel div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  pointer-events: none;
  background: linear-gradient(180deg, var(--gold), rgba(216,91,54,.76));
  opacity: .9;
}
.hero-panel div::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 86% 16%, rgba(215,168,90,.18), transparent 38%);
  opacity: .75;
}
.hero-panel div:active { transform: scale(.985); }
.hero-panel.reveal div {
  opacity: 0;
  transform: translateY(14px) scale(.97);
  transition: opacity 420ms var(--ease-out), transform 520ms var(--ease-out), border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
  transition-delay: var(--item-delay, 0ms);
}
body.intro-complete .hero-panel.reveal.is-visible div {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.hero-panel strong, .hero-panel span { display: block; }
.hero-panel-label {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 9px;
  color: var(--gold);
  border: 1px solid rgba(215,168,90,.34);
  background: rgba(215,168,90,.08);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}
.hero-panel strong {
  position: relative;
  z-index: 1;
  font-size: clamp(22px, 2vw, 31px);
  line-height: .95;
  letter-spacing: 0;
}
.hero-panel div > span:not(.hero-panel-label) {
  position: relative;
  z-index: 1;
  color: rgba(248, 242, 232, .72);
  font-size: 14px;
  margin-top: 10px;
}

.section {
  width: min(var(--content), calc(100% - 36px));
  margin-inline: auto;
  padding: clamp(72px, 9vw, 118px) 0;
}
.pricing {
  width: min(1232px, calc(100% - 36px));
}
.intro,
.trust,
.occasions,
.equipment,
.facts,
.pricing,
.faq,
.process {
  position: relative;
  isolation: isolate;
}
.intro::before,
.equipment::before,
.process::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
  opacity: .12;
  filter: saturate(1.08);
}
.intro::before {
  inset: 22px max(-10vw, -110px);
  background:
    radial-gradient(circle at 18% 26%, rgba(227,179,95,.11), transparent 34%),
    linear-gradient(90deg, rgba(48,28,17,.66) 0%, rgba(74,46,28,.24) 42%, rgba(31,18,11,.58) 100%);
}
.equipment::before {
  inset: 18px max(-8vw, -90px);
  background:
    radial-gradient(circle at 78% 18%, rgba(227,179,95,.13), transparent 32%),
    radial-gradient(circle at 20% 72%, rgba(111,127,86,.09), transparent 34%),
    linear-gradient(180deg, rgba(48,28,17,.72), rgba(74,46,28,.26), rgba(29,17,11,.72));
}
.intro-grid, .contact {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
}
.trust {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
}
.trust p {
  color: rgba(248, 242, 232, .78);
  font-size: 18px;
}
.trust-grid,
.occasion-grid,
.facts-grid,
.faq-grid {
  display: grid;
  gap: 12px;
}
.trust-grid,
.occasion-grid,
.facts-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.trust-grid article,
.occasion-grid article,
.facts-grid article,
.faq-grid details {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(74, 46, 28, .88), rgba(37, 22, 14, .84)),
    repeating-linear-gradient(92deg, rgba(255,244,228,.035) 0 1px, transparent 1px 18px);
  padding: 22px;
}
.trust-grid span,
.facts-grid span,
.addon-list span {
  display: block;
  color: var(--gold);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.trust-grid strong,
.facts-grid strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
}
.occasion-grid article {
  transition: transform 220ms var(--ease-out), border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}
.occasion-grid p,
.facts-grid p {
  color: var(--muted);
  margin-bottom: 0;
}
.intro-layout {
  width: min(var(--content), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}
.intro-copy {
  color: rgba(248, 242, 232, .78);
  font-size: 19px;
}
.intro-copy .button { margin-top: 12px; }
.intro-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}
.intro-photo {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(92,57,33,.16);
  box-shadow: var(--shadow);
  cursor: zoom-in;
  transition: border-color 200ms ease, transform 220ms var(--ease-out), min-height 240ms var(--ease-in-out), box-shadow 200ms ease, grid-column 0ms linear;
}
.intro-photo::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 16px;
  width: 38px;
  height: 38px;
  pointer-events: none;
  border: 1px solid rgba(255,231,174,.48);
  background: linear-gradient(135deg, rgba(255,231,174,.28), rgba(74,46,28,.38)), rgba(27,16,10,.42);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(6px) scale(.96);
  transition: opacity 180ms ease, transform 220ms var(--ease-out);
}
.intro-photo::before {
  content: "";
  position: absolute;
  z-index: 2;
  right: 29px;
  bottom: 29px;
  width: 12px;
  height: 12px;
  pointer-events: none;
  border-top: 2px solid rgba(255,244,228,.92);
  border-right: 2px solid rgba(255,244,228,.92);
  opacity: 0;
  transform: translate(-2px, 2px);
  transition: opacity 180ms ease, transform 220ms var(--ease-out);
}
.intro-photo-main {
  min-height: 300px;
}
.intro-photo-secondary {
  min-height: 300px;
}
.intro-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 520ms var(--ease-out), filter 220ms ease;
}
.intro-photo:focus-visible {
  outline: 3px solid rgba(215, 168, 90, .7);
  outline-offset: 4px;
}
.intro-photo.is-expanded {
  grid-column: 1 / -1;
  min-height: min(70vh, 620px);
  border-color: rgba(215, 168, 90, .55);
  cursor: zoom-out;
  z-index: 2;
}
.intro-photo.is-expanded img {
  transform: none;
}
.intro-photo.is-expanded::before {
  transform: rotate(180deg) translate(-2px, 2px);
}
.photo-placeholder {
  min-height: 460px;
  height: 100%;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(215, 168, 90, .48);
  background:
    linear-gradient(145deg, rgba(74, 46, 28, .78), rgba(37, 22, 14, .64)),
    linear-gradient(135deg, rgba(215, 168, 90, .16), rgba(92, 123, 98, .14));
  color: rgba(248, 242, 232, .82);
  font-weight: 900;
  text-align: center;
}
.photo-placeholder span {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(60,36,21,.3);
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 520ms var(--ease-out), transform 620ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.is-visible { will-change: auto; }
.reveal .trust-grid article,
.reveal .occasion-grid article,
.reveal .facts-grid article,
.reveal .equipment-grid article,
.reveal .pricing-card,
.reveal .steps div,
.reveal .gallery-grid button {
  opacity: 0;
  transform: translateY(16px) scale(.98);
  transition: opacity 460ms var(--ease-out), transform 560ms var(--ease-out), border-color 200ms ease, background 200ms ease, box-shadow 200ms ease, clip-path 620ms var(--ease-out);
  transition-delay: var(--item-delay, 0ms);
}
.reveal.is-visible .trust-grid article,
.reveal.is-visible .occasion-grid article,
.reveal.is-visible .facts-grid article,
.reveal.is-visible .equipment-grid article,
.reveal.is-visible .pricing-card,
.reveal.is-visible .steps div,
.reveal.is-visible .gallery-grid button {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.hero-panel.reveal {
  transform: translateX(-50%) translateY(20px);
}
.hero-panel.reveal.is-visible {
  transform: translateX(-50%) translateY(0);
}
.feature-strip {
  width: min(var(--content), calc(100% - 36px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(74, 46, 28, .28), rgba(28,17,11,.22)),
    repeating-linear-gradient(92deg, rgba(255,244,228,.03) 0 1px, transparent 1px 20px);
}
.feature-strip div { padding: 30px clamp(18px, 3vw, 42px); border-right: 1px solid var(--line); }
.feature-strip div { transition: background 200ms ease, color 200ms ease, transform 220ms var(--ease-out); }
.feature-strip div:nth-child(2n) { border-right: 0; }
.feature-strip div:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
.feature-strip span { display: block; color: var(--gold); font-weight: 900; margin-bottom: 6px; }
.feature-strip strong { display: block; font-size: 18px; }

.image-stack {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 16px;
  align-items: end;
}
.image-stack img {
  height: 560px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.image-stack img:nth-child(2) { height: 430px; margin-bottom: -42px; }
.split-copy p { color: rgba(248, 242, 232, .78); font-size: 18px; }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 12px; }
.check-list li { padding-left: 30px; position: relative; color: rgba(248, 242, 232, .86); }
.check-list li::before { content: ""; position: absolute; left: 0; top: 10px; width: 14px; height: 8px; border-left: 3px solid var(--gold); border-bottom: 3px solid var(--gold); transform: rotate(-45deg); }

.section-heading { max-width: 780px; margin-bottom: 34px; }
.equipment-grid {
  display: grid;
  grid-template-columns: minmax(300px, .92fr) repeat(2, minmax(0, 1fr));
  gap: 12px;
  background: transparent;
  border: 1px solid var(--line);
  padding: 12px;
  background:
    linear-gradient(145deg, rgba(227,179,95,.12), rgba(90,58,34,.16) 38%, rgba(111,127,86,.1)),
    rgba(62,38,23,.08);
}
.equipment-grid article {
  position: relative;
  overflow: hidden;
  min-height: 226px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(74, 46, 28, .92), rgba(37, 22, 14, .9)),
    repeating-linear-gradient(94deg, rgba(255,244,228,.035) 0 1px, transparent 1px 17px);
  border: 1px solid rgba(232,187,119,.16);
  transition: transform 220ms var(--ease-out), background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}
.equipment-grid article::after,
.trust-grid article::after,
.facts-grid article::after,
.occasion-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0 42%, rgba(255,231,174,.08) 50%, transparent 58% 100%);
  opacity: 0;
  transform: translateX(-24%);
  transition: opacity 180ms ease, transform 520ms var(--ease-out);
}
.equipment-lead { padding: 0 !important; overflow: hidden; position: relative; }
.equipment-lead { grid-row: span 3; }
.equipment-lead img,
.equipment-video {
  width: 100%;
  height: 100%;
  min-height: 245px;
  object-fit: cover;
  transition: transform 520ms var(--ease-out), filter 220ms ease;
}
.equipment-video {
  display: block;
  background: rgba(30,18,11,.78);
}
.equipment-lead-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  background: rgba(55, 33, 20, .78);
  border: 1px solid rgba(232,187,119,.22);
  backdrop-filter: blur(12px);
  z-index: 3;
}
.equipment-lead-copy strong {
  display: block;
  color: var(--ink);
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1;
}
.equipment-grid span, .steps span { color: var(--gold); font-weight: 900; font-size: 13px; }
.equipment-grid p, .steps p { color: var(--muted); }
.equipment-icon {
  width: 46px;
  height: 46px;
  display: inline-grid !important;
  place-items: center;
  margin-bottom: 20px;
  color: var(--ink) !important;
  background: linear-gradient(145deg, rgba(227,179,95,.34), rgba(111,127,86,.22));
  border: 1px solid rgba(215,168,90,.45);
}
.equipment-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery {
  padding-block: clamp(44px, 6vw, 76px);
}
.gallery .section-heading {
  max-width: 620px;
  margin-bottom: 20px;
}
.gallery h2 {
  font-size: clamp(26px, 3vw, 42px);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.gallery-grid button {
  position: relative;
  height: 150px;
  border: 0;
  padding: 0;
  background:
    linear-gradient(145deg, rgba(74,46,28,.74), rgba(30,18,11,.86)),
    repeating-linear-gradient(94deg, rgba(255,244,228,.035) 0 1px, transparent 1px 18px);
  cursor: zoom-in;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
  transition: transform 160ms var(--ease-out), clip-path 520ms var(--ease-out);
}
.reveal .gallery-grid button {
  clip-path: inset(0 0 100% 0);
}
.gallery.reveal.is-visible .gallery-grid button {
  opacity: 0;
  transform: translateY(16px) scale(.98);
  clip-path: inset(0 0 100% 0);
}
.gallery.reveal.is-visible.is-gallery-ready .gallery-grid button {
  opacity: 1;
  transform: translateY(0) scale(1);
  clip-path: inset(0 0 0 0);
}
.gallery-grid button:nth-child(n) { grid-column: auto; }
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: transform 520ms var(--ease-out), filter 220ms ease, opacity 220ms ease;
}
.gallery.is-gallery-ready .gallery-grid img {
  opacity: 1;
}
.gallery-grid button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.32));
  opacity: 0;
  transition: opacity 180ms ease;
}
.gallery-grid button:active img { transform: scale(.985); }

.pricing-heading {
  width: min(var(--narrow), 100%);
  margin-inline: auto;
  text-align: center;
  padding: 26px;
  background: radial-gradient(circle at 50% 0%, rgba(227,179,95,.12), transparent 58%);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(28px, 4vw, 46px);
}
.pricing-card {
  position: relative;
  isolation: isolate;
  min-height: 484px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 24px;
  overflow: visible;
  padding: clamp(26px, 4.4vw, 46px);
  border: 1px solid rgba(215,168,90,.28);
  box-shadow: var(--shadow);
  transition: transform 240ms var(--ease-out), border-color 200ms ease, box-shadow 220ms ease, filter 220ms ease;
}
.pricing-card::before,
.pricing-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.pricing-card::before {
  z-index: -2;
  background: var(--pricing-image) center / cover no-repeat;
  transform: scale(1.01);
  transition: transform 720ms var(--ease-out), filter 240ms ease;
}
.pricing-card::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(76,46,27,.14) 0%, rgba(57,34,20,.58) 48%, rgba(33,19,12,.9) 100%),
    radial-gradient(circle at 18% 12%, rgba(227,179,95,.26), transparent 34%);
}
.pricing-card-solo { --pricing-image: url("../img/party-bar-original-style.png"); }
.pricing-card-double { --pricing-image: url("../img/tinyclub-aussenansicht-konzept.jpg"); }
.pricing-card > * {
  position: relative;
  z-index: 2;
}
.pricing-card p,
.pricing-heading p {
  color: rgba(248, 242, 232, .78);
  font-size: 18px;
}
.pricing-card h3 {
  max-width: 462px;
  margin: 0;
  font-size: clamp(37px, 4.8vw, 64px);
  line-height: .95;
}
.pricing-badge {
  position: relative;
  width: fit-content;
  padding: 8px 11px;
  color: var(--gold);
  border: 1px solid rgba(215,168,90,.34);
  background: rgba(55,33,20,.66);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
}
.pricing-badge::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  bottom: -14px;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,231,174,.58), transparent);
  transform: translateX(-115%) scaleX(.72);
  opacity: 0;
}
.reveal.is-visible .pricing-card .pricing-badge::after {
  animation: emberLine 900ms var(--ease-in-out) calc(var(--item-delay, 0ms) + 180ms) both;
}
.price-stamp {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 1px;
  place-items: center;
  width: clamp(185px, 16.5vw, 227px);
  min-height: clamp(106px, 8.8vw, 130px);
  padding: 19px 20px;
  color: var(--ink);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(73, 47, 28, .98), rgba(35, 23, 16, .96) 48%, rgba(18, 13, 10, .98)),
    repeating-linear-gradient(92deg, rgba(255,255,255,.05) 0 1px, transparent 1px 12px),
    radial-gradient(circle at 24% 18%, rgba(215,168,90,.24), transparent 38%);
  border: 1px solid rgba(215,168,90,.62);
  box-shadow: 0 18px 46px rgba(0,0,0,.48), inset 0 1px 0 rgba(255,255,255,.12), inset 0 -14px 24px rgba(0,0,0,.18);
  transform: rotate(1.4deg);
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease;
}
.price-stamp::before,
.price-stamp::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.price-stamp::before {
  inset: 8px;
  border: 1px solid rgba(215,168,90,.38);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
}
.price-stamp::after {
  inset: auto 18px 10px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(215,168,90,.86), transparent);
  box-shadow: 0 0 16px rgba(215,168,90,.34);
}
.price-stamp strong,
.price-stamp small,
.price-stamp em {
  position: relative;
  z-index: 1;
  display: block;
}
.price-stamp strong {
  position: relative;
  white-space: nowrap;
  color: #ffe7ae;
  font-size: clamp(28px, 2.3vw, 35px);
  line-height: 1;
  font-weight: 950;
  text-shadow: 0 2px 12px rgba(0,0,0,.42);
}
.price-stamp strong::after {
  content: "";
  position: absolute;
  top: -34px;
  bottom: -34px;
  left: -46px;
  width: 28px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,244,228,.44), transparent);
  filter: blur(2px);
  opacity: 0;
  transform: rotate(16deg);
}
.reveal.is-visible .price-stamp strong::after {
  animation: priceGlow 1050ms var(--ease-in-out) calc(var(--item-delay, 0ms) + 360ms) both;
}
.price-stamp small {
  margin-top: 1px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(248,242,232,.78);
}
.price-stamp em {
  margin-top: 4px;
  font-size: 10px;
  font-style: normal;
  font-weight: 850;
  color: rgba(215,168,90,.82);
}
.pricing-points {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pricing-points li {
  position: relative;
  padding-left: 24px;
  color: rgba(248, 242, 232, .86);
  font-size: 19px;
  font-weight: 800;
}
.pricing-points > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 9px;
  height: 9px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(215,168,90,.56);
  transform: rotate(45deg);
}
.tooltip-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid rgba(215,168,90,.72);
  color: #fff2d7;
  cursor: help;
  outline: 0;
}
.tooltip-panel {
  position: absolute;
  left: 0;
  top: calc(100% + 14px);
  z-index: 5;
  width: min(390px, calc(100vw - 54px));
  padding: 16px;
  color: rgba(248, 242, 232, .88);
  background:
    linear-gradient(145deg, rgba(62,38,23,.98), rgba(29,17,11,.98)),
    repeating-linear-gradient(94deg, rgba(255,244,228,.035) 0 1px, transparent 1px 18px);
  border: 1px solid rgba(215,168,90,.38);
  box-shadow: 0 24px 60px rgba(0,0,0,.48);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(-6px) scale(.98);
  transform-origin: top left;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 160ms ease, transform 180ms var(--ease-out), visibility 0ms linear 180ms;
}
.tooltip-panel::after {
  content: "";
  position: absolute;
  left: 18px;
  top: -7px;
  width: 12px;
  height: 12px;
  background: rgba(62,38,23,.98);
  border-left: 1px solid rgba(215,168,90,.38);
  border-top: 1px solid rgba(215,168,90,.38);
  transform: rotate(45deg);
}
.tooltip-list {
  display: grid;
  gap: 8px;
}
.tooltip-list span {
  position: relative;
  display: block;
  padding-left: 18px;
}
.tooltip-list span::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 7px;
  height: 7px;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(215,168,90,.45);
  transform: rotate(45deg);
}
.tooltip-wrap:hover .tooltip-panel,
.tooltip-wrap:focus .tooltip-panel,
.tooltip-wrap:focus-visible .tooltip-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
  transition-delay: 0ms;
}
.pricing-cta {
  width: min(var(--narrow), 100%);
  margin: 26px auto 0;
  text-align: center;
}
.addon-list {
  display: grid;
  gap: 6px;
  margin: 24px 0;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(73,45,27,.24);
}

.faq-grid {
  grid-template-columns: 1fr;
}
.faq-grid details {
  padding: 0;
  overflow: hidden;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 200ms ease;
}
.faq-grid summary {
  position: relative;
  cursor: pointer;
  padding: 18px 22px;
  padding-right: 54px;
  font-weight: 900;
  list-style: none;
}
.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid summary::after {
  content: "";
  position: absolute;
  right: 23px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: translateY(-64%) rotate(45deg);
  transition: transform 180ms var(--ease-out);
}
.faq-grid details[open] summary::after {
  transform: translateY(-36%) rotate(225deg);
}
.faq-grid details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 220ms var(--ease-out);
}
.faq-grid details[open] p {
  @starting-style {
    opacity: 0;
    transform: translateY(-6px);
  }
}

.process {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--content)) / 2));
  background: linear-gradient(180deg, rgba(52,31,19,.92), rgba(32,19,12,.94));
  border-block: 1px solid var(--line);
}
.process::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(47,28,17,.76) 0%, rgba(74,46,28,.34) 50%, rgba(36,21,13,.72) 100%),
    url("../img/party-lounge-original-style.png") center / cover no-repeat;
  opacity: .34;
}
.process .section-heading,
.process .steps {
  width: min(var(--content), 100%);
  margin-inline: auto;
}
.steps { display: grid; grid-template-columns: 1fr; gap: 14px; }
.steps div { padding: 30px; border: 1px solid var(--line); background: rgba(74,46,28,.2); }
.steps div { transition: border-color 200ms ease, transform 220ms var(--ease-out), background 200ms ease, box-shadow 200ms ease; }

.contact {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--content)) / 2));
  align-items: start;
  background:
    linear-gradient(rgba(45,27,16,.78), rgba(30,18,11,.92)),
    url("../img/5IMG_8563-scaled.jpg") center / cover fixed;
}
.contact-copy, .contact-form {
  width: min(100%, 520px);
}
.contact-copy { justify-self: end; }
.contact-form { justify-self: start; }
.contact-copy p { color: rgba(248, 242, 232, .78); font-size: 18px; }
.contact-direct a {
  border-bottom: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 900;
}
.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(74,46,28,.86), rgba(32,19,12,.9)),
    repeating-linear-gradient(94deg, rgba(255,244,228,.035) 0 1px, transparent 1px 18px);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.contact-form fieldset {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0 0 18px;
  border: 0;
  border-bottom: 1px solid var(--line);
}
.contact-form fieldset:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}
.contact-form legend {
  margin-bottom: 2px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}
.form-status {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(215, 168, 90, .45);
  background: rgba(215, 168, 90, .12);
  color: var(--ink);
  font-weight: 800;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 220ms var(--ease-out), border-color 180ms ease, background 180ms ease;
  @starting-style {
    opacity: 0;
    transform: translateY(-6px);
  }
}
label { display: grid; gap: 7px; color: rgba(248, 242, 232, .78); font-weight: 800; font-size: 14px; }
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(232,187,119,.24);
  background: rgba(255,244,228,.07);
  color: var(--ink);
  padding: 13px 14px;
  font: inherit;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
input:focus, textarea:focus, select:focus {
  outline: 0;
  border-color: var(--gold);
  background: rgba(255,244,228,.11);
  box-shadow: 0 0 0 3px rgba(215, 168, 90, .16);
}
.availability-form.is-submitting {
  pointer-events: none;
}
.availability-form.is-submitting button[type="submit"] {
  color: rgba(24,16,11,.72);
  box-shadow: 0 0 34px rgba(215,168,90,.2);
}
.availability-form.is-submitting button[type="submit"]::after {
  content: "";
  width: 15px;
  height: 15px;
  margin-left: 10px;
  border: 2px solid rgba(24,16,11,.22);
  border-top-color: rgba(24,16,11,.78);
  border-radius: 50%;
  animation: ringOrbit 680ms linear infinite;
}
select option { color: #18100b; }
textarea { resize: vertical; }
.consent { display: flex; align-items: start; gap: 10px; font-weight: 600; }
.consent input { width: 18px; margin-top: 4px; }
.consent a {
  color: var(--gold);
  border-bottom: 1px solid rgba(215,168,90,.55);
}
.hp { display: none; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 38px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background:
    linear-gradient(180deg, rgba(35,21,13,.22), rgba(24,14,9,.58)),
    repeating-linear-gradient(92deg, rgba(255,244,228,.025) 0 1px, transparent 1px 22px);
}
.site-footer img { width: 70px; margin-bottom: 12px; }
.site-footer nav { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.site-footer a:hover { color: var(--gold); }

.sticky-cta {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 30;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #18100b;
  font-weight: 900;
  box-shadow: var(--shadow);
  transition: transform 160ms var(--ease-out), box-shadow 180ms ease;
}
.sticky-cta:active { transform: scale(.985); }

.legal-page {
  background:
    radial-gradient(circle at 80% 12%, rgba(227,179,95,.14), transparent 28%),
    linear-gradient(180deg, #3d2516 0%, #24150d 48%, #1a100b 100%);
}
.legal-shell {
  width: min(960px, calc(100% - 36px));
  margin: 0 auto;
  padding: 120px 0 70px;
}
.legal-shell h1 { font-size: clamp(42px, 7vw, 82px); }
.legal-shell article {
  padding: clamp(22px, 4vw, 46px);
  background:
    linear-gradient(145deg, rgba(74,46,28,.84), rgba(35,21,13,.88)),
    repeating-linear-gradient(94deg, rgba(255,244,228,.035) 0 1px, transparent 1px 18px);
  border: 1px solid var(--line);
}
.legal-shell p, .legal-shell li { color: rgba(248, 242, 232, .78); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(24,14,9,.9);
  animation: lightboxFade 220ms var(--ease-out);
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-height: 88vh;
  box-shadow: var(--shadow);
  animation: lightboxImageIn 260ms var(--ease-out);
}
.lightbox button {
  position: fixed;
  top: 18px;
  right: 22px;
  color: var(--ink);
  background: none;
  border: 0;
  font-size: 44px;
  cursor: pointer;
  transition: transform 160ms var(--ease-out), color 160ms ease;
}
.lightbox button:active { transform: scale(.92); }

@media (hover: hover) and (pointer: fine) {
  .button:hover { transform: translateY(-2px); }
  .button:active { transform: scale(.97); }
  .button.primary:hover { animation: softPulse 1.4s var(--ease-in-out) infinite; }
  .hero-panel div:hover {
    transform: translateY(-4px);
    border-color: rgba(215,168,90,.55);
    background:
      linear-gradient(145deg, rgba(91, 56, 32, .93), rgba(38, 22, 13, .86)),
      repeating-linear-gradient(92deg, rgba(255,244,228,.045) 0 1px, transparent 1px 16px);
    box-shadow: 0 18px 46px rgba(0,0,0,.34), 0 0 24px rgba(215,168,90,.12);
  }
  .hero-panel div:hover::after,
  .equipment-grid article:hover::after,
  .trust-grid article:hover::after,
  .facts-grid article:hover::after,
  .occasion-grid article:hover::after {
    opacity: 1;
    transform: translateX(24%);
  }
  .reveal.is-visible .occasion-grid article:hover,
  .reveal.is-visible .facts-grid article:hover,
  .reveal.is-visible .trust-grid article:hover {
    transform: translateY(-4px);
    border-color: rgba(215,168,90,.45);
    background:
      linear-gradient(145deg, rgba(91, 56, 32, .94), rgba(47, 28, 17, .9)),
      repeating-linear-gradient(92deg, rgba(255,244,228,.045) 0 1px, transparent 1px 18px);
    box-shadow: 0 18px 46px rgba(0,0,0,.22);
  }
  .intro-photo:hover {
    transform: translateY(-3px);
    border-color: rgba(215,168,90,.42);
  }
  .intro-photo:hover::after,
  .intro-photo:hover::before {
    opacity: 1;
  }
  .intro-photo:hover::after {
    transform: translateY(0) scale(1);
  }
  .intro-photo:hover::before {
    transform: translate(0, 0);
  }
  .intro-photo:hover img { transform: scale(1.035); }
  .feature-strip div:hover { background: rgba(227,179,95,.07); transform: translateY(-2px); }
  .reveal.is-visible .equipment-grid article:hover {
    transform: translateY(-4px);
    border-color: rgba(215,168,90,.38);
    background:
      linear-gradient(145deg, rgba(92, 57, 33, .94), rgba(47, 28, 17, .92)),
      repeating-linear-gradient(94deg, rgba(255,244,228,.045) 0 1px, transparent 1px 17px);
    box-shadow: 0 18px 46px rgba(0,0,0,.22);
  }
  .equipment-lead:hover img,
  .equipment-lead:hover .equipment-video { transform: scale(1.05); }
  .gallery-grid button:hover img { transform: scale(1.04); filter: saturate(1.04); }
  .gallery-grid button:hover::after { opacity: 1; }
  .reveal.is-visible .pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(215,168,90,.46);
    box-shadow: 0 34px 90px rgba(32, 17, 9, .56);
  }
  .reveal.is-visible .pricing-card:hover::before {
    transform: scale(1.045);
    filter: saturate(1.05) contrast(1.03);
  }
  .reveal.is-visible .pricing-card:hover .price-stamp {
    transform: rotate(1.4deg) translateY(-2px);
    box-shadow: 0 22px 54px rgba(0,0,0,.54), inset 0 1px 0 rgba(255,255,255,.12), inset 0 -14px 24px rgba(0,0,0,.18);
  }
  .reveal.is-visible .steps div:hover {
    border-color: rgba(215,168,90,.45);
    transform: translateY(-4px);
    background: rgba(111,67,38,.25);
    box-shadow: 0 18px 46px rgba(0,0,0,.2);
  }
  .lightbox button:hover { color: var(--gold); transform: scale(1.04); }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.07);
  }
  .nav-toggle span { width: 20px; height: 2px; background: var(--ink); }
  .main-nav {
    position: fixed;
    top: 72px;
    left: 18px;
    right: 18px;
    display: grid;
    padding: 14px;
    background: rgba(45,27,16,.96);
    border: 1px solid var(--line);
    opacity: 0;
    transform: translateY(-8px) scale(.98);
    transform-origin: top right;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 160ms ease, transform 180ms var(--ease-out), visibility 0ms linear 180ms;
  }
  .main-nav.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0ms;
  }
  .legal-page .main-nav {
    position: static;
    display: flex;
    padding: 0;
    background: transparent;
    border: 0;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    visibility: visible;
    transition: none;
  }
  .hero {
    align-content: end;
    gap: 24px;
    padding-bottom: 22px;
  }
  .hero-content { padding-bottom: 0; }
  .hero-panel, .hero-panel.reveal, .hero-panel.reveal.is-visible {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(var(--content), 100%);
    margin: 8px auto 0;
    transform: none;
  }
  .hero-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-panel div {
    min-height: 124px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.1);
  }
  .hero-panel strong { font-size: clamp(20px, 4.5vw, 26px); }
  .hero-panel div > span:not(.hero-panel-label) { font-size: 13px; margin-top: 8px; }
  .intro-layout, .intro-media, .contact, .steps, .equipment-grid, .trust, .trust-grid, .occasion-grid, .facts-grid, .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { min-height: 390px; }
  .price-stamp {
    top: 18px;
    right: 18px;
    width: 168px;
    min-height: 98px;
  }
  .price-stamp strong { font-size: 25px; }
  .tooltip-panel {
    left: 50%;
    transform: translate(-50%, -8px);
  }
  .tooltip-panel::after {
    left: 50%;
    margin-left: -6px;
  }
  .tooltip-wrap:hover .tooltip-panel,
  .tooltip-wrap:focus .tooltip-panel,
  .tooltip-wrap:focus-visible .tooltip-panel {
    transform: translate(-50%, 0);
  }
  .feature-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
  .feature-strip div:last-child { border-bottom: 0; }
  .feature-strip div:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .equipment-lead { grid-row: auto; }
  .equipment-grid article { min-height: auto; padding: 20px; }
  .equipment-icon { width: 40px; height: 40px; margin-bottom: 14px; }
  .equipment-icon svg { width: 21px; height: 21px; }
  .image-stack { grid-template-columns: 1fr; }
  .image-stack img, .image-stack img:nth-child(2) { height: auto; margin: 0; }
  .intro-photo-main, .intro-photo-secondary, .photo-placeholder { min-height: 300px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid button:nth-child(n) { grid-column: auto; height: 124px; }
  .contact-copy, .contact-form { width: 100%; justify-self: stretch; }
  .site-footer { display: grid; }
}

@media (max-width: 560px) {
  .legal-page .main-nav { display: none; }
  h1 { font-size: 46px; }
  .hero { min-height: auto; padding: 110px 16px 24px; }
  .hero-content { padding-bottom: 0; }
  .hero-actions .button { width: 100%; }
  .hero-panel {
    gap: 8px;
    padding: 8px;
  }
  .hero-panel div {
    min-height: 118px;
    padding: 12px;
  }
  .hero-panel-label {
    margin-bottom: 9px;
    padding: 4px 7px;
    font-size: 10px;
  }
  .hero-panel strong { font-size: 20px; }
  .hero-panel div > span:not(.hero-panel-label) {
    font-size: 12px;
    line-height: 1.35;
  }
  .pricing-card {
    min-height: 360px;
    padding: 22px;
  }
  .price-stamp {
    top: 18px;
    right: 18px;
    width: 152px;
    min-height: 92px;
    padding: 14px 12px;
  }
  .price-stamp strong { font-size: 22px; }
  .price-stamp small { font-size: 10px; }
  .price-stamp em { font-size: 9px; }
  .pricing-card h3 { font-size: 34px; }
  .pricing-points li { font-size: 16px; }
  .tooltip-panel {
    width: min(286px, calc(100vw - 48px));
    padding: 14px;
    font-size: 13px;
  }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sticky-cta { display: flex; }
  .site-footer { padding-bottom: 86px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .intro-splash {
    animation: splashExit 220ms ease 700ms forwards !important;
  }
  .intro-stage,
  .intro-logo-mark,
  .intro-wordmark,
  .intro-claim,
  .intro-ring,
  .intro-beam,
  .intro-spark {
    opacity: 1;
    transform: none;
    animation: none !important;
    filter: none;
  }
  .intro-beam,
  .intro-spark {
    display: none;
  }
  .reveal .trust-grid article,
  .reveal .occasion-grid article,
  .reveal .facts-grid article,
  .reveal .equipment-grid article,
  .reveal .pricing-card,
  .reveal .steps div,
  .reveal .gallery-grid button {
    opacity: 1;
    transform: none;
  }
}
