@font-face {
  font-family: 'Satoshi';
  src: url('/fonts/Satoshi-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi';
  src: url('/fonts/Satoshi-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gemola';
  src: url('/fonts/gemola.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  /* Prevents the Bloom wordmark from briefly showing in the fallback serif before Gemola loads. */
  font-display: block;
}

/*
  NAQSH EDITIONS
  -----------------------------------------------------------------------------
  Edit brand-wide values here first. Most layout, spacing, color, and typography
  choices use these variables so the site remains easy to maintain.
*/
:root {
  --black: #050505;
  --black-rgb: 5, 5, 5;
  --ink: #0b0a09;
  --cream: #f8f4ed;
  --cream-rgb: 248, 244, 237;
  --paper: #e9dfd0;
  --muted: rgba(248, 244, 237, 0.58);
  --quiet: rgba(248, 244, 237, 0.38);
  --line: rgba(248, 244, 237, 0.12);
  --line-strong: rgba(248, 244, 237, 0.22);
  --brand: #b8a898;
  --brand-text: #050505;
  --brand-purple: #2D2338;
  --brand-purple-rgb: 45, 35, 56;
  --silver: rgba(248, 244, 237, 0.48);

  /* Cursor colors are toggled by script.js based on the section behind it. */
  --cursor-dot: var(--cream);
  --cursor-ring: rgba(var(--cream-rgb), 0.45);

  --font-display: 'Gemola', 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Satoshi', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-sans: var(--font-body);

  --gutter: clamp(22px, 3.8vw, 64px);
  --nav-h: 84px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --t-fast: 180ms ease;
  --t-mid: 360ms ease;
  --lh-relaxed: 1.65;
}

* { box-sizing: border-box; }
html { background: var(--black); scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.honeypot { position: absolute; left: -9999px; visibility: hidden; }

/* Loader + custom cursor */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--black);
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.45s ease;
}
.loader.loader-waiting,
.loader.loader-visible { opacity: 1; }
.loader.fade-out { opacity: 0; }
.loader.done { display: none; }
.loader-mark { width: 42px; height: auto; object-fit: contain; opacity: 0.72; }
.loader-mark.beating { animation: naqshPulse 1.2s ease-in-out infinite; }
@keyframes naqshPulse { 50% { transform: scale(1.08); opacity: 1; } }

.cursor,
.cursor-ring {
  display: none;
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}
.cursor { width: 7px; height: 7px; background: var(--cursor-dot); }
.cursor-ring { width: 30px; height: 30px; border: 1px solid var(--cursor-ring); }
.cursor,
.cursor-ring {
  transition: width var(--t-fast), height var(--t-fast), background-color var(--t-fast), border-color var(--t-fast), opacity var(--t-fast);
  will-change: left, top, width, height, background-color, border-color;
}
.cursor-ring { opacity: 0.9; }
.cursor.is-hovering { width: 3px; height: 3px; }
.cursor-ring.is-hovering { width: 44px; height: 44px; }
body.cursor-on-light {
  --cursor-dot: var(--black);
  --cursor-ring: rgba(var(--black-rgb), 0.45);
}
body.cursor-on-dark {
  --cursor-dot: var(--cream);
  --cursor-ring: rgba(var(--cream-rgb), 0.45);
}

/* Navigation */
.site-nav {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  color: var(--cream);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  mix-blend-mode: difference;
}
.site-nav.scrolled {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.nav-logo { display: inline-flex; align-items: center; }
.nav-logo-word { width: auto; height: 29px; max-width: 142px; opacity: 0.9; }
.nav-logo-mark { display: none; width: 34px; height: auto; object-fit: contain; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 48px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: -0.02em;
}
.nav-links a { color: rgba(var(--cream-rgb), 0.78); transition: opacity var(--t-fast), color var(--t-fast); }
.nav-links a:hover,
.nav-links a.active { color: var(--cream); }

/* Page shell */
.page { display: none; }
.page.active { display: block; }
#page-home {
  height: 100svh;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  background: var(--black);
}
.lux-panel {
  position: relative;
  min-height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
  background: var(--black);
}
.eyebrow,
.tag {
  margin: 0 0 18px;
  color: var(--quiet);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

/* Hero */
.bloom-panel {
  position: relative;
  display: block;
  width: 100vw;
  height: 100svh;
  min-height: 100svh;
  padding: 0;
  overflow: hidden;
  background: #000;
}
.hero-corners {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}
.hero-corner {
  position: absolute;
  color: rgba(var(--cream-rgb), 0.48);
  font-size: 11px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.hero-corner--tl { top: var(--gutter); left: var(--gutter); }
.hero-corner--tr { top: var(--gutter); right: var(--gutter); }
.hero-corner--bl { bottom: 28px; left: 28px; }
.hero-corner--br { bottom: 28px; right: 28px; }
.bloom-card {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 11.85svh;
  height: 75.55svh;
  width: calc(75.55svh * 0.6935933148); /* 1992 / 2872 */
  max-width: 37.1vw;
  transform: translateX(-50%);
  overflow: hidden;
  border-radius: 22px;
  background: #120f0d;
}
.bloom-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
}
.bloom-title-block {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 4.2svh;
  width: 100vw;
  text-align: center;
  transform: translateX(-50%);
  pointer-events: auto;
}
.bloom-wordmark {
  display: block;
  width: 100vw;
  margin: 0;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(129px, 16.625vw, 327px);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: 0.012em;
  text-align: center;
  text-transform: lowercase;
  transition: transform 1.8s var(--ease);
}
.bloom-title-block:hover .bloom-wordmark { transform: translateY(-2px); }
.bloom-edition-label {
  margin: -0.18svh 0 0;
  transform: translateY(-11px);
  color: rgba(var(--cream-rgb), 0.54);
  font-family: var(--font-body);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.01em;
}

/* Statement */
.sentence-panel {
  display: grid;
  place-items: center;
  padding: var(--nav-h) var(--gutter);
  background: var(--cream);
  color: var(--black);
  text-align: center;
}
.sentence-panel p {
  max-width: 980px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(44px, 6.4vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

/* Material slider */
.mat-swiper-section {
  display: grid;
  align-items: center;
  padding: var(--nav-h) var(--gutter) var(--gutter);
  background: var(--black);
  color: var(--cream);
}
.mat-swiper { position: relative; width: 100%; overflow: hidden; touch-action: pan-y pinch-zoom; }
.mat-swiper-track { display: flex; transition: transform 700ms var(--ease); will-change: transform; touch-action: pan-x pinch-zoom; cursor: grab; }
.mat-swiper-track.is-dragging { cursor: grabbing; }
.mat-swiper-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: clamp(28px, 5vw, 84px);
  align-items: center;
}
.mat-slide-img img {
  width: 100%;
  height: min(72svh, 780px);
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.mat-slide-body { align-self: center; max-width: 520px; }
.mat-slide-kicker,
.mat-num {
  margin: 0;
  color: rgba(var(--cream-rgb), 0.42);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.mat-num { margin-top: 34px; }
.mat-name {
  margin: 18px 0 28px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(54px, 7.2vw, 118px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.035em;
}
.mat-desc {
  margin: 0;
  max-width: 40ch;
  color: rgba(var(--cream-rgb), 0.62);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.65;
}
.mat-swiper-ui {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
}
.mat-nav-btn {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(var(--cream-rgb), 0.22);
  border-radius: 999px;
  background: transparent;
  color: var(--cream);
}
.mat-nav-dots { display: flex; gap: 8px; }
.mat-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(var(--cream-rgb), 0.26);
}
.mat-dot.is-active { background: var(--cream); }

/* Story, pause, artist preview, collect */
.story-panel {
  position: relative;
  min-height: 100svh;
  padding: var(--nav-h) var(--gutter) var(--gutter);
  overflow: hidden;
  background:
    radial-gradient(circle at 36% 44%, rgba(93, 73, 112, 0.34), transparent 32%),
    linear-gradient(115deg, var(--brand-purple) 0%, #17121f 46%, var(--black) 82%);
}
.story-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,0.02), rgba(5,5,5,0.28) 56%, rgba(5,5,5,0.48)),
    radial-gradient(circle at 70% 48%, rgba(var(--cream-rgb), 0.07), transparent 25%);
  pointer-events: none;
  z-index: 1;
}
.story-panel::after {
  content: "";
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: var(--gutter);
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--cream-rgb), 0.28), transparent 42%);
  opacity: 0.42;
  z-index: 4;
}
.story-image {
  position: absolute;
  right: clamp(26px, 4.8vw, 86px);
  top: 50%;
  width: min(45vw, 740px);
  height: 70svh;
  transform: translateY(-50%);
  z-index: 2;
  overflow: hidden;
  border-radius: 10px;
  background: var(--black);
}
.story-image::after { display: none; }
.story-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: none;
  opacity: 1;
}
.story-copy {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 var(--gutter);
  text-align: left;
  pointer-events: none;
}
.story-copy .eyebrow {
  margin: 0 0 22px;
  color: rgba(var(--cream-rgb), 0.52);
}
.story-copy h2 {
  max-width: min(56vw, 820px);
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(72px, 7.4vw, 132px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--cream);
  text-wrap: balance;
}
.story-copy p:not(.eyebrow) {
  max-width: 430px;
  margin: 30px 0 0;
  color: rgba(var(--cream-rgb), 0.72);
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1.76;
}
.founder-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
  padding: var(--nav-h) var(--gutter) var(--gutter);
}
.founder-image img {
  width: 100%;
  height: min(72svh, 820px);
  object-fit: cover;
  border-radius: var(--radius-lg);
  filter: none;
}
.founder-copy { max-width: 620px; }
.founder-copy h2 {
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 118px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.035em;
}
.founder-copy p:not(.eyebrow) {
  margin: 0;
  color: rgba(var(--cream-rgb), 0.64);
  font-size: clamp(16px, 1.35vw, 22px);
  line-height: 1.62;
}
.artist-quote {
  position: relative;
  margin-top: 30px;
  padding-left: 22px;
  color: rgba(var(--cream-rgb), 0.74);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.65;
}
.artist-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.28em;
  bottom: 0.28em;
  width: 1px;
  background: rgba(var(--cream-rgb), 0.32);
}
.text-link {
  display: inline-block;
  margin-top: clamp(28px, 3vw, 48px);
  color: rgba(var(--cream-rgb), 0.72);
  border-bottom: 1px solid currentColor;
  padding-bottom: 7px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color var(--t-mid), border-color var(--t-mid);
}
.text-link:hover {
  color: #9f8eb8;
  border-color: #9f8eb8;
}
.pause-panel {
  display: grid;
  place-items: center;
  padding: var(--nav-h) var(--gutter);
  background: var(--cream);
  color: var(--black);
}
.pause-panel p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 160px);
  line-height: 0.9;
  letter-spacing: -0.045em;
}
.final-collect {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  background: var(--cream);
  color: var(--black);
}
.final-collect > img {
  width: 100%;
  height: 100svh;
  object-fit: cover;
}
.final-card {
  align-self: center;
  padding: clamp(30px, 5vw, 76px);
}
.final-card h2 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(76px, 9vw, 150px);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.045em;
}
.final-card p { color: rgba(var(--black-rgb), 0.62); }
.spec-table {
  width: 100%;
  margin: 34px 0;
  border-collapse: collapse;
}
.spec-table td {
  padding: 15px 0;
  border-top: 1px solid rgba(var(--black-rgb), 0.14);
  font-size: 13px;
}
.spec-table td:last-child { text-align: right; color: rgba(var(--black-rgb), 0.62); }
.collect-btn,
.submit-btn,
.checkout-next-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  padding: 15px 26px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background var(--t-mid), color var(--t-mid), border-color var(--t-mid), opacity var(--t-mid), transform var(--t-mid), box-shadow var(--t-mid);
}
.collect-btn:hover,
.submit-btn:hover,
.checkout-next-btn:hover {
  background: var(--brand-purple);
  border-color: var(--brand-purple);
  color: var(--cream);
}
.final-card .collect-btn {
  width: min(100%, 340px);
  min-height: 56px;
  border-color: var(--brand-purple);
  background: var(--brand-purple);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.22em;
  box-shadow: 0 18px 48px rgba(var(--brand-purple-rgb), 0.22);
}
.final-card .collect-btn:hover {
  transform: translateY(-2px);
  background: var(--black);
  border-color: var(--black);
  color: var(--cream);
  box-shadow: 0 24px 64px rgba(var(--black-rgb), 0.24);
}
.is-sold-out { opacity: 0.42; pointer-events: none; }

/* CTA dock is transparent by default. Mobile home gives it panel-scoped sizing in the final snap block. */
.collect-cta-dock { display: contents; }

/* Founders story page */
.overlay-page {
  min-height: 100svh;
  padding: calc(var(--nav-h) + 46px) var(--gutter) 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--cream);
}
.founders-hero { padding: 4vw 0 5vw; }
.page-h {
  margin: 0;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(70px, 10vw, 160px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.04em;
}
.page-h em { color: rgba(var(--cream-rgb), 0.46); font-style: normal; }
.team-grid,
.founders-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.team-card,
.founder-card {
  min-height: 430px;
  display: grid;
  align-content: start;
  padding: clamp(120px, 11vw, 180px) clamp(28px, 3vw, 42px) clamp(34px, 4vw, 56px);
  border: 1px solid var(--line);
  background: #090909;
}
.team-role {
  min-height: 1em;
  margin: 0 0 24px;
  color: rgba(var(--cream-rgb), 0.48);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.team-name {
  margin: 0 0 32px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(34px, 3vw, 52px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.035em;
}
.team-desc {
  max-width: 34ch;
  margin: 0;
  color: rgba(var(--cream-rgb), 0.58);
  font-size: 14px;
  line-height: 1.62;
}
.whats-next-wrap,
.founders-next-wrap {
  display: grid;
  grid-template-columns: minmax(320px, 0.55fr) minmax(480px, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
  margin: clamp(56px, 7vw, 96px) 0;
  padding-top: clamp(36px, 5vw, 72px);
  border-top: 1px solid var(--line);
}
.whats-next-copy {
  max-width: 42ch;
  margin: clamp(28px, 4vw, 48px) 0 0;
  color: rgba(var(--cream-rgb), 0.66);
  font-family: var(--font-body);
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.62;
  letter-spacing: -0.01em;
}
.team-photo-wrap img,
.founders-photo-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  filter: none;
}

/* About Naqsh - Story page opening. Two-column intro (copy + portrait still)
   reusing the page's type and image language; the founders block below gets a
   hairline divider so the two sections read distinctly. */
.about-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
  margin: clamp(26px, 3.5vw, 52px) 0 0;
}
.about-band .about-copy {
  margin: 0;
  max-width: 46ch;
}
.about-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  max-height: 74svh;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.founders-hero--sub {
  margin-top: clamp(52px, 6vw, 88px);
  padding-top: clamp(40px, 5vw, 68px);
  border-top: 1px solid var(--line);
}
@media (max-width: 768px) {
  .about-band {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 14px;
  }
  .about-band .about-copy { max-width: none; }
  .about-photo img { max-height: none; }
  .founders-hero--sub { margin-top: 44px; padding-top: 34px; }
}

/* Contact page */
.private-enquiry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100svh - var(--nav-h));
  border-top: 1px solid var(--line);
}
.private-enquiry-visual { position: relative; overflow: hidden; }
.private-enquiry-visual img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); opacity: 0.9; }
.private-enquiry-mark {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: flex;
  justify-content: space-between;
  color: rgba(var(--cream-rgb), 0.72);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.private-enquiry-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 86px);
}
.contact-title {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(70px, 9vw, 150px);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.045em;
}
.enquiry-intro,
.enquiry-note { max-width: 44ch; color: rgba(var(--cream-rgb), 0.62); line-height: 1.65; }
.enquiry-note a { border-bottom: 1px solid currentColor; }
.enquiry-types { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 34px; }
.enquiry-types span { border: 1px solid var(--line); border-radius: 999px; padding: 8px 12px; color: var(--quiet); font-size: 11px; }
.form-group { margin-bottom: 18px; }
.form-label,
.checkout-label,
.c-detail-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(var(--cream-rgb), 0.48);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.form-input,
.checkout-input,
.checkout-select,
.checkout-textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(var(--cream-rgb), 0.03);
  color: var(--cream);
  padding: 14px 16px;
  outline: none;
}
.form-input:focus,
.checkout-input:focus,
.checkout-select:focus,
.checkout-textarea:focus { border-color: rgba(var(--cream-rgb), 0.46); }

.form-input:-webkit-autofill,
.form-input:-webkit-autofill:hover,
.form-input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--cream);
  caret-color: var(--cream);
  -webkit-box-shadow: 0 0 0 1000px #0a0908 inset;
  box-shadow: 0 0 0 1000px #0a0908 inset;
  border-color: rgba(var(--cream-rgb), 0.28);
  transition: background-color 9999s ease-in-out 0s;
}
.form-status { min-height: 1.4em; color: var(--muted); }
.enquiry-direct {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.c-detail-val { margin: 0; color: rgba(var(--cream-rgb), 0.72); }

/* Checkout */
html.checkout-document {
  height: auto;
  min-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior-y: auto;
}
.checkout-page-body {
  min-height: 100svh;
  margin: 0;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior-y: auto;
  background: var(--black);
  color: var(--cream);
}
.checkout-page-shell {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  -webkit-overflow-scrolling: auto;
  overscroll-behavior: auto;
  background: rgba(var(--black-rgb), 0.96);
  padding: clamp(24px, 4vw, 64px) clamp(18px, 3vw, 46px);
}
.checkout-inner {
  width: min(1180px, 100%);
  height: calc(100svh - (clamp(18px, 3vw, 46px) * 2));
  max-height: calc(100svh - (clamp(18px, 3vw, 46px) * 2));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  background: #0a0908;
  border: 1px solid var(--line);
  overflow: hidden;
}
.checkout-product-panel { display: grid; grid-template-rows: minmax(0, 1fr) auto; min-height: 0; border-right: 1px solid var(--line); }
.checkout-product-img { min-height: 0; overflow: hidden; }
.checkout-product-img img { width: 100%; height: 100%; min-height: 0; object-fit: cover; filter: grayscale(1); }
.checkout-product-info { padding: 28px; border-top: 1px solid var(--line); }
.checkout-edition-tag,
.checkout-step-label { margin: 0 0 14px; color: var(--quiet); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; }
.checkout-product-name { margin: 0 0 20px; color: var(--cream); font-size: 22px; line-height: 1.2; }
.checkout-live-price-amount { font-size: 22px; color: var(--cream); }
.checkout-live-price-note,
.checkout-live-summary { color: var(--quiet); font-size: 12px; }
.checkout-live-summary { display: none; margin-top: 8px; }
.checkout-live-summary.is-visible { display: block; }
.checkout-form-panel { display: flex; flex-direction: column; min-height: 0; overflow: hidden; padding: clamp(24px, 4vw, 56px); }
.checkout-header { flex: 0 0 auto; display: flex; justify-content: space-between; align-items: center; margin-bottom: 34px; }
.checkout-progress { display: flex; align-items: center; gap: 10px; }
.checkout-progress-step { color: var(--quiet); font-size: 11px; }
.checkout-progress-step.is-active,
.checkout-progress-step.is-done { color: var(--cream); }
.checkout-progress-line { width: 28px; height: 1px; background: var(--line); }
.checkout-close,
.checkout-back-btn,
.checkout-qty-btn,
.checkout-for-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cream);
}
.checkout-close { width: 38px; height: 38px; border-radius: 999px; }
.checkout-step { display: none; }
.checkout-step.is-active {
  display: block;
  flex: 1 1 auto;
  min-height: 0;
  overflow: visible;
  padding-right: 0;
}
.checkout-step-title {
  margin: 0 0 26px;
  font-family: var(--font-display);
  font-size: clamp(42px, 5.4vw, 78px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.035em;
}
.checkout-field-group { margin-bottom: 18px; }
.checkout-qty-wrap { display: inline-flex; align-items: center; border: 1px solid var(--line); }
.checkout-qty-btn { width: 44px; height: 44px; border: 0; }
.checkout-qty-display { min-width: 54px; text-align: center; }
.checkout-total-preview { display: flex; justify-content: space-between; gap: 20px; margin: 22px 0; padding-top: 18px; border-top: 1px solid var(--line); }
.checkout-total-label,
.checkout-total-note { color: var(--quiet); font-size: 12px; }
.checkout-total-amount { font-size: 22px; color: var(--cream); text-align: right; }
.checkout-for-options { display: grid; gap: 14px; margin-bottom: 24px; }
.checkout-for-btn {
  display: grid;
  gap: 6px;
  width: 100%;
  padding: 20px;
  text-align: left;
  transition: transform var(--t-fast), border-color var(--t-mid), background var(--t-mid), box-shadow var(--t-mid);
}
.checkout-for-btn:hover { border-color: rgba(var(--cream-rgb), 0.36); background: rgba(var(--cream-rgb), 0.035); }
.checkout-for-btn:active { transform: scale(0.985); }
.checkout-for-btn.is-selected {
  border-color: rgba(var(--brand-purple-rgb), 0.95);
  background: rgba(var(--brand-purple-rgb), 0.22);
  box-shadow: inset 0 0 0 1px rgba(var(--brand-purple-rgb), 0.35);
}
.checkout-for-btn-title { color: var(--cream); }
.checkout-for-btn-sub,
.checkout-label-optional,
.checkout-char-count { color: var(--quiet); font-size: 12px; }
.checkout-gift-fields { display: none; }
.checkout-gift-fields.is-open { display: block; }
.checkout-back-btn { margin-top: 18px; padding: 12px 18px; border-radius: 999px; color: var(--muted); }
.checkout-error { display: none; color: #e0a6a6; }
.checkout-error.is-visible { display: block; }
.checkout-trust { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; color: var(--quiet); font-size: 12px; }
.checkout-trust-dot { width: 4px; height: 4px; align-self: center; border-radius: 999px; background: currentColor; }
.checkout-loading-state { display: flex; min-height: 160px; align-items: center; justify-content: center; color: var(--quiet); border: 1px solid var(--line); }
#stripe-checkout-container { height: auto; min-height: clamp(520px, 70svh, 720px); overflow: visible; overscroll-behavior: auto; }

/* Footer: one system used on all pages */
.site-footer.minimal-footer,
.legal-footer {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  padding: 34px var(--gutter) 30px;
  margin: 0;
  border-top: 1px solid rgba(var(--cream-rgb), 0.08);
  background: #000;
  color: var(--quiet);
  scroll-snap-align: none;
}
.footer-wordmark {
  margin: 0;
  color: rgba(var(--cream-rgb), 0.82);
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 54px);
  line-height: 0.9;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.footer-bottom {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 10px;
  color: rgba(var(--cream-rgb), 0.36);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-align: right;
}
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }
.footer-links a { color: rgba(var(--cream-rgb), 0.42); font-size: 10px; letter-spacing: 0.13em; text-transform: uppercase; }
.footer-links a:hover { color: rgba(var(--cream-rgb), 0.92); }

/* SPA footers (home/FAQ/story/contact) sit under .site-nav, which is inset 28px.
   Match that inset so the footer wordmark lines up under the top-left logo and
   the links end flush under the nav menu. Legal pages keep their own gutter.
   The right-hand block is left-aligned so the copyright sits under the menu. */
.site-footer.minimal-footer { padding-inline: 28px; }
.minimal-footer .footer-bottom { align-items: flex-start; text-align: left; }
.minimal-footer .footer-links { justify-content: flex-start; }

/* --------------------------------------------------------------------------
   FAQ + footer slide
   --------------------------------------------------------------------------
   The closing home slide. FAQ + footer are sized to sit inside one viewport
   (min-height:100svh, footer flex-anchored at the base) so no scroll is needed
   to reach the footer on any breakpoint. Answers are collapsed by default and
   expand on hover (pointer devices) or click/tap (pinned, works everywhere).
   Smooth height via grid-template-rows 0fr->1fr. Dark panel, so
   -------------------------------------------------------------------------- */
.faq-panel {
  display: flex;
  flex-direction: column;
  background: var(--black);
  color: var(--cream);
  /* Hover-expansion can briefly exceed the viewport; never trap the scroll. */
  scroll-snap-stop: normal;
}
.faq-inner {
  flex: 1;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + clamp(16px, 2.6vh, 34px)) var(--gutter) clamp(18px, 2.6vh, 34px);
}
.faq-head { margin: 0 0 clamp(16px, 2.4vh, 28px); }
.faq-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 56px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.035em;
}
.faq-title em { font-style: normal; color: rgba(var(--cream-rgb), 0.46); }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { position: relative; border-bottom: 1px solid var(--line); }

/* Hidden but focusable toggle drives the pinned (clicked/tapped) open state. */
.faq-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(12px, 1.7vh, 17px) 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.faq-q-text {
  flex: 1;
  color: rgba(var(--cream-rgb), 0.9);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(15px, 1.65vw, 18px);
  letter-spacing: 0.01em;
  transition: color var(--t-fast);
}

/* Minimal +/- indicator: vertical bar collapses when open. */
.faq-icon { position: relative; flex: 0 0 auto; width: 15px; height: 15px; }
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(var(--cream-rgb), 0.5);
  transition: transform var(--t-mid) var(--ease), opacity var(--t-mid) var(--ease), background var(--t-fast);
}
.faq-icon::before { width: 15px; height: 1px; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 1px; height: 15px; transform: translate(-50%, -50%); }

/* Answer: smooth height. Inner wrapper clips during the 0fr<->1fr transition. */
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t-mid) var(--ease);
}
.faq-a-inner { overflow: hidden; min-height: 0; }
.faq-a p {
  margin: 0;
  padding-bottom: clamp(14px, 2vh, 22px);
  max-width: 64ch;
  color: var(--muted);
  line-height: 1.6;
  font-size: clamp(13px, 1.4vw, 15px);
}
.faq-a a {
  color: var(--cream);
  border-bottom: 1px solid rgba(var(--cream-rgb), 0.4);
  transition: border-color var(--t-fast);
}
.faq-a a:hover { border-color: var(--cream); }

/* Pinned-open state (click / tap / keyboard) - works on every device. */
.faq-toggle:checked ~ .faq-a { grid-template-rows: 1fr; }
.faq-toggle:checked ~ .faq-q .faq-q-text { color: var(--cream); }
.faq-toggle:checked ~ .faq-q .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); opacity: 0; }
.faq-toggle:focus-visible ~ .faq-q { outline: 1px solid rgba(var(--cream-rgb), 0.5); outline-offset: 5px; }

/* Hover-to-expand on pointer devices only (mobile has no hover, so it relies
   on tap). The hovered item opens; others stay as they are. */
@media (hover: hover) and (pointer: fine) {
  .faq-item:hover .faq-a { grid-template-rows: 1fr; }
  .faq-item:hover .faq-q-text { color: var(--cream); }
  .faq-item:hover .faq-icon::before,
  .faq-item:hover .faq-icon::after { background: var(--cream); }
  .faq-item:hover .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); opacity: 0; }
}

/* Footer sits inside this dark slide: blend it with the panel; the hairline
   stays as the divider between the FAQ and the footer. */
.faq-panel .faq-footer {
  background: transparent;
  border-top-color: rgba(var(--cream-rgb), 0.10);
  margin-top: clamp(16px, 2.6vh, 32px);
}

@media (max-width: 768px) {
  .faq-inner {
    justify-content: flex-start;
    padding-top: calc(var(--nav-h) + 18px);
    padding-bottom: clamp(16px, 2.4vh, 26px);
  }
  .faq-head { margin-bottom: clamp(14px, 2.2vh, 22px); }
  .faq-title { font-size: clamp(32px, 11vw, 52px); }
  .faq-q { padding: 13px 0; gap: 18px; }
  .faq-q-text { font-size: 15.5px; }
  .faq-a p { font-size: 14px; }
  .faq-panel .faq-footer { margin-top: clamp(14px, 2.4vh, 24px); }
}

@media (prefers-reduced-motion: reduce) {
  .faq-a { transition: none; }
  .faq-icon::before,
  .faq-icon::after { transition: none; }
}

/* Legal, success, and 404 pages */
.legal-nav {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px var(--gutter);
  background: rgba(var(--black-rgb), 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.legal-nav img { width: 36px; }
.nav-back { color: var(--silver); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }
.nav-back:hover { color: var(--cream); }
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 150px 30px 80px;
  color: var(--cream);
}
.legal-eyebrow,
.legal-date { color: var(--quiet); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; }
.legal-title {
  margin: 18px 0 24px;
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 116px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.04em;
}
.legal-divider { height: 1px; background: var(--line); margin: 44px 0; }
.legal-section { margin: 0 0 46px; }
.legal-section h2 { margin: 0 0 14px; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream); }
.legal-section p,
.legal-section li { color: rgba(var(--cream-rgb), 0.62); line-height: 1.75; }
.legal-section a { color: var(--cream); border-bottom: 1px solid currentColor; }
.not-found-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 80px 24px;
  text-align: center;
  background: radial-gradient(ellipse at 30% 40%, rgba(184,168,152,0.12), transparent 55%), var(--black);
}
.mark { width: 44px; margin: 0 auto 44px; opacity: 0.68; }
.code { margin: 0 0 20px; color: var(--quiet); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; }
.not-found-page h1 { margin: 0 0 24px; font-family: var(--font-display); font-size: clamp(52px, 8vw, 96px); font-weight: 400; line-height: 0.96; }
.not-found-page h1 em { font-style: normal; color: rgba(var(--cream-rgb), 0.58); }
.not-found-page p { margin: 0 auto 44px; max-width: 44ch; color: rgba(var(--cream-rgb), 0.62); line-height: 1.7; }
.home-link { display: inline-block; border: 1px solid var(--line-strong); padding: 14px 32px; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; }
.home-link:hover { background: rgba(var(--cream-rgb), 0.06); border-color: var(--cream); }

.success-body {
  min-height: 100svh;
  background: var(--black);
  color: var(--cream);
}

.success-page {
  min-height: 100svh;
  padding: clamp(24px, 4vw, 44px) var(--gutter) max(54px, calc(42px + env(safe-area-inset-bottom)));
  background:
    radial-gradient(circle at 76% 12%, rgba(var(--brand-purple-rgb), 0.14), transparent 32%),
    linear-gradient(180deg, #050505 0%, #000 100%);
}

.success-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: clamp(72px, 12vh, 142px);
}

.success-logo img {
  width: 106px;
  height: auto;
  object-fit: contain;
  opacity: 0.78;
}

.success-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.success-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.52fr);
  gap: clamp(34px, 7vw, 104px);
  align-items: end;
  padding-bottom: clamp(42px, 7vw, 82px);
  border-bottom: 1px solid rgba(var(--cream-rgb), 0.12);
}

.success-eyebrow,
.success-card-kicker {
  margin: 0;
  color: rgba(var(--cream-rgb), 0.42);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.success-title {
  grid-column: 1 / 2;
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: clamp(58px, 9.6vw, 152px);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.048em;
}

.success-title em {
  display: inline-block;
  color: rgba(var(--cream-rgb), 0.58);
  font-style: normal;
}

.success-subtitle {
  grid-column: 2 / 3;
  margin: 0 0 8px;
  max-width: 34ch;
  color: rgba(var(--cream-rgb), 0.62);
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.7;
}

.success-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(24px, 4vw, 42px) 0 clamp(32px, 5vw, 54px);
}

.success-card {
  min-height: 100%;
  padding: clamp(24px, 3.6vw, 42px);
  border: 1px solid rgba(var(--cream-rgb), 0.12);
  background: rgba(var(--cream-rgb), 0.025);
}

.success-card-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 22px;
  margin-bottom: clamp(26px, 3vw, 38px);
}

.success-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 64px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.success-order {
  display: grid;
  gap: 0;
}

.success-order-row {
  display: grid;
  grid-template-columns: minmax(92px, 0.4fr) minmax(0, 1fr);
  gap: 22px;
  padding: 15px 0;
  border-top: 1px solid rgba(var(--cream-rgb), 0.08);
}

.success-order-row:last-child {
  border-bottom: 1px solid rgba(var(--cream-rgb), 0.08);
}

.success-order-key {
  color: rgba(var(--cream-rgb), 0.38);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.success-order-val {
  color: rgba(var(--cream-rgb), 0.82);
  text-align: right;
  overflow-wrap: anywhere;
}

.success-loading,
.success-next p {
  margin: 0;
  color: rgba(var(--cream-rgb), 0.62);
  font-size: 15px;
  line-height: 1.72;
}

.success-next p + p {
  margin-top: 18px;
}

.success-next a {
  color: rgba(var(--cream-rgb), 0.9);
  border-bottom: 1px solid rgba(var(--cream-rgb), 0.42);
}

.success-home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 34px;
  border: 1px solid rgba(var(--cream-rgb), 0.34);
  color: rgba(var(--cream-rgb), 0.78);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.success-home-link:hover {
  background: rgba(var(--cream-rgb), 0.06);
  border-color: rgba(var(--cream-rgb), 0.9);
  color: var(--cream);
}

@media (max-width: 820px) {
  .success-page {
    padding: 28px 22px max(46px, calc(34px + env(safe-area-inset-bottom)));
  }

  .success-logo {
    margin-bottom: clamp(72px, 13vh, 110px);
  }

  .success-logo img {
    width: 96px;
  }

  .success-hero,
  .success-grid {
    display: block;
  }

  .success-hero {
    padding-bottom: 34px;
  }

  .success-title {
    margin-top: 18px;
    font-size: clamp(58px, 17vw, 86px);
    line-height: 0.88;
  }

  .success-subtitle {
    margin-top: 26px;
    max-width: 31ch;
    font-size: 15px;
  }

  .success-grid {
    padding: 26px 0 34px;
  }

  .success-card {
    padding: 24px 0;
    border: 0;
    border-bottom: 1px solid rgba(var(--cream-rgb), 0.12);
    background: transparent;
  }

  .success-card:first-child {
    border-top: 0;
  }

  .success-card-head {
    display: block;
    margin-bottom: 22px;
  }

  .success-card h2 {
    margin-top: 12px;
    font-size: clamp(36px, 12vw, 56px);
  }

  .success-order-row {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 13px 0;
  }

  .success-order-val {
    text-align: left;
  }

  .success-home-link {
    width: 100%;
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .team-grid,
  .founders-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mat-swiper-slide,
  .story-panel,
  .founder-panel,
  .final-collect,
  .private-enquiry,
  .checkout-inner { grid-template-columns: 1fr; grid-template-rows: minmax(170px, 32%) minmax(0, 1fr); }
  .checkout-product-panel { border-right: 0; border-bottom: 1px solid var(--line); }
}

@media (max-width: 768px) {
  :root { --nav-h: 70px; --gutter: 22px; }
  .cursor,
  .cursor-ring { display: none; }
  .site-nav { height: 70px; padding: 0 18px; }
  .nav-logo-word { height: 20px; max-width: 106px; }
  .nav-links { gap: 18px; font-size: 9px; letter-spacing: 0.02em; }
  #page-home { scroll-snap-type: y mandatory; }

  .bloom-card {
    top: 14.8svh;
    height: 58svh;
    width: calc(58svh * 0.6935933148);
    max-width: 76vw;
    border-radius: 14px;
  }
  .bloom-title-block {
    bottom: 19.2svh;
    width: 100vw;
    z-index: 7;
  }
  .bloom-wordmark {
    font-size: clamp(104px, 28vw, 132px);
    line-height: 0.82;
    letter-spacing: 0.01em;
  }
  .bloom-edition-label {
    margin-top: -0.3svh;
    transform: translateY(-6px);
    font-size: 9px;
    line-height: 1;
  }
  .hero-corner { font-size: 8px; letter-spacing: -0.01em; color: rgba(var(--cream-rgb), 0.42); }
  .hero-corner--bl { bottom: 18px; left: 18px; }
  .hero-corner--br { bottom: 18px; right: 18px; }

  .sentence-panel p { font-size: clamp(42px, 13vw, 74px); }
  .mat-swiper-section { padding: 92px 22px 36px; }
  .mat-swiper-slide { gap: 26px; }
  .mat-slide-img img { height: 46svh; border-radius: var(--radius-md); }
  .mat-name { font-size: clamp(52px, 18vw, 88px); }
  .mat-desc { font-size: 15px; }
  .mat-swiper-ui { position: relative; justify-content: center; margin-top: 28px; }
  .story-panel {
    min-height: 100svh;
    padding: 0 22px;
    background:
      radial-gradient(circle at 50% 16%, rgba(112, 88, 134, 0.26), transparent 34%),
      linear-gradient(180deg, var(--brand-purple) 0%, #130f19 48%, var(--black) 100%);
  }
  .story-panel::before {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.42));
  }
  .story-panel::after { left: 22px; right: 22px; bottom: 26px; }
  .story-image {
    left: 22px;
    right: 22px;
    top: 30svh;
    width: auto;
    height: 42svh;
    transform: none;
    border-radius: 10px;
    opacity: 1;
  }
  .story-image::after { display: none; }
  .story-image img {
    object-position: center center;
    filter: none;
    opacity: 1;
  }
  .story-copy {
    inset: auto 0 0;
    min-height: 54svh;
    padding: 0 24px 13svh;
    align-items: flex-start;
    justify-content: flex-end;
    text-align: left;
    background: linear-gradient(180deg, transparent 0%, rgba(5,5,5,0.72) 38%, rgba(5,5,5,0.94) 100%);
  }
  .story-copy .eyebrow {
    margin-bottom: 12px;
    font-size: 9px;
    color: rgba(var(--cream-rgb), 0.48);
  }
  .story-copy h2 {
    max-width: 92vw;
    font-size: clamp(46px, 15.4vw, 72px);
    line-height: 0.92;
    letter-spacing: -0.04em;
  }
  .story-copy p:not(.eyebrow) {
    max-width: 74vw;
    margin-top: 18px;
    font-size: 12px;
    line-height: 1.68;
    color: rgba(var(--cream-rgb), 0.74);
  }
  .founder-panel { grid-template-columns: 1fr; padding: 88px 22px 36px; gap: 28px; }
  .founder-image img { height: 48svh; border-radius: var(--radius-md); }
  .founder-copy h2 { font-size: 20vw; }
  .pause-panel p { font-size: 22vw; }
  .final-collect {
    min-height: auto;
    overflow: visible;
    grid-template-rows: auto auto;
    align-content: start;
    scroll-snap-stop: normal;
  }
  .final-collect > img {
    height: clamp(320px, 44svh, 420px);
    object-position: center center;
  }
  .final-card {
    align-self: start;
    padding: 34px 24px max(128px, calc(64px + env(safe-area-inset-bottom)));
  }
  .final-card h2 { font-size: clamp(78px, 22vw, 112px); }
  .final-card .collect-btn { width: 100%; min-height: 58px; }
  .spec-table td { display: block; padding: 10px 0; }
  .spec-table td:last-child { text-align: left; padding-top: 0; color: rgba(var(--black-rgb), 0.62); }

  .overlay-page { padding: 108px 20px 0; }
  .page-h { font-size: 20vw; }
  .team-grid,
  .founders-grid { grid-template-columns: 1fr; }
  .team-card,
  .founder-card { min-height: 340px; padding: 72px 24px 32px; }
  .team-role { margin-bottom: 18px; }
  .team-name { margin-bottom: 24px; font-size: 48px; }
  .whats-next-wrap,
  .founders-next-wrap { grid-template-columns: 1fr; margin: 44px 0; }
  .whats-next-copy { font-size: 18px; line-height: 1.58; }

  .private-enquiry-visual { min-height: 42svh; }
  .enquiry-direct { grid-template-columns: 1fr; }

  .site-footer.minimal-footer,
  .legal-footer { grid-template-columns: 1fr; gap: 20px; padding: 32px 20px 28px; }
  .footer-wordmark { font-size: clamp(34px, 13vw, 58px); }
  .footer-bottom { align-items: flex-start; text-align: left; }
  .footer-links { justify-content: flex-start; gap: 16px; }
}

@media (max-width: 420px) {
  .nav-logo-word { height: 19px; max-width: 96px; }
  .nav-links { gap: 16px; font-size: 8.5px; }
  .bloom-card { top: 14.8svh; height: 58svh; width: calc(58svh * 0.6935933148); max-width: 76vw; }
  .bloom-title-block { bottom: 19.2svh; }
  .bloom-wordmark { font-size: clamp(104px, 28vw, 132px); }
}

/* --------------------------------------------------------------------------
   Interaction + mobile founders refinement
   -------------------------------------------------------------------------- */
@media (hover: hover) and (pointer: fine) {
  .bloom-title-block:hover .bloom-wordmark {
    transform: translateY(-3px);
  }

  .team-card,
  .founder-card,
  .mat-slide-img img,
  .story-image img,
  .founder-image img {
    transition:
      transform 1.15s var(--ease),
      opacity 1.15s var(--ease),
      border-color 700ms ease,
      background-color 700ms ease;
  }

  .team-card:hover,
  .founder-card:hover {
    transform: translateY(-10px);
    border-color: rgba(var(--cream-rgb), 0.32);
    background: rgba(var(--brand-purple-rgb), 0.18);
  }

  .team-card:hover .team-name,
  .founder-card:hover .team-name {
    transform: translateY(-2px);
  }

  .team-name {
    transition: transform 900ms var(--ease);
  }

  .mat-slide-img:hover img,
  .story-panel:hover .story-image img,
  .founder-panel:hover .founder-image img {
    transform: scale(1.025);
  }
}

@media (max-width: 768px) {
  /* Story/founders page must feel designed on mobile, not like squeezed cards. */
  .overlay-page {
    padding: 94px 22px 0;
  }

  .founders-hero {
    padding: 18px 0 40px;
  }

  .page-h {
    max-width: 92vw;
    font-size: clamp(62px, 18vw, 88px);
    line-height: 0.86;
    letter-spacing: -0.045em;
  }

  .team-grid,
  .founders-grid {
    display: block;
    margin-top: 14px;
  }

  .team-card,
  .founder-card {
    min-height: 0;
    padding: 42px 0 46px;
    border: 0;
    border-top: 1px solid rgba(var(--cream-rgb), 0.14);
    background: transparent;
  }

  .team-card:last-child,
  .founder-card:last-child {
    border-bottom: 1px solid rgba(var(--cream-rgb), 0.14);
  }

  .team-role {
    margin: 0 0 22px;
    color: rgba(var(--cream-rgb), 0.42);
    font-size: 9px;
    letter-spacing: 0.26em;
  }

  .team-name {
    margin: 0 0 22px;
    font-size: clamp(54px, 17vw, 78px);
    line-height: 0.88;
    letter-spacing: -0.045em;
  }

  .team-desc {
    max-width: 31ch;
    color: rgba(var(--cream-rgb), 0.62);
    font-size: 14px;
    line-height: 1.72;
  }

  .whats-next-wrap,
  .founders-next-wrap {
    display: block;
    margin: 48px 0 56px;
    padding-top: 38px;
  }

  .whats-next-copy {
    max-width: 32ch;
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.62;
  }

  .team-photo-wrap,
  .founders-photo-wrap {
    margin-top: 34px;
  }

  .team-photo-wrap img,
  .founders-photo-wrap img {
    border-radius: 12px;
  }
}



/* --------------------------------------------------------------------------
   Mobile homepage final pass
   --------------------------------------------------------------------------
   Keeps the home experience as full-screen slides while preventing text from
   being clipped on smaller devices. Material slides remain swipeable horizontally;
   the page remains swipeable vertically.
*/
@media (max-width: 768px) {
  #page-home {
    scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .lux-panel {
    min-height: 100svh;
    scroll-snap-align: start;
  }

  .mat-swiper-section {
    display: flex;
    align-items: stretch;
    min-height: 100svh;
    padding: calc(var(--nav-h) + 14px) 18px 24px;
  }

  .mat-swiper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: calc(100svh - var(--nav-h) - 38px);
    min-height: 0;
    overflow: hidden;
    touch-action: pan-x pinch-zoom;
  }

  .mat-swiper-track {
    flex: 1 1 auto;
    touch-action: pan-x pinch-zoom;
    min-height: 0;
    align-items: stretch;
  }

  .mat-swiper-slide {
    height: 100%;
    min-height: 0;
    grid-template-columns: 1fr !important;
    grid-template-rows: minmax(0, 40svh) minmax(0, 1fr) !important;
    gap: 18px;
    align-items: stretch;
    align-content: stretch;
    padding-bottom: 56px;
  }

  .mat-slide-img {
    min-height: 0;
  }

  .mat-slide-img img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
  }

  .mat-slide-body {
    align-self: start;
    max-width: none;
    min-height: 0;
  }

  .mat-slide-kicker,
  .mat-num {
    font-size: 9px;
    letter-spacing: 0.2em;
  }

  .mat-num {
    margin-top: 14px;
  }

  .mat-name {
    margin: 10px 0 12px;
    font-size: clamp(42px, 13.5vw, 64px);
    line-height: 0.9;
    letter-spacing: -0.04em;
  }

  .mat-desc {
    max-width: 34ch;
    font-size: 13px;
    line-height: 1.55;
  }

  .mat-swiper-ui {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    justify-content: center;
    margin-top: 0;
    pointer-events: auto;
  }

  .story-image {
    top: 25svh;
    height: 39svh;
  }

  .story-copy {
    min-height: 52svh;
    padding: 0 22px 8.5svh;
  }

  .story-copy h2 {
    max-width: 94vw;
    font-size: clamp(42px, 13.2vw, 62px);
    line-height: 0.9;
  }

  .story-copy p:not(.eyebrow) {
    max-width: 86vw;
    margin-top: 14px;
    font-size: 12px;
    line-height: 1.52;
  }

  .final-collect {
    grid-template-columns: 1fr !important;
    grid-template-rows: 43svh minmax(0, 1fr) !important;
    min-height: 100svh;
  }

  .final-collect > img {
    height: 100%;
    min-height: 0;
  }

  .final-card {
    align-self: start;
    padding: 24px 22px 28px;
  }

  .final-card h2 {
    margin-bottom: 14px;
    font-size: clamp(52px, 16vw, 78px);
  }

  .final-card p {
    margin: 0 0 12px;
    font-size: 13px;
    line-height: 1.5;
  }

  .spec-table {
    margin: 16px 0 20px;
  }

  .spec-table td {
    padding: 7px 0;
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  .mat-swiper-section {
    padding: calc(var(--nav-h) + 12px) 16px 20px;
  }

  .mat-swiper {
    height: calc(100svh - var(--nav-h) - 32px);
  }

  .mat-swiper-slide {
    grid-template-rows: minmax(0, 38svh) minmax(0, 1fr) !important;
    gap: 14px;
    padding-bottom: 52px;
  }

  .mat-name {
    font-size: clamp(38px, 12.5vw, 54px);
  }

  .mat-desc {
    font-size: 12.5px;
    line-height: 1.5;
  }

  .story-copy h2 {
    font-size: clamp(38px, 12.4vw, 54px);
  }

  .story-copy p:not(.eyebrow) {
    font-size: 11.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.001ms !important; }
}

/* --------------------------------------------------------------------------
   Mobile viewport crop fix
   --------------------------------------------------------------------------
   Some mobile browsers keep the bottom toolbar over the page. These rules keep
   the home slides full-screen where they need to be, while allowing the longer
   artist and collect sections to breathe instead of clipping their content.
*/
@media (max-width: 768px) {
  .artist-section,
  .editions-section {
    min-height: auto;
    overflow: visible;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
  }

  .artist-section {
    align-content: start;
    align-items: start;
    gap: 22px;
    padding: calc(var(--nav-h) + 18px) 22px calc(120px + env(safe-area-inset-bottom));
  }

  .artist-visual img {
    height: min(38svh, 330px);
    object-position: center 42%;
  }

  .artist-copy {
    max-width: 100%;
  }

  .artist-copy .eyebrow {
    margin-bottom: 14px;
    font-size: 9px;
    letter-spacing: 0.24em;
  }

  .artist-copy h2 {
    margin-bottom: 20px;
    font-size: clamp(76px, 23vw, 100px);
    line-height: 0.84;
  }

  .artist-copy p:not(.eyebrow) {
    max-width: 31ch;
    font-size: clamp(15px, 4.1vw, 18px);
    line-height: 1.55;
  }

  .artist-quote {
    margin-top: 18px;
    font-size: clamp(14px, 3.8vw, 16px);
    line-height: 1.5;
  }

  .text-link {
    margin-top: 22px;
  }

  .editions-section {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto !important;
  }

  .editions-section > img {
    height: min(34svh, 310px);
    min-height: 220px;
    object-fit: cover;
  }

  .editions-card {
    align-self: start;
    padding: 24px 22px calc(122px + env(safe-area-inset-bottom));
  }

  .editions-card .eyebrow {
    margin-bottom: 12px;
    font-size: 9px;
  }

  .editions-card h2 {
    margin-bottom: 12px;
    font-size: clamp(64px, 18vw, 88px);
    line-height: 0.86;
  }

  .editions-card p {
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.42;
  }

  .editions-card .spec-table {
    margin: 14px 0 18px;
  }

  .editions-card .spec-table td {
    padding: 6px 0;
    font-size: 12px;
    line-height: 1.35;
  }

  .editions-card .collect-btn {
    min-height: 56px;
  }
}

@media (max-width: 768px) and (max-height: 740px) {
  .artist-section {
    gap: 18px;
    padding-top: calc(var(--nav-h) + 14px);
  }

  .artist-visual img {
    height: 34svh;
  }

  .artist-copy h2 {
    margin-bottom: 16px;
    font-size: clamp(66px, 20vw, 88px);
  }

  .artist-copy p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.48;
  }

  .artist-quote {
    margin-top: 14px;
    font-size: 13.5px;
    line-height: 1.42;
  }

  .editions-section > img {
    height: 30svh;
    min-height: 190px;
  }

  .editions-card {
    padding-top: 20px;
  }

  .editions-card h2 {
    font-size: clamp(58px, 16vw, 76px);
  }

  .editions-card p,
  .editions-card .spec-table td {
    font-size: 11.5px;
  }
}

@media (max-width: 380px) {
  .artist-copy h2 {
    font-size: clamp(62px, 21vw, 86px);
  }

  .artist-copy p:not(.eyebrow) {
    max-width: 30ch;
  }

  .editions-card h2 {
    font-size: clamp(56px, 17vw, 78px);
  }
}

/* --------------------------------------------------------------------------
   Tablet artist section overlap fix
   --------------------------------------------------------------------------
   The general <=1100px layout stacks split panels. The artist portrait was
   still using the desktop image height, so it overflowed its grid row and the
   title started underneath the image. These rules keep the stacked tablet
   layout clean without touching the mobile overrides below 768px.
*/
@media (min-width: 769px) and (max-width: 1100px) {
  .artist-section {
    grid-template-rows: auto auto !important;
    align-content: start;
    align-items: start;
    min-height: auto;
    padding: calc(var(--nav-h) + 42px) var(--gutter) 96px;
    gap: 42px;
    overflow: visible;
  }

  .artist-visual,
  .artist-copy {
    min-width: 0;
  }

  .artist-visual img {
    height: min(52svh, 560px);
    max-height: 560px;
    object-position: center 42%;
  }

  .artist-copy {
    max-width: 720px;
  }

  .artist-copy h2 {
    font-size: clamp(86px, 14vw, 136px);
    line-height: 0.86;
  }

  .artist-copy p:not(.eyebrow) {
    max-width: 44ch;
    font-size: clamp(17px, 2.1vw, 24px);
    line-height: 1.58;
  }

  .artist-quote {
    max-width: 38ch;
  }
}

/* --------------------------------------------------------------------------
   Cross-device content safety pass
   --------------------------------------------------------------------------
   Full-screen snap panels are fine for the hero and short statement sections,
   but text-heavy panels cannot be hard-locked to a viewport on tablet/mobile.
   These overrides let those sections become taller than the viewport when the
   content needs it, preventing title/table/body text from being clipped.
*/
@media (max-width: 1180px) {
  .artist-section,
  .editions-section {
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
  }

  .artist-section {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto !important;
    align-items: start !important;
    align-content: start !important;
  }

  .artist-visual,
  .artist-copy {
    width: 100%;
    min-width: 0;
    max-width: none;
  }

  .artist-visual img {
    display: block;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center 42%;
  }

  .artist-copy {
    position: relative;
    z-index: 2;
    transform: none !important;
  }

  .artist-copy h2,
  .artist-copy p,
  .artist-quote,
  .text-link {
    position: relative;
    z-index: 2;
  }

  .editions-section {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto !important;
    align-items: start !important;
  }

  .editions-section > img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
  }

  .editions-card {
    align-self: start;
  }
}

@media (min-width: 769px) and (max-width: 1180px) {
  .artist-section {
    gap: clamp(32px, 5vw, 58px);
    padding: calc(var(--nav-h) + 44px) var(--gutter) 104px;
  }

  .artist-visual img {
    height: clamp(360px, 48vw, 560px) !important;
    border-radius: var(--radius-lg);
  }

  .artist-copy {
    max-width: 760px;
  }

  .artist-copy h2 {
    margin: 0 0 26px;
    font-size: clamp(88px, 13vw, 136px) !important;
    line-height: 0.86;
    letter-spacing: -0.04em;
  }

  .artist-copy p:not(.eyebrow) {
    max-width: 46ch;
    font-size: clamp(17px, 2vw, 22px) !important;
    line-height: 1.58;
  }

  .artist-quote {
    max-width: 40ch;
  }

  .editions-section > img {
    height: clamp(340px, 45vw, 540px) !important;
  }

  .editions-card,
  .final-card {
    padding: clamp(36px, 6vw, 72px) var(--gutter) 104px;
  }
}

@media (max-width: 768px) {
  .artist-section {
    gap: 22px !important;
    padding: calc(var(--nav-h) + 18px) 22px calc(112px + env(safe-area-inset-bottom)) !important;
  }

  .artist-visual img {
    height: clamp(235px, 34svh, 330px) !important;
    border-radius: 12px;
  }

  .artist-copy h2 {
    margin: 0 0 20px !important;
    font-size: clamp(66px, 21vw, 98px) !important;
    line-height: 0.84 !important;
    letter-spacing: -0.045em;
  }

  .artist-copy p:not(.eyebrow) {
    max-width: 31ch;
    font-size: clamp(14px, 3.9vw, 17px) !important;
    line-height: 1.55 !important;
  }

  .artist-quote {
    margin-top: 18px !important;
    font-size: clamp(13px, 3.6vw, 15.5px) !important;
    line-height: 1.5 !important;
  }

  .editions-section > img,
  .final-collect > img {
    height: clamp(220px, 34svh, 320px) !important;
    min-height: 0 !important;
  }

  .editions-card,
  .final-card {
    padding: 24px 22px calc(116px + env(safe-area-inset-bottom)) !important;
  }
}

@media (min-width: 769px) and (max-width: 1180px) {
  #page-home {
    scroll-snap-type: y proximity !important;
  }
}


/* --------------------------------------------------------------------------
   Final handoff overrides: checkout, material swipe, connect page
   -------------------------------------------------------------------------- */
.checkout-inner {
  background: var(--black);
}

.checkout-product-panel {
  background: var(--black);
  color: var(--cream);
  border-right: 1px solid var(--line);
}

.checkout-product-info {
  background: var(--black);
  color: var(--cream);
  border-top: 1px solid var(--line);
}

.checkout-product-info .checkout-edition-tag,
.checkout-product-info .checkout-live-price-note,
.checkout-product-info .checkout-live-summary {
  color: var(--quiet);
}

.checkout-product-info .checkout-product-name,
.checkout-product-info .checkout-live-price-amount {
  color: var(--cream);
}

.checkout-form-panel {
  background: var(--cream);
  color: var(--black);
}

.checkout-form-panel .checkout-step-label,
.checkout-form-panel .checkout-progress-step,
.checkout-form-panel .checkout-label,
.checkout-form-panel .checkout-total-label,
.checkout-form-panel .checkout-total-note,
.checkout-form-panel .checkout-label-optional,
.checkout-form-panel .checkout-char-count,
.checkout-form-panel .checkout-for-btn-sub,
.checkout-form-panel .checkout-trust,
.checkout-form-panel .checkout-back-btn {
  color: rgba(var(--black-rgb), 0.52);
}

.checkout-form-panel .checkout-progress-step.is-active,
.checkout-form-panel .checkout-progress-step.is-done,
.checkout-form-panel .checkout-step-title,
.checkout-form-panel .checkout-total-amount,
.checkout-form-panel .checkout-for-btn-title {
  color: var(--black);
}

.checkout-form-panel .checkout-progress-line,
.checkout-form-panel .checkout-qty-wrap,
.checkout-form-panel .checkout-total-preview,
.checkout-form-panel .checkout-loading-state {
  border-color: rgba(var(--black-rgb), 0.14);
}

.checkout-form-panel .checkout-progress-line,
.checkout-form-panel .checkout-trust-dot {
  background: rgba(var(--black-rgb), 0.22);
}

.checkout-form-panel .checkout-close,
.checkout-form-panel .checkout-back-btn,
.checkout-form-panel .checkout-qty-btn,
.checkout-form-panel .checkout-for-btn {
  border-color: rgba(var(--black-rgb), 0.16);
  color: var(--black);
  background: transparent;
}

.checkout-form-panel .checkout-input,
.checkout-form-panel .checkout-select,
.checkout-form-panel .checkout-textarea {
  border-color: rgba(var(--black-rgb), 0.16);
  background: rgba(var(--black-rgb), 0.03);
  color: var(--black);
}

.checkout-form-panel .checkout-input::placeholder,
.checkout-form-panel .checkout-textarea::placeholder {
  color: rgba(var(--black-rgb), 0.36);
}

.checkout-form-panel .checkout-input:focus,
.checkout-form-panel .checkout-select:focus,
.checkout-form-panel .checkout-textarea:focus {
  border-color: rgba(var(--black-rgb), 0.5);
}

.checkout-form-panel .checkout-input:-webkit-autofill,
.checkout-form-panel .checkout-input:-webkit-autofill:hover,
.checkout-form-panel .checkout-input:-webkit-autofill:focus,
.checkout-form-panel .checkout-textarea:-webkit-autofill,
.checkout-form-panel .checkout-textarea:-webkit-autofill:hover,
.checkout-form-panel .checkout-textarea:-webkit-autofill:focus,
.checkout-form-panel .checkout-select:-webkit-autofill,
.checkout-form-panel .checkout-select:-webkit-autofill:hover,
.checkout-form-panel .checkout-select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px var(--cream) inset !important;
  box-shadow: 0 0 0 1000px var(--cream) inset !important;
  -webkit-text-fill-color: var(--black) !important;
  caret-color: var(--black);
  border-color: rgba(var(--black-rgb), 0.18);
  transition: background-color 9999s ease-in-out 0s;
}

.checkout-form-panel .checkout-for-btn:hover {
  border-color: rgba(var(--black-rgb), 0.38);
  background: rgba(var(--black-rgb), 0.04);
}

.checkout-form-panel .checkout-for-btn.is-selected {
  border-color: rgba(var(--black-rgb), 0.82);
  background: rgba(var(--black-rgb), 0.06);
  box-shadow: inset 0 0 0 1px rgba(var(--black-rgb), 0.2);
}

.checkout-form-panel .checkout-next-btn {
  color: var(--black);
  border-color: var(--black);
}

.checkout-form-panel .checkout-next-btn:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--cream);
}

.checkout-form-panel .checkout-loading-state {
  color: rgba(var(--black-rgb), 0.5);
}

.checkout-form-panel .checkout-error {
  color: #8a2f2f;
}


.mat-swiper,
.mat-swiper-track {
  touch-action: pan-y pinch-zoom;
  -webkit-user-select: none;
  user-select: none;
}

.mat-swiper.is-horizontal-swipe,
.mat-swiper.is-horizontal-swipe .mat-swiper-track {
  touch-action: none;
}

#page-home.is-swiping-material {
  scroll-snap-type: none !important;
  overscroll-behavior-y: none;
}

.mat-slide-img img {
  -webkit-user-drag: none;
  user-select: none;
}

.mat-swiper-ui {
  z-index: 5;
}

.contact-page.overlay-page {
  padding: calc(var(--nav-h) + clamp(28px, 4vw, 58px)) var(--gutter) 0;
  background: var(--black);
}

.contact-page .private-enquiry {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(20px, 3vw, 42px);
  min-height: calc(100svh - var(--nav-h) - clamp(92px, 10vw, 144px));
  border-top: 0;
  align-items: stretch;
}

.contact-page .private-enquiry-visual {
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #080808;
}

.contact-page .private-enquiry-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.04), rgba(5,5,5,0.62));
  pointer-events: none;
}

.contact-page .private-enquiry-visual img {
  opacity: 0.82;
}

.contact-page .private-enquiry-mark {
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: rgba(var(--cream-rgb), 0.58);
}

.contact-page .private-enquiry-panel {
  justify-content: center;
  min-height: 560px;
  padding: clamp(36px, 5vw, 76px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 78% 14%, rgba(var(--brand-purple-rgb), 0.22), transparent 34%),
    #070707;
}

.contact-page .contact-title {
  max-width: 8ch;
  font-size: clamp(78px, 8.4vw, 136px);
  line-height: 0.86;
}

.contact-page .enquiry-intro,
.contact-page .enquiry-note {
  max-width: 42ch;
  color: rgba(var(--cream-rgb), 0.64);
}

.contact-page .enquiry-types {
  margin: 28px 0 34px;
}

.contact-page .enquiry-types span {
  background: rgba(var(--cream-rgb), 0.025);
  border-color: rgba(var(--cream-rgb), 0.14);
  color: rgba(var(--cream-rgb), 0.48);
}

.contact-page .enquiry-form {
  max-width: 560px;
}

.contact-page .enquiry-submit {
  min-width: 190px;
}

.contact-page .enquiry-direct {
  max-width: 640px;
}

@media (max-width: 1100px) {
  .contact-page .private-enquiry {
    grid-template-columns: 1fr;
  }

  .contact-page .private-enquiry-visual,
  .contact-page .private-enquiry-panel {
    min-height: auto;
  }

  .contact-page .private-enquiry-visual {
    height: clamp(300px, 42svh, 460px);
  }
}

@media (max-width: 768px) {
  .checkout-product-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .mat-swiper-section {
    touch-action: pan-y pinch-zoom !important;
  }

  .mat-swiper,
  .mat-swiper-track {
    touch-action: pan-y pinch-zoom !important;
  }

  .mat-swiper.is-horizontal-swipe,
  .mat-swiper.is-horizontal-swipe .mat-swiper-track {
    touch-action: none !important;
  }

  .mat-slide-img img {
    pointer-events: none;
  }

  .contact-page.overlay-page {
    padding: calc(var(--nav-h) + 20px) 18px 0;
  }

  .contact-page .private-enquiry {
    gap: 18px;
  }

  .contact-page .private-enquiry-visual {
    height: 34svh;
    min-height: 250px;
    border-radius: 14px;
  }

  .contact-page .private-enquiry-panel {
    padding: 30px 22px 34px;
    border-radius: 14px;
  }

  .contact-page .contact-title {
    font-size: clamp(62px, 19vw, 92px);
  }

  .contact-page .enquiry-types {
    gap: 8px;
    margin: 22px 0 28px;
  }

  .contact-page .enquiry-types span {
    font-size: 10px;
    padding: 7px 10px;
  }
}


/* Screen-reader-only - visually hidden, available to assistive tech & SEO */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Checkout page scroll model */

/* The document owns checkout scrolling. The shell must not trap trackpad/wheel events. */
html.checkout-document,
body.checkout-page-body {
  height: auto !important;
  min-height: 100svh !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  overscroll-behavior-y: auto !important;
}

.checkout-page-shell {
  overflow: visible !important;
  -webkit-overflow-scrolling: auto !important;
  overscroll-behavior: auto !important;
  padding: clamp(24px, 4vw, 64px) clamp(18px, 3vw, 46px) !important;
  align-items: flex-start !important;
}

/* Inner card - natural height, no longer locked to viewport */
.checkout-inner {
  height: auto !important;
  max-height: none !important;
  min-height: 0 !important;
  margin: auto !important;
  align-self: center;
}

/* Product panel - fixed proportion, no internal scroll fighting */
.checkout-product-panel {
  grid-template-rows: minmax(0, 1fr) auto !important;
}

/* Form panel grows with content. The checkout page shell owns scrolling. */
.checkout-form-panel {
  overflow: visible !important;
  min-height: 0 !important;
}

/* Stripe container: enough height for Checkout without oversized empty space. */
#stripe-checkout-container {
  height: auto !important;
  min-height: clamp(540px, 72svh, 760px) !important;
  max-height: none !important;
  overflow: visible !important;
  overscroll-behavior: auto !important;
  touch-action: auto !important;
}

#stripe-checkout-container iframe {
  width: 100% !important;
  min-height: clamp(540px, 72svh, 760px) !important;
  overscroll-behavior: auto !important;
}

/* Desktop - keep the two-column but let it size naturally */
@media (min-width: 769px) {
  .checkout-inner {
    grid-template-columns: 0.82fr 1fr;
    min-height: min(680px, calc(100svh - 128px));
  }
  /* On desktop the product image panel stays pinned while the checkout page scrolls. */
  .checkout-product-panel {
    position: sticky;
    top: 0;
    align-self: start;
    max-height: calc(100svh - 128px);
  }
  #stripe-checkout-container,
  #stripe-checkout-container iframe {
    min-height: clamp(560px, 74svh, 780px) !important;
  }
}

/* Mobile - full clean single column, natural flow */
@media (max-width: 768px) {
  .checkout-page-shell {
    padding: 0 !important;
  }
  .checkout-inner {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto !important;
    height: auto !important;
    max-height: none !important;
    min-height: 100svh;
    overflow: visible !important;
  }
  .checkout-product-panel {
    grid-template-rows: auto auto !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }
  .checkout-product-img {
    height: 38svh;
    min-height: 200px;
  }
  .checkout-form-panel {
    padding: 24px 20px max(40px, calc(28px + env(safe-area-inset-bottom))) !important;
  }
  #stripe-checkout-container,
  #stripe-checkout-container iframe {
    min-height: clamp(500px, 68svh, 660px) !important;
  }
}

/* Contact page mobile layout */
@media (max-width: 768px) {
  /* Page wrapper - comfortable breathing room, no edge cutting */
  .contact-page.overlay-page {
    padding: calc(var(--nav-h) + 24px) 20px 40px !important;
  }

  /* Stack the two columns cleanly */
  .contact-page .private-enquiry {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    min-height: 0 !important;
  }

  /* Image on top - fixed, contained */
  .contact-page .private-enquiry-visual {
    order: -1;
    width: 100% !important;
    height: 32svh !important;
    min-height: 220px !important;
    max-height: 320px !important;
    border-radius: 14px !important;
  }

  /* Panel - natural height, generous padding, NO overlap */
  .contact-page .private-enquiry-panel {
    width: 100% !important;
    min-height: 0 !important;
    padding: 8px 4px 24px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: none !important;
    justify-content: flex-start !important;
  }

  /* Title - capped so it never overflows or wraps badly */
  .contact-page .contact-title {
    max-width: none !important;
    font-size: clamp(48px, 15vw, 76px) !important;
    line-height: 0.9 !important;
    margin: 0 0 20px !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
  }

  /* Intro text - full width, readable */
  .contact-page .enquiry-intro,
  .contact-page .enquiry-note {
    max-width: 100% !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
  }

  /* Enquiry type chips - wrap neatly */
  .contact-page .enquiry-types {
    gap: 8px !important;
    margin: 20px 0 26px !important;
  }
  .contact-page .enquiry-types span {
    font-size: 10px !important;
    padding: 7px 11px !important;
  }

  /* Form fields - full width, 16px to stop iOS zoom */
  .contact-page .enquiry-form { max-width: 100% !important; }
  .contact-page .form-group { margin-bottom: 16px !important; }
  .contact-page .form-input,
  .contact-page .checkout-textarea {
    font-size: 16px !important;
    padding: 13px 14px !important;
  }
  .contact-page .enquiry-submit {
    width: 100% !important;
    min-width: 0 !important;
    padding: 16px !important;
    text-align: center !important;
  }

  /* Direct contact details - single column, clear spacing */
  .contact-page .enquiry-direct {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    margin-top: 28px !important;
    padding-top: 24px !important;
  }
  .contact-page .c-detail-label { margin-bottom: 5px !important; }
  .contact-page .c-detail-val { font-size: 15px !important; line-height: 1.5 !important; }
}

@media (max-width: 390px) {
  .contact-page .contact-title { font-size: clamp(42px, 14vw, 60px) !important; }
}


/* --------------------------------------------------------------------------
   Mobile Safari snap / safe-area guard
   --------------------------------------------------------------------------
   This keeps the older stable Artist, Collect and Connect layouts intact while
   preventing iPhone Safari's bottom toolbar area from flashing the wrong page
   background during edge drags.
*/
html,
body {
  overscroll-behavior-y: none;
}

@media (max-width: 768px) {
  #page-home {
    overscroll-behavior-y: contain;
  }
}


/* Mobile home viewport stabilization */
@media (max-width: 768px) {
  #page-home {
    height: 100svh !important;
    min-height: 100svh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    scroll-snap-type: y mandatory !important;
    scroll-behavior: auto !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior-y: contain;
    background: var(--black);
  }

  .lux-panel {
    scroll-snap-align: start !important;
    scroll-snap-stop: always !important;
  }

  .bloom-panel,
  .sentence-panel,
  .mat-swiper-section,
  .story-panel {
    min-height: 100svh !important;
    scroll-snap-stop: always !important;
    overflow: hidden;
  }

  .artist-section,
  .editions-section {
    height: auto !important;
    min-height: 100svh !important;
    scroll-snap-align: start !important;
    scroll-snap-stop: always !important;
    overflow: visible !important;
  }

  .mat-swiper-section,
  .mat-swiper,
  .mat-swiper-track {
    touch-action: pan-y pinch-zoom !important;
  }

  .mat-swiper.is-horizontal-swipe,
  .mat-swiper.is-horizontal-swipe .mat-swiper-track {
    touch-action: none !important;
  }
}


/* --------------------------------------------------------------------------
   Mobile home snap lock
   --------------------------------------------------------------------------
   Home is a slide experience on mobile. This final block keeps scrolling inside
   the home scroller only, hides the nested scrollbar, and prevents panels from
   becoming taller than one viewport. Secondary pages keep normal document scroll.
*/
@media (max-width: 768px) {
  body.is-home-page {
    height: 100svh;
    overflow: hidden;
    background: var(--black);
  }

  body.is-home-page #page-home {
    height: 100svh !important;
    min-height: 100svh !important;
    max-height: 100svh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    scroll-snap-type: y mandatory !important;
    scroll-behavior: auto !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior-y: contain !important;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }


  body.is-home-page #page-home::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }

  body.is-home-page .lux-panel {
    height: 100svh !important;
    min-height: 100svh !important;
    max-height: 100svh !important;
    scroll-snap-align: start !important;
    scroll-snap-stop: always !important;
    overflow: hidden !important;
  }

  body.is-home-page .artist-section,
  body.is-home-page .editions-section {
    height: 100svh !important;
    min-height: 100svh !important;
    max-height: 100svh !important;
    overflow: hidden !important;
  }

  body.is-home-page #collect.final-collect {
    grid-template-columns: 1fr !important;
    grid-template-rows: 33svh minmax(0, 1fr) !important;
    align-items: stretch !important;
  }

  body.is-home-page #collect.final-collect > img {
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover;
  }

  body.is-home-page #collect .final-card {
    min-height: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 22px 22px calc(24px + env(safe-area-inset-bottom)) !important;
  }

  body.is-home-page #collect .final-card h2 {
    margin-bottom: 10px !important;
    font-size: clamp(58px, 17vw, 88px) !important;
  }

  body.is-home-page #collect .final-card p {
    margin-bottom: 10px !important;
  }

  body.is-home-page #collect .spec-table {
    margin: 10px 0 14px !important;
  }

  body.is-home-page #collect .spec-table td {
    padding: 6px 0 !important;
    font-size: 11.5px !important;
  }

  body.is-home-page #collect .collect-cta-dock {
    display: block;
    position: relative;
    bottom: auto;
    z-index: 1;
    margin: auto 0 0;
    padding: 10px 0 0;
    background: transparent;
    pointer-events: auto;
  }

  body.is-home-page #collect .collect-cta-dock .collect-btn {
    width: 100%;
    min-height: 56px;
    margin: 0;
    pointer-events: auto;
  }

  body.is-home-page .faq-panel {
    touch-action: pan-y;
    scroll-snap-align: start !important;
    scroll-snap-stop: always !important;
    overflow: hidden !important;
  }

  body.is-home-page .faq-panel .faq-inner {
    min-height: 0;
    overflow: hidden;
  }

  body.is-home-page #page-home.is-programmatic-jump {
    scroll-snap-type: none !important;
  }

  body.is-home-page #page-home.is-programmatic-jump .lux-panel {
    scroll-snap-stop: normal !important;
  }
}
