/* ============ Tokens — palette carried over from the original site ============ */
:root {
  --bg: #f2e9da;            /* original cream */
  --bg-raise: #e9ddc6;      /* deeper cream band */
  --dark: #211b12;          /* warm charcoal — hero, contact, footer */
  --dark-raise: #2b2417;
  --ink: #26201a;           /* text on cream */
  --ink-dim: #6d604d;
  --cream-ink: #f2e9da;     /* text on dark */
  --cream-dim: rgba(242, 233, 218, 0.68);
  --amber: #dd9933;         /* original accent orange/amber */
  --amber-deep: #b87a1f;
  --green: #43915f;         /* original "subscribers" green */
  --rose: #c2565e;
  --line: rgba(38, 32, 26, 0.15);
  --line-dark: rgba(242, 233, 218, 0.13);
  --glass-dark: rgba(242, 233, 218, 0.05);
  --radius: 10px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 550;
  line-height: 1.08;
  margin: 0 0 0.5em;
  color: var(--ink);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.8rem, 7vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
h3 { font-size: 1.3rem; }
h1 em, h2 em {
  font-style: italic;
  color: var(--amber-deep);
}

p { margin: 0 0 1em; color: var(--ink-dim); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.section-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.lead { max-width: 560px; font-size: 1.08rem; }
.lead.center { margin-top: 0.4rem; }

.kicker {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 1rem;
  font-weight: 500;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--amber); color: #14100a;
  padding: 0.8rem 1.4rem; z-index: 999; font-weight: 500;
}
.skip-link:focus { left: 0; }

/* ============ Buttons ============ */
.btn {
  display: inline-block;
  padding: 0.9rem 1.9rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}
.btn-solid {
  background: var(--amber);
  color: #1c1508;
}
.btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(221, 153, 51, 0.45);
}
.btn-line {
  border: 1px solid rgba(242, 233, 218, 0.4);
  color: var(--cream-ink);
}
.btn-line:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-2px);
}

/* ============ Header ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(242, 233, 218, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
  padding: 0.65rem 0;
}
.header-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 550;
  color: var(--cream-ink);
  transition: color 0.3s ease;
}
.site-header.scrolled .brand { color: var(--ink); }
.brand img {
  width: 38px; height: 38px; border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(242,233,218,0.3), 0 0 18px rgba(221,153,51,0.3);
}
.main-nav ul {
  display: flex; gap: 2.1rem; list-style: none; margin: 0; padding: 0;
}
.main-nav a {
  font-size: 0.95rem; font-weight: 400;
  color: var(--cream-dim);
  padding: 0.3rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.site-header.scrolled .main-nav a { color: var(--ink-dim); }
.main-nav a:hover { color: var(--amber); border-color: var(--amber); }
.site-header.scrolled .main-nav a:hover { color: var(--amber-deep); border-color: var(--amber-deep); }
.nav-toggle {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 0.5rem;
}
.nav-toggle span {
  width: 24px; height: 1.5px;
  background: var(--cream-ink);
  transition: background 0.3s ease;
}
.site-header.scrolled .nav-toggle span { background: var(--ink); }

/* ============ Hero — dark warm pane that melts into the cream page ============ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 35%, #2e2517 0%, var(--dark) 70%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
  width: 100%;
  padding-top: 7rem;
  padding-bottom: 5rem;
}
.hero-grid > * { min-width: 0; }
.hero-copy { text-align: left; }

/* the paintable piece */
.paint-station {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3rem;
}
.paint-piece {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  touch-action: none; /* finger drags paint instead of scrolling the page */
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--line-dark);
  /* paintbrush cursor, tip at bottom-left */
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 36 36'%3E%3Cpath d='M33 3 L21 15' stroke='%238a5a2b' stroke-width='5' stroke-linecap='round'/%3E%3Cpath d='M22.5 13.5 L17.5 18.5' stroke='%23c2bcae' stroke-width='7' stroke-linecap='round'/%3E%3Cpath d='M17 18 Q13 20.5 10 23.5 Q7 26.5 3 33 Q10.5 29.5 13.5 26.5 Q16.5 23.5 19 19.5 Z' fill='%23dd9933'/%3E%3Cpath d='M6.5 28.5 Q4.8 30.8 3 33 Q5.6 31.9 7.8 30.2 Z' fill='%23f2e9da'/%3E%3C/svg%3E") 3 33, crosshair;
}
.paint-piece img, .paint-piece canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.piece-photo {
  object-fit: cover;
  filter: grayscale(1) brightness(0.92) contrast(1.02);
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
#paintCanvas {
  /* strokes re-tint the grayscale photo underneath */
  mix-blend-mode: color;
}

/* palette */
.palette {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(33, 27, 18, 0.6);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.swatch {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.28);
  background: var(--sw);
  cursor: pointer;
  padding: 0;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.swatch:hover { transform: scale(1.12); }
.swatch.is-active {
  transform: scale(1.16);
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 0 3px rgba(33, 27, 18, 0.8), 0 0 14px rgba(242, 233, 218, 0.45);
}
.hero-vignette {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 50% 45%, transparent 40%, rgba(33, 27, 18, 0.5) 100%),
    linear-gradient(180deg, rgba(33, 27, 18, 0.55) 0%, transparent 16%, transparent 72%, var(--bg) 100%);
}
.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 1.4rem;
}
.hero h1 {
  color: var(--cream-ink);
  text-shadow: 0 2px 40px rgba(0,0,0,0.8);
}
.hero h1 em { color: var(--amber); }
.hero-sub {
  max-width: 480px;
  margin: 1.4rem 0 2.4rem;
  color: var(--cream-dim);
  text-shadow: 0 1px 18px rgba(0,0,0,0.9);
  font-size: 1.06rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.wipe-btn {
  background: transparent;
  border: 1px solid var(--line-dark);
  color: var(--cream-dim);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  cursor: pointer;
  margin-left: 0.25rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.wipe-btn:hover { color: var(--amber); border-color: var(--amber); }

.hero-hint {
  position: absolute;
  bottom: 1.9rem; left: 1.9rem;
  z-index: 3;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: rgba(242, 233, 218, 0.5);
  display: flex; align-items: center; gap: 0.5rem;
}
.hint-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

/* ============ About ============ */
.about { padding: 8rem 0; }
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4.5rem;
  align-items: center;
}
.about-media {
  position: relative;
  border-radius: var(--radius);
}
.about-media img {
  border-radius: var(--radius);
  aspect-ratio: 1/1;
  object-fit: cover;
  position: relative;
  z-index: 1;
  box-shadow: 0 24px 60px rgba(38, 32, 26, 0.28);
}
.media-glow {
  position: absolute;
  inset: -8%;
  z-index: 0;
  background: radial-gradient(ellipse at center, rgba(221, 153, 51, 0.3), transparent 65%);
  filter: blur(10px);
  pointer-events: none;
}
.tilt-card { will-change: transform; transition: transform 0.15s ease-out; }
.about-copy p { font-size: 1.05rem; }
.signature {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--amber-deep);
  margin-top: 1.6rem;
}

/* ============ Gallery ============ */
.gallery {
  padding: 8rem 0;
  background: var(--bg-raise);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.gallery-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}
.g-item {
  position: relative;
  border: 1px solid var(--line);
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg);
  aspect-ratio: 1/1;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  box-shadow: 0 6px 18px rgba(38, 32, 26, 0.1);
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: filter 0.35s ease, transform 0.5s ease;
}
.g-item:hover, .g-item:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(221, 153, 51, 0.65);
  box-shadow: 0 20px 45px rgba(38, 32, 26, 0.3), 0 0 40px rgba(221, 153, 51, 0.2);
}
.g-item:hover img, .g-item:focus-visible img {
  filter: brightness(1.06) saturate(1.1);
  transform: scale(1.05);
}
.g-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.6rem 1rem 0.85rem;
  background: linear-gradient(0deg, rgba(23, 18, 11, 0.88), transparent);
  color: var(--cream-ink);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-align: left;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.g-item:hover .g-label, .g-item:focus-visible .g-label {
  opacity: 1; transform: translateY(0);
}

/* ============ Craft ============ */
.craft { padding: 8rem 0; }
.craft-line {
  list-style: none;
  margin: 4rem auto 0;
  padding: 0;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.craft-line::before {
  content: "";
  position: absolute;
  top: 1.5rem; left: 6%; right: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), var(--green), var(--rose), transparent);
  opacity: 0.6;
}
.craft-step { text-align: center; position: relative; }
.step-num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-style: italic;
  color: var(--amber-deep);
  font-size: 1.05rem;
  margin-bottom: 1.3rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 18px rgba(38, 32, 26, 0.12);
}
.craft-step h3 { font-size: 1.15rem; }
.craft-step p { font-size: 0.95rem; }

/* ============ Split section header (Watch, Shop) ============ */
.split-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3.2rem;
}
.split-lead {
  max-width: 480px;
  font-size: 1.05rem;
  justify-self: end;
  margin-bottom: 0.4rem;
}

/* ============ Watch ============ */
.watch { padding: 8rem 0; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.video-card {
  display: block;
  background: #faf4e7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(38, 32, 26, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.video-card:hover, .video-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(221, 153, 51, 0.6);
  box-shadow: 0 18px 40px rgba(38, 32, 26, 0.22), 0 0 34px rgba(221, 153, 51, 0.16);
}
.video-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.video-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.video-card:hover .video-thumb img { transform: scale(1.05); }
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 62px; height: 62px;
  border-radius: 50%;
  background: rgba(250, 244, 231, 0.94);
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
  transition: transform 0.25s ease, background 0.25s ease;
}
.play-btn::after {
  content: "";
  position: absolute;
  top: 50%; left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent #211b12;
}
.video-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--amber);
}
.video-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 550;
  font-size: 1.22rem;
  line-height: 1.25;
  color: var(--ink);
  padding: 1.2rem 1.3rem 0.5rem;
}
.video-meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0 1.3rem 1.3rem;
}
.pill {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
}
.pill-rose  { background: rgba(194, 86, 94, 0.16);  color: #a83e46; }
.pill-green { background: rgba(67, 145, 95, 0.16);  color: #2e6b45; }
.pill-amber { background: rgba(221, 153, 51, 0.2);  color: #96631a; }
.pill-note {
  font-size: 0.82rem;
  color: var(--ink-dim);
  letter-spacing: 0.04em;
}
.watch-cta { text-align: center; margin-top: 3rem; }
.btn-dark {
  background: var(--dark);
  color: var(--cream-ink);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(33, 27, 18, 0.4);
}
.yt-glyph {
  width: 20px; height: 14px;
  background: #ff0033;
  border-radius: 4px;
  position: relative;
  display: inline-block;
}
.yt-glyph::after {
  content: "";
  position: absolute;
  top: 50%; left: 55%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #fff;
}

/* ============ Shop ============ */
.shop {
  padding: 8rem 0;
  background: var(--bg-raise);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.1rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-deep);
  border: 1px solid rgba(221, 153, 51, 0.5);
  background: rgba(221, 153, 51, 0.1);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
}
.soon-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber);
  animation: pulse 2.2s infinite;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.product-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 44%, hsla(var(--tint), 55%, 62%, 0.38), transparent 68%),
    repeating-linear-gradient(45deg, rgba(38, 32, 26, 0.045) 0 1px, transparent 1px 14px),
    #ecdfc2;
}
.ph-label {
  position: absolute;
  left: 1.1rem; bottom: 1rem;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* ============ Newsletter ============ */
.newsletter { padding: 5rem 0 8rem; }
.news-panel {
  background: linear-gradient(120deg, #e8a63d, #dd9933);
  border-radius: 28px;
  padding: clamp(2.2rem, 5vw, 4.2rem);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  box-shadow: 0 24px 60px rgba(221, 153, 51, 0.35);
}
.news-copy h2 { color: #241a09; margin-bottom: 0.7rem; }
.news-copy h2 em { color: #fdf3dd; }
.news-copy p {
  color: rgba(36, 26, 9, 0.78);
  max-width: 460px;
  margin: 0;
  font-size: 1.02rem;
}
.news-form {
  display: flex;
  align-items: center;
  background: #fffdf8;
  border-radius: 999px;
  padding: 0.35rem 0.35rem 0.35rem 1.4rem;
  box-shadow: 0 10px 30px rgba(120, 75, 5, 0.25);
}
.news-form input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  outline: none;
}
.news-form input::placeholder { color: #9a8c72; }
.news-form .btn-dark { padding: 0.85rem 1.7rem; white-space: nowrap; }
.news-msg {
  font-weight: 500;
  color: #241a09;
  background: #fffdf8;
  border-radius: 999px;
  padding: 1rem 1.6rem;
  text-align: center;
}

/* ============ Contact — dark bookend echoing the hero ============ */
.contact {
  padding: 8rem 0;
  background:
    radial-gradient(ellipse 60% 80% at 85% 20%, rgba(221, 153, 51, 0.09), transparent),
    radial-gradient(ellipse 50% 70% at 10% 90%, rgba(67, 145, 95, 0.08), transparent),
    var(--dark);
  color: var(--cream-ink);
}
.contact h2 { color: var(--cream-ink); }
.contact h2 em { color: var(--amber); }
.contact .kicker { color: var(--amber); }
.contact .lead { color: var(--cream-dim); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}
.contact-links { display: grid; gap: 0.9rem; }
.c-link {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--glass-dark);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.c-link:hover {
  border-color: rgba(221, 153, 51, 0.6);
  background: rgba(221, 153, 51, 0.08);
  transform: translateX(4px);
}
.c-name { font-weight: 500; color: var(--cream-ink); }
.c-sub { font-size: 0.88rem; color: var(--cream-dim); }

/* ============ Footer ============ */
.site-footer {
  padding: 2.4rem 0;
  font-size: 0.88rem;
  background: #17120b;
  color: var(--cream-dim);
  border-top: 1px solid var(--line-dark);
}
.footer-inner {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
}
.footer-inner p { margin: 0; color: var(--cream-dim); }
.footer-note { opacity: 0.6; }

/* ============ Lightbox ============ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(20, 15, 8, 0.94);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 3rem 1.5rem;
}
.lightbox[hidden] { display: none; }
.lightbox figure { margin: 0; max-width: 900px; text-align: center; }
.lightbox img {
  max-height: 76vh;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: 0 0 80px rgba(221, 153, 51, 0.22), 0 30px 80px rgba(0,0,0,0.6);
}
.lightbox figcaption {
  color: var(--cream-ink);
  margin-top: 1.2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
}
.lightbox-close {
  position: absolute; top: 1.4rem; right: 1.8rem;
  background: none; border: none;
  color: var(--cream-ink); font-size: 2.5rem; line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}
.lightbox-close:hover { color: var(--amber); transform: rotate(90deg); }

/* ============ Reveal ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
  transition-delay: calc(var(--d, 0) * 70ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hint-dot { animation: none; }
  .tilt-card { transition: none; }
}

/* ============ Responsive ============ */
@media (max-width: 920px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .craft-line { grid-template-columns: repeat(2, 1fr); }
  .craft-line::before { display: none; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 6.5rem;
    padding-bottom: 6rem;
  }
  .hero-copy { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .paint-piece { width: min(75vw, 300px); }
  .split-head { grid-template-columns: 1fr; gap: 1.2rem; align-items: start; }
  .split-lead { justify-self: start; }
  .video-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .product-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .news-panel { grid-template-columns: 1fr; gap: 2rem; }

  .main-nav ul {
    position: absolute;
    top: calc(100% + 0.6rem); right: 2rem;
    background: rgba(242, 233, 218, 0.97);
    backdrop-filter: blur(14px);
    border: 1px solid var(--line);
    flex-direction: column; gap: 0;
    border-radius: var(--radius);
    overflow: hidden;
    min-width: 210px;
    display: none;
    box-shadow: 0 20px 50px rgba(38, 32, 26, 0.3);
  }
  .main-nav ul.open { display: flex; }
  .main-nav a {
    display: block; padding: 1rem 1.4rem;
    border-bottom: 1px solid var(--line);
    color: var(--ink) !important;
  }
  .nav-toggle { display: flex; }
}

@media (max-width: 560px) {
  body { font-size: 17px; }
  h1 { font-size: clamp(2.2rem, 11vw, 2.8rem); }
  .gallery-grid { gap: 0.8rem; }
  .craft-line { grid-template-columns: 1fr; max-width: 320px; }
  .wipe-btn { right: 1.2rem; bottom: 1.2rem; }
  .hero-hint { left: 1.2rem; bottom: 1.35rem; }
}
