@font-face {
  font-family: "Aviano";
  src: local("Aviano Regular"), local("Aviano"), local("Aviano-Reg");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --forest: #14251f;
  --olive: #6f7356;
  --cream: #dcd2b2;
  --ivory: #e7e5dd;
  --warm-white: var(--ivory);
  --champagne: var(--cream);
  --muted-gold: var(--cream);
  --graphite: var(--forest);
  --black: var(--forest);
  --stone: var(--olive);
  --line: rgba(20, 37, 31, 0.16);
  --line-dark: rgba(231, 229, 221, 0.18);
  --shadow: 0 28px 80px rgba(20, 37, 31, 0.16);
  --font-display: "Aviano", "Trajan Pro", "Times New Roman", serif;
  --font-body: "Aviano", "Trajan Pro", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--graphite);
  background: var(--warm-white);
  font-family: var(--font-body);
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  color: var(--ivory);
  background: var(--forest);
  transition: opacity 420ms ease, visibility 420ms ease;
}

.site-loader.is-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.loader-emblem {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(74px, 14vw, 126px);
  aspect-ratio: 610 / 900;
}

.loader-canvas,
.loader-logo-fallback,
.loader-logo-base,
.loader-sand,
.loader-stream {
  grid-area: 1 / 1;
  width: 82%;
  height: auto;
  filter: drop-shadow(0 20px 42px rgba(0, 0, 0, 0.18));
}

.loader-canvas {
  position: relative;
  z-index: 2;
}

.loader-logo-fallback,
.loader-logo-base {
  z-index: 1;
  opacity: 0.22;
}

.loader-logo-base,
.loader-sand {
  position: relative;
  aspect-ratio: 610 / 900;
  background: url("assets/brand/scalzi-logo-white.png") center / contain no-repeat;
}

.loader-sand {
  z-index: 2;
  background:
    radial-gradient(circle at 48% 48%, rgba(231, 229, 221, 0.96) 0 2px, transparent 2.4px),
    radial-gradient(circle at 56% 62%, rgba(220, 210, 178, 0.92) 0 1.6px, transparent 2px),
    linear-gradient(180deg, rgba(231, 229, 221, 0.2), rgba(220, 210, 178, 0.98));
  background-size: 16px 16px, 21px 21px, 100% 100%;
  clip-path: inset(52% 0 0 0);
  mask: url("assets/brand/scalzi-logo-white.png") center / contain no-repeat;
  -webkit-mask: url("assets/brand/scalzi-logo-white.png") center / contain no-repeat;
  animation: loaderSandFill 1200ms cubic-bezier(0.55, 0, 0.25, 1) infinite alternate;
}

.loader-stream {
  position: relative;
  z-index: 3;
  width: 2px;
  height: 31%;
  align-self: center;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(231, 229, 221, 0.94), rgba(220, 210, 178, 0.72), transparent);
  transform: translateY(-2%);
  animation: loaderSandStream 820ms ease-in-out infinite;
}

.loader-bar {
  position: absolute;
  left: 50%;
  bottom: clamp(48px, 8vw, 84px);
  width: min(220px, 44vw);
  height: 1px;
  overflow: hidden;
  background: rgba(231, 229, 221, 0.18);
  transform: translateX(-50%);
}

.loader-bar span {
  display: block;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--cream), transparent);
  animation: loaderBar 1050ms ease-in-out infinite;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--black);
  color: var(--ivory);
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--ivory);
  transition: background 260ms ease, color 260ms ease, border-color 260ms ease;
}

.site-header.is-scrolled,
.site-header:focus-within {
  color: var(--graphite);
  background: rgba(231, 229, 221, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.light-header-page .site-header {
  color: var(--graphite);
  background: rgba(231, 229, 221, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.light-header-page .site-header .brand-mark::after {
  background-image: url("assets/brand/scalzi-lettering-black.png");
}

.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  width: clamp(104px, 10vw, 146px);
  height: 32px;
  overflow: hidden;
}

.brand-mark::before {
  content: "";
  display: block;
  width: 0;
  height: 28px;
  flex: 0 0 0;
  background: url("assets/brand/scalzi-logo-white.png") center / contain no-repeat;
  opacity: 0;
  transform: translateX(-6px);
  transition: width 220ms ease, flex-basis 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.brand-mark::after {
  content: "";
  display: block;
  width: 118px;
  height: 18px;
  background: url("assets/brand/scalzi-lettering-white.png") left center / contain no-repeat;
}

.site-header:hover .brand-mark,
.site-header:focus-within .brand-mark,
.site-header.is-scrolled .brand-mark {
  gap: 10px;
  width: clamp(118px, 11vw, 170px);
}

.site-header:hover .brand-mark::before,
.site-header.is-scrolled .brand-mark::before,
.site-header:focus-within .brand-mark::before {
  background-image: url("assets/brand/scalzi-logo-black.png");
  width: 22px;
  flex-basis: 22px;
  opacity: 1;
  transform: translateX(0);
}

.site-header.is-scrolled .brand-mark::after,
.site-header:focus-within .brand-mark::after {
  background-image: url("assets/brand/scalzi-lettering-black.png");
}

.site-footer .brand-mark::before {
  background-image: url("assets/brand/scalzi-logo-white.png");
  width: 22px;
  flex-basis: 22px;
  opacity: 1;
  transform: translateX(0);
}

.site-footer .brand-mark::after {
  background-image: url("assets/brand/scalzi-lettering-white.png");
}

.brand-mark span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.brand-symbol {
  display: none;
}

.brand-word {
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.18em;
}

.desktop-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 30px);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a,
.site-footer nav a,
.text-link {
  opacity: 0.76;
  transition: opacity 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"],
.site-footer nav a:hover,
.text-link:hover {
  opacity: 1;
}

.header-cta {
  display: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-toggle {
  display: grid;
  gap: 6px;
  width: 42px;
  height: 42px;
  place-content: center;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 220ms ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: grid;
  align-content: center;
  padding: 88px 24px 32px;
  color: var(--ivory);
  background: rgba(20, 37, 31, 0.96);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu nav {
  display: grid;
  gap: 22px;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 7vw, 2.85rem);
}

.hero,
.page-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 116px clamp(18px, 5vw, 72px) 56px;
  overflow: hidden;
  color: var(--ivory);
  background: var(--forest);
}

.page-hero {
  min-height: 68svh;
  align-items: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--forest), var(--forest) 58%, var(--olive));
}

.hero-video,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  opacity: 1;
  filter: saturate(1) contrast(1.04);
  transform: scale(1.01);
}

.hero-video.has-failed {
  display: none;
}

.hero-media img {
  opacity: 0;
  filter: saturate(0.92) contrast(1.05);
  transform: scale(1.04);
  transition: opacity 500ms ease;
}

.hero-video.has-failed + img {
  opacity: 0.62;
}

.hero-media .hero-video + img {
  z-index: 0;
}

.hero-media .hero-video {
  z-index: 1;
}

.hero-media::after,
.page-hero::after,
.collection-hero::after,
.waitlist-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 37, 31, 0.08), rgba(20, 37, 31, 0.52));
}

.hero-home .hero-media::after {
  background:
    linear-gradient(90deg, rgba(20, 37, 31, 0.5), rgba(20, 37, 31, 0.12) 52%, rgba(20, 37, 31, 0.08)),
    linear-gradient(180deg, rgba(20, 37, 31, 0.06), rgba(20, 37, 31, 0.28));
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: auto -8vw -24vh auto;
  width: min(58vw, 660px);
  aspect-ratio: 610 / 900;
  background: url("assets/brand/scalzi-logo-white.png") center / contain no-repeat;
  opacity: 0.045;
  transform: rotate(-4deg);
}

.hero-content,
.section-heading {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

body.is-loaded .hero-content.is-visible,
body.is-loaded .immersive-copy.is-visible {
  animation: heroCinematicIn 900ms cubic-bezier(0.18, 0.76, 0.28, 1) both;
}

body.is-loaded .hero-video {
  animation: heroVideoDrift 8s ease-out both;
}

.hero-signature {
  display: block;
  width: clamp(74px, 12vw, 126px);
  height: auto;
  margin-bottom: 28px;
  opacity: 0.88;
}

.hero-brand-lockup {
  display: none;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-brand-lockup img {
  width: clamp(42px, 6vw, 72px);
  height: auto;
}

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 100%;
  height: 2px;
  pointer-events: none;
  background: rgba(231, 229, 221, 0.08);
}

.page-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--cream);
  transform-origin: left center;
}

.immersive-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 116px clamp(18px, 5vw, 72px) 56px;
  overflow: hidden;
  color: var(--ivory);
  background: var(--forest);
}

.immersive-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
  transform: scale(1.02);
}

.immersive-hero-media.hero-video {
  opacity: 0.78;
}

.immersive-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 37, 31, 0.82), rgba(20, 37, 31, 0.42) 46%, rgba(20, 37, 31, 0.76)),
    linear-gradient(180deg, rgba(20, 37, 31, 0.22), rgba(20, 37, 31, 0.88));
}

.immersive-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.immersive-copy h1 {
  margin: 0;
  max-width: 760px;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.7vw, 2.85rem);
  font-weight: 400;
  line-height: 1.08;
  text-transform: uppercase;
}

.immersive-copy p {
  max-width: 600px;
  color: rgba(231, 229, 221, 0.78);
  line-height: 1.72;
}

.scroll-cue {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 56px;
  z-index: 2;
  writing-mode: vertical-rl;
  color: rgba(231, 229, 221, 0.62);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.editorial-copy h2,
.diagram-copy h2,
.story-line h2,
.quote-section blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
}

.hero h1,
.page-hero h1 {
  max-width: none;
  font-size: clamp(1rem, 4.25vw, 2.95rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1080px;
  white-space: normal;
}

.page-hero h1 {
  font-size: clamp(1.45rem, 3.5vw, 2.7rem);
  max-width: 680px;
}

.section-heading h2,
.editorial-copy h2,
.diagram-copy h2,
.quote-section blockquote {
  font-size: clamp(1.5rem, 3.6vw, 2.75rem);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cream);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy,
.section-heading p,
.editorial-copy p,
.diagram-copy p,
.story-line p,
.product-card p,
.family-card span,
.component-card p,
.material-card p,
.service-card p,
.site-footer p {
  color: rgba(20, 37, 31, 0.7);
  line-height: 1.72;
}

.hero-copy,
.page-hero .section-heading p {
  max-width: 620px;
  color: rgba(231, 229, 221, 0.78);
  font-size: clamp(1rem, 2.5vw, 1.18rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn-primary {
  color: var(--black);
  background: var(--ivory);
  border-color: var(--ivory);
}

.btn-secondary {
  color: inherit;
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  color: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section {
  padding: clamp(72px, 12vw, 150px) clamp(18px, 5vw, 72px);
}

.system-preview,
.materials-section,
.waitlist-form-section {
  background: var(--ivory);
}

.brand-brief {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
  background: var(--ivory);
}

.brand-brief-copy {
  max-width: 860px;
}

.brand-brief-copy h2,
.configurator-intro h2,
.configurator-manifesto h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
}

.brand-brief-copy h2,
.configurator-intro h2 {
  font-size: clamp(1.5rem, 3.6vw, 2.75rem);
}

.brand-brief-copy p,
.configurator-intro p {
  color: rgba(20, 37, 31, 0.7);
  line-height: 1.72;
}

.brand-brief-points {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.brand-brief-points span {
  padding: 18px;
  background: rgba(231, 229, 221, 0.74);
  color: var(--forest);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.landing-gateway-section {
  min-height: 100svh;
  display: grid;
  align-content: center;
  gap: clamp(32px, 6vw, 76px);
  color: var(--ivory);
  background: var(--forest);
}

.landing-gateway-section .section-heading {
  max-width: 760px;
}

.landing-gateway-section .section-heading p:not(.eyebrow) {
  color: rgba(231, 229, 221, 0.68);
}

.landing-gateway-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.landing-gateway-card {
  min-height: clamp(240px, 29vw, 390px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
  padding: clamp(20px, 3vw, 34px);
  background:
    linear-gradient(180deg, rgba(231, 229, 221, 0.025), rgba(231, 229, 221, 0.08)),
    var(--forest);
  transition: background 260ms ease, transform 260ms ease;
}

.landing-gateway-card:hover {
  background:
    linear-gradient(180deg, rgba(220, 210, 178, 0.08), rgba(231, 229, 221, 0.12)),
    var(--forest);
  transform: translateY(-4px);
}

.landing-gateway-card span {
  color: var(--cream);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.landing-gateway-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 2.25rem);
  font-weight: 400;
  line-height: 1.02;
}

.landing-gateway-card p {
  max-width: 230px;
  margin: 0;
  color: rgba(231, 229, 221, 0.68);
  line-height: 1.62;
}

.everline-configurator {
  background: var(--ivory);
}

.configurator-intro {
  max-width: 920px;
  margin-bottom: 34px;
}

.configurator-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: start;
}

.configurator-manifesto {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 20px;
  min-height: 460px;
  padding: clamp(26px, 4.4vw, 48px);
  align-content: end;
  color: var(--ivory);
  background:
    linear-gradient(180deg, rgba(20, 37, 31, 0.12), rgba(20, 37, 31, 0.86)),
    linear-gradient(135deg, var(--forest), rgba(111, 115, 86, 0.88));
  border: 1px solid var(--line-dark);
}

.configurator-options,
.configuration-flow article {
  border: 1px solid var(--line);
  background: rgba(231, 229, 221, 0.68);
}

.configurator-manifesto .eyebrow {
  color: var(--cream);
}

.configurator-manifesto h3 {
  max-width: 420px;
  font-size: clamp(1.45rem, 3vw, 2.45rem);
}

.configurator-manifesto p {
  max-width: 500px;
  color: rgba(231, 229, 221, 0.74);
  line-height: 1.72;
}

.manifesto-lines {
  display: grid;
  gap: 1px;
  margin-top: 12px;
  border-top: 1px solid rgba(220, 210, 178, 0.32);
}

.manifesto-lines span {
  padding: 16px 0;
  border-bottom: 1px solid rgba(220, 210, 178, 0.24);
  color: rgba(231, 229, 221, 0.84);
  font-size: 0.74rem;
  letter-spacing: 0.13em;
  line-height: 1.45;
  text-transform: uppercase;
}

.configurator-options {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.config-option-group,
.config-option-row,
.premium-toggle {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: var(--ivory);
}

.config-option-group {
  grid-template-columns: repeat(auto-fit, minmax(164px, 1fr));
}

.config-option-group h3 {
  grid-column: 1 / -1;
  margin: 0 0 4px;
  color: var(--olive);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.config-option-group button {
  min-height: 82px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--forest);
  background: transparent;
  padding: 14px;
  text-align: left;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.config-option-group button[data-icon] {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
}

.config-option-group button span,
.config-option-group button small {
  display: block;
}

.config-option-group button span {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.config-option-group button small {
  margin-top: 4px;
  color: rgba(20, 37, 31, 0.56);
  font-size: 0.72rem;
  line-height: 1.35;
}

.config-option-group button[data-icon]::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(20, 37, 31, 0.44);
  background: rgba(231, 229, 221, 0.42);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.config-option-group button[data-icon="bracelet"]::before,
.config-option-group button[data-icon="cord"]::before {
  border-radius: 999px;
  box-shadow: inset 0 0 0 7px var(--ivory);
}

.config-option-group button[data-icon="necklace"]::before {
  border-radius: 999px 999px 7px 7px;
  border-bottom-color: transparent;
}

.config-option-group button[data-icon="titanium"]::before,
.config-option-group button[data-icon="platinum"]::before {
  transform: rotate(45deg);
}

.config-option-group button[data-icon="gold"]::before {
  background: linear-gradient(135deg, rgba(220, 210, 178, 0.34), rgba(220, 210, 178, 0.92));
}

.config-option-group button[data-icon="rose"]::before {
  background: linear-gradient(135deg, rgba(220, 210, 178, 0.26), rgba(184, 126, 96, 0.46));
}

.config-option-group button[data-icon="spinel"]::before,
.config-option-group button[data-icon="sapphire"]::before,
.config-option-group button[data-icon="paraiba"]::before,
.config-option-group button[data-icon="diamond"]::before {
  border-radius: 4px;
  transform: rotate(45deg);
}

.config-option-group button[data-icon="spinel"]::before {
  background: linear-gradient(135deg, #2b2329, #6d4055);
}

.config-option-group button[data-icon="sapphire"]::before {
  background: linear-gradient(135deg, #14251f, #284f72);
}

.config-option-group button[data-icon="paraiba"]::before {
  background: linear-gradient(135deg, #6f7356, #42a6a1);
}

.config-option-group button[data-icon="diamond"]::before {
  background: linear-gradient(135deg, #f6f3e8, #dcd2b2);
}

.config-option-group button[data-icon="velvet"]::before {
  border-radius: 8px;
  background: linear-gradient(135deg, #2b0f1d, #6e3046);
}

.config-option-group button[data-icon="chain-gold"]::before,
.config-option-group button[data-icon="chain-titanium"]::before {
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, transparent 0 4px, rgba(20, 37, 31, 0.38) 4px 5px),
    rgba(220, 210, 178, 0.58);
}

.config-option-group button[data-icon="chain-titanium"]::before {
  background:
    repeating-linear-gradient(90deg, transparent 0 4px, rgba(20, 37, 31, 0.38) 4px 5px),
    rgba(111, 115, 86, 0.34);
}

.config-option-group button:hover,
.config-option-group button.is-selected {
  background: var(--cream);
  border-color: var(--cream);
  transform: translateY(-1px);
}

.config-option-group button:hover::before,
.config-option-group button.is-selected::before {
  border-color: rgba(20, 37, 31, 0.72);
  background-blend-mode: screen;
}

.config-option-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.premium-toggle {
  grid-template-columns: 18px 1fr;
  align-items: start;
  cursor: pointer;
}

.premium-toggle input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--olive);
}

.premium-toggle span {
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.premium-toggle small {
  grid-column: 2;
  color: rgba(20, 37, 31, 0.62);
  line-height: 1.55;
}

.configuration-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.configuration-flow article {
  min-height: 150px;
  padding: 18px;
}

.configuration-flow span {
  color: var(--olive);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.configuration-flow strong {
  display: block;
  margin-top: 28px;
  font-family: var(--font-display);
  font-weight: 400;
}

.configuration-flow p {
  color: rgba(20, 37, 31, 0.62);
  line-height: 1.62;
}

.manifesto-section,
.everline-positioning,
.evolution-roadmap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  color: var(--ivory);
  background: var(--forest);
}

.system-manifesto {
  color: var(--graphite);
  background: var(--ivory);
}

.manifesto-copy {
  max-width: 860px;
}

.manifesto-copy h2,
.manifesto-quote,
.roadmap-card h3,
.positioning-card span {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
}

.manifesto-copy h2,
.manifesto-quote {
  font-size: clamp(1.6rem, 3.8vw, 2.85rem);
}

.manifesto-copy p,
.manifesto-quote,
.roadmap-card p,
.positioning-card p {
  color: rgba(231, 229, 221, 0.72);
  line-height: 1.72;
}

.system-manifesto .manifesto-copy p {
  color: rgba(20, 37, 31, 0.7);
}

.manifesto-quote {
  max-width: 720px;
  border-left: 1px solid var(--cream);
  padding-left: clamp(18px, 3vw, 34px);
  color: var(--cream);
}

.ecosystem-points {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.ecosystem-points span {
  padding: 18px;
  color: var(--forest);
  background: var(--ivory);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.roadmap-grid,
.positioning-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.roadmap-card,
.positioning-card {
  min-height: 210px;
  padding: 22px;
  background: var(--forest);
}

.roadmap-card span,
.positioning-card span {
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.roadmap-card h3 {
  margin-top: 42px;
  color: var(--ivory);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.positioning-card span {
  display: block;
  margin-bottom: 52px;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  letter-spacing: 0;
  text-transform: none;
}

.module-grid,
.material-grid,
.category-grid,
.family-grid,
.catalog-grid,
.services-grid,
.component-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.module-card,
.material-card,
.component-card,
.service-card,
.product-card,
.family-card,
.story-panel,
.bespoke-configurator-form,
.contact-form,
.questionnaire {
  border: 1px solid var(--line);
  background: rgba(231, 229, 221, 0.68);
  box-shadow: var(--shadow);
}

.module-card,
.material-card,
.component-card,
.service-card {
  min-height: 210px;
  padding: 24px;
}

.category-section {
  background: var(--ivory);
}

.category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.category-card {
  position: relative;
  display: grid;
  min-height: clamp(360px, 46vw, 560px);
  overflow: hidden;
  color: var(--ivory);
  background: var(--forest);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  filter: saturate(0.86) contrast(1.04);
  transition: transform 900ms ease, opacity 300ms ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(20, 37, 31, 0.72));
}

.category-card span {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 24px;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  font-weight: 400;
}

.category-card:hover img {
  opacity: 0.94;
  transform: scale(1.045);
}

.gemstone-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 0.92fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: center;
  background: var(--ivory);
}

.gemstone-plate {
  margin: 0;
  border: 1px solid var(--line);
  background: rgba(231, 229, 221, 0.48);
}

.gemstone-plate img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: saturate(0.9) contrast(1.02);
}

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

.gemstone-copy h2 {
  margin: 0;
  color: var(--forest);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.8vw, 3rem);
  font-weight: 400;
  line-height: 1.06;
}

.gemstone-copy p:not(.eyebrow) {
  color: rgba(20, 37, 31, 0.68);
  line-height: 1.76;
}

.gemstone-criteria {
  display: grid;
  gap: 1px;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.gemstone-criteria span {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: rgba(20, 37, 31, 0.78);
  font-size: 0.74rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.bespoke-home-section,
.everline-teaser,
.atelier-film-section,
.process-home-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 0.88fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
}

.bespoke-home-section {
  color: var(--ivory);
  background: var(--forest);
}

.process-home-section {
  color: var(--ivory);
  background: var(--forest);
}

.atelier-film-section {
  color: var(--forest);
  background: var(--ivory);
}

.bespoke-home-section .section-heading p,
.everline-teaser-copy p,
.atelier-film-copy p,
.process-home-copy p {
  color: rgba(20, 37, 31, 0.68);
}

.bespoke-home-section .section-heading p,
.process-home-copy p {
  color: rgba(231, 229, 221, 0.72);
}

.bespoke-home-media,
.everline-teaser-media,
.atelier-film-media,
.process-home-media {
  position: relative;
  overflow: hidden;
  min-height: clamp(420px, 52vw, 680px);
  background: var(--black);
}

.bespoke-home-media img,
.everline-teaser-media img,
.atelier-film-media video,
.process-home-media video,
.inline-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
  transition: transform 900ms ease;
}

.bespoke-home-media:hover img,
.everline-teaser-media:hover img,
.atelier-film-media:hover video,
.process-home-media:hover video {
  transform: scale(1.035);
}

.atelier-film-copy,
.process-home-copy {
  max-width: 760px;
}

.atelier-film-copy h2,
.process-home-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.6vw, 2.85rem);
  font-weight: 400;
  line-height: 1.08;
}

.appointment-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
  background: var(--ivory);
}

.appointment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  background: rgba(231, 229, 221, 0.62);
  box-shadow: var(--shadow);
}

.appointment-form .wide-label,
.appointment-form button,
.appointment-form .form-status {
  grid-column: 1 / -1;
}

.everline-teaser {
  color: var(--ivory);
  background: var(--black);
}

.everline-teaser-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.6vw, 2.85rem);
  font-weight: 400;
  line-height: 1.08;
}

.everline-teaser-media {
  min-height: clamp(360px, 48vw, 600px);
}

.system-home-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(260px, 0.54fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
  background: var(--ivory);
}

.system-home-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.system-home-list span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 0 22px;
  background: rgba(231, 229, 221, 0.78);
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.module-card span,
.component-card span,
.story-line span,
.product-family,
.family-card p {
  color: var(--muted-gold);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.module-card h3,
.material-card h3,
.product-card h3,
.component-card h2,
.service-card h2,
.family-card h2 {
  margin: 24px 0 10px;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
}

.split-section,
.mechanism-section,
.system-diagram,
.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
}

.product-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
}

.product-card,
.family-card {
  min-width: 0;
  overflow: hidden;
  scroll-snap-align: start;
}

.product-card {
  padding: 12px;
}

.product-card h3,
.product-card p {
  padding-inline: 10px;
}

.product-visual,
.family-visual,
.editorial-visual,
.mechanism-visual,
.diagram-visual {
  min-height: 320px;
  background: linear-gradient(135deg, var(--forest), var(--cream));
}

.image-product {
  background: var(--black);
}

.image-product img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 700ms ease;
}

.product-card:hover .image-product img {
  transform: scale(1.045);
}

.product-visual,
.family-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 37, 31, 0.08);
}

.product-visual::after,
.family-visual::after,
.material-swatch::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 18%, rgba(231, 229, 221, 0.14) 38%, rgba(220, 210, 178, 0.28) 46%, transparent 58%);
  opacity: 0.65;
  transform: translateX(-120%);
  transition: transform 700ms ease;
}

.product-card:hover .product-visual::after,
.family-card:hover .family-visual::after,
.material-card:hover .material-swatch::after {
  transform: translateX(120%);
}

.visual-void {
  background:
    linear-gradient(rgba(20, 37, 31, 0.08), rgba(20, 37, 31, 0.28)),
    url("assets/everline/components/material-bracelet-compositions.jpg") center / cover;
}

.visual-ocean {
  background:
    linear-gradient(rgba(20, 37, 31, 0.06), rgba(20, 37, 31, 0.22)),
    url("assets/everline/everline-collection-render.jpg") 46% center / cover;
}

.visual-earth {
  background:
    linear-gradient(rgba(20, 37, 31, 0.08), rgba(20, 37, 31, 0.28)),
    url("assets/everline/components/material-cords-chains.jpg") center / cover;
}

.visual-pure {
  background:
    linear-gradient(rgba(231, 229, 221, 0.18), rgba(20, 37, 31, 0.12)),
    url("assets/everline/components/material-titanium-metals.jpg") center / cover;
}

.mechanism-section {
  color: var(--ivory);
  background: var(--forest);
}

.mechanism-section .section-heading p {
  color: rgba(231, 229, 221, 0.72);
}

.mechanism-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: var(--forest);
}

.mechanism-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.06);
  transform: scale(1.03);
}

.mechanism-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 37, 31, 0.04), rgba(20, 37, 31, 0.42)),
    linear-gradient(180deg, transparent, rgba(20, 37, 31, 0.46));
  pointer-events: none;
}

.lock-core {
  position: absolute;
  inset: 18%;
  z-index: 1;
  border: 1px solid rgba(231, 229, 221, 0.24);
  border-radius: 999px;
  pointer-events: none;
}

.lock-core::before,
.lock-core::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 38%;
  height: 1px;
  background: rgba(220, 210, 178, 0.72);
}

.lock-core::before {
  left: -18%;
}

.lock-core::after {
  right: -18%;
}

.mechanism-tag {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(231, 229, 221, 0.3);
  padding: 9px 12px;
  color: var(--ivory);
  background: rgba(20, 37, 31, 0.56);
  backdrop-filter: blur(12px);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tag-one {
  left: 22px;
  top: 22px;
}

.tag-two {
  right: 22px;
  bottom: 22px;
}

.material-card {
  position: relative;
  overflow: hidden;
}

.material-media,
.material-showcase figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--forest);
}

.material-media {
  min-height: 190px;
}

.material-media img,
.material-showcase img,
.component-card-media {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
  transition: transform 700ms ease;
}

.material-media img {
  height: 190px;
}

.material-showcase img {
  min-height: 280px;
}

.material-showcase-main img {
  min-height: 360px;
}

.component-card-media {
  height: 160px;
}

.material-card:hover .material-media img,
.material-showcase figure:hover img,
.component-card:hover .component-card-media {
  transform: scale(1.045);
}

.gem-editorial {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 0.92fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  margin-top: clamp(18px, 4vw, 48px);
  padding: clamp(18px, 4vw, 44px);
  border: 1px solid var(--line);
  background: rgba(231, 229, 221, 0.56);
}

.gem-editorial figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--forest);
}

.gem-editorial figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 54%, rgba(20, 37, 31, 0.24));
}

.gem-editorial img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 58%;
  filter: saturate(0.86) contrast(1.02);
}

.gem-editorial div {
  max-width: 720px;
}

.gem-editorial h3 {
  margin: 0;
  color: var(--forest);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.6vw, 2.8rem);
  font-weight: 400;
  line-height: 1.08;
}

.gem-editorial p:not(.eyebrow) {
  color: rgba(20, 37, 31, 0.68);
  line-height: 1.76;
}

.material-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 14px;
  margin-top: 14px;
}

.material-showcase figure {
  min-height: 280px;
}

.material-showcase-main {
  min-height: 360px;
}

.material-showcase figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  color: var(--ivory);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  line-height: 1.55;
  text-transform: uppercase;
}

.material-showcase figure::after,
.material-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(20, 37, 31, 0.58)),
    linear-gradient(115deg, transparent 18%, rgba(231, 229, 221, 0.1) 38%, rgba(220, 210, 178, 0.24) 46%, transparent 58%);
  pointer-events: none;
}

.component-card {
  overflow: hidden;
}

.component-card-media {
  min-height: 160px;
  margin: -24px -24px 22px;
  width: calc(100% + 48px);
}

.material-swatch {
  position: relative;
  min-height: 160px;
  overflow: hidden;
  background: var(--stone);
}

.swatch-titanium {
  background: linear-gradient(135deg, var(--forest), var(--ivory));
}

.swatch-gem {
  background: linear-gradient(135deg, var(--forest), var(--olive) 46%, var(--cream));
}

.swatch-cord {
  background: repeating-linear-gradient(135deg, var(--forest), var(--forest) 8px, var(--olive) 8px, var(--olive) 14px);
}

.story-teaser {
  background: linear-gradient(rgba(20, 37, 31, 0.62), rgba(20, 37, 31, 0.62)), linear-gradient(135deg, var(--forest), var(--olive));
  color: var(--ivory);
}

.story-panel {
  max-width: 720px;
  padding: clamp(28px, 6vw, 62px);
  color: var(--ivory);
  background: rgba(20, 37, 31, 0.42);
  backdrop-filter: blur(10px);
}

.story-panel p {
  color: rgba(231, 229, 221, 0.74);
}

.waitlist-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 30px;
  align-items: end;
}

.inline-form,
.contact-form,
.appointment-form {
  display: grid;
  gap: 14px;
}

.inline-form label,
.contact-form label,
.appointment-form label,
.questionnaire label {
  display: grid;
  gap: 8px;
  color: rgba(20, 37, 31, 0.72);
  font-size: 0.84rem;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--graphite);
  background: rgba(231, 229, 221, 0.74);
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus,
.btn:focus-visible {
  outline: 2px solid var(--muted-gold);
  outline-offset: 3px;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--muted-gold);
}

.instagram-waitlist-page {
  color: var(--ivory);
  background: var(--forest);
}

.instagram-waitlist-page .site-loader {
  background: var(--forest);
}

.craft-intro {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--ivory);
  background: var(--forest);
  pointer-events: none;
  animation: craftIntroExit 760ms ease 2800ms forwards;
}

.craft-intro.is-hidden {
  display: none;
}

.craft-intro::before,
.craft-intro::after {
  content: "";
  position: absolute;
  inset: 0;
}

.craft-intro::before {
  background:
    linear-gradient(90deg, rgba(20, 37, 31, 0.96), rgba(20, 37, 31, 0.74) 50%, rgba(20, 37, 31, 0.96)),
    var(--forest);
}

.craft-intro::after {
  border: 1px solid rgba(220, 210, 178, 0.2);
  margin: clamp(18px, 4vw, 46px);
  opacity: 0;
  transform: scale(0.986);
  animation: craftLineIn 2500ms ease 160ms forwards;
}

.craft-intro-type {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(10px, 2.6vw, 28px);
  padding-inline: 24px;
}

.craft-intro-type span {
  opacity: 0;
  color: rgba(231, 229, 221, 0.9);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 5.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.08;
  text-align: center;
  transform: translateY(12px);
  animation: craftWordIn 2500ms cubic-bezier(0.18, 0.76, 0.28, 1) forwards;
}

.craft-intro-type span:nth-child(2) {
  animation-delay: 220ms;
}

.craft-intro-type span:nth-child(3) {
  animation-delay: 440ms;
}

.bio-landing {
  min-height: 100svh;
  background: var(--forest);
}

.bio-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: visible;
  isolation: isolate;
  padding: clamp(28px, 5vw, 68px);
}

.bio-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(231, 229, 221, 0.03), transparent 38%, rgba(0, 0, 0, 0.08));
}

.bio-journey-line {
  position: absolute;
  left: 50%;
  bottom: clamp(-260px, -24vh, -180px);
  width: 1px;
  height: clamp(340px, 48vh, 520px);
  overflow: hidden;
  background: linear-gradient(180deg, transparent, rgba(220, 210, 178, 0.24) 18%, rgba(220, 210, 178, 0.36) 68%, transparent);
  transform: translateX(-50%);
  opacity: 0;
  animation: journeyLineReveal 1600ms cubic-bezier(0.18, 0.76, 0.28, 1) 4400ms forwards;
  pointer-events: none;
}

.bio-journey-line::before,
.bio-journey-line span {
  content: "";
  position: absolute;
  left: 0;
  width: 1px;
}

.bio-journey-line::before {
  inset-block: 0;
  background: linear-gradient(180deg, transparent, rgba(231, 229, 221, 0.18), transparent);
}

.bio-journey-line span {
  top: -62px;
  height: 78px;
  background: linear-gradient(180deg, transparent, #dcd2b2 48%, transparent);
  box-shadow: 0 0 18px rgba(220, 210, 178, 0.28);
  animation: journeyTrace 3600ms cubic-bezier(0.42, 0, 0.18, 1) 5200ms infinite;
}

.bio-hero-emblem {
  width: clamp(76px, 9vw, 104px);
  aspect-ratio: 120 / 177;
  margin-bottom: clamp(4px, 1.2vw, 10px);
  opacity: 0.76;
}

.bio-hero-emblem span {
  display: block;
  width: 100%;
  height: 100%;
  background: #dcd2b2;
  mask: url("assets/brand/scalzi-logo-white.png") center / contain no-repeat;
  -webkit-mask: url("assets/brand/scalzi-logo-white.png") center / contain no-repeat;
}

.bio-hero-shell {
  width: min(100%, 620px);
  display: grid;
  justify-items: center;
  gap: clamp(52px, 9vh, 92px);
  margin-inline: auto;
  transform: translateY(clamp(-26px, -4vh, -12px));
  text-align: center;
}

.bio-brand-group,
.bio-hero-message {
  display: grid;
  justify-items: center;
}

.bio-brand-group {
  gap: clamp(18px, 3vw, 30px);
}

.bio-hero-message {
  gap: clamp(18px, 2.6vw, 26px);
}

.bio-brand {
  display: inline-flex;
  width: clamp(150px, 24vw, 220px);
  aspect-ratio: 360 / 55;
}

.bio-brand span {
  display: block;
  width: 100%;
  height: 100%;
  background: #dcd2b2;
  mask: url("assets/brand/scalzi-lettering-white.png") center / contain no-repeat;
  -webkit-mask: url("assets/brand/scalzi-lettering-white.png") center / contain no-repeat;
}

.bio-hero-copy h1,
.bio-form-intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
}

.bio-hero-copy h1 {
  max-width: none;
  color: rgba(231, 229, 221, 0.9);
  font-family: "Aviano", "Trajan Pro", "Times New Roman", serif;
  font-size: clamp(1.08rem, 2.35vw, 1.72rem);
  letter-spacing: 0;
  line-height: 1.22;
  white-space: nowrap;
}

.bio-hero-copy p:not(.eyebrow),
.bio-form-intro p {
  max-width: 440px;
  margin-inline: auto;
  color: rgba(231, 229, 221, 0.76);
  font-size: clamp(0.88rem, 1.65vw, 1rem);
  line-height: 1.66;
}

.bio-trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 700px);
  border: 1px solid rgba(231, 229, 221, 0.16);
  background: rgba(231, 229, 221, 0.025);
  backdrop-filter: blur(10px);
}

.bio-trust-row span {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(231, 229, 221, 0.16);
  padding: 12px 14px;
  color: rgba(231, 229, 221, 0.72);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  line-height: 1.42;
  text-align: center;
  text-transform: uppercase;
}

.bio-trust-row span:last-child {
  border-right: 0;
}

.bio-scroll-cta {
  overflow: hidden;
  width: fit-content;
  min-width: min(100%, 236px);
  min-height: 52px;
  padding-inline: 30px;
  border-color: rgba(220, 210, 178, 0.52);
  color: #dcd2b2;
  background:
    linear-gradient(180deg, rgba(231, 229, 221, 0.09), rgba(220, 210, 178, 0.035)),
    rgba(20, 37, 31, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(231, 229, 221, 0.16),
    0 18px 46px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.bio-scroll-cta::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(231, 229, 221, 0.055);
  pointer-events: none;
}

.bio-scroll-cta::after {
  content: "";
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -38%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(231, 229, 221, 0.18), transparent);
  transform: skewX(-18deg);
  transition: left 760ms cubic-bezier(0.18, 0.76, 0.28, 1);
  pointer-events: none;
}

.bio-scroll-cta:hover {
  border-color: rgba(220, 210, 178, 0.78);
  color: var(--ivory);
  background:
    linear-gradient(180deg, rgba(231, 229, 221, 0.13), rgba(220, 210, 178, 0.055)),
    rgba(20, 37, 31, 0.38);
}

.bio-scroll-cta:hover::after {
  left: 104%;
}

.bio-form-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.54fr) minmax(320px, 0.76fr);
  gap: clamp(30px, 7vw, 108px);
  align-items: center;
  padding: clamp(84px, 11vw, 150px) clamp(18px, 6vw, 92px);
  background: #101f1a;
}

.bio-form-intro {
  position: sticky;
  top: 36px;
  width: min(100%, 560px);
  justify-self: center;
  text-align: center;
}

.bio-form-intro h2 {
  font-size: clamp(1.8rem, 4.4vw, 3.45rem);
}

.bio-waitlist-form {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3.6vw, 34px);
  border: 1px solid rgba(231, 229, 221, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(231, 229, 221, 0.09), rgba(220, 210, 178, 0.03)),
    rgba(13, 28, 23, 0.9);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(22px);
}

.bio-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.bio-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.bio-waitlist-form label {
  display: grid;
  gap: 8px;
}

.bio-waitlist-form label span,
.bio-waitlist-form legend {
  color: rgba(231, 229, 221, 0.58);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.bio-waitlist-form input,
.bio-waitlist-form textarea,
.bio-waitlist-form select {
  min-height: 52px;
  border-color: rgba(231, 229, 221, 0.14);
  border-radius: 8px;
  color: var(--ivory);
  background: rgba(231, 229, 221, 0.055);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.bio-waitlist-form input:focus,
.bio-waitlist-form textarea:focus,
.bio-waitlist-form select:focus {
  border-color: rgba(220, 210, 178, 0.54);
  background: rgba(231, 229, 221, 0.09);
  box-shadow: 0 0 0 4px rgba(220, 210, 178, 0.08);
}

.bio-waitlist-form input::placeholder,
.bio-waitlist-form textarea::placeholder {
  color: rgba(231, 229, 221, 0.42);
}

.bio-waitlist-form select option {
  color: var(--forest);
}

.bio-waitlist-form fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
  border: 0;
  padding: 0;
}

.bio-form-drawer {
  overflow: hidden;
  border: 1px solid rgba(231, 229, 221, 0.14);
  border-radius: 8px;
  background: rgba(231, 229, 221, 0.04);
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.bio-form-drawer[open] {
  border-color: rgba(220, 210, 178, 0.34);
  background:
    linear-gradient(145deg, rgba(231, 229, 221, 0.072), rgba(220, 210, 178, 0.036)),
    rgba(231, 229, 221, 0.035);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.16);
}

.bio-form-drawer summary {
  min-height: 62px;
  display: grid;
  grid-template-columns: 1fr auto 18px;
  gap: 14px;
  align-items: center;
  padding: 0 16px;
  cursor: pointer;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}

.bio-form-drawer summary::-webkit-details-marker {
  display: none;
}

.bio-form-drawer summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1px solid rgba(220, 210, 178, 0.88);
  border-bottom: 1px solid rgba(220, 210, 178, 0.88);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 220ms ease;
}

.bio-form-drawer[open] summary::after {
  transform: rotate(225deg) translate(-2px, -1px);
}

.bio-form-drawer summary span {
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  line-height: 1.1;
}

.bio-form-drawer summary strong {
  max-width: 190px;
  color: rgba(231, 229, 221, 0.48);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-align: right;
  text-transform: uppercase;
}

.bio-drawer-panel {
  display: grid;
  gap: 14px;
  border-top: 1px solid rgba(231, 229, 221, 0.1);
  padding: 16px;
  animation: drawerReveal 220ms ease both;
}

.bio-option-list {
  display: grid;
  gap: 8px;
}

.bio-option-list label {
  position: relative;
  min-height: 54px;
  display: grid;
  align-items: center;
  border: 1px solid rgba(231, 229, 221, 0.12);
  border-radius: 8px;
  padding: 0 46px 0 14px;
  background: rgba(231, 229, 221, 0.045);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.bio-option-list label::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(220, 210, 178, 0.54);
  border-radius: 999px;
  transform: translateY(-50%);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.bio-option-list input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.bio-option-list span {
  color: rgba(231, 229, 221, 0.82);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  line-height: 1.36;
  text-transform: uppercase;
}

.bio-option-list label:hover {
  border-color: rgba(220, 210, 178, 0.38);
  background: rgba(231, 229, 221, 0.07);
  transform: translateY(-1px);
}

.bio-option-list label:has(input:checked) {
  border-color: rgba(220, 210, 178, 0.7);
  background: rgba(220, 210, 178, 0.13);
}

.bio-option-list label:has(input:checked)::after {
  border-color: var(--cream);
  background: var(--cream);
  box-shadow: 0 0 0 4px rgba(220, 210, 178, 0.12);
}

.bio-pill-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.bio-pill-grid label {
  min-height: 52px;
  border-color: rgba(231, 229, 221, 0.14);
  border-radius: 8px;
  background: rgba(231, 229, 221, 0.045);
  padding: 12px;
}

.bio-pill-grid span {
  color: rgba(231, 229, 221, 0.76);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.bio-pill-grid label:has(input:checked) {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--forest);
}

.bio-pill-grid label:has(input:checked) span {
  color: var(--forest);
}

.bio-date-field,
.bio-wide-label {
  margin-top: 4px;
}

.bio-privacy-note {
  display: grid;
  gap: 6px;
  border-top: 1px solid rgba(231, 229, 221, 0.16);
  padding-top: 14px;
  color: rgba(231, 229, 221, 0.58);
  font-size: 0.72rem;
  line-height: 1.55;
}

.bio-submit {
  overflow: hidden;
  width: 100%;
  min-height: 56px;
  border-color: rgba(220, 210, 178, 0.58);
  border-radius: 8px;
  color: #dcd2b2;
  background:
    linear-gradient(180deg, rgba(231, 229, 221, 0.1), rgba(220, 210, 178, 0.045)),
    rgba(20, 37, 31, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(231, 229, 221, 0.16),
    0 22px 56px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.bio-submit::before {
  content: "";
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(231, 229, 221, 0.055);
  border-radius: 7px;
  pointer-events: none;
}

.bio-submit::after {
  content: "";
  position: absolute;
  top: -48%;
  bottom: -48%;
  left: -32%;
  width: 24%;
  background: linear-gradient(90deg, transparent, rgba(231, 229, 221, 0.18), transparent);
  transform: skewX(-18deg);
  transition: left 820ms cubic-bezier(0.18, 0.76, 0.28, 1);
  pointer-events: none;
}

.bio-submit:hover {
  border-color: rgba(220, 210, 178, 0.82);
  color: var(--ivory);
  background:
    linear-gradient(180deg, rgba(231, 229, 221, 0.15), rgba(220, 210, 178, 0.06)),
    rgba(20, 37, 31, 0.42);
}

.bio-submit:hover::after {
  left: 108%;
}

.bio-waitlist-form .form-status {
  color: var(--cream);
}

.editorial-copy {
  max-width: 650px;
}

.story-intro-clean {
  display: block;
  padding-top: clamp(42px, 7vw, 92px);
  padding-bottom: clamp(38px, 7vw, 86px);
}

.story-intro-clean .editorial-copy {
  max-width: 760px;
  margin: 0 auto;
}

.story-intro-clean .editorial-copy h2 {
  max-width: 620px;
}

.story-intro-clean .editorial-copy p {
  max-width: 720px;
}

.editorial-visual {
  min-height: 620px;
  background:
    url("assets/brand/scalzi-logo-white.png") center / min(58%, 340px) no-repeat,
    linear-gradient(90deg, rgba(231, 229, 221, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(231, 229, 221, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, var(--forest), var(--forest) 52%, var(--olive));
  background-size: min(58%, 340px) auto, 54px 54px, 54px 54px, auto;
}

.story-lines {
  display: grid;
  gap: 0;
  background: var(--warm-white);
  padding-top: 0;
  padding-bottom: 0;
}

.story-line {
  display: grid;
  grid-template-columns: minmax(54px, 0.12fr) minmax(160px, 0.34fr) minmax(0, 0.54fr);
  gap: clamp(16px, 4vw, 44px);
  align-items: start;
  background: var(--warm-white);
  border-top: 1px solid var(--line);
  padding: clamp(26px, 5vw, 54px) clamp(18px, 5vw, 72px);
}

.story-line:last-child {
  border-bottom: 1px solid var(--line);
}

.story-line h2 {
  font-size: clamp(1.25rem, 2.6vw, 2rem);
  line-height: 1.12;
}

.story-line p {
  max-width: 660px;
  margin: 0;
}

.craft-focus-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1.05fr);
  gap: clamp(26px, 6vw, 86px);
  align-items: center;
  color: var(--ivory);
  background: var(--forest);
}

.craft-focus-copy {
  max-width: 580px;
}

.craft-focus-copy .eyebrow {
  color: var(--cream);
}

.craft-focus-copy h2 {
  margin: 0;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.2vw, 2.6rem);
  font-weight: 400;
  line-height: 1.08;
}

.craft-focus-copy p {
  color: rgba(231, 229, 221, 0.74);
  line-height: 1.76;
}

.craft-film {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  min-height: 420px;
  border: 1px solid rgba(220, 210, 178, 0.2);
  background: var(--black);
}

.craft-film video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
  opacity: 0.9;
  filter: saturate(0.92) contrast(1.04);
}

.craft-film::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 44%, rgba(20, 37, 31, 0.72));
}

.craft-film-autoplay::after {
  display: none;
}

.craft-film-caption {
  position: absolute;
  z-index: 1;
  right: clamp(18px, 4vw, 34px);
  bottom: clamp(18px, 4vw, 34px);
  left: clamp(18px, 4vw, 34px);
  max-width: 540px;
}

.craft-film-caption span {
  display: block;
  margin-bottom: 8px;
  color: var(--cream);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.craft-film-caption p {
  margin: 0;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  line-height: 1.18;
}

.quote-section {
  color: var(--ivory);
  background: var(--forest);
}

.quote-section blockquote {
  max-width: 980px;
}

.system-diagram {
  background: var(--ivory);
}

.diagram-visual {
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 520px;
  color: var(--ivory);
  background:
    url("assets/brand/scalzi-logo-white.png") center / min(42%, 220px) no-repeat,
    linear-gradient(135deg, rgba(20, 37, 31, 0.9), rgba(111, 115, 86, 0.54)),
    var(--forest);
}

.diagram-visual span {
  display: grid;
  place-items: center;
  width: min(72vw, 340px);
  min-height: 44px;
  border: 1px solid rgba(231, 229, 221, 0.2);
  color: rgba(231, 229, 221, 0.76);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
}

.component-card {
  min-height: 250px;
}

.family-card {
  background: var(--warm-white);
}

.family-card h2,
.family-card p,
.family-card span {
  display: block;
  padding-inline: 18px;
}

.family-card span {
  padding-bottom: 22px;
}

.product-catalog {
  background: var(--ivory);
}

.services-grid {
  background: var(--warm-white);
}

.bespoke-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  background: var(--ivory);
}

.atelier-stats {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.atelier-stats span {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  background: var(--warm-white);
  color: rgba(20, 37, 31, 0.68);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.atelier-stats strong {
  color: var(--muted-gold);
}

.process-cinema {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 6vw, 90px);
  padding: clamp(72px, 12vw, 150px) clamp(18px, 5vw, 72px);
  color: var(--ivory);
  background: var(--forest);
}

.process-sticky {
  position: sticky;
  top: 110px;
  align-self: start;
}

.process-sticky h2,
.process-panel h3,
.reference-card h3,
.study-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
}

.process-sticky h2 {
  font-size: clamp(1.55rem, 3.6vw, 2.8rem);
}

.process-sticky p,
.process-panel p,
.study-card p {
  color: rgba(231, 229, 221, 0.7);
  line-height: 1.7;
}

.process-track {
  display: grid;
  gap: 18px;
}

.process-panel {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: var(--forest);
  box-shadow: 0 30px 90px rgba(20, 37, 31, 0.28);
  transform-style: preserve-3d;
}

.process-panel img,
.process-panel video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
  filter: saturate(0.88) contrast(1.04);
  transition: transform 900ms ease, opacity 400ms ease;
}

.process-panel video {
  object-position: 58% 50%;
}

.process-panel:hover img,
.process-panel:hover video {
  opacity: 0.92;
  transform: scale(1.045);
}

.process-panel div {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: clamp(22px, 5vw, 44px);
  background: linear-gradient(180deg, transparent, rgba(20, 37, 31, 0.72));
}

.process-panel span {
  display: block;
  margin-bottom: 12px;
  color: var(--cream);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.process-panel h3 {
  font-size: clamp(1.45rem, 3.2vw, 2.45rem);
}

.references-section {
  background: var(--black);
  color: var(--ivory);
}

.references-section .section-heading p {
  color: rgba(231, 229, 221, 0.7);
}

.reference-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 34px 0 24px;
}

.reference-controls button {
  min-height: 40px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 10px 14px;
  color: rgba(231, 229, 221, 0.72);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reference-controls button.is-active,
.reference-controls button:hover {
  color: var(--black);
  background: var(--cream);
  border-color: var(--cream);
}

.reference-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 12px;
}

.reference-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  display: grid;
  align-items: end;
  border: 1px solid var(--line-dark);
  background: var(--forest);
  transition: opacity 220ms ease, transform 220ms ease;
}

.reference-card.is-hidden {
  display: none;
}

.reference-card.is-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 735px;
}

.reference-card.is-wide {
  grid-column: span 2;
}

.reference-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
  filter: saturate(0.9) contrast(1.04);
  transition: transform 900ms ease, opacity 300ms ease;
}

.reference-card:hover img {
  opacity: 0.96;
  transform: scale(1.055);
}

.reference-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 37, 31, 0.05), rgba(20, 37, 31, 0.78));
}

.reference-card div {
  position: relative;
  z-index: 1;
  padding: 18px;
}

.reference-card span {
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reference-card h3 {
  max-width: 360px;
  margin-top: 8px;
  font-size: clamp(1.4rem, 3vw, 2.7rem);
}

.reference-card button {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(231, 229, 221, 0.42);
  border-radius: 999px;
  color: transparent;
  background: rgba(20, 37, 31, 0.34);
  backdrop-filter: blur(10px);
}

.reference-card button::before,
.reference-card button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 1px;
  background: var(--ivory);
  transform: translate(-50%, -50%);
}

.reference-card button::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.everline-board {
  color: var(--ivory);
  background: var(--black);
}

.everline-board .section-heading p {
  color: rgba(231, 229, 221, 0.7);
}

.board-stage {
  position: relative;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: var(--forest);
  box-shadow: 0 35px 100px rgba(20, 37, 31, 0.38);
}

.board-stage img {
  display: block;
  width: 100%;
  height: auto;
}

.hotspot {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid var(--cream);
  border-radius: 999px;
  background: rgba(220, 210, 178, 0.26);
  box-shadow: 0 0 0 0 rgba(220, 210, 178, 0.42);
  animation: pulseHotspot 2.6s ease-out infinite;
}

.hotspot span {
  position: absolute;
  left: 20px;
  top: 50%;
  min-width: 90px;
  color: var(--cream);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateY(-50%);
}

.hotspot-one {
  left: 47%;
  top: 16%;
}

.hotspot-two {
  left: 71%;
  top: 31%;
}

.hotspot-three {
  left: 40%;
  top: 57%;
}

.everline-studies {
  display: grid;
  gap: 18px;
  color: var(--ivory);
  background: var(--forest);
}

.study-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  border: 1px solid var(--line-dark);
  padding: clamp(16px, 3vw, 34px);
  background: rgba(20, 37, 31, 0.28);
}

.study-card-reverse img {
  order: 2;
}

.study-card img {
  display: block;
  width: 100%;
  max-height: 680px;
  object-fit: cover;
}

.study-card h2 {
  font-size: clamp(1.45rem, 3.4vw, 2.75rem);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(20, 37, 31, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox figure {
  width: min(100%, 1180px);
  max-height: 88svh;
  margin: 0;
}

.lightbox img {
  display: block;
  width: 100%;
  max-height: 82svh;
  object-fit: contain;
}

.lightbox figcaption {
  margin-top: 12px;
  color: var(--ivory);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 101;
  min-width: 48px;
  height: 48px;
  border: 1px solid rgba(231, 229, 221, 0.36);
  border-radius: 999px;
  color: var(--ivory);
  background: transparent;
}

.questionnaire-section {
  background: var(--ivory);
}

.questionnaire-section .section-heading {
  max-width: 920px;
  margin: 0 auto 32px;
}

.questionnaire,
.contact-form {
  max-width: 860px;
  margin-inline: auto;
  padding: clamp(22px, 5vw, 46px);
}

.bespoke-configurator-form {
  display: grid;
  gap: 26px;
  max-width: 980px;
  margin-inline: auto;
  padding: clamp(22px, 5vw, 46px);
}

.config-progress {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.config-progress span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  background: rgba(231, 229, 221, 0.52);
  color: rgba(20, 37, 31, 0.54);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.config-progress span.is-active,
.config-progress span.is-complete {
  background: var(--forest);
  color: var(--ivory);
}

.config-step {
  display: none;
}

.config-step.is-active {
  display: block;
  animation: fadeUp 260ms ease both;
}

.config-step fieldset {
  display: grid;
  gap: 20px;
  margin: 0;
  border: 1px solid var(--line);
  padding: clamp(20px, 3vw, 34px);
  background: rgba(231, 229, 221, 0.72);
}

.config-step legend {
  padding: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 2.4vw, 2.2rem);
  line-height: 1.12;
}

.config-card-grid,
.config-pill-grid,
.config-choice-row {
  display: grid;
  gap: 10px;
}

.config-card-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.config-pill-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.config-choice-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.config-card-grid label,
.config-pill-grid label,
.config-choice-row label {
  position: relative;
  min-height: 58px;
  display: grid;
  gap: 8px;
  align-content: center;
  border: 1px solid var(--line);
  padding: 16px;
  background: rgba(231, 229, 221, 0.54);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.config-card-grid label {
  min-height: 176px;
  align-content: end;
}

.config-card-grid input,
.config-pill-grid input,
.config-choice-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.config-card-grid span,
.config-choice-row span {
  color: var(--forest);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  line-height: 1.12;
}

.config-pill-grid span {
  color: var(--forest);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.config-card-grid small {
  color: rgba(20, 37, 31, 0.62);
  line-height: 1.58;
}

.config-card-grid label:has(input:checked),
.config-pill-grid label:has(input:checked),
.config-choice-row label:has(input:checked) {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--ivory);
}

.config-card-grid label:has(input:checked) span,
.config-card-grid label:has(input:checked) small,
.config-pill-grid label:has(input:checked) span,
.config-choice-row label:has(input:checked) span {
  color: var(--ivory);
}

.config-card-grid label:hover,
.config-pill-grid label:hover,
.config-choice-row label:hover {
  transform: translateY(-2px);
}

.conditional-panel {
  border: 1px solid var(--line);
  padding: 18px;
  background: rgba(231, 229, 221, 0.46);
}

.config-exact-budget {
  max-width: 360px;
}

.config-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.config-contact label:last-child {
  grid-column: 1 / -1;
}

.config-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.config-actions .is-hidden {
  display: none;
}

.step-indicator {
  margin-bottom: 24px;
  color: var(--muted-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.q-step {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.q-step.is-active {
  display: grid;
  animation: fadeUp 260ms ease both;
}

.q-step legend {
  grid-column: 1 / -1;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 4vw, 2.8rem);
}

.q-step label:has(input[type="radio"]),
.q-step label:has(input[type="checkbox"]) {
  min-height: 58px;
  align-items: center;
  grid-template-columns: 18px 1fr;
  border: 1px solid var(--line);
  padding: 14px;
  background: rgba(231, 229, 221, 0.65);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.q-step label:has(input:checked) {
  border-color: var(--olive);
  background: rgba(220, 210, 178, 0.28);
}

.q-step label:has(input[type="radio"]):hover,
.q-step label:has(input[type="checkbox"]):hover {
  transform: translateY(-2px);
}

.choice-grid,
.guide-tabs,
.sizing-guides {
  grid-column: 1 / -1;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.choice-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 168px;
  align-content: start;
  gap: 12px;
  overflow: hidden;
}

.choice-card input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.choice-icon {
  position: relative;
  display: block;
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.choice-icon::before,
.choice-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.icon-bracelet {
  border-radius: 999px;
}

.icon-bracelet::before {
  inset: 13px 8px;
  border: 1px solid var(--olive);
  border-radius: 999px;
}

.icon-necklace {
  border-radius: 999px 999px 16px 16px;
}

.icon-necklace::before {
  left: 9px;
  right: 9px;
  top: 9px;
  height: 26px;
  border: 1px solid var(--olive);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.icon-necklace::after {
  left: 50%;
  bottom: 9px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--olive);
  transform: translateX(-50%) rotate(45deg);
}

.icon-ring {
  border-radius: 999px;
}

.icon-ring::before {
  left: 13px;
  right: 13px;
  bottom: 9px;
  height: 24px;
  border: 1px solid var(--olive);
  border-radius: 999px;
}

.icon-ring::after {
  left: 50%;
  top: 8px;
  width: 12px;
  height: 12px;
  border: 1px solid var(--olive);
  transform: translateX(-50%) rotate(45deg);
}

.icon-earrings::before,
.icon-earrings::after {
  top: 14px;
  width: 12px;
  height: 20px;
  border: 1px solid var(--olive);
  border-radius: 999px;
}

.icon-earrings::before {
  left: 13px;
}

.icon-earrings::after {
  right: 13px;
}

.icon-other::before {
  inset: 14px;
  border: 1px solid var(--olive);
  transform: rotate(45deg);
}

.icon-other::after {
  left: 50%;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--olive);
  transform: translate(-50%, -50%);
}

.choice-card span {
  display: block;
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.1;
}

.choice-card small {
  display: block;
  color: rgba(20, 37, 31, 0.62);
  line-height: 1.55;
}

.choice-card:has(input:checked) .choice-icon {
  border-color: var(--cream);
  background: rgba(220, 210, 178, 0.26);
  transform: translateY(-3px) rotate(-4deg);
}

.q-step-guide {
  grid-template-columns: 1fr;
}

.guide-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.guide-tabs button,
.ring-type-grid button,
.measure-actions button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest);
  background: transparent;
  padding: 10px 14px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.guide-tabs button:hover,
.guide-tabs button.is-active,
.ring-type-grid button:hover,
.ring-type-grid button.is-active,
.measure-actions button:hover {
  color: var(--forest);
  background: var(--cream);
  border-color: var(--cream);
  transform: translateY(-1px);
}

.sizing-guide {
  display: none;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: stretch;
  border: 1px solid var(--line);
  padding: clamp(16px, 3vw, 28px);
  background:
    linear-gradient(135deg, rgba(231, 229, 221, 0.88), rgba(220, 210, 178, 0.22)),
    var(--ivory);
}

.sizing-guide.is-active {
  display: grid;
  animation: fadeUp 260ms ease both;
}

.guide-copy {
  align-self: center;
}

.guide-copy span {
  color: var(--olive);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.guide-copy h3,
.measure-slide h4 {
  margin: 10px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 2.25rem);
  font-weight: 400;
  line-height: 1.08;
}

.guide-copy p,
.measure-slide p {
  color: rgba(20, 37, 31, 0.66);
  line-height: 1.72;
}

.hand-map {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(231, 229, 221, 0.72), rgba(220, 210, 178, 0.26)),
    rgba(231, 229, 221, 0.54);
}

.palm-shape {
  position: absolute;
  left: 50%;
  bottom: 32px;
  width: 180px;
  height: 170px;
  border: 1px solid rgba(20, 37, 31, 0.16);
  border-radius: 46% 44% 54% 48%;
  background: rgba(220, 210, 178, 0.38);
  transform: translateX(-50%) rotate(-2deg);
}

.finger-select {
  position: absolute;
  z-index: 1;
  width: 54px;
  min-height: 132px;
  border: 1px solid rgba(20, 37, 31, 0.18);
  border-radius: 999px 999px 28px 28px;
  color: rgba(20, 37, 31, 0.64);
  background: rgba(231, 229, 221, 0.72);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.finger-select:hover,
.finger-select.is-active {
  color: var(--forest);
  background: var(--cream);
  border-color: var(--cream);
  box-shadow: 0 0 42px rgba(220, 210, 178, 0.42);
}

.finger-select.thumb {
  left: 12%;
  top: 45%;
  min-height: 112px;
  transform: rotate(-44deg);
}

.finger-select.index {
  left: 31%;
  top: 16%;
}

.finger-select.middle {
  left: 46%;
  top: 8%;
  min-height: 156px;
}

.finger-select.ring {
  left: 61%;
  top: 14%;
  min-height: 144px;
}

.finger-select.pinky {
  left: 76%;
  top: 28%;
  min-height: 112px;
}

.ring-type-grid {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.range-control {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: rgba(20, 37, 31, 0.72);
}

.range-control strong {
  color: var(--olive);
  font-weight: 400;
}

.range-control input[type="range"] {
  grid-column: 1 / -1;
  accent-color: var(--olive);
  background: transparent;
  padding-inline: 0;
}

.wrist-guide-visual {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(231, 229, 221, 0.78), rgba(220, 210, 178, 0.28)),
    rgba(231, 229, 221, 0.54);
}

.wrist-outline {
  position: absolute;
  left: 50%;
  top: 52%;
  width: min(72%, 330px);
  aspect-ratio: 2.8 / 1;
  border: 18px solid rgba(20, 37, 31, 0.2);
  border-radius: 999px;
  transform: translate(-50%, -50%) rotate(-8deg);
}

.paper-strip {
  position: absolute;
  left: 16%;
  right: 16%;
  top: 50%;
  height: 14px;
  border: 1px solid var(--cream);
  background: rgba(220, 210, 178, 0.56);
  transform: rotate(-8deg);
  animation: wrapPaper 2.8s ease-in-out infinite;
}

.measure-carousel {
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  padding: 18px;
  background: rgba(231, 229, 221, 0.56);
}

.measure-slide {
  display: none;
}

.measure-slide.is-active {
  display: block;
  animation: fadeUp 240ms ease both;
}

.measure-slide span {
  color: var(--olive);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.measure-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.wide-label {
  grid-column: 1 / -1;
}

.q-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.is-hidden {
  display: none;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding: 54px clamp(18px, 5vw, 72px);
  color: var(--ivory);
  background: var(--forest);
}

.site-footer p {
  max-width: 410px;
  color: rgba(231, 229, 221, 0.62);
}

.mobile-sticky-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 30;
  display: none;
}

.mobile-sticky-cta .btn {
  width: 100%;
  box-shadow: 0 18px 50px rgba(20, 37, 31, 0.24);
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.992);
  transition: opacity 760ms cubic-bezier(0.18, 0.76, 0.28, 1), transform 760ms cubic-bezier(0.18, 0.76, 0.28, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.landing-gateway-card.reveal:nth-child(2),
.brand-brief-points.reveal,
.everline-teaser-copy.reveal,
.process-home-media.reveal {
  transition-delay: 80ms;
}

.landing-gateway-card.reveal:nth-child(3),
.system-home-list.reveal,
.gemstone-copy.reveal {
  transition-delay: 140ms;
}

.landing-gateway-card.reveal:nth-child(4) {
  transition-delay: 200ms;
}

.landing-gateway-card.reveal:nth-child(5) {
  transition-delay: 260ms;
}

@keyframes slowFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(-2vmin, 2vmin, 0) rotate(7deg);
  }
}

@keyframes heroCinematicIn {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes heroVideoDrift {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1.02);
  }
}

@keyframes loaderSandFill {
  from {
    clip-path: inset(62% 0 0 0);
    background-position: 0 0, 0 0, 0 0;
  }
  to {
    clip-path: inset(38% 0 0 0);
    background-position: 10px 18px, -8px 14px, 0 0;
  }
}

@keyframes loaderSandStream {
  0%,
  100% {
    opacity: 0.34;
    transform: translateY(-8%) scaleY(0.72);
  }
  45% {
    opacity: 0.94;
    transform: translateY(0) scaleY(1);
  }
}

@keyframes loaderBar {
  from {
    transform: translateX(-115%);
  }
  to {
    transform: translateX(250%);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes craftIntroExit {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes craftLineIn {
  0% {
    opacity: 0;
    transform: scale(0.982);
  }
  18%,
  82% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.01);
  }
}

@keyframes craftWordIn {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  24%,
  76% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-8px);
  }
}

@keyframes drawerReveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes journeyLineReveal {
  from {
    opacity: 0;
    transform: translate(-50%, 14px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes journeyTrace {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  18%,
  72% {
    opacity: 1;
  }
  100% {
    transform: translateY(620px);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .craft-intro {
    display: none;
  }
}

@keyframes wrapPaper {
  0%,
  100% {
    transform: rotate(-8deg) translateX(-8px);
  }
  50% {
    transform: rotate(-8deg) translateX(14px);
  }
}

@keyframes pulseHotspot {
  0% {
    box-shadow: 0 0 0 0 rgba(220, 210, 178, 0.42);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(220, 210, 178, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(220, 210, 178, 0);
  }
}

@media (min-width: 860px) {
  .header-cta {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }
}

@media (max-width: 859px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .hero,
  .page-hero {
    padding-inline: 18px;
  }

  .button-row .btn {
    width: 100%;
  }

  .split-section,
  .mechanism-section,
  .brand-brief,
  .landing-gateway-grid,
  .category-grid,
  .gemstone-section,
  .bespoke-home-section,
  .atelier-film-section,
  .process-home-section,
  .system-home-section,
  .appointment-section,
  .appointment-form,
  .everline-teaser,
  .configurator-shell,
  .system-diagram,
  .editorial-grid,
  .craft-focus-section,
  .waitlist-band,
  .site-footer,
  .bespoke-intro,
  .manifesto-section,
  .everline-positioning,
  .evolution-roadmap,
  .process-cinema,
  .study-card {
    grid-template-columns: 1fr;
  }

  .config-progress,
  .config-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-sticky {
    position: relative;
    top: auto;
  }

  .configurator-manifesto {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .config-option-row,
  .configuration-flow,
  .gem-editorial,
  .gemstone-section,
  .material-showcase {
    grid-template-columns: 1fr;
  }

  .craft-film {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

  .craft-film video {
    object-position: 64% 50%;
  }

  .bio-hero {
    min-height: 100svh;
    padding: 28px 18px 34px;
  }

  .bio-hero-emblem {
    width: clamp(76px, 18vw, 92px);
    margin-bottom: 2px;
  }

  .bio-hero::after {
    background: linear-gradient(180deg, rgba(231, 229, 221, 0.03), transparent 42%, rgba(0, 0, 0, 0.08));
  }

  .bio-brand {
    width: clamp(150px, 42vw, 190px);
  }

  .bio-hero-shell {
    gap: clamp(42px, 8vh, 68px);
    transform: translateY(-18px);
  }

  .bio-brand-group {
    gap: 18px;
  }

  .bio-hero-message {
    gap: 18px;
  }

  .bio-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(0.82rem, 4.1vw, 1.18rem);
    line-height: 1.24;
  }

  .bio-hero-copy p:not(.eyebrow) {
    max-width: 300px;
  }

  .bio-trust-row,
  .bio-form-section,
  .bio-form-grid {
    grid-template-columns: 1fr;
  }

  .bio-trust-row span {
    min-height: 48px;
    justify-content: center;
    border-right: 0;
    border-bottom: 1px solid rgba(231, 229, 221, 0.14);
  }

  .bio-trust-row span:last-child {
    border-bottom: 0;
  }

  .bio-scroll-cta {
    width: 100%;
  }

  .bio-form-section {
    padding: 68px 18px 84px;
  }

  .bio-form-intro {
    position: relative;
    top: auto;
    margin-inline: auto;
  }

  .bio-waitlist-form {
    width: min(100%, 560px);
    margin-inline: auto;
    padding: 20px;
  }

  .bio-form-drawer summary {
    grid-template-columns: 1fr 110px 14px;
    min-height: 58px;
    gap: 10px;
    padding: 0 14px;
  }

  .bio-form-drawer summary strong {
    max-width: 110px;
    font-size: 0.56rem;
  }

  .bio-drawer-panel {
    padding: 14px;
  }

  .bio-pill-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-brief-points {
    align-self: stretch;
  }

  .landing-gateway-section {
    min-height: auto;
  }

  .landing-gateway-card {
    min-height: 220px;
  }

  .process-home-media,
  .bespoke-home-media,
  .atelier-film-media,
  .everline-teaser-media {
    min-height: 380px;
  }

  .reference-mosaic {
    grid-template-columns: 1fr;
  }

  .reference-card,
  .reference-card.is-large,
  .reference-card.is-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 430px;
  }

  .study-card-reverse img {
    order: 0;
  }

  .sizing-guide {
    grid-template-columns: 1fr;
  }

  .hand-map {
    min-height: 330px;
  }

  .finger-select {
    width: 48px;
  }

  .immersive-copy h1 {
    font-size: clamp(1.6rem, 8vw, 2.85rem);
  }

  .product-strip {
    margin-inline: -18px;
    padding-inline: 18px;
    grid-auto-columns: 82%;
  }

  .story-line {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-inline: 18px;
  }

  .mobile-sticky-cta {
    display: block;
  }

  .site-footer {
    padding-bottom: 96px;
  }
}

@media (max-width: 640px) {
  .config-progress,
  .config-card-grid,
  .config-choice-row,
  .config-contact {
    grid-template-columns: 1fr;
  }

  .config-card-grid label {
    min-height: 132px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
