/* ============================================================
   PHOENIX PHOTO STUDIO — dark luxury / molten gold
   ============================================================ */

:root {
  --ink: #0b0806;
  --ink-2: #120d09;
  --line: rgba(233, 188, 85, 0.14);
  --line-strong: rgba(233, 188, 85, 0.38);
  --gold: #e9bc55;
  --gold-deep: #b67a22;
  --ember: #ff7a1a;
  --cream: #f4eadb;
  --muted: #c8b69b;
  --grad-gold: linear-gradient(105deg, #f7da8a 0%, #e9bc55 45%, #b67a22 100%);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --nav-h: 76px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.locked { overflow: hidden; }

::selection { background: var(--gold); color: var(--ink); }

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

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* film grain over everything (below overlays) */
body::before {
  content: "";
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 3;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container { width: min(1180px, 92vw); margin-inline: auto; }

.section { padding-block: clamp(84px, 12vw, 150px); }
.section-tight { padding-block: clamp(48px, 7vw, 90px); }

/* ---------- type ---------- */

.kicker {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.08; }

h2 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  letter-spacing: -0.01em;
}

.gold-text {
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-sub { color: var(--muted); margin-top: 16px; max-width: 54ch; }

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out),
    border-color 0.25s, background-color 0.25s;
  touch-action: manipulation;
  will-change: transform;
}

.btn svg { width: 19px; height: 19px; flex: none; }

.btn-gold {
  background: var(--grad-gold);
  color: #241503;
  box-shadow: 0 6px 26px rgba(233, 188, 85, 0.22);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(233, 188, 85, 0.38); }
.btn-gold:active { transform: translateY(0) scale(0.98); }

.btn-ghost {
  border-color: var(--line-strong);
  color: var(--cream);
  background: rgba(233, 188, 85, 0.04);
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(233, 188, 85, 0.1); transform: translateY(-2px); }
.btn-ghost:active { transform: translateY(0) scale(0.98); }

.btn-sm { padding: 11px 22px; font-size: 14px; }
.btn-lg { padding: 18px 40px; font-size: 17px; }

/* ============================================================
   CINEMATIC OPENING
   ============================================================ */

#cine {
  position: fixed;
  inset: 0;
  z-index: 100;
  /* brand dark — blends with the video's dark edges so the letterbox
     is invisible and the whole animation sits neatly inside the page */
  background: var(--ink);
  display: grid;
  place-items: center;
}

#cine video {
  width: 100%;
  height: 100%;
  object-fit: contain; /* full animation always visible, centered, never cropped */
}

.cine-ui {
  position: absolute;
  inset-inline: 0;
  bottom: max(28px, env(safe-area-inset-bottom));
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: clamp(20px, 4vw, 48px);
}

.cine-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 8, 6, 0.55);
  color: var(--cream);
  border: 1px solid rgba(244, 234, 219, 0.28);
  border-radius: 999px;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.25s, background-color 0.25s, opacity 0.4s;
  opacity: 0;
}
.cine-btn.show { opacity: 1; }
.cine-btn:hover { border-color: var(--gold); background: rgba(20, 14, 8, 0.75); }
.cine-btn svg { width: 18px; height: 18px; }

#cineSound .ic-sound { display: none; }
#cineSound[aria-pressed="true"] .ic-sound { display: block; }
#cineSound[aria-pressed="true"] .ic-muted { display: none; }

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(18px, 4vw, 48px);
  transition: background-color 0.35s, border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(11, 8, 6, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark { border-radius: 50%; box-shadow: 0 0 0 1px var(--line-strong), 0 4px 18px rgba(0, 0, 0, 0.5); }
.brand-word { display: flex; flex-direction: column; line-height: 1.05; }
.brand-word strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: 0.14em;
}
.brand-word small {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.42em;
  color: var(--gold);
}

.nav-links { display: flex; gap: clamp(18px, 3vw, 38px); }
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  padding: 8px 2px;
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta { display: flex; align-items: center; gap: 14px; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 46px;
  height: 46px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
}
.burger span {
  display: block;
  width: 20px;
  height: 1.6px;
  background: var(--cream);
  transition: transform 0.35s var(--ease-out), opacity 0.3s;
}
.burger.open span:first-child { transform: translateY(4.3px) rotate(45deg); }
.burger.open span:last-child { transform: translateY(-4.3px) rotate(-45deg); }

.menu-overlay[hidden] { display: none; }

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(11, 8, 6, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.35s;
}
.menu-overlay.open { opacity: 1; }
.menu-overlay nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}
.menu-overlay nav > a:not(.btn) {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 2.8rem);
  text-decoration: none;
  color: var(--cream);
  transition: color 0.25s;
}
.menu-overlay nav > a:not(.btn):hover { color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-img {
  position: absolute;
  inset: -6% -2%;
  background: url("../img/poster.jpg") center 30% / cover no-repeat;
  z-index: 0;
  will-change: transform;
}
/* darken + vignette so text stays readable over the flames */
.hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 8, 6, 0.94) 0%, rgba(11, 8, 6, 0.72) 42%, rgba(11, 8, 6, 0.38) 100%),
    linear-gradient(180deg, rgba(11, 8, 6, 0.55) 0%, rgba(11, 8, 6, 0.1) 35%, rgba(11, 8, 6, 0.96) 96%);
}

#embers {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; max-width: 780px; }

.hero-h1 {
  font-size: clamp(2.9rem, 8.4vw, 6.2rem);
  letter-spacing: -0.015em;
  margin: 10px 0 26px;
}
.hero-h1 .line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hero-h1 .line-inner { display: inline-block; will-change: transform; }

.hero-sub {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  max-width: 52ch;
  margin-bottom: 36px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 34px; }

.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.02em;
}
.hero-trust .star { width: 17px; height: 17px; color: var(--gold); margin-right: 8px; flex: none; }
.hero-trust strong { color: var(--cream); }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 1.5px solid var(--line-strong);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-cue span {
  width: 3px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold);
  animation: cue 1.8s var(--ease-out) infinite;
}
@keyframes cue {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============================================================
   TICKER
   ============================================================ */

.ticker {
  border-block: 1px solid var(--line);
  padding-block: 18px;
  overflow: hidden;
  background: var(--ink-2);
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
}
.ticker-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}

/* ============================================================
   SERVICES
   ============================================================ */

.services { background: var(--ink); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.svc {
  position: relative;
  background: linear-gradient(160deg, #17110a 0%, #100c08 100%);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px 30px 30px;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
  overflow: hidden;
}
.svc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 180px at 20% 0%, rgba(233, 188, 85, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.svc:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}
.svc:hover::before { opacity: 1; }

.svc-num {
  position: absolute;
  top: 22px;
  right: 26px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
  opacity: 0.65;
}
.svc-ic {
  width: 34px;
  height: 34px;
  color: var(--gold);
  margin-bottom: 20px;
}
.svc h3 { font-size: 1.45rem; margin-bottom: 10px; }
.svc p { color: var(--muted); font-size: 15px; }

/* ============================================================
   THE WALL (gallery)
   ============================================================ */

.wall { background: var(--ink-2); border-block: 1px solid var(--line); }

.wall-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 235px;
  gap: 18px;
}

.wall-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--line);
  background: var(--ink);
}
.wall-item.span-2 { grid-column: span 2; }
.wall-item.tall { grid-row: span 2; }

.wall-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out), filter 0.5s;
  will-change: transform;
}
.wall-item:hover img, .wall-item:focus-visible img { transform: scale(1.06); }

.wall-item figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 42px 20px 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: linear-gradient(180deg, transparent, rgba(8, 5, 3, 0.88));
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.45s var(--ease-out), opacity 0.45s;
}
.wall-item:hover figcaption, .wall-item:focus-visible figcaption { transform: translateY(0); opacity: 1; }

.wall-note {
  margin-top: 34px;
  text-align: center;
  color: var(--muted);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
}

/* ============================================================
   STATS
   ============================================================ */

.stats { border-bottom: 1px solid var(--line); background: var(--ink); }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.4vw, 4rem);
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.stat-star { font-size: 0.55em; vertical-align: 0.35em; }
.stat-label {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ============================================================
   PROCESS
   ============================================================ */

.process-row {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 30px 28px 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(160deg, #14100a 0%, #0f0b07 100%);
}
.step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.4rem;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.35rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; }

/* ============================================================
   REVIEWS
   ============================================================ */

.reviews { background: var(--ink-2); border-block: 1px solid var(--line); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 46px 30px 28px;
  background: var(--ink);
  transition: transform 0.35s var(--ease-out), border-color 0.35s;
}
.review:hover { transform: translateY(-4px); border-color: var(--line-strong); }

.review-mark {
  position: absolute;
  top: 8px;
  left: 22px;
  font-family: var(--font-display);
  font-size: 4.6rem;
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.9;
}
.review p { font-size: 15.5px; color: var(--cream); }
.review footer {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   VISIT
   ============================================================ */

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.visit-info h2 { margin-bottom: 28px; }

.visit-info address {
  font-style: normal;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  padding-left: 18px;
  border-left: 2px solid var(--gold);
  margin-bottom: 20px;
}
.visit-info address strong { color: var(--cream); font-size: 1.15rem; }

.visit-hours {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 30px;
}
.visit-hours svg { width: 19px; height: 19px; color: var(--gold); flex: none; }

.visit-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.visit-map {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  aspect-ratio: 4 / 3.2;
}
.visit-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(1.02);
  display: block;
}

/* ============================================================
   FINALE
   ============================================================ */

.finale {
  text-align: center;
  background:
    radial-gradient(620px 340px at 50% 10%, rgba(233, 188, 85, 0.1), transparent 70%),
    var(--ink-2);
  border-top: 1px solid var(--line);
}
.finale-mark {
  margin: 0 auto 28px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line-strong), 0 0 70px rgba(233, 188, 85, 0.3);
}
.finale-line {
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  margin-bottom: 40px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  border-top: 1px solid var(--line);
  padding-block: 48px;
  background: var(--ink);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img { border-radius: 50%; box-shadow: 0 0 0 1px var(--line-strong); }
.footer-brand strong {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.14em;
  font-size: 15px;
}
.footer-brand p { color: var(--muted); font-size: 13px; margin-top: 4px; }

.footer-links { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--gold); }

.footer-fine { color: var(--muted); font-size: 12.5px; text-align: right; line-height: 1.7; }

/* ============================================================
   LIGHTBOX
   ============================================================ */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(5, 3, 2, 0.93);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 48px);
}
.lightbox[hidden] { display: none; }

.lightbox figure {
  max-width: min(1080px, 94vw);
  text-align: center;
}
.lightbox img {
  max-width: 100%;
  max-height: 78svh;
  margin-inline: auto;
  border-radius: 14px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
}
.lightbox figcaption {
  margin-top: 18px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold);
}

.lb-close, .lb-nav {
  position: absolute;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(23, 16, 9, 0.7);
  border: 1px solid var(--line-strong);
  color: var(--cream);
  cursor: pointer;
  transition: border-color 0.25s, background-color 0.25s, transform 0.25s;
  z-index: 2;
}
.lb-close:hover, .lb-nav:hover { border-color: var(--gold); transform: scale(1.06); }
.lb-close svg, .lb-nav svg { width: 22px; height: 22px; }

.lb-close { top: max(18px, env(safe-area-inset-top)); right: 22px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) scale(1.06); }
.lb-next:hover { transform: translateY(-50%) scale(1.06); }

/* ============================================================
   PRODUCTS — catalogue browser
   ============================================================ */

.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { transform: scaleX(1); }

.prod-hero {
  padding: calc(var(--nav-h) + clamp(44px, 7vw, 84px)) 0 clamp(28px, 4vw, 48px);
}
.prod-hero h1 {
  font-size: clamp(2.2rem, 5.6vw, 4rem);
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

.prod-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 34px;
}

.prod-search {
  position: relative;
  flex: 1 1 320px;
  max-width: 460px;
}
.prod-search svg {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 19px;
  height: 19px;
  color: var(--gold);
  pointer-events: none;
}
.prod-search input {
  width: 100%;
  padding: 15px 20px 15px 48px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.25s;
}
.prod-search input::placeholder { color: rgba(200, 182, 155, 0.55); }
.prod-search input:focus { outline: none; border-color: var(--gold); }

.prod-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s, background-color 0.25s;
}
.chip:hover { color: var(--cream); border-color: var(--gold); }
.chip.active {
  background: var(--grad-gold);
  color: #241503;
  border-color: transparent;
}

.prod-count {
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.prod-section { padding-bottom: clamp(70px, 9vw, 120px); }

.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 18px;
}

.prod-card {
  display: flex;
  flex-direction: column;
  text-align: left;
  text-decoration: none;
  background: linear-gradient(160deg, #17110a 0%, #100c08 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  color: var(--cream);
  font-family: var(--font-body);
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}
.prod-card:hover, .prod-card:focus-visible {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.45);
}

.prod-thumb {
  display: block;
  aspect-ratio: 1 / 1.38; /* fits both page sizes (1000×1333 & 1000×1415) fully */
  overflow: hidden;
  background: #fff;
}
.prod-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* whole catalogue page visible — nothing cropped */
  transition: transform 0.7s var(--ease-out);
}
.prod-card:hover .prod-thumb img { transform: scale(1.02); }

.prod-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 15px 17px 17px;
  border-top: 1px solid var(--line);
}
.prod-meta strong { font-size: 15px; line-height: 1.35; }
.prod-meta small { color: var(--muted); font-size: 12px; letter-spacing: 0.02em; }

.prod-empty {
  text-align: center;
  color: var(--muted);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  padding: 60px 0;
}

.prod-how { background: var(--ink-2); border-top: 1px solid var(--line); }

/* ---------- category viewer ---------- */

.viewer[hidden] { display: none; }
.viewer {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(5, 3, 2, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.viewer-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px clamp(16px, 4vw, 40px);
  border-bottom: 1px solid var(--line);
}
.viewer-head h2 {
  font-size: clamp(1.1rem, 2.6vw, 1.5rem);
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.viewer-count {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.viewer-close { position: static; flex: none; }

.viewer-stage {
  position: relative;
  min-height: 0;
  overflow: hidden;
  touch-action: none;
}
/* fill the stage and contain — the ENTIRE page is always on screen */
.viewer-stage img {
  position: absolute;
  inset: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  object-fit: contain;
  transform-origin: center center;
  transition: transform 0.18s var(--ease-out);
  will-change: transform;
  user-select: none;
  -webkit-user-drag: none;
}
.viewer-stage.zoomed img { cursor: grab; transition: none; }
.viewer-stage.zoomed.grabbing img { cursor: grabbing; }
.viewer-stage.zoomed .lb-nav { opacity: 0.35; }

/* zoom control cluster */
.viewer-zoom {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  background: rgba(23, 16, 9, 0.82);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.viewer-zoom button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
.viewer-zoom button:hover:not(:disabled) { background: rgba(233, 188, 85, 0.16); color: var(--gold); }
.viewer-zoom button:disabled { opacity: 0.32; cursor: default; }
.viewer-zoom button svg { width: 20px; height: 20px; }
#zoomPct {
  min-width: 52px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  color: var(--gold);
}
.viewer-prev { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); }
.viewer-next { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); }
.viewer-prev:hover { transform: translateY(-50%) scale(1.06); }
.viewer-next:hover { transform: translateY(-50%) scale(1.06); }

.viewer-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px clamp(16px, 4vw, 40px) max(16px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: rgba(11, 8, 6, 0.7);
}
.viewer-hint { color: var(--muted); font-size: 13.5px; }

/* ---------- order modal ---------- */

.order[hidden] { display: none; }
.order {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(5, 3, 2, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: 18px;
}

.order-card {
  position: relative;
  width: min(540px, 100%);
  max-height: 92svh;
  overflow-y: auto;
  background: linear-gradient(165deg, #1a130b 0%, #120d08 100%);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  padding: clamp(24px, 5vw, 38px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
}
.order-card h2 { font-size: 1.7rem; margin: 4px 0 22px; }
.order-close { top: 16px; right: 16px; width: 44px; height: 44px; }

.order-field { display: block; margin-bottom: 16px; }
.order-field span {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 7px;
}
.order-field span small { color: var(--muted); font-weight: 500; }
.order-field input {
  width: 100%;
  padding: 13px 16px;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.25s;
}
.order-field input:focus { outline: none; border-color: var(--gold); }
.order-field input::placeholder { color: rgba(200, 182, 155, 0.45); }

.order-upload { position: relative; display: block; margin: 20px 0 22px; cursor: pointer; }
.order-upload input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.order-upload-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 26px 18px;
  border: 1.6px dashed var(--line-strong);
  border-radius: 16px;
  text-align: center;
  transition: border-color 0.25s, background-color 0.25s;
}
.order-upload:hover .order-upload-box,
.order-upload input:focus-visible + .order-upload-box {
  border-color: var(--gold);
  background: rgba(233, 188, 85, 0.05);
}
.order-upload-box svg { width: 26px; height: 26px; color: var(--gold); }
.order-upload-box strong { font-size: 15px; }
.order-upload-box small { color: var(--muted); font-size: 12.5px; }
#orderPreview {
  margin: 14px auto 0;
  max-height: 150px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
}

.order-send { width: 100%; justify-content: center; }
.order-hint {
  margin-top: 14px;
  color: var(--muted);
  font-size: 12.5px;
  text-align: center;
  line-height: 1.6;
}

/* ---------- featured categories (homepage) ---------- */

.featured { background: var(--ink-2); border-block: 1px solid var(--line); }
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.featured-cta { text-align: center; margin-top: 40px; }

/* ---------- contact lines (visit + footer) ---------- */

.contact-lines { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.contact-line {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--muted);
  font-size: 15px;
  text-decoration: none;
  transition: color 0.25s;
  width: fit-content;
}
a.contact-line:hover { color: var(--gold); }
.contact-line svg { width: 19px; height: 19px; color: var(--gold); flex: none; }

@media (max-width: 1024px) {
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .featured-grid { grid-template-columns: 1fr; gap: 14px; }
  .prod-grid { grid-template-columns: 1fr; gap: 14px; }
  .prod-meta { padding: 12px 13px 14px; }
  .prod-meta strong { font-size: 14.5px; }
  .viewer-prev { left: 6px; }
  .viewer-next { right: 6px; }
  .viewer-foot .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   REVEAL DEFAULTS (JS animates; solid fallback without JS)
   ============================================================ */

.js [data-reveal] { opacity: 0; transform: translateY(26px); }
.js.no-motion [data-reveal] { opacity: 1 !important; transform: none !important; }

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scroll-cue span { animation: none; }
  .ticker { overflow-x: auto; }
  * { transition-duration: 0.01ms !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-fine { text-align: center; }
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { aspect-ratio: 4 / 3; }
  .process-row { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .wall-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 190px;
  }
  .wall-item.tall { grid-row: span 2; }
}

@media (max-width: 560px) {
  .nav-cta .btn { display: none; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .wall-grid { grid-template-columns: 1fr; grid-auto-rows: 230px; }
  .wall-item.span-2 { grid-column: span 1; }
  .wall-item.tall { grid-row: span 1; }
  .lb-nav { width: 44px; height: 44px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}
