/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand:    #311C17;
  --accent:   #8A6B5E;
  --light:    #FEFEFE;
  --mid:      #9E8E88;
  --dark:     #1A0E0B;
  --radius:   4px;
  --font:     'Manrope', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--brand);
  color: var(--light);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: clip;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(2.4rem, 4.5vw, 3.8rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; text-wrap: balance; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.01em; }
h3 { font-size: 1.1rem; font-weight: 700; }
p  { color: rgba(254,254,254,0.75); }

.label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}
.center { text-align: center; }
.sub { max-width: 560px; margin: 0 auto 48px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--light);
  color: var(--brand);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--accent); color: var(--light); transform: translateY(-1px); }
.btn-large { padding: 18px 44px; font-size: 1rem; }
.btn-full  { width: 100%; text-align: center; }
.btn-ghost {
  color: rgba(254,254,254,0.5);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 24px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--light); }

.link-text {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.link-text:hover { color: var(--light); }

.link-inline { color: var(--accent); text-decoration: underline; }

.hidden { display: none !important; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  transition: background 0.3s, padding 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: rgba(25, 12, 8, 0.92);
  backdrop-filter: blur(12px);
  padding: 14px 40px;
}
.nav-logo {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.nav-links {
  display: flex;
  gap: 24px;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(254,254,254,0.7);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--light); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(254,254,254,0.4);
}
.lang-btn {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(254,254,254,0.45);
  transition: color 0.2s;
  padding: 2px 4px;
}
.lang-btn:hover, .lang-btn.active { color: var(--light); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(25,12,8,0.3) 0%,
    rgba(25,12,8,0.15) 40%,
    rgba(25,12,8,0.6) 80%,
    rgba(25,12,8,0.95) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 780px;
}
.hero-title {
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(254,254,254,0.7);
  margin-bottom: 40px;
}
/* ===== FLOATING PIECE PARALLAX ===== */
.customize { position: relative; overflow: visible; z-index: 2; }

.piece-float {
  display: none; /* replaced by king bridging element on desktop */
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(254,254,254,0.6), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.6; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* ===== PRICING ===== */
.pricing {
  padding: 110px 0 120px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(138,107,94,0.07) 0%, transparent 70%),
    var(--brand);
}
.pricing-title {
  margin-bottom: 60px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}

/* --- shared card --- */
.pricing-card {
  padding: 48px 44px 44px;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* --- card 1: standard --- */
.pricing-card--std {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
}

/* --- card 2: exclusive --- */
.pricing-card--excl {
  background: rgba(138,107,94,0.07);
  border: 1px solid rgba(138,107,94,0.35);
  box-shadow:
    0 0 0 1px rgba(138,107,94,0.12),
    0 0 40px rgba(138,107,94,0.12),
    0 0 80px rgba(138,107,94,0.06),
    inset 0 0 40px rgba(138,107,94,0.04);
  position: relative;
}
.pricing-card--excl::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 3px;
  background: linear-gradient(135deg, rgba(138,107,94,0.3) 0%, transparent 50%, rgba(138,107,94,0.15) 100%);
  pointer-events: none;
  opacity: 0.5;
}

/* --- badge --- */
.pricing-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(138,107,94,0.4);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
  width: fit-content;
}

/* --- price --- */
.pricing-price {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 24px;
  color: var(--light);
  /* scroll reveal */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.pricing-price.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- includes list --- */
.pricing-includes {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pricing-includes li {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pi-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pi-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  stroke-width: 1.5;
}
.pi-text {
  font-size: 0.88rem;
  color: rgba(254,254,254,0.65);
  line-height: 1.4;
}

/* --- desc (card 2) --- */
.pricing-sub {
  font-size: 1rem;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 12px;
}
.pricing-desc {
  font-size: 0.9rem;
  color: rgba(254,254,254,0.6);
  line-height: 1.7;
  margin-bottom: 28px;
  flex: 1;
}

/* --- time --- */
.pricing-time {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(254,254,254,0.4);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}
.pricing-time svg { opacity: 0.5; flex-shrink: 0; }

/* --- cta --- */
.pricing-btn { align-self: flex-start; }

.btn-outline {
  display: inline-block;
  border: 1px solid rgba(138,107,94,0.6);
  color: var(--accent);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--light);
  border-color: var(--accent);
}

@media (max-width: 720px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 36px 28px; }
}

/* ===== WHAT ===== */
/* ===== SCENE: NOT JUST CHESS ===== */
.scene {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15vh;
}

.scene-bg {
  position: absolute;
  inset: -15% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
}

.scene-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(49,28,23,0.75) 0%, rgba(49,28,23,0.35) 55%, rgba(49,28,23,0.1) 100%);
  opacity: 1;
  z-index: 1;
}

.scene-king {
  display: none;
}
.scene-king img {
  width: 100%;
  height: auto;
  transform: rotate(-6deg);
  opacity: 0.9;
  filter:
    drop-shadow(0 0 40px rgba(180, 60, 40, 0.5))
    drop-shadow(0 0 100px rgba(180, 60, 40, 0.2));
}

.scene-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  max-width: 720px;
  margin-top: 10px;
}

.scene-label {
  color: #8A6B5E;
  margin-bottom: 20px;
}

.scene-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #FEFEFE;
  line-height: 1.15;
  margin-bottom: 56px;
}

.scene-segments {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.scene-seg {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.scene-seg-title {
  font-size: 1rem;
  font-weight: 600;
  color: #FEFEFE;
  letter-spacing: 0.01em;
}

.scene-seg-sub {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(254,254,254,0.55);
  line-height: 1.5;
}

.scene-seg-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(254,254,254,0.15);
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .scene { padding-top: 8vh; }
  .scene-king { display: none; }
  .scene-segments { flex-direction: column; gap: 24px; align-items: center; }
  .scene-seg-divider { width: 100%; height: 1px; align-self: auto; }
  .scene-seg { text-align: center !important; width: 100%; }
  .scene-seg-title { text-align: center !important; }
  .scene-seg-sub { text-align: center !important; }
  .scene-bg { background-image: url('assets/photos/Mobile2.jpg') !important; }
}


/* ===== CARD DECK ===== */
.deck-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

/* Invisible buffer zone — hover triggers here, prevents flicker */
.deck-trigger {
  padding: 130px 180px 90px;
  cursor: pointer;
}
.deck-trigger.fanned { cursor: default; }

.deck {
  position: relative;
  width: 310px;
  height: 430px;
}

.deck-card {
  position: absolute;
  width: 310px;
  height: 430px;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 1.2s cubic-bezier(0.34, 1.1, 0.64, 1), box-shadow 0.6s ease;
  box-shadow: 0 6px 24px rgba(0,0,0,0.55);
  will-change: transform;
  top: 0;
  left: 0;
}
.deck-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* Default stacked */
.deck-card:nth-child(1) { transform: rotate(-9deg)  translateY(8px);  z-index: 1; }
.deck-card:nth-child(2) { transform: rotate(-6deg)  translateY(5px);  z-index: 2; }
.deck-card:nth-child(3) { transform: rotate(-3deg)  translateY(2px);  z-index: 3; }
.deck-card:nth-child(4) { transform: rotate(0deg);                    z-index: 5; }
.deck-card:nth-child(5) { transform: rotate(3deg)   translateY(2px);  z-index: 3; }
.deck-card:nth-child(6) { transform: rotate(6deg)   translateY(5px);  z-index: 2; }
.deck-card:nth-child(7) { transform: rotate(9deg)   translateY(8px);  z-index: 1; }

/* Fanned */
.deck-trigger.fanned .deck-card:nth-child(1) { transform: translateX(-210px) translateY(50px) rotate(-30deg); z-index: 1; }
.deck-trigger.fanned .deck-card:nth-child(2) { transform: translateX(-140px) translateY(18px) rotate(-20deg); z-index: 2; }
.deck-trigger.fanned .deck-card:nth-child(3) { transform: translateX(-70px)  translateY(-5px) rotate(-10deg); z-index: 3; }
.deck-trigger.fanned .deck-card:nth-child(4) { transform: translateX(0)      translateY(-14px) rotate(0deg);  z-index: 5; }
.deck-trigger.fanned .deck-card:nth-child(5) { transform: translateX(70px)   translateY(-5px) rotate(10deg);  z-index: 3; }
.deck-trigger.fanned .deck-card:nth-child(6) { transform: translateX(140px)  translateY(18px) rotate(20deg);  z-index: 2; }
.deck-trigger.fanned .deck-card:nth-child(7) { transform: translateX(210px)  translateY(50px) rotate(30deg);  z-index: 1; }

/* Active card — stays in fanned rotation, just lifts up in its own spot */
.deck-trigger.fanned .deck-card.active {
  z-index: 10 !important;
  box-shadow:
    0 24px 60px rgba(0,0,0,0.65),
    0 0 50px rgba(138,107,94,0.6),
    0 0 100px rgba(138,107,94,0.25);
}
.deck-trigger.fanned .deck-card:nth-child(1).active { transform: translateX(-210px) translateY(0px)   rotate(-30deg) scale(1.1) !important; }
.deck-trigger.fanned .deck-card:nth-child(2).active { transform: translateX(-140px) translateY(-32px) rotate(-20deg) scale(1.1) !important; }
.deck-trigger.fanned .deck-card:nth-child(3).active { transform: translateX(-70px)  translateY(-55px) rotate(-10deg) scale(1.1) !important; }
.deck-trigger.fanned .deck-card:nth-child(4).active { transform: translateX(0)      translateY(-64px) rotate(0deg)   scale(1.1) !important; }
.deck-trigger.fanned .deck-card:nth-child(5).active { transform: translateX(70px)   translateY(-55px) rotate(10deg)  scale(1.1) !important; }
.deck-trigger.fanned .deck-card:nth-child(6).active { transform: translateX(140px)  translateY(-32px) rotate(20deg)  scale(1.1) !important; }
.deck-trigger.fanned .deck-card:nth-child(7).active { transform: translateX(210px)  translateY(0px)   rotate(30deg)  scale(1.1) !important; }

.deck-hint {
  font-size: 0.72rem;
  color: rgba(254,254,254,0.3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  transition: opacity 0.4s;
  margin-top: 8px;
  display: none; /* hidden on desktop */
}
@media (max-width: 900px) {
  .deck-hint { display: block; }
  .deck-hint.hidden { opacity: 0; pointer-events: none; }
}

@media (max-width: 900px) {
  .deck-trigger { padding: 40px 120px 60px; }
  .deck-trigger.fanned .deck-card:nth-child(1) { transform: translateX(-120px) translateY(36px) rotate(-24deg); z-index: 1; }
  .deck-trigger.fanned .deck-card:nth-child(2) { transform: translateX(-80px)  translateY(12px) rotate(-16deg); z-index: 2; }
  .deck-trigger.fanned .deck-card:nth-child(3) { transform: translateX(-40px)  translateY(-6px) rotate(-8deg);  z-index: 3; }
  .deck-trigger.fanned .deck-card:nth-child(5) { transform: translateX(40px)   translateY(-6px) rotate(8deg);   z-index: 3; }
  .deck-trigger.fanned .deck-card:nth-child(6) { transform: translateX(80px)   translateY(12px) rotate(16deg);  z-index: 2; }
  .deck-trigger.fanned .deck-card:nth-child(7) { transform: translateX(120px)  translateY(36px) rotate(24deg);  z-index: 1; }
}

/* ===== GALLERY STRIP ===== */
.gallery { padding: 80px 0 100px; background: #251511; overflow: hidden; }
.gallery h2 { margin-bottom: 48px; }

.gallery-strip {
  margin-top: 40px;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  cursor: grab;
}
.gallery-strip.dragging { cursor: grabbing; }

.gallery-track {
  display: flex;
  gap: 12px;
  width: max-content;
  will-change: transform;
}

.g-item {
  flex-shrink: 0;
  width: 280px;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border-radius: 2px;
}
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.88);
  transition: filter 0.4s ease, transform 0.5s ease;
}
.g-item:hover img {
  filter: brightness(1.05);
  transform: scale(1.04);
}



@media (max-width: 600px) {
  .g-item { width: 200px; }
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 7, 5, 0.96);
  backdrop-filter: blur(12px);
}
.lb-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.lb-img-wrap {
  width: min(420px, 80vw);
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);
}
.lb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: opacity 0.25s ease;
}
.lb-img.fading { opacity: 0; }
.lb-counter {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: rgba(254,254,254,0.35);
  font-weight: 600;
  text-transform: uppercase;
}
.lb-close {
  position: absolute;
  top: 28px;
  right: 32px;
  z-index: 3;
  width: 44px;
  height: 44px;
  color: rgba(254,254,254,0.5);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-close:hover { color: var(--light); }
.lb-close svg { width: 22px; height: 22px; }
@media (max-width: 900px) {
  .lb-close { top: 70px; right: 16px; }
}

.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  color: rgba(254,254,254,0.4);
  transition: color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-arrow svg { width: 32px; height: 32px; }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-arrow:hover {
  color: var(--light);
  transform: translateY(-50%) scale(1.1);
}
.lb-prev:hover { transform: translateY(-50%) scale(1.1) translateX(-2px); }
.lb-next:hover { transform: translateY(-50%) scale(1.1) translateX(2px); }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .g-item:nth-child(5) { grid-column: span 1; aspect-ratio: 3/4; }
  .lb-content { max-width: calc(100vw - 80px); }
  .lb-arrow { width: 40px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}

/* ===== ABOUT ===== */
.about { padding: 100px 0; position: relative; overflow: visible; background: #251511; }

@media (min-width: 901px) {
  .about::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 220px;
    background: linear-gradient(to bottom, transparent, #251511);
    pointer-events: none;
    z-index: 0;
  }
}

.about-king {
  display: block;
  position: absolute;
  left: 180px;
  bottom: -290px;
  width: 160px;
  pointer-events: none;
  z-index: 4;
}
.about-king img {
  width: 100%;
  height: auto;
  transform: rotate(-8deg);
  opacity: 0;
  transition: opacity 0.6s ease;
  will-change: filter;
  filter:
    drop-shadow(0 0 20px rgba(180,60,40,0.4))
    drop-shadow(0 0 60px rgba(180,60,40,0.15));
}
.about-king img.king-loaded {
  opacity: 0.55;
}

.about-queen {
  display: block;
  position: absolute;
  right: 280px;
  bottom: -540px;
  width: 160px;
  pointer-events: none;
  z-index: 5;
}
.about-queen img {
  width: 100%;
  height: auto;
  transform: rotate(8deg);
  opacity: 0.55;
  will-change: filter;
  filter:
    drop-shadow(0 0 20px rgba(180,60,40,0.4))
    drop-shadow(0 0 60px rgba(180,60,40,0.15));
}

/* Decorative pieces — desktop hidden, mobile only */
.about-queen-mobile,
.process-piece-left { display: none; }

@media (max-width: 900px) {
  .about-king {
    left: auto;
    right: 0;
    bottom: auto;
    top: 200px;
    width: 130px;
    z-index: 0;
  }
  .about-king img { transform: rotate(10deg); }
  .about { overflow-x: clip; }
  .about-queen { display: none; }

  /* Queen deco — positioned via JS, sits outside about clip */
  .about-queen-mobile {
    display: block;
    position: absolute;
    width: 60px;
    overflow: visible;
    pointer-events: none;
    z-index: 6;
  }
  .about-queen-mobile img {
    width: 60px;
    height: auto;
    display: block;
    opacity: 0.7;
    filter:
      drop-shadow(0 0 20px rgba(180,60,40,0.4))
      drop-shadow(0 0 60px rgba(180,60,40,0.15));
  }

  /* Queen — left side of process section, parallax */
  .process-piece-left {
    display: block;
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 110px;
    pointer-events: none;
    z-index: 0;
  }
  .process-piece-left img {
    width: 100%;
    height: auto;
    transform: rotate(8deg);
    opacity: 0.45;
    filter: drop-shadow(0 0 18px rgba(138,107,94,0.25));
  }
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-media { display: flex; flex-direction: column; gap: 32px; }
.about-photo-placeholder img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
}
.yt-thumb {
  display: block;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
}
.yt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(0.85);
}
.yt-thumb:hover img {
  transform: scale(1.03);
  filter: brightness(0.7);
}
.yt-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.yt-thumb:hover .yt-play { transform: scale(1.1); }
.about-h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 20px;
}
.about-text p { margin-bottom: 20px; color: rgba(254,254,254,0.75); }

.about-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.about-steps li {
  font-size: 0.875rem;
  color: rgba(254,254,254,0.65);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.about-steps li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #8A6B5E;
}

.about-p5 {
  padding: 16px 20px;
  border-left: 2px solid #8A6B5E;
  color: rgba(254,254,254,0.7);
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* ===== CARD LIGHTBOX (mobile) ===== */
#cardLb {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}
#cardLb.open { display: flex; }

.clb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
}
.clb-img {
  position: relative;
  z-index: 1;
  max-width: 88vw;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.clb-counter {
  position: relative;
  z-index: 1;
  font-size: 0.8rem;
  color: rgba(254,254,254,0.45);
  letter-spacing: 0.08em;
  margin: 0;
}
.clb-close {
  position: absolute;
  top: 16px; right: 20px;
  z-index: 2;
  background: none; border: none;
  color: #FEFEFE; cursor: pointer;
  opacity: 0.7;
  padding: 8px;
}
.clb-prev, .clb-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 2;
  background: none; border: none;
  color: #FEFEFE; cursor: pointer;
  opacity: 0.6;
  padding: 12px;
}
.clb-prev { left: 8px; }
.clb-next { right: 8px; }

/* ===== CUSTOMIZE ===== */
.customize {
  padding: 100px 0;
  background: rgba(0,0,0,0.25);
}
.customize h2 { margin-bottom: 12px; }
.customize .sub { margin-top: 16px; }
.custom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.custom-card {
  position: relative;
  padding: 0;
  border: 1px solid rgba(254,254,254,0.07);
  overflow: hidden;
  min-height: 220px;
  cursor: default;
}
.custom-card-body {
  padding: 40px 32px;
  position: relative;
  z-index: 1;
  transition: opacity 0.3s ease;
}
.custom-card:hover .custom-card-body {
  opacity: 0;
}
.custom-preview {
  position: absolute;
  inset: 0;
  display: flex;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
}
.custom-preview img {
  width: 50%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.custom-card:hover .custom-preview {
  opacity: 1;
}
.custom-icon {
  font-size: 1.5rem;
  margin-bottom: 16px;
  opacity: 0.8;
}
.custom-card h3 { margin-bottom: 10px; }
.custom-card p { font-size: 0.9rem; color: rgba(254,254,254,0.65); }

/* EXCLUSIVE SHOWCASE */
.custom-exclusive {
  margin-top: 80px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(254,254,254,0.10);
  padding: 48px 48px 52px;
  text-align: center;
}
.custom-exclusive .label {
  margin-bottom: 16px;
}
.custom-exclusive-title {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.4;
  color: #FEFEFE;
  margin-bottom: 32px;
}
.custom-exclusive-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 28px;
}
.custom-exclusive-photos img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.custom-exclusive-photos .exclusive-photo-4th { display: none; }

.custom-exclusive-sub {
  font-size: 0.95rem;
  color: rgba(254,254,254,0.55);
  margin-bottom: 28px;
}
.custom-exclusive .btn {
  display: inline-block;
  padding: 14px 36px;
  background: #5C2D1E;
  color: #FEFEFE;
  border: 1px solid rgba(254,254,254,0.12);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.custom-exclusive .btn:hover {
  background: #7A3D2A;
  border-color: rgba(254,254,254,0.25);
}

/* ===== PROCESS / TIMELINE ===== */
.process {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}
.process::before {
  content: '';
  position: absolute;
  top: -120px; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #311C17);
  pointer-events: none;
  z-index: 3;
}
.process h2 {
  margin-bottom: 72px;
}
.timeline {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
}
.timeline-line {
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: rgba(254,254,254,0.08);
}
.timeline-line-fill {
  display: block;
  width: 1px;
  height: 0%;
  background: linear-gradient(to bottom, #8A6B5E, rgba(138,107,94,0.2));
  transition: height 1.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.timeline-line-fill.is-visible {
  height: 100%;
}
.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 0 0 64px 0;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.timeline-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.timeline-dot {
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #8A6B5E;
  margin-top: 6px;
  margin-left: -4px;
  box-shadow: 0 0 12px rgba(138,107,94,0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.timeline-step.is-visible .timeline-dot {
  opacity: 1;
}
.timeline-content {
  padding-left: 24px;
}
.timeline-num {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #8A6B5E;
  margin-bottom: 10px;
}
.timeline-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #FEFEFE;
  margin-bottom: 8px;
}
.timeline-content p {
  font-size: 0.9rem;
  color: rgba(254,254,254,0.55);
  line-height: 1.6;
}

/* ===== AVAILABLE ===== */
.available { padding: 100px 0; }
.available-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.available-img { position: relative; }
.avail-img-link {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.avail-img-link img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: opacity 0.55s ease, transform 0.5s ease;
}
.avail-img-link:hover img { transform: scale(1.03); }
.avail-img-hover-hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16,8,2,0.55);
  color: #FEFEFE;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-decoration: none;
}
.avail-img-link:hover .avail-img-hover-hint { opacity: 1; }
.available-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
}
.badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--accent);
  color: var(--light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius);
}
.available-text h2 { margin-bottom: 20px; }
.available-text p  { margin-bottom: 16px; }
.avail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.avail-see-all {
  font-size: 0.85rem;
  padding: 14px 24px;
  border-color: rgba(254,254,254,0.2);
  color: rgba(254,254,254,0.7);
  text-decoration: none;
}
.avail-see-all:hover {
  background: transparent;
  border-color: rgba(254,254,254,0.5);
  color: #FEFEFE;
}
.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--light) !important;
  margin-bottom: 28px !important;
}

/* ===== ORDER ===== */
.order { padding: 120px 0; }
.order h2 { margin-bottom: 12px; }

.form-wrap {
  max-width: 540px;
  margin: 0 auto;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.field label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(254,254,254,0.6);
}
.field input[type="text"],
.field input[type="email"] {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: var(--light);
  font-family: var(--font);
  font-size: 1rem;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s;
}
.field input:focus { border-color: rgba(255,255,255,0.35); }
.contact-type {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  color: rgba(254,254,254,0.7);
}
.radio-label input { accent-color: var(--accent); }
.checkbox-field { flex-direction: row; align-items: flex-start; gap: 12px; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.85rem;
  color: rgba(254,254,254,0.55);
  line-height: 1.5;
}
.checkbox-label input { accent-color: var(--accent); margin-top: 3px; flex-shrink: 0; }

/* ===== QUIZ ===== */
.quiz-wrap {
  max-width: 640px;
  margin: 0 auto;
}
.quiz-progress {
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 1px;
  margin-bottom: 12px;
  overflow: hidden;
}
.quiz-progress-bar {
  height: 100%;
  background: var(--accent);
  border-radius: 1px;
  transition: width 0.4s ease;
  width: 0%;
}
.quiz-step-label {
  font-size: 0.75rem;
  color: rgba(254,254,254,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.quiz-question { display: none; }
.quiz-question.active { display: block; }
.quiz-q-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}
.quiz-q-hint {
  font-size: 0.85rem;
  color: rgba(254,254,254,0.45);
  margin-bottom: 32px;
}
.quiz-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}
.quiz-opt {
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.95rem;
  color: rgba(254,254,254,0.75);
  background: transparent;
  text-align: left;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.quiz-opt:hover { border-color: rgba(255,255,255,0.3); color: var(--light); }
.quiz-opt.selected {
  border-color: var(--accent);
  background: rgba(138,107,94,0.15);
  color: var(--light);
}
.quiz-text-input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: var(--light);
  font-family: var(--font);
  font-size: 1rem;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
  min-height: 100px;
}
.quiz-text-input:focus { border-color: rgba(255,255,255,0.35); }
.quiz-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.quiz-skip {
  font-size: 0.8rem;
  color: rgba(254,254,254,0.35);
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  font-family: var(--font);
}
.quiz-skip:hover { color: rgba(254,254,254,0.6); }

/* Quiz new types */
.quiz-q-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; line-height: 1.2; color: var(--light); }
.quiz-q-hint  { font-size: 0.85rem; color: rgba(254,254,254,0.45); margin-bottom: 28px; line-height: 1.5; }

.quiz-price-badge {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--accent);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.quiz-section-header {
  padding: 20px 0 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 8px;
}
.quiz-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.quiz-section-hint {
  font-size: 0.8rem;
  color: rgba(254,254,254,0.4);
  margin-top: 6px;
  line-height: 1.5;
}

/* Photo choice cards */
.quiz-photo-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}
.quiz-photo-card {
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s;
  background: rgba(255,255,255,0.03);
}
.quiz-photo-card:hover { border-color: rgba(255,255,255,0.3); transform: translateY(-2px); }
.quiz-photo-card.selected { border-color: var(--accent); background: rgba(138,107,94,0.1); }
.quiz-photo-img { aspect-ratio: 1; overflow: hidden; }
.quiz-photo-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.quiz-photo-label {
  display: block;
  padding: 10px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(254,254,254,0.85);
  text-align: center;
  line-height: 1.3;
}
.quiz-photo-card--text {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  padding: 16px;
}
.quiz-photo-card--text .quiz-photo-label { padding: 0; }

/* Option price tag */
.quiz-opt-price {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.9;
}

/* Sub-text field (appears when option with hasText is selected) */
.quiz-subtext { margin-top: 8px; }
.quiz-subtext--full { grid-column: 1 / -1; }
.quiz-subtext .quiz-text-input { min-height: 44px; padding: 10px 14px; font-size: 0.9rem; }

/* Compact options row (fog) */
.quiz-options--compact {
  grid-template-columns: repeat(2, 1fr);
  max-width: 360px;
}

/* Fog gallery */
.quiz-fog-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}
.quiz-fog-photo { border-radius: 6px; overflow: hidden; aspect-ratio: 1; }
.quiz-fog-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* File upload */
.quiz-upload-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.quiz-upload-label { cursor: pointer; }
.quiz-upload-input { display: none; }
.quiz-upload-btn {
  display: inline-block;
  padding: 8px 16px;
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: 6px;
  font-size: 0.82rem;
  color: rgba(254,254,254,0.6);
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
}
.quiz-upload-btn:hover { border-color: rgba(255,255,255,0.4); color: var(--light); }
.quiz-upload-name { font-size: 0.8rem; color: var(--accent); }
.quiz-upload-note { font-size: 0.75rem; color: rgba(254,254,254,0.3); margin-top: 8px; line-height: 1.4; }

/* Skip + error */
.quiz-skip-wrap { margin-top: 16px; }
.quiz-error { color: #e07070; font-size: 0.82rem; margin-top: 8px; }

/* text-input without textarea height when used inline */
input.quiz-text-input { min-height: auto; height: 44px; resize: none; }

@media (max-width: 600px) {
  .quiz-photo-options { grid-template-columns: repeat(2, 1fr); }
  .quiz-fog-gallery { grid-template-columns: repeat(3, 1fr); }
}

/* ===== THANK YOU ===== */
.thankyou {
  text-align: center;
  padding: 60px 0;
}
.thanks-photo {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 32px;
  display: block;
  border: 2px solid var(--accent);
}
.thankyou-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(138,107,94,0.2);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}
.thankyou h2 { margin-bottom: 16px; }
.thanks-sign {
  margin-top: 24px;
  font-style: italic;
  color: rgba(254,254,254,0.4) !important;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.footer-logo {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.footer-links {
  display: flex;
  gap: 28px;
  font-size: 0.85rem;
  color: rgba(254,254,254,0.5);
}
.footer-links a:hover { color: var(--light); }
.footer-bottom {
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(254,254,254,0.25);
}
.footer-admin {
  font-size: 0.75rem;
  color: rgba(254,254,254,0.3);
}

/* ===== FORM PRIVACY NOTE ===== */
.form-privacy-note {
  font-size: 0.78rem;
  color: rgba(254,254,254,0.35);
  line-height: 1.6;
  margin-bottom: 16px;
}
.form-privacy-note a { color: rgba(254,254,254,0.5); text-decoration: underline; }
.form-privacy-note a:hover { color: var(--light); }

.quiz-privacy-note {
  font-size: 0.75rem;
  color: rgba(254,254,254,0.3);
  margin-bottom: 24px;
  display: none;
}
.quiz-privacy-note.visible { display: block; }
.quiz-privacy-note a { color: rgba(254,254,254,0.45); text-decoration: underline; }

/* ===== FADE-IN ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BURGER ===== */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 12px;
  position: relative;
  z-index: 1001;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--light);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(49, 28, 23, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.mobile-menu-links a {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.mobile-menu-links a:hover { opacity: 1; }
.mobile-menu-cta {
  margin-top: 16px;
  font-size: 0.9rem !important;
  background: var(--accent) !important;
  color: var(--light) !important;
  border-color: var(--accent) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .mobile-menu { display: flex; }
  .nav .btn-primary { display: none; }
  .what-grid,
  .available-grid { grid-template-columns: 1fr; gap: 48px; }
  .custom-grid { grid-template-columns: 1fr 1fr; }
  .nav { padding: 16px 24px; }
  .nav.scrolled { padding: 12px 24px; }

  /* About: text top, deck below */
  .about-grid { grid-template-columns: 1fr; gap: 0; }
  .about-media { order: 2; }
  .about-text  { order: 1; }

  /* Deck fits inside screen — overflow clips card edges */
  .deck-wrap {
    width: 100%;
    overflow: hidden;
    padding-bottom: 32px;
  }
  .deck-trigger { padding: 70px 0 50px; width: 100%; display: flex; justify-content: center; }
  .deck { width: 160px; height: 224px; }
  .deck-card { width: 160px; height: 224px; }

  /* Mobile fan — ±60px, total 280px fits 327px container */
  .deck-trigger.fanned .deck-card:nth-child(1) { transform: translateX(-60px) translateY(16px) rotate(-22deg); }
  .deck-trigger.fanned .deck-card:nth-child(2) { transform: translateX(-40px) translateY(5px)  rotate(-15deg); }
  .deck-trigger.fanned .deck-card:nth-child(3) { transform: translateX(-20px) translateY(-2px) rotate(-7deg);  }
  .deck-trigger.fanned .deck-card:nth-child(4) { transform: translateX(0)     translateY(-5px) rotate(0deg);   }
  .deck-trigger.fanned .deck-card:nth-child(5) { transform: translateX(20px)  translateY(-2px) rotate(7deg);   }
  .deck-trigger.fanned .deck-card:nth-child(6) { transform: translateX(40px)  translateY(5px)  rotate(15deg);  }
  .deck-trigger.fanned .deck-card:nth-child(7) { transform: translateX(60px)  translateY(16px) rotate(22deg);  }

  .deck-trigger.fanned .deck-card:nth-child(1).active { transform: translateX(-60px) translateY(-34px) rotate(-22deg) scale(1.1) !important; }
  .deck-trigger.fanned .deck-card:nth-child(2).active { transform: translateX(-40px) translateY(-45px) rotate(-15deg) scale(1.1) !important; }
  .deck-trigger.fanned .deck-card:nth-child(3).active { transform: translateX(-20px) translateY(-52px) rotate(-7deg)  scale(1.1) !important; }
  .deck-trigger.fanned .deck-card:nth-child(4).active { transform: translateX(0)     translateY(-55px) rotate(0deg)   scale(1.1) !important; }
  .deck-trigger.fanned .deck-card:nth-child(5).active { transform: translateX(20px)  translateY(-52px) rotate(7deg)   scale(1.1) !important; }
  .deck-trigger.fanned .deck-card:nth-child(6).active { transform: translateX(40px)  translateY(-45px) rotate(15deg)  scale(1.1) !important; }
  .deck-trigger.fanned .deck-card:nth-child(7).active { transform: translateX(60px)  translateY(-34px) rotate(22deg)  scale(1.1) !important; }

  .about-steps { grid-template-columns: 1fr; gap: 8px; }
}

@media (max-width: 600px) {
  .custom-grid { grid-template-columns: 1fr; }

  /* Customize cards: always show preview + text on mobile */
  .custom-grid { gap: 16px; }
  .custom-card { min-height: auto; }
  .custom-preview {
    position: relative;
    inset: auto;
    opacity: 1;
    height: 180px;
  }
  .custom-preview img {
    width: 50%;
    height: 180px;
  }
  .custom-card-body {
    opacity: 1;
  }
  .custom-card:hover .custom-card-body { opacity: 1; }
  .custom-card:hover .custom-preview { opacity: 1; }

  /* Exclusive photos: 2x2 grid on mobile */
  .custom-exclusive-photos {
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }
  .custom-exclusive-photos img { height: 160px; }
  .custom-exclusive-photos .exclusive-photo-4th { display: block; }
  .custom-exclusive-photos img:nth-child(1) { order: 2; }
  .custom-exclusive-photos img:nth-child(2) { order: 4; }
  .custom-exclusive-photos img:nth-child(3) { order: 3; }
  .custom-exclusive-photos img:nth-child(4) { order: 1; }
  .gallery-track img { height: 260px; }
  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .hero-title { font-size: 2.4rem; }
  .quiz-options { grid-template-columns: 1fr; }
}

/* ── SOCIAL BLOCK ── */
.social-block {
  padding: 100px 0 80px;
  background: var(--dark);
}
.social-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: center;
  justify-items: start;
}

/* Label + title inside right column */
.social-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 10px;
}
.social-title {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
  color: var(--light);
  line-height: 1.3;
  margin-bottom: 28px;
}

/* Phone mockup */
.social-phone-wrap {
  display: flex;
  justify-content: center;
}
.social-phone {
  width: 280px;
  background: #0a0a0a;
  border-radius: 40px;
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.8), 0 30px 80px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.08);
  overflow: hidden;
  position: relative;
}
.social-phone-notch {
  width: 90px;
  height: 26px;
  background: #0a0a0a;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.social-phone-screen {
  background: #0e0e0e;
  margin: 0 4px 4px;
  border-radius: 0 0 36px 36px;
  overflow: hidden;
}

/* Instagram UI inside phone — dark mode */
.ig-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 16px 2px;
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  background: #0e0e0e;
}
.ig-statusbar-icons { display: flex; align-items: center; gap: 4px; }
.ig-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 14px 6px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: #0e0e0e;
}
.ig-topbar svg { color: #fff; flex-shrink: 0; }
.ig-topbar-name { font-size: 0.72rem; font-weight: 700; color: #fff; letter-spacing: -0.01em; }

.ig-profile-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 14px 8px;
}
.ig-avatar-plain {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
}
.ig-avatar-plain img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ig-stats { display: flex; gap: 14px; }
.ig-stat { display: flex; flex-direction: column; align-items: center; gap: 0; }
.ig-stat-num { font-size: 0.8rem; font-weight: 700; color: #fff; line-height: 1.2; }
.ig-stat-label { font-size: 0.58rem; color: #888; }

.ig-bio { padding: 0 14px 10px; }
.ig-bio-name { display: block; font-size: 0.68rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.ig-bio-text { font-size: 0.6rem; color: #aaa; line-height: 1.5; white-space: pre-line; }

@media (max-width: 600px) {
  .ig-bio-name { font-size: 0.72rem; }
  .ig-bio-text { font-size: 0.64rem; line-height: 1.5; }
  .ig-stat-count { font-size: 0.85rem; }
  .ig-stat-label { font-size: 0.65rem; }
}

.ig-follow-btn {
  display: block;
  margin: 0 14px 12px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.18);
  transition: background 0.2s;
}
.ig-follow-btn:hover { background: rgba(255,255,255,0.2); }

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  text-decoration: none;
}
.ig-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s;
}
.ig-grid:hover img { opacity: 0.9; }

/* Platform cards */
.social-others {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}
.social-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border: 1px solid rgba(254,254,254,0.07);
  border-radius: 10px;
  text-decoration: none;
  background: rgba(254,254,254,0.03);
  transition: border-color 0.25s, background 0.25s;
}
.social-card:hover { border-color: rgba(254,254,254,0.18); background: rgba(254,254,254,0.06); }
.social-card-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.social-card-icon svg { width: 20px; height: 20px; }
.social-card-icon--tiktok { background: #010101; color: #fff; }
.social-card-icon--yt     { background: #FF0000; color: #fff; }
.social-card-icon--fb     { background: #1877F2; color: #fff; }
.social-card-text { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.social-card-platform { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mid); }
.social-card-handle { font-size: 0.92rem; font-weight: 600; color: var(--light); }
.social-card-desc { font-size: 0.78rem; color: var(--mid); }
.social-card-arrow { color: rgba(254,254,254,0.25); font-size: 1.1rem; transition: transform 0.2s, color 0.2s; }
.social-card:hover .social-card-arrow { transform: translateX(4px); color: var(--light); }

@media (max-width: 900px) {
  .social-inner { grid-template-columns: 1fr; justify-items: center; gap: 40px; }
  .social-phone { width: 260px; }
  .social-others { width: 100%; }
}
@media (max-width: 600px) {
  .social-phone { width: min(340px, 90vw); }
}
