:root {
  --ink: #192537;
  --ink-deep: #101927;
  --accent: #b09e80;
  --paper: #ece9e1;
  --line-strong: rgba(176, 158, 128, 0.45);
  --success: #2d6a4f;
  --danger: #8f2d2d;
  --shadow-soft: 0 18px 40px rgba(16, 25, 39, 0.12);
  --shadow-strong: 0 32px 80px rgba(10, 14, 22, 0.26);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Work Sans", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(176, 158, 128, 0.24), transparent 24%),
    linear-gradient(180deg, #f2efe8 0%, #e7e2d8 100%);
  color: var(--ink);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(25, 37, 55, 0.02) 1px, transparent 1px),
    linear-gradient(rgba(25, 37, 55, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  opacity: 0.38;
}

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

img {
  display: block;
  max-width: 100%;
}

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

h1,
h2,
h3 {
  font-family: "Cinzel", serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(16, 25, 39, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 28px rgba(10, 14, 22, 0.22);
}

.nav-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-mark img {
  width: 118px;
  height: 92px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(176, 158, 128, 0.44);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #ece9e1;
  cursor: pointer;
}

.site-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-nav-toggle span + span {
  margin-top: 4px;
}

.site-nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.site-nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav a {
  position: relative;
  color: #ece9e1;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-return {
  padding: 9px 14px;
  border: 1px solid rgba(176, 158, 128, 0.6);
  border-radius: 999px;
}

.nav-return::after {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - 120px);
  padding: 40px 24px 28px;
  display: flex;
  align-items: stretch;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(16, 25, 39, 0.88), rgba(16, 25, 39, 0.52)),
    url("../assets/images/hero.webp") center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(176, 158, 128, 0.25), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.hero-grid {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
  gap: 18px;
  align-items: end;
}

.hero-copy,
.hero-aside {
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(176, 158, 128, 0.34);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(10px);
  animation: rise 800ms ease both;
}

.hero-copy {
  background: linear-gradient(180deg, rgba(16, 25, 39, 0.68), rgba(16, 25, 39, 0.56));
  color: #f7f3ea;
}

.hero-aside {
  background: linear-gradient(180deg, rgba(232, 228, 218, 0.92), rgba(232, 228, 218, 0.78));
  color: var(--ink);
  animation-delay: 160ms;
}

.eyebrow,
.section-kicker,
.rail-kicker,
.process-kicker,
.meta-label {
  margin: 0;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent);
}

.hero h1 {
  margin: 12px 0 12px;
  max-width: 10ch;
  font-size: clamp(2.3rem, 5.1vw, 4.5rem);
  line-height: 0.96;
}

.hero-lede {
  margin: 0;
  max-width: 40rem;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.75;
  color: rgba(247, 243, 234, 0.92);
}

.hero-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.coming-soon-main {
  min-height: 100svh;
}

.coming-soon-hero {
  min-height: calc(100svh - 120px);
  align-items: center;
}

.coming-soon-shell {
  position: relative;
  z-index: 1;
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  display: block;
  align-items: center;
}

.coming-soon-copy {
  padding: 36px;
  border-radius: 28px;
  border: 1px solid rgba(176, 158, 128, 0.34);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(10px);
  animation: rise 800ms ease both;
}

.coming-soon-copy {
  background: linear-gradient(180deg, rgba(16, 25, 39, 0.76), rgba(16, 25, 39, 0.6));
  color: #f7f3ea;
  text-align: center;
}

.coming-soon-copy h1 {
  margin: 14px 0 16px;
  max-width: 12ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.7rem, 5.8vw, 5rem);
  line-height: 0.98;
}

.coming-soon-copy .hero-lede {
  margin-left: auto;
  margin-right: auto;
  max-width: 34rem;
}

.coming-soon-copy .hero-actions {
  justify-content: center;
}

.coming-soon-actions {
  padding-top: 40px;
}

.coming-soon-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.button-secondary-light {
  color: #f7f3ea;
}

.coming-soon-main {
  min-height: 100svh;
}

.coming-soon-hero {
  min-height: calc(100svh - 120px);
  align-items: center;
}

.coming-soon-shell {
  position: relative;
  z-index: 1;
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  display: block;
  align-items: center;
}

.coming-soon-copy {
  padding: 36px;
  border-radius: 28px;
  border: 1px solid rgba(176, 158, 128, 0.34);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(10px);
  animation: rise 800ms ease both;
}

.coming-soon-copy {
  background: linear-gradient(180deg, rgba(16, 25, 39, 0.76), rgba(16, 25, 39, 0.6));
  color: #f7f3ea;
  text-align: center;
}

.coming-soon-copy h1 {
  margin: 14px 0 16px;
  max-width: 12ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.7rem, 5.8vw, 5rem);
  line-height: 0.98;
}

.coming-soon-copy .hero-lede {
  margin-left: auto;
  margin-right: auto;
  max-width: 34rem;
}

.coming-soon-copy .hero-actions {
  justify-content: center;
}

.coming-soon-actions {
  padding-top: 40px;
}

.coming-soon-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.button-secondary-light {
  color: #f7f3ea;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: var(--ink-deep);
  border-color: var(--accent);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #f7f3ea;
  border-color: rgba(247, 243, 234, 0.32);
}

.hero-list,
.rules-list,
.summary-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-list li,
.rules-list li,
.summary-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.6;
}

.hero-list li::before,
.rules-list li::before,
.summary-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 1px;
  background: var(--accent);
}

.page-section {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 56px 24px;
}

.section-intro {
  max-width: 760px;
}

.section-intro h2 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 3.5vw, 2.7rem);
  line-height: 1.08;
}

.section-title-compact {
  margin: 0 0 14px;
  font-size: clamp(1.25rem, 2.6vw, 1.95rem);
  line-height: 1.08;
}

.section-intro p {
  margin: 0;
  max-width: 44rem;
  line-height: 1.8;
}

.product-description-link {
  margin: 10px 0 0;
  line-height: 1.7;
  color: rgba(25, 37, 55, 0.74);
}

.product-description-link a {
  color: var(--ink-deep);
  text-decoration-color: rgba(176, 158, 128, 0.7);
  text-underline-offset: 0.18em;
}

.product-description-link a:hover,
.product-description-link a:focus-visible {
  color: var(--accent-deep);
}

.process-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-block {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(25, 37, 55, 0.94), rgba(25, 37, 55, 0.86));
  color: #ece9e1;
  border: 1px solid rgba(176, 158, 128, 0.24);
  box-shadow: var(--shadow-soft);
}

.process-block h3 {
  margin: 12px 0;
  color: #f6f0e4;
  font-size: 0.98rem;
  line-height: 1.25;
}

.process-block p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.62;
  color: rgba(236, 233, 225, 0.82);
}

.customizer-section {
  padding-top: 18px;
}

.customizer-intro {
  margin-bottom: 18px;
}

.customizer-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(0, 1.24fr);
  gap: 18px;
  align-items: start;
}

.product-rail {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 14px;
}

.product-preview,
.summary-panel,
.rules-panel,
.form-stage {
  border-radius: 28px;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.product-preview,
.summary-panel,
.rules-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.7));
  padding: 18px;
}

.product-preview h3,
.summary-heading h3 {
  margin: 8px 0 6px;
  font-size: 1.55rem;
}

.product-category,
.product-description {
  margin: 0;
  line-height: 1.7;
}

.product-category {
  color: rgba(25, 37, 55, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
}

.product-figure {
  margin: 14px 0 0;
  overflow: hidden;
  border-radius: 22px;
  background: var(--ink-deep);
  aspect-ratio: 4 / 3;
}

.product-figure.is-hidden {
  display: none;
}

.product-figure.product-figure-sale-item {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: auto;
  max-height: 360px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(25, 37, 55, 0.08);
}

.product-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 320ms ease;
}

#product-preview-image {
  object-fit: contain;
  transform: none;
  padding: 12px;
  background: rgba(255, 255, 255, 0.96);
}

.product-figure.product-figure-sale-item #product-preview-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 320px;
  padding: 0;
  background: transparent;
}

.product-preview:hover .product-figure img {
  transform: scale(1.06);
}

.product-preview:hover #product-preview-image {
  transform: none;
}

.quote-meta {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  align-items: center;
}

.meta-value {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(176, 158, 128, 0.12);
  border: 1px solid rgba(176, 158, 128, 0.3);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.summary-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
}

.summary-heading h3 {
  margin-bottom: 0;
}

.summary-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.summary-action-button {
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(176, 158, 128, 0.38);
  background: rgba(176, 158, 128, 0.08);
  color: var(--ink-deep);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.summary-action-button:hover,
.summary-action-button:focus-visible {
  outline: none;
  transform: translateY(-1px);
  background: rgba(176, 158, 128, 0.14);
  border-color: rgba(176, 158, 128, 0.62);
}

.summary-action-status {
  margin: 10px 0 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: rgba(25, 37, 55, 0.62);
}

.summary-list li,
.rules-list li {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(25, 37, 55, 0.08);
}

.summary-list li:last-child,
.rules-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.form-stage {
  background:
    radial-gradient(circle at top right, rgba(176, 158, 128, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.82));
  padding: 22px;
}

.customizer-form {
  display: grid;
  gap: 14px;
}

.form-section {
  padding-top: 14px;
  border-top: 1px solid rgba(25, 37, 55, 0.09);
}

.form-section-first {
  padding-top: 0;
  border-top: 0;
}

.section-copy {
  margin-bottom: 10px;
}

.section-copy h3 {
  margin: 6px 0 4px;
  font-size: 1.35rem;
}

.turnaround-note {
  margin: 6px 0 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(25, 37, 55, 0.68);
}

.dynamic-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
}

.product-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.product-card {
  appearance: none;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 1px solid rgba(25, 37, 55, 0.1);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 243, 236, 0.94));
  box-shadow: 0 12px 28px rgba(16, 25, 39, 0.08);
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(176, 158, 128, 0.58);
  box-shadow: 0 18px 34px rgba(16, 25, 39, 0.14);
  outline: none;
}

.product-card.is-selected {
  border-color: rgba(176, 158, 128, 0.88);
  background:
    linear-gradient(180deg, rgba(176, 158, 128, 0.14), rgba(255, 255, 255, 0.98)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 243, 236, 0.94));
  box-shadow: 0 0 0 4px rgba(176, 158, 128, 0.12), 0 18px 34px rgba(16, 25, 39, 0.12);
}

.product-card-media {
  height: 220px;
  flex: 0 0 220px;
  overflow: hidden;
  background: var(--ink-deep);
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.product-card:hover .product-card-media img,
.product-card:focus-visible .product-card-media img,
.product-card.is-selected .product-card-media img {
  transform: scale(1.05);
}

.product-card-body {
  padding: 14px 16px 16px;
  display: grid;
  gap: 8px;
  align-content: start;
  flex: 1;
}

.product-card-kicker {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(25, 37, 55, 0.58);
}

.product-card-title {
  margin: 0;
  font-size: 1.2rem;
  color: var(--ink-deep);
}

.product-card-copy {
  margin: 0;
  line-height: 1.62;
  color: rgba(25, 37, 55, 0.76);
}

.product-card-link {
  margin: -2px 0 0;
  line-height: 1.55;
  color: rgba(25, 37, 55, 0.68);
  font-size: 0.92rem;
}

.product-card-link a {
  color: var(--ink-deep);
  text-decoration-color: rgba(176, 158, 128, 0.7);
  text-underline-offset: 0.16em;
}

.product-card-link a:hover,
.product-card-link a:focus-visible {
  color: var(--accent-deep);
}

.product-card-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(176, 158, 128, 0.12);
  color: rgba(25, 37, 55, 0.82);
  border: 1px solid rgba(176, 158, 128, 0.28);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.field-group {
  display: grid;
  gap: 4px;
  align-content: start;
  align-self: start;
}

.field-group-compact {
  gap: 3px;
}

.field-group-wide {
  grid-column: 1 / -1;
}

.field-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(25, 37, 55, 0.82);
}

.field-label-mark {
  color: var(--danger);
  font-weight: 600;
}

.optional {
  color: rgba(25, 37, 55, 0.5);
  letter-spacing: 0.08em;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(25, 37, 55, 0.14);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border-radius: 16px;
  padding: 12px 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-height: 52px;
  line-height: 1.2;
  padding-right: 46px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M4.5 6.75L9 11.25L13.5 6.75' stroke='%23192537' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px 18px;
}

.swatch-select-native {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.field-group-compact select {
  min-height: 48px;
  padding-top: 8px;
  padding-bottom: 8px;
}

select::-ms-expand {
  display: none;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(176, 158, 128, 0.95);
  box-shadow: 0 0 0 4px rgba(176, 158, 128, 0.14);
}

select:focus {
  outline: none;
  border-color: rgba(176, 158, 128, 0.95);
  box-shadow: inset 0 0 0 1px rgba(176, 158, 128, 0.32);
}

select.select-is-muted {
  color: rgba(25, 37, 55, 0.54);
}

textarea {
  min-height: 116px;
  resize: vertical;
}

.field-help {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.42;
  color: rgba(25, 37, 55, 0.58);
}

.field-help-media {
  display: grid;
  gap: 6px;
  position: relative;
  margin: 0;
  padding: 8px;
  max-width: 260px;
  border: 1px solid rgba(25, 37, 55, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
}

.field-help-media-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  background: #fff;
}

.field-help-media-value {
  position: absolute;
  right: 20px;
  top: 12px;
  min-width: 64px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.92);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.16);
}

.field-help-media-caption {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(25, 37, 55, 0.64);
}

.field-notice {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border: 1px solid rgba(25, 37, 55, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
}

.field-notice-copy {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(25, 37, 55, 0.84);
}

.field-notice-copy a {
  color: rgb(176, 158, 128);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.field-notice-copy a:hover,
.field-notice-copy a:focus-visible {
  color: rgba(138, 118, 86, 1);
}

.field-notice-link {
  width: fit-content;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(176, 158, 128, 0.42);
}

.field-notice-link:hover,
.field-notice-link:focus-visible {
  color: rgb(176, 158, 128);
  border-bottom-color: rgba(176, 158, 128, 0.82);
}

.checkbox-group {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(25, 37, 55, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
}

.checkbox-option {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(25, 37, 55, 0.1);
  background: rgba(246, 243, 236, 0.45);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.checkbox-option:hover {
  border-color: rgba(176, 158, 128, 0.44);
  background: rgba(176, 158, 128, 0.08);
}

.checkbox-option:has(input:checked) {
  border-color: rgba(176, 158, 128, 0.82);
  background: rgba(176, 158, 128, 0.14);
  box-shadow: 0 0 0 2px rgba(176, 158, 128, 0.08);
}

.checkbox-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: rgb(176, 158, 128);
}

.checkbox-option span {
  font-size: 1rem;
  line-height: 1.35;
  color: var(--ink);
}

.checkbox-option-single {
  width: fit-content;
  min-width: 160px;
}

.checkbox-group-empty {
  display: grid;
  place-items: center;
  min-height: 52px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px dashed rgba(25, 37, 55, 0.14);
  background: rgba(246, 243, 236, 0.28);
  font-size: 0.98rem;
  line-height: 1.35;
  color: rgba(25, 37, 55, 0.62);
  text-align: center;
}

.checkbox-group-empty.is-hidden {
  display: none;
}

.checkbox-option.is-hidden {
  display: none;
}

.checked-note {
  margin: 2px 0 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--danger);
  font-weight: 600;
}

.font-preview {
  display: grid;
  gap: 6px;
  margin-top: 4px;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(176, 158, 128, 0.08);
  border: 1px solid rgba(176, 158, 128, 0.18);
}

.font-preview-kicker {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(25, 37, 55, 0.54);
}

.font-preview-sample {
  margin: 0;
  color: var(--ink-deep);
  line-height: 1.15;
  word-break: break-word;
}

.font-preview-caption {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.42;
  color: rgba(25, 37, 55, 0.68);
}

.font-preview-serif {
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
  letter-spacing: 0.04em;
}

.font-preview-times-roman {
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.35rem, 2.05vw, 1.85rem);
}

.font-preview-sans {
  font-family: "Work Sans", Arial, sans-serif;
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  font-weight: 500;
}

.font-preview-arial {
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  font-weight: 500;
}

.font-preview-cormorant {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.font-preview-marcellus {
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  letter-spacing: 0.08em;
}

.font-preview-josefin {
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: clamp(1.3rem, 1.95vw, 1.7rem);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.font-preview-script {
  font-family: "Allura", cursive;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
}

.font-preview-great-vibes {
  font-family: "Great Vibes", cursive;
  font-size: clamp(1.95rem, 2.9vw, 2.7rem);
  line-height: 1;
}

.font-preview-parisienne {
  font-family: "Parisienne", cursive;
  font-size: clamp(1.95rem, 2.9vw, 2.65rem);
  line-height: 1;
}

.font-preview-neutral {
  font-family: "Work Sans", Arial, sans-serif;
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  font-weight: 500;
  color: rgba(25, 37, 55, 0.86);
}

.field-group-conditional {
  padding: 0;
  border-radius: 18px;
}

.field-group-conditional.is-conditional-active {
  padding: 12px;
  background: rgba(143, 45, 45, 0.05);
  border: 1px solid rgba(143, 45, 45, 0.24);
}

.field-group-conditional.is-conditional-active .field-label {
  color: var(--danger);
}

.field-group-conditional.is-conditional-active input,
.field-group-conditional.is-conditional-active select,
.field-group-conditional.is-conditional-active textarea {
  border-color: rgba(143, 45, 45, 0.5);
  box-shadow: 0 0 0 3px rgba(143, 45, 45, 0.08);
}

.choice-visual {
  display: grid;
  gap: 10px;
  margin-top: 6px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(176, 158, 128, 0.08);
  border: 1px solid rgba(176, 158, 128, 0.18);
}

.choice-visual-frame {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(16, 25, 39, 0.08);
  aspect-ratio: 16 / 10;
}

[data-field-id="board_shape"] .choice-visual-frame {
  max-width: 120px;
  aspect-ratio: 3 / 2;
  background: transparent;
  padding: 8px;
  box-sizing: border-box;
}

[data-field-id="board_shape"] .choice-visual-image {
  object-fit: contain;
  background: transparent;
}

[data-field-id="board_shape"] .choice-visual {
  width: fit-content;
  gap: 6px;
  padding: 6px 8px 8px;
}

[data-field-id="table_type"] .choice-visual-frame {
  max-width: 140px;
  aspect-ratio: 4 / 3;
  background: transparent;
  padding: 4px;
  box-sizing: border-box;
}

[data-field-id="table_type"] .choice-visual-image {
  object-fit: contain;
  background: transparent;
}

[data-field-id="table_type"] .choice-visual {
  width: fit-content;
  gap: 4px;
  padding: 4px 6px 6px;
}

[data-field-id="orientation"] .choice-visual-frame {
  max-width: 110px;
  aspect-ratio: 4 / 3;
  background: transparent;
  padding: 8px;
  box-sizing: border-box;
}

[data-field-id="orientation"] .choice-visual-image {
  object-fit: contain;
  background: transparent;
}

[data-field-id="orientation"] .choice-visual {
  width: fit-content;
  gap: 6px;
  padding: 6px 8px 8px;
}

[data-field-id="material_direction"] .choice-visual-frame,
[data-field-id="wood_species"] .choice-visual-frame {
  max-width: 80px;
  aspect-ratio: 1 / 1;
  background: transparent;
  padding: 4px;
  box-sizing: border-box;
}

[data-field-id="material_direction"] .choice-visual-image,
[data-field-id="wood_species"] .choice-visual-image {
  object-fit: contain;
  background: transparent;
}

[data-field-id="material_direction"] .choice-visual,
[data-field-id="wood_species"] .choice-visual {
  width: fit-content;
  gap: 4px;
  padding: 4px 6px 6px;
}

.choice-visual-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

.choice-visual-caption {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(25, 37, 55, 0.72);
}

.choice-visual-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 10px;
}

.choice-visual-empty-state {
  display: grid;
  gap: 8px;
  padding: 22px 18px;
  border-radius: 16px;
  border: 1px dashed rgba(176, 158, 128, 0.42);
  background: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.choice-visual-empty-title,
.choice-visual-empty-copy {
  margin: 0;
}

.choice-visual-empty-title {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(25, 37, 55, 0.84);
}

.choice-visual-empty-copy {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(25, 37, 55, 0.68);
}

.choice-visual-card {
  display: grid;
  gap: 8px;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.choice-visual-card:hover,
.choice-visual-card:focus-visible {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(176, 158, 128, 0.38);
  box-shadow: 0 10px 18px rgba(16, 25, 39, 0.08);
  transform: translateY(-1px);
}

.choice-visual-card.is-selected {
  background: rgba(176, 158, 128, 0.12);
  border-color: rgba(176, 158, 128, 0.78);
  box-shadow: 0 0 0 2px rgba(176, 158, 128, 0.12);
}

.choice-visual-card-media {
  margin: 0;
  overflow: hidden;
  min-height: 170px;
  border-radius: 14px;
  border: 1px solid rgba(25, 37, 55, 0.12);
  background: rgba(16, 25, 39, 0.08);
}

.choice-visual-card-image {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}

.choice-visual-placeholder {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  border-radius: 14px;
  border: 1px solid rgba(25, 37, 55, 0.12);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0) 52%),
    linear-gradient(135deg, rgba(176, 158, 128, 0.55), rgba(25, 37, 55, 0.18));
}

.choice-visual-placeholder::after {
  content: "Image Coming Soon";
  position: absolute;
  inset: auto 12px 12px 12px;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: rgba(25, 37, 55, 0.72);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.choice-visual-card-title,
.choice-visual-card-subtitle {
  margin: 0;
}

.choice-visual-card-title {
  font-size: 0.84rem;
  line-height: 1.35;
  color: rgba(25, 37, 55, 0.84);
  font-weight: 600;
}

.choice-visual-card-subtitle {
  font-size: 0.74rem;
  line-height: 1.35;
  color: rgba(25, 37, 55, 0.62);
}

.choice-visual-card-price {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.35;
  color: rgba(25, 37, 55, 0.84);
  font-weight: 600;
}

.choice-visual.is-hidden {
  display: none;
}

.swatch-picker {
  display: grid;
  gap: 12px;
  margin-top: 4px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(176, 158, 128, 0.08);
  border: 1px solid rgba(176, 158, 128, 0.18);
}

.swatch-picker-title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
  color: rgba(25, 37, 55, 0.74);
}

.swatch-picker-current {
  color: var(--ink-deep);
  font-weight: 600;
}

.swatch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(64px, 1fr));
  gap: 10px;
}

.swatch-option {
  position: relative;
  min-height: 64px;
  border-radius: 12px;
  border: 1px solid rgba(25, 37, 55, 0.14);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.22), transparent 24%),
    radial-gradient(circle at 76% 24%, rgba(0, 0, 0, 0.16), transparent 28%),
    radial-gradient(circle at 58% 70%, rgba(255, 255, 255, 0.12), transparent 18%),
    linear-gradient(135deg, var(--swatch-accent, #d9d3c7), var(--swatch-base, #f4f0e7));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.swatch-option::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.22), transparent 24%),
    radial-gradient(circle at 76% 24%, rgba(0, 0, 0, 0.16), transparent 28%),
    radial-gradient(circle at 58% 70%, rgba(255, 255, 255, 0.12), transparent 18%);
  pointer-events: none;
}

.swatch-option-image {
  background: rgba(255, 255, 255, 0.92);
}

.swatch-option-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.swatch-option:hover,
.swatch-option:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(176, 158, 128, 0.66);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 12px 24px rgba(16, 25, 39, 0.12);
}

.swatch-option.is-selected {
  border-color: rgba(176, 158, 128, 0.98);
  box-shadow:
    0 0 0 3px rgba(176, 158, 128, 0.3),
    0 12px 24px rgba(16, 25, 39, 0.16);
}

.swatch-option-text {
  display: grid;
  place-items: center;
  padding: 8px;
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 0.64rem;
  line-height: 1.12;
  letter-spacing: 0.02em;
  font-weight: 500;
}

.field-group.is-hidden {
  display: none;
}

.form-section.is-hidden,
.form-actions.is-hidden,
.form-status.is-hidden {
  display: none;
}

.image-lightbox.is-hidden {
  display: none;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 28px;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 25, 39, 0.82);
  backdrop-filter: blur(6px);
}

.image-lightbox-dialog {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: min(92vw, 1100px);
  max-height: calc(100vh - 56px);
  display: grid;
  gap: 12px;
}

.image-lightbox-image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 120px);
  border-radius: 20px;
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.96);
}

.image-lightbox-close {
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.image-lightbox-close:hover,
.image-lightbox-close:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

body.lightbox-is-open {
  overflow: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.field-group.is-invalid input,
.field-group.is-invalid select,
.field-group.is-invalid textarea,
.field-group.is-invalid .checkbox-group {
  border-color: rgba(143, 45, 45, 0.72);
  box-shadow: 0 0 0 4px rgba(143, 45, 45, 0.08);
}

.field-error {
  min-height: 1.1em;
  font-size: 0.82rem;
  color: var(--danger);
}

.form-actions {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.microcopy {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(25, 37, 55, 0.64);
}

.form-status {
  margin: 0;
  min-height: 1.5em;
  line-height: 1.6;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--danger);
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  margin-top: 28px;
  background: var(--ink-deep);
  color: #ece9e1;
  padding: 22px 24px;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.footer-title {
  margin: 0 0 8px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
}

.footer-copy {
  margin: 0;
  max-width: 38rem;
  line-height: 1.7;
  color: rgba(236, 233, 225, 0.8);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  border-bottom: 1px solid transparent;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .hero-grid,
  .coming-soon-grid,
  .customizer-shell,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .product-rail {
    position: static;
  }
}

@media (max-width: 1180px) {
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nav-shell {
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 16px;
  }

  .brand-mark img {
    width: 96px;
    height: 74px;
  }

  .site-nav-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(16, 25, 39, 0.94);
    border: 1px solid rgba(176, 158, 128, 0.22);
    box-shadow: 0 14px 28px rgba(10, 14, 22, 0.18);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-return {
    padding: 10px 12px;
    border-radius: 12px;
  }

  .hero,
  .page-section,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-copy,
  .hero-aside,
  .coming-soon-copy,
  .form-stage,
  .product-preview,
  .summary-panel,
  .rules-panel,
  .process-block {
    padding: 16px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.3rem, 11vw, 4rem);
  }

  .hero-actions,
  .footer-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .customizer-form {
    gap: 12px;
  }

  .form-section {
    padding-top: 12px;
  }

  .section-copy {
    margin-bottom: 8px;
  }

  .dynamic-fields {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .product-card-grid {
    grid-template-columns: 1fr;
  }

  .product-figure {
    margin-top: 10px;
  }

  .field-help {
    font-size: 0.78rem;
    line-height: 1.36;
  }

  .field-help-media {
    gap: 4px;
    padding: 6px;
    max-width: 220px;
  }

  .font-preview {
    gap: 4px;
    margin-top: 2px;
    padding: 8px 10px;
  }

  .font-preview-caption {
    font-size: 0.76rem;
    line-height: 1.34;
  }

  .checkbox-group {
    padding: 10px;
  }

  .choice-visual {
    gap: 8px;
    margin-top: 4px;
    padding: 8px;
  }

  .choice-visual-caption {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .choice-visual-empty-state {
    gap: 6px;
    padding: 16px 14px;
  }
}
