/* ==========================================================================
   UMA CIVIL ARCH STUDIO
   Palette sampled directly from UCS_logo.jpeg
   Mobile-first. Built for Instagram ad traffic.
   ========================================================================== */

/* --------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------- */
:root {
  /* Charcoals - from the logo backdrop (#1A1A1A / #171717 / #212121) */
  --ink-900: #0B0B0B;
  --ink-850: #101010;
  --ink-800: #141414;
  --ink-700: #1A1A1A;
  --ink-600: #212121;
  --ink-500: #2A2A2A;
  --ink-400: #3A3733;

  /* Golds - from the logo gradient (#BC9959 > #D9B770 > #E8C87B > #E7CA88) */
  --gold-100: #F7E9C2;
  --gold-200: #E8C87B;
  --gold-300: #D9B770;
  --gold-400: #C9A45C;
  --gold-500: #BC9959;
  --gold-600: #8E6F38;
  --gold-700: #5A461F;

  --gold-grad: linear-gradient(160deg, #F7E9C2 0%, #E8C87B 28%, #D9B770 58%, #BC9959 100%);
  --gold-grad-flat: linear-gradient(180deg, #E8C87B 0%, #C9A45C 100%);

  /* Type */
  --text-hi:  #F4F1EA;
  --text-mid: #A6A199;
  --text-low: #6E6961;

  /* Support */
  --green: #4ADE80;
  --red:   #F05A5A;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;

  --shadow-gold: 0 10px 40px -12px rgba(216, 183, 112, 0.35);
  --shadow-deep: 0 24px 60px -20px rgba(0, 0, 0, 0.8);

  --maxw: 1140px;
  --pad: 20px;

  --font-display: "Montserrat", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Height of the sticky mobile buy bar - body reserves this at the bottom */
  --buybar: 74px;
}

/* --------------------------------------------------------------
   2. RESET
   -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* keeps anchor targets clear of the sticky header */
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  background: var(--ink-900);
  color: var(--text-hi);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: var(--buybar);
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

h1 { font-size: clamp(30px, 7.4vw, 62px); }
h2 { font-size: clamp(25px, 6vw, 42px); }
h3 { font-size: clamp(18px, 4.4vw, 23px); letter-spacing: -0.01em; }

p { margin: 0 0 16px; color: var(--text-mid); }

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

/* --------------------------------------------------------------
   3. LAYOUT PRIMITIVES
   -------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

section { padding: 58px 0; position: relative; }
@media (min-width: 860px) { section { padding: 92px 0; } }

.section-alt { background: var(--ink-850); }

/* Hairline gold divider used between major bands */
.rule {
  height: 1px;
  border: 0;
  margin: 0;
  background: linear-gradient(90deg, transparent, var(--gold-700), transparent);
}

.center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 14px;
}

.lede {
  font-size: clamp(15px, 3.8vw, 18px);
  max-width: 620px;
  color: var(--text-mid);
}
.center .lede { margin-inline: auto; }

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

/* --------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* No `gap` here on purpose: a label containing an inline <span> (a price,
     say) would otherwise be split into separate flex items and gapped apart.
     Icons get their spacing from the margin rules below instead. */
  border: 0;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 700;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  /* 48px+ tap target - thumb-friendly for ad traffic */
  min-height: 54px;
  padding: 0 28px;
  font-size: 16px;
}

.btn:active { transform: scale(0.975); }

/* Keep the whole label as ONE flex item so it wraps as normal text */
.btn-label { display: inline; }

.btn svg { flex: none; }
.btn > svg:first-child { margin-right: 9px; }
.btn > svg:last-child:not(:first-child) { margin-left: 9px; }

.btn-gold {
  background: var(--gold-grad-flat);
  color: #1B1408;
  box-shadow: var(--shadow-gold);
  letter-spacing: 0.01em;
}
.btn-gold:hover { box-shadow: 0 14px 48px -10px rgba(232, 200, 123, .5); }

.btn-ghost {
  background: transparent;
  color: var(--gold-200);
  border: 1px solid var(--gold-700);
}
.btn-ghost:hover { border-color: var(--gold-500); background: rgba(216,183,112,.06); }

.btn-block { display: flex; width: 100%; }

.btn-lg { min-height: 60px; font-size: 17px; padding: 0 34px; }

/* Soft pulse to draw the eye to the primary action */
.btn-pulse { animation: pulse 2.6s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 40px -12px rgba(216,183,112,.35); }
  50%      { box-shadow: 0 10px 46px -8px rgba(232,200,123,.62); }
}

.btn-sub {
  display: block;
  font-size: 12.5px;
  color: var(--text-low);
  margin-top: 12px;
  text-align: center;
}

/* --------------------------------------------------------------
   5. HEADER
   -------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(11, 11, 11, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ink-600);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px;
}

.logo-lockup { display: flex; align-items: center; gap: 10px; }
.logo-lockup img { width: 30px; height: auto; }

.logo-words { display: flex; flex-direction: column; line-height: 1; }
.logo-words .lw-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.1em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.logo-words .lw-tag {
  font-family: var(--font-display);
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold-600);
  margin-top: 3px;
}

.header-cta { display: none; }
@media (min-width: 720px) {
  .header-cta { display: inline-flex; min-height: 42px; font-size: 14px; padding: 0 20px; }
}

/* --------------------------------------------------------------
   6. HERO
   -------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 40px 0 52px;
  overflow: hidden;
  background: radial-gradient(120% 80% at 50% -10%, #1E1A12 0%, var(--ink-900) 62%);
}

/* faint blueprint grid, nods to the architecture niche */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(216,183,112,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216,183,112,.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(90% 60% at 50% 20%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(90% 60% at 50% 20%, #000 0%, transparent 78%);
  pointer-events: none;
}

.hero > .wrap { position: relative; z-index: 1; }

.hero-logo {
  width: 132px;
  margin: 0 auto 22px;
  filter: drop-shadow(0 8px 26px rgba(216,183,112,.22));
}

.hero h1 { margin-bottom: 18px; }

.hero-sub {
  font-size: clamp(15px, 4vw, 19px);
  color: var(--text-mid);
  max-width: 580px;
  margin: 0 auto 26px;
}

/* Trust strip directly under the hero CTA */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-top: 22px;
  font-size: 13px;
  color: var(--text-low);
}
.trust-row span { display: inline-flex; align-items: center; gap: 6px; }
.trust-row svg { width: 15px; height: 15px; color: var(--gold-400); flex: none; }

/* --------------------------------------------------------------
   7. PRICE BLOCK (reused in hero + pricing section)
   -------------------------------------------------------------- */
.price-line {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.price-now {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 11vw, 60px);
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-mrp {
  font-size: clamp(17px, 4.5vw, 22px);
  color: var(--text-low);
  text-decoration: line-through;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
}
.price-save {
  display: inline-block;
  background: rgba(74, 222, 128, .12);
  color: var(--green);
  border: 1px solid rgba(74, 222, 128, .3);
  border-radius: 100px;
  padding: 3px 12px;
  font-size: 12.5px;
  font-weight: 600;
}

.seats-left {
  font-size: 13px;
  color: var(--gold-300);
  margin-top: 14px;
}
.seats-left b { color: var(--gold-100); }

/* --------------------------------------------------------------
   8. MARQUEE - scrolling asset categories
   -------------------------------------------------------------- */
.marquee {
  border-block: 1px solid var(--ink-600);
  background: var(--ink-850);
  padding: 14px 0;
  overflow: hidden;
  /* fade the edges so it reads as infinite */
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 42px;
  width: max-content;
  animation: scroll-x 26s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  white-space: nowrap;
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .btn-pulse { animation: none; }
}

/* --------------------------------------------------------------
   9. CARDS / GRIDS
   -------------------------------------------------------------- */
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 680px) {
  .grid { gap: 20px; }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--ink-800);
  border: 1px solid var(--ink-600);
  border-radius: var(--radius);
  padding: 24px 22px;
  position: relative;
  transition: border-color .22s ease, transform .22s ease;
}
.card:hover { border-color: var(--gold-700); transform: translateY(-2px); }
.card h3 { margin-bottom: 8px; }
.card p { margin: 0; font-size: 14.5px; }

.card-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: linear-gradient(150deg, rgba(232,200,123,.16), rgba(188,153,89,.05));
  border: 1px solid var(--gold-700);
  margin-bottom: 16px;
}
.card-icon svg { width: 21px; height: 21px; color: var(--gold-200); }

/* count pill, e.g. "40+ PRESETS" */
.card-count {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-400);
  display: block;
  margin-bottom: 10px;
}

/* --------------------------------------------------------------
   10. PAIN / GAIN LISTS
   -------------------------------------------------------------- */
.pain-list, .gain-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }

.pain-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  background: var(--ink-800);
  border: 1px solid var(--ink-600);
  border-left: 3px solid var(--red);
  border-radius: var(--radius-sm);
  padding: 15px 18px;
  font-size: 15px;
  color: var(--text-mid);
}
.pain-list li::before {
  content: "\2715";
  color: var(--red);
  font-weight: 700;
  flex: none;
  line-height: 1.5;
}

.gain-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  background: rgba(216,183,112,.045);
  border: 1px solid var(--gold-700);
  border-left: 3px solid var(--gold-400);
  border-radius: var(--radius-sm);
  padding: 15px 18px;
  font-size: 15px;
  color: var(--text-hi);
}
.gain-list li::before {
  content: "\2713";
  color: var(--gold-300);
  font-weight: 700;
  flex: none;
  line-height: 1.5;
}

/* --------------------------------------------------------------
   11. WHAT'S INSIDE - itemised value table
   -------------------------------------------------------------- */
.value-table {
  background: var(--ink-800);
  border: 1px solid var(--ink-600);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 640px;
  margin-inline: auto;
}
.value-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--ink-600);
  font-size: 14.5px;
}
.value-row:last-child { border-bottom: 0; }
.value-row .vr-name { color: var(--text-hi); }
.value-row .vr-price { color: var(--text-low); white-space: nowrap; font-variant-numeric: tabular-nums; }
.value-row.is-bonus { background: rgba(216,183,112,.04); }
.value-row.is-bonus .vr-price { color: var(--gold-300); font-weight: 600; }
.value-row.is-total {
  background: var(--ink-700);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}
.value-row.is-total .vr-price { color: var(--gold-200); }

.bonus-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gold-100);
  background: var(--gold-600);
  border-radius: 4px;
  padding: 1px 6px;
  margin-left: 8px;
  vertical-align: middle;
}

/* --------------------------------------------------------------
   12. TESTIMONIALS
   -------------------------------------------------------------- */
.quote-card {
  background: var(--ink-800);
  border: 1px solid var(--ink-600);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.stars { color: var(--gold-300); letter-spacing: 2px; font-size: 14px; margin-bottom: 12px; }
.quote-card p { color: var(--text-hi); font-size: 15px; margin-bottom: 18px; }
.quote-who { display: flex; align-items: center; gap: 11px; }
.avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold-grad-flat);
  color: #1B1408;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  flex: none;
}
.quote-who .qw-name { font-size: 14px; font-weight: 600; color: var(--text-hi); line-height: 1.3; }
.quote-who .qw-role { font-size: 12.5px; color: var(--text-low); line-height: 1.3; }

/* --------------------------------------------------------------
   13. PRICING / CHECKOUT CARD
   -------------------------------------------------------------- */
.buy-card {
  background: linear-gradient(180deg, var(--ink-700), var(--ink-800));
  border: 1px solid var(--gold-700);
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  max-width: 520px;
  margin-inline: auto;
  box-shadow: var(--shadow-deep);
  position: relative;
}
@media (min-width: 560px) { .buy-card { padding: 40px 36px; } }

.buy-card .ribbon {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold-grad-flat);
  color: #1B1408;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.includes { list-style: none; margin: 24px 0; padding: 0; display: grid; gap: 10px; text-align: left; }
/* Block + absolute tick, NOT flex — an inline <span> inside the text would
   become its own flex item and break onto a line of its own. */
.includes li {
  position: relative;
  padding-left: 24px;
  font-size: 14.5px;
  color: var(--text-mid);
}
.includes li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-300);
  font-weight: 700;
}

.pay-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin-top: 18px;
}
.pay-methods span {
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--text-low);
  border: 1px solid var(--ink-500);
  border-radius: 5px;
  padding: 3px 9px;
}

/* UPI fallback */
.upi-box {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px dashed var(--ink-500);
}
.upi-id {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink-900);
  border: 1px solid var(--ink-500);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 14px;
  color: var(--gold-200);
  margin: 10px 0 6px;
  word-break: break-all;
}
.copy-btn {
  background: var(--ink-600);
  border: 1px solid var(--ink-400);
  color: var(--text-mid);
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 11.5px;
  font-weight: 600;
  flex: none;
}
.copy-btn:hover { color: var(--gold-200); border-color: var(--gold-700); }

/* --------------------------------------------------------------
   14. FAQ - native disclosure, zero JS needed
   -------------------------------------------------------------- */
.faq { max-width: 740px; margin-inline: auto; }
.faq details {
  border: 1px solid var(--ink-600);
  border-radius: var(--radius-sm);
  background: var(--ink-800);
  margin-bottom: 11px;
  overflow: hidden;
}
.faq details[open] { border-color: var(--gold-700); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 17px 50px 17px 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-hi);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  color: var(--gold-300);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}
.faq details[open] summary::after { content: "\2212"; }
.faq .faq-body { padding: 0 20px 18px; font-size: 14.5px; color: var(--text-mid); }
.faq .faq-body p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------
   15. GUARANTEE STRIP
   -------------------------------------------------------------- */
.guarantee {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  border: 1px solid var(--gold-700);
  border-radius: var(--radius);
  background: rgba(216,183,112,.04);
  padding: 30px 24px;
}
.guarantee svg { width: 40px; height: 40px; color: var(--gold-300); margin-bottom: 12px; }

/* --------------------------------------------------------------
   16. FOOTER
   -------------------------------------------------------------- */
.site-footer {
  background: var(--ink-850);
  border-top: 1px solid var(--ink-600);
  padding: 44px 0 34px;
  font-size: 13.5px;
  color: var(--text-low);
}
.footer-grid { display: grid; gap: 28px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }

.site-footer h4 {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 12px;
}
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-links a:hover { color: var(--gold-200); }

.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--ink-600);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: space-between;
  font-size: 12.5px;
}

/* --------------------------------------------------------------
   17. STICKY MOBILE BUY BAR
   -------------------------------------------------------------- */
.buybar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 16px;
  /* respect the iPhone home indicator */
  padding-bottom: calc(11px + env(safe-area-inset-bottom, 0px));
  background: rgba(16, 16, 16, .95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--gold-700);
}
.buybar-price { line-height: 1.15; flex: none; }
.buybar-price .bb-now {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.buybar-price .bb-mrp {
  font-size: 12px;
  color: var(--text-low);
  text-decoration: line-through;
  margin-left: 6px;
}
.buybar .btn { flex: 1; min-height: 48px; font-size: 15px; padding: 0 16px; }

/* On desktop the inline CTAs are always visible, so the bar is noise */
@media (min-width: 860px) {
  .buybar { display: none; }
  body { padding-bottom: 0; }
}

/* --------------------------------------------------------------
   18. THANK-YOU PAGE
   -------------------------------------------------------------- */
.ty-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px var(--pad);
  background: radial-gradient(110% 70% at 50% 0%, #1E1A12 0%, var(--ink-900) 60%);
}
.ty-card {
  width: 100%;
  max-width: 560px;
  background: var(--ink-800);
  border: 1px solid var(--gold-700);
  border-radius: var(--radius-lg);
  padding: 38px 24px;
  text-align: center;
  box-shadow: var(--shadow-deep);
}
@media (min-width: 560px) { .ty-card { padding: 46px 40px; } }

.ty-badge {
  width: 66px; height: 66px;
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 20px;
  background: var(--gold-grad-flat);
  color: #1B1408;
  box-shadow: var(--shadow-gold);
}
.ty-badge svg { width: 32px; height: 32px; }

.order-ref {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 12.5px;
  color: var(--text-low);
  background: var(--ink-900);
  border: 1px solid var(--ink-500);
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  margin: 18px 0 24px;
  word-break: break-all;
}
.order-ref b { color: var(--gold-300); }

.ty-steps { text-align: left; margin: 26px 0 0; }
.ty-steps h4 {
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-400); margin-bottom: 12px;
}
.ty-steps ol { margin: 0; padding-left: 20px; color: var(--text-mid); font-size: 14.5px; }
.ty-steps li { margin-bottom: 8px; }

/* State shown when someone lands here without an order_id */
.ty-locked .ty-badge { background: var(--ink-600); color: var(--gold-400); box-shadow: none; }

/* --------------------------------------------------------------
   19. LEGAL / POLICY PAGES
   -------------------------------------------------------------- */
.legal { max-width: 780px; margin-inline: auto; padding: 44px var(--pad) 80px; }
.legal h1 { font-size: clamp(28px, 6vw, 40px); margin-bottom: 8px; }
.legal .updated { color: var(--text-low); font-size: 13px; margin-bottom: 34px; }
.legal h2 { font-size: clamp(19px, 4.4vw, 24px); margin: 34px 0 12px; color: var(--gold-200); }
.legal p, .legal li { color: var(--text-mid); font-size: 15px; }
.legal ul { padding-left: 20px; }
.legal li { margin-bottom: 7px; }
.legal a { color: var(--gold-300); text-decoration: underline; }

/* --------------------------------------------------------------
   20. BEFORE / AFTER COMPARISON SLIDER
   -------------------------------------------------------------- */
.ba-stage { max-width: 900px; margin-inline: auto; }

.ba {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gold-700);
  background: var(--ink-800);
  cursor: ew-resize;
  /* Let the page scroll vertically through the widget; we own horizontal drag. */
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  box-shadow: var(--shadow-deep);
}
.ba:focus-visible { outline: 2px solid var(--gold-300); outline-offset: 3px; }

.ba img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}

/* The AFTER render is the base layer. The BEFORE render is laid over it and
   clipped to `--pos` from the left, so dragging wipes between the two. */
.ba-before {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0);
}

.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos, 50%);
  width: 2px;
  margin-left: -1px;
  background: var(--gold-200);
  box-shadow: 0 0 16px rgba(232, 200, 123, .6);
  z-index: 4;
  pointer-events: none;
}
.ba-grip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold-grad-flat);
  color: #1B1408;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .55);
}
.ba-grip svg { width: 24px; height: 24px; }

/* Corner labels */
.ba-tag {
  position: absolute;
  top: 12px;
  z-index: 5;
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
  white-space: nowrap;
}
.ba-tag-before {
  left: 12px;
  background: rgba(11, 11, 11, .72);
  color: var(--text-mid);
  border: 1px solid var(--ink-400);
}
.ba-tag-after {
  right: 12px;
  background: rgba(232, 200, 123, .92);
  color: #1B1408;
  border: 1px solid var(--gold-200);
}

/* "Drag me" nudge — fades out after first interaction */
.ba-hint {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 5;
  background: rgba(11, 11, 11, .78);
  color: var(--gold-200);
  border: 1px solid var(--gold-700);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
  pointer-events: none;
  animation: hint-bob 2.2s ease-in-out infinite;
  transition: opacity .35s ease;
}
.ba.is-touched .ba-hint { opacity: 0; }
@keyframes hint-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-4px); }
}

.fx-caption {
  text-align: center;
  font-size: 13px;
  color: var(--text-low);
  margin: 16px 0 0;
}
.fx-caption b { color: var(--gold-200); font-weight: 600; }

/* Preset switcher — horizontal scroll strip on mobile */
.fx-picker {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--ink-500) transparent;
}
.fx-picker::-webkit-scrollbar { height: 5px; }
.fx-picker::-webkit-scrollbar-thumb { background: var(--ink-500); border-radius: 3px; }

.fx-btn {
  flex: 0 0 auto;
  width: 124px;
  scroll-snap-align: start;
  background: none;
  border: 1px solid var(--ink-500);
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  text-align: left;
  transition: border-color .2s ease, transform .2s ease;
}
.fx-btn img {
  width: 100%;
  /* height:auto is required — the img's height attribute would otherwise
     win over aspect-ratio and render the thumbnail portrait. */
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.fx-btn span {
  display: block;
  padding: 7px 9px;
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-mid);
  background: var(--ink-800);
}
.fx-btn:hover { border-color: var(--gold-600); }
.fx-btn[aria-pressed="true"] {
  border-color: var(--gold-300);
  box-shadow: 0 0 0 1px var(--gold-300);
}
.fx-btn[aria-pressed="true"] span { color: var(--gold-100); background: var(--ink-700); }

@media (min-width: 720px) {
  .fx-picker { justify-content: center; flex-wrap: wrap; overflow-x: visible; }
  .fx-btn { width: 150px; }
}

/* --------------------------------------------------------------
   21. SCROLL REVEAL
   -------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
