/* ─── Fonts loaded async via <link> in HTML ─── */

/* ─── Custom Properties ─── */
:root {
  --bg: #080808;
  --surface: #111111;
  --surface-2: #1b1b1b;
  --accent: #c8a84b;
  --accent-dim: rgba(200, 168, 75, 0.12);
  --text: #f0ede8;
  --text-muted: #7a7672;
  --border: #242424;
  --nav-height: 72px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --max-width: 1360px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E"),
    radial-gradient(ellipse 80% 50% at 20% 30%, rgba(200,168,75,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 70%, rgba(200,168,75,0.05) 0%, transparent 60%);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── Film Grain ─── */
#grain-svg { display: none; }
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  filter: url(#film-grain);
  opacity: 0.13;
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8, 8, 8, 0.92);
  border-bottom-color: var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 400;
  position: relative;
  padding-bottom: 12px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after {
  opacity: 1;
  transform: translateY(0);
}
.nav-links .btn-nav::after { display: none; }
.nav-links .btn-nav {
  color: var(--accent);
  border: 1px solid rgba(200, 168, 75, 0.5);
  padding: 9px 24px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.nav-links .btn-nav:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.nav-mobile-toggle { display: none; }

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--nav-height) 24px 80px;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}
.hero-bg-img.active { opacity: 1; }
.hero-bg-img[data-index="3"] { background-position: center 25%; }
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(8, 8, 8, 0.62) 0%,
      rgba(8, 8, 8, 0.45) 45%,
      rgba(8, 8, 8, 0.72) 75%,
      rgba(8, 8, 8, 1.00) 100%),
    radial-gradient(ellipse 70% 50% at 65% 40%, rgba(200, 168, 75, 0.04) 0%, transparent 70%);
}
.hero-lines { display: none; }
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 920px;
}
.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-weight: 400;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent));
  opacity: 0.6;
}
.hero-eyebrow::after {
  background: linear-gradient(to left, transparent, var(--accent));
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
  color: var(--text);
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text);
  max-width: 520px;
  margin: 0 auto 56px;
  line-height: 1.75;
  font-weight: 300;
  opacity: 0.9;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border-radius: 2px;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--accent);
  color: #0a0808;
}
.btn-primary:hover {
  background: #d9bc6e;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 168, 75, 0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(240, 237, 232, 0.45);
}
.btn-ghost:hover {
  border-color: var(--text-muted);
  color: var(--text);
  transform: translateY(-2px);
}
.btn-lg { padding: 19px 52px; font-size: 0.8rem; }

/* ─── Section Layout ─── */
.section-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}
.section-head {
  margin-bottom: 72px;
}
.eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 400;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.section-body {
  margin-top: 20px;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.75;
}
.section-rule {
  border: none;
  border-top: 1px solid var(--border);
}

/* ─── Film Stock Showcase ─── */
.showcase-section {
  padding: 120px 0;
}
.showcase-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  gap: 40px;
  flex-wrap: wrap;
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: clamp(224px, 28.8vw, 432px) auto;
  gap: 12px;
}
.preset-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  cursor: ew-resize;
}
.preset-card:nth-child(1) { grid-column: span 6; }
.preset-card:nth-child(2) { grid-column: span 6; }
.preset-card:nth-child(3) { grid-column: span 4; }
.preset-card:nth-child(4) { grid-column: span 4; }
.preset-card:nth-child(5) { grid-column: span 4; }

/* ─── Before/After Comparison ─── */
.comparison-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  touch-action: none;
  user-select: none;
}
.comparison-after,
.comparison-before {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.comparison-after {
  position: relative;
  z-index: 0;
}
.comparison-before {
  position: absolute;
  inset: 0;
  z-index: 1;
  clip-path: inset(0 50% 0 0);
  will-change: clip-path;
}
.comparison-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255,255,255,0.7);
  z-index: 2;
  transform: translateX(-50%);
  pointer-events: none;
}
.comparison-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.45);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.comparison-knob svg {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.9);
}
.comparison-tag {
  position: absolute;
  top: 14px;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 5px 10px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  border-radius: 2px;
  z-index: 3;
  pointer-events: none;
}
.comparison-tag-before {
  left: 14px;
  color: rgba(240,237,232,0.7);
}
.comparison-tag-after {
  right: 14px;
  color: var(--text);
}
.preset-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 40%, transparent 70%);
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s;
}
.preset-card:hover .preset-card-overlay { opacity: 1; }
.preset-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 22px;
  z-index: 4;
  pointer-events: none;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.35s, opacity 0.35s;
}
.preset-card:hover .preset-card-info {
  transform: translateY(0);
  opacity: 1;
}
.preset-card-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.preset-card-desc {
  font-size: 0.75rem;
  color: rgba(240,237,232,0.65);
  letter-spacing: 0.04em;
}

/* ─── Card-specific image crops ─── */
/* Card 1: wrapper div receives clip-path (aligns with handle), img inside is scaled/shifted */
.card1-frame {
  position: absolute !important;
  inset: 0;
  overflow: hidden;
}
.card1-img {
  position: absolute;
  top: -15%;
  left: -15%;
  width: 130%;
  height: 130%;
  max-width: none;
  object-fit: cover;
  object-position: 65% center;
}

/* ─── Placeholder film stock gradients ─── */
.film-neutral    { background: linear-gradient(160deg, #3a3a3a 0%, #787870 50%, #a8a098 100%); }
.film-kodak-gold { background: linear-gradient(145deg, #1c1208 0%, #6b4420 35%, #c08030 65%, #e8c868 100%); }
.film-fuji-200   { background: linear-gradient(145deg, #1a2a30 0%, #3a6858 40%, #8ab890 70%, #c8d8b0 100%); }
.film-velvia     { background: linear-gradient(145deg, #0a1a30 0%, #1040a0 30%, #2888e8 60%, #48c8f8 100%); }
.film-portra     { background: linear-gradient(145deg, #241810 0%, #785030 40%, #c89070 70%, #e8c8a8 100%); }
.film-cinestill  { background: linear-gradient(145deg, #1a0808 0%, #6a1818 35%, #c84030 60%, #f89878 100%); }

/* ─── Features Strip ─── */
.features-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.feature-item {
  background: var(--bg);
  padding: 52px 44px;
}
.feature-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 24px;
  font-weight: 900;
}
.feature-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
  color: var(--text);
}
.feature-body {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ─── CTA Band ─── */
.cta-band {
  padding: 130px 48px;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200, 168, 75, 0.04) 0%, transparent 70%);
}
.cta-band .eyebrow { margin-bottom: 24px; }
.cta-band .section-title { max-width: 680px; margin: 0 auto 20px; }
.cta-band .section-body { margin: 0 auto 16px; text-align: center; }
.cta-price-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 48px 0 12px;
}
.cta-price {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}
.cta-price-note {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.cta-features-mini {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.cta-mini-item {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cta-mini-item::before {
  content: '✓';
  color: var(--accent);
  font-size: 0.9rem;
}

/* ─── Footer ─── */
.footer {
  border-top: 1px solid var(--border);
  padding: 56px 48px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-logo {
  display: flex;
  align-items: center;
}
.footer-logo-img {
  height: 28px;
  width: auto;
  display: block;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.footer-logo:hover .footer-logo-img { opacity: 1; }
.footer-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.footer-links a {
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
  font-weight: 400;
}
.footer-links a:hover { color: var(--text); }
.footer-copy {
  width: 100%;
  font-size: 0.73rem;
  color: var(--text-muted);
  opacity: 0.45;
  font-weight: 300;
}

/* ─── Page Hero (inner pages) ─── */
.page-hero {
  padding: calc(var(--nav-height) + 80px) 48px 32px;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(200,168,75,0.04) 0%, transparent 70%);
}
.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.page-hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 480px;
}


/* ─── Shop Page ─── */
.shop-section {
  padding: 32px 0 80px;
}
.product-hero-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0 100px;
  border-bottom: 1px solid var(--border);
}
.product-card-visual {
  position: relative;
  border-radius: 3px;
}
.product-card-visual .comparison-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 3px;
}

/* Preset thumbnails */
.preset-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.preset-thumb {
  flex: 1;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 2px;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  background: none;
  opacity: 0.55;
  transition: opacity 0.2s, border-color 0.2s;
}
.preset-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: none;
}
.preset-thumb:hover {
  opacity: 0.85;
}
.preset-thumb.active {
  border-color: var(--accent);
  opacity: 1;
}
.product-card-badge {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(200, 168, 75, 0.25);
  padding: 6px 14px;
  border-radius: 2px;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
}
.product-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}
.product-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  font-weight: 300;
}
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 32px;
}
.product-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text);
}
.product-price-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}
.product-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.product-meta-tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 2px;
  font-weight: 400;
}

/* ─── Preset List ─── */
/* ─── After Gallery ─── */
.gallery-section {
  padding: 80px 0 0;
  overflow: hidden;
}
.gallery-intro {
  margin-bottom: 48px;
}
.gallery-scroll-wrap {
  position: relative;
}
.gallery-arrow {
  position: absolute;
  top: 0;
  bottom: 48px;
  width: 80px;
  display: flex;
  align-items: center;
  pointer-events: auto;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.4s ease;
  color: var(--text);
}
.gallery-arrow.hidden { opacity: 0; pointer-events: none; }
.gallery-arrow-right {
  right: 0;
  justify-content: flex-end;
  padding-right: 20px;
  background: linear-gradient(to right, transparent, rgba(8,8,8,0.85));
}
.gallery-arrow-left {
  left: 0;
  justify-content: flex-start;
  padding-left: 20px;
  background: linear-gradient(to left, transparent, rgba(8,8,8,0.85));
}

.gallery-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 max(24px, calc((100vw - 1360px) / 2)) 48px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}
.gallery-strip::-webkit-scrollbar { display: none; }
.gallery-strip.dragging { cursor: grabbing; }
.gallery-item {
  position: relative;
  flex: 0 0 auto;
  width: clamp(240px, 28vw, 420px);
  height: clamp(280px, 34vw, 500px);
  overflow: hidden;
  border-radius: 2px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  max-width: none;
}
.gallery-item:hover img {
  transform: scale(1.03);
}
.gallery-label {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 5px 10px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  border-radius: 2px;
  color: var(--text);
  pointer-events: none;
}

.presets-section {
  padding: 60px 0 70px;
}
.presets-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 36px;
}
.preset-list-item {
  background: var(--bg);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: background 0.2s;
}
.preset-list-item:hover { background: var(--surface); }
.preset-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
  margin-top: 7px;
  flex-shrink: 0;
}
.preset-list-name {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}
.preset-list-type {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ─── Mobile preset showcase (homepage) ─── */
.mobile-preset-showcase {
  display: none;
}
.mobile-preset-showcase .comparison-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 3px;
}

/* ─── Thank You Page ─── */
.thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 80px) 24px 100px;
}
.thankyou-inner {
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 56px;
}
.thankyou-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 20px 0 24px;
}
.thankyou-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.thankyou-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}
.thankyou-video-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 3px;
  overflow: hidden;
  background: var(--surface);
}
.thankyou-video-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.thankyou-support {
  border-top: 1px solid var(--border);
  padding-top: 40px;
  width: 100%;
}
.thankyou-support p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.thankyou-support a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── Contact Page ─── */
.contact-section {
  padding: 80px 0 120px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 100px;
  align-items: start;
}
.contact-info-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
.contact-info-body {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
  font-weight: 300;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
}
.contact-detail-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  min-width: 60px;
  font-weight: 400;
}
.contact-detail a:hover { color: var(--accent); }
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 48px;
  border-radius: 3px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-weight: 400;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 18px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(200, 168, 75, 0.5);
}
.form-group textarea {
  height: 140px;
  resize: vertical;
}
.form-submit {
  margin-top: 8px;
}
.form-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 16px;
  font-weight: 300;
}

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .showcase-grid { grid-template-rows: auto; }
  .preset-card:nth-child(1) { grid-column: span 12; aspect-ratio: 3/2; }
  .preset-card:nth-child(2) { grid-column: span 6; aspect-ratio: 4/3; }
  .preset-card:nth-child(3) { grid-column: span 6; aspect-ratio: 4/3; }
  .preset-card:nth-child(4) { grid-column: span 6; aspect-ratio: 4/3; }
  .preset-card:nth-child(5) { grid-column: span 6; aspect-ratio: 4/3; }
  .product-hero-card { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
}
@media (max-width: 768px) {
  :root { --nav-height: 60px; }
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--bg);
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 800;
  }
  .nav-links.open a { font-size: 1.1rem; }
  .nav-mobile-toggle { display: block; background: none; border: none; color: var(--text); cursor: pointer; z-index: 850; }
  .section-wrap { padding: 0 20px; }
  .mobile-preset-showcase { display: block; margin-bottom: 40px; }
  .showcase-grid { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 80px 20px; }
  .footer { padding: 40px 20px; }
  .page-hero { padding: calc(var(--nav-height) + 48px) 20px 16px; }
  .shop-section { padding: 16px 0 60px; }
  .presets-list { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .showcase-intro { flex-direction: column; align-items: flex-start; }

  /* Hero: constrain bg image to top portion so it doesn't over-zoom on portrait */
  .hero-bg-img { bottom: 38%; }

  /* Hero: pull the dark fade higher so it covers the bottom half */
  .hero-bg {
    background:
      linear-gradient(to bottom,
        rgba(8, 8, 8, 0.70) 0%,
        rgba(8, 8, 8, 0.50) 30%,
        rgba(8, 8, 8, 0.85) 58%,
        rgba(8, 8, 8, 1.00) 72%);
  }

  /* Fix hero-bg-6 hard edges: 140% width-only scale doesn't fill portrait height */
  .hero-bg-img[data-index="3"] {
    background-size: cover !important;
    background-position: center 75% !important;
  }
}
@media (max-width: 480px) {
  .presets-list { grid-template-columns: 1fr 1fr; }
  .cta-features-mini { flex-direction: column; gap: 16px; }
}

/* ─── FAQ Page ─── */
.faq-section {
  padding: 0 0 100px;
}
.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.faq-group-label {
  margin-bottom: 24px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-of-type {
  border-top: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  line-height: 1.5;
  transition: color 0.2s;
}
.faq-question:hover {
  color: var(--accent);
}
.faq-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
  opacity: 0.5;
  transition: opacity 0.2s, transform 0.3s;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::before { width: 18px; height: 1px; }
.faq-icon::after  { width: 1px; height: 18px; transition: transform 0.3s, opacity 0.3s; }

.faq-question[aria-expanded="true"] .faq-icon {
  opacity: 1;
}
.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq-answer.is-open {
  grid-template-rows: 1fr;
}
.faq-answer-inner {
  overflow: hidden;
}
.faq-answer p,
.faq-answer ol {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.8;
  font-weight: 300;
  padding-bottom: 20px;
}
.faq-answer p + p,
.faq-answer p + ol {
  padding-top: 0;
  margin-top: -8px;
}
.faq-answer ol {
  padding-left: 20px;
  padding-bottom: 20px;
}
.faq-answer ol li {
  margin-bottom: 6px;
}
.faq-answer a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-answer strong {
  color: var(--text);
  font-weight: 400;
}
.faq-cta {
  max-width: 760px;
  margin: 64px auto 0;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 32px;
}
.faq-cta p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .faq-wrap { gap: 48px; }
  .faq-question { font-size: 0.95rem; padding: 18px 0; }
  .faq-cta { flex-direction: column; align-items: flex-start; gap: 20px; }
}

