:root {
  --ink: #f4efe4;
  --muted: #b7b0a0;
  --bg: #070907;
  --bg-2: #0e1410;
  --panel: #121a14;
  --green: #1a3d2a;
  --green-bright: #2d6a45;
  --gold: #d4b24a;
  --gold-soft: #c9a227;
  --gold-deep: #8a6f1f;
  --line: rgba(212, 178, 74, 0.22);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Cinzel", Georgia, serif;
  --script: "Great Vibes", cursive;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.gate-locked,
html.gate-locked body {
  overflow: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(45, 106, 69, 0.28), transparent 60%),
    radial-gradient(900px 500px at 10% 20%, rgba(212, 178, 74, 0.08), transparent 55%),
    linear-gradient(180deg, #050705 0%, var(--bg) 40%, #0a100c 100%);
  min-height: 100vh;
  line-height: 1.55;
  overflow-x: 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;
}

html.gate-locked .bg-grain,
html.gate-locked .site-header,
html.gate-locked .site-top,
html.gate-locked main,
html.gate-locked .site-footer {
  filter: blur(14px) saturate(0.75);
  pointer-events: none;
  user-select: none;
}

.site-gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 1.25rem;
  background: rgba(5, 7, 5, 0.55);
}

html.gate-locked .site-gate {
  display: grid;
}

html.gate-open .site-gate {
  display: none;
}

.site-gate-card {
  width: min(420px, 100%);
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(45, 106, 69, 0.18), transparent 50%),
    var(--panel);
  box-shadow: var(--shadow);
  text-align: center;
}

.site-gate-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid var(--gold-soft);
  margin: 0 auto 1rem;
}

.site-gate-card h2 {
  font-size: clamp(1.35rem, 4vw, 1.7rem);
}

.site-gate-lead {
  margin: 0.65rem 0 1.25rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.site-gate-form {
  display: grid;
  gap: 0.85rem;
  text-align: left;
}

.site-gate-form input {
  width: 100%;
  min-height: 48px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #0b100d;
  color: var(--ink);
  padding: 0.75rem 0.9rem;
  font: inherit;
  letter-spacing: 0.18em;
  text-align: center;
}

.site-gate-form input:focus {
  outline: 2px solid rgba(212, 178, 74, 0.45);
  outline-offset: 2px;
}

.site-gate-error {
  margin: 0;
  min-height: 1.3em;
  color: #e8a0a0;
  font-size: 0.9rem;
  text-align: center;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  color: #f0d878;
}

.bg-grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-header,
.site-top,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-top {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(700px 280px at 12% 40%, rgba(45, 106, 69, 0.22), transparent 60%),
    radial-gradient(500px 240px at 88% 20%, rgba(212, 178, 74, 0.08), transparent 55%),
    linear-gradient(180deg, #050705 0%, var(--bg) 100%);
}

.site-header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 0.28rem 1rem;
  min-height: 0;
  background: rgba(7, 9, 7, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}

.site-top > .site-header {
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
}

.brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem;
  color: inherit;
  line-height: 1;
}

.brand img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--gold-soft);
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 0.28rem;
}

.brand-script,
.hero-brand .script,
.footer-brand .brand-script {
  font-family: var(--script);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.brand-script {
  font-size: 0.82rem;
  line-height: 1;
}

.brand-block,
.hero-brand .block,
.footer-brand .brand-block {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  color: var(--ink);
}

.brand .brand-block {
  font-size: 0.5rem;
  letter-spacing: 0.12em;
  opacity: 0.9;
}

.nav-toggle {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  display: grid;
  place-content: center;
  gap: 4px;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 13px;
  height: 1.5px;
  background: var(--gold);
}

.site-nav {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 1rem;
  left: 1rem;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  color: var(--ink);
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-weight: 500;
}

.site-nav a:hover {
  background: rgba(212, 178, 74, 0.08);
  color: var(--gold);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #151208 !important;
  text-align: center;
  font-weight: 700 !important;
}

.page-main {
  padding-top: 0.5rem;
}

.page-main > .build,
.page-main > .quote {
  padding-top: 1.25rem;
}

.site-nav a[aria-current="page"] {
  color: var(--gold);
}

.hero {
  position: relative;
  overflow: hidden;
  background: transparent;
  border-bottom: none;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem 1.25rem;
  width: min(1100px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 1.35rem 0 1.6rem;
  text-align: left;
  animation: rise 0.7s var(--ease) both;
}

.hero-logo {
  flex-shrink: 0;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  border: 1.5px solid rgba(212, 178, 74, 0.5);
  box-shadow: 0 0 0 5px rgba(26, 61, 42, 0.3);
  margin: 0;
  animation: floatLogo 5s ease-in-out infinite;
}

.hero-copy {
  min-width: 0;
  flex: 1;
}

.hero-kicker {
  margin: 0 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  color: var(--gold);
}

.hero-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 4.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--text);
  max-width: 28rem;
}

.hero-lead {
  margin: 0.5rem 0 0.9rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
  max-width: 28rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.6rem;
}

.hero-actions .btn {
  min-height: 42px;
  padding: 0.65rem 1.15rem;
  font-size: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, #e2c56a, var(--gold-soft) 45%, var(--gold-deep));
  color: #161208;
  box-shadow: 0 10px 30px rgba(201, 162, 39, 0.28);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.03);
}

.btn-block {
  width: 100%;
}

.section-inner {
  width: min(1100px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 4.5rem 0;
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 600;
}

h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.7rem, 5vw, 2.6rem);
  letter-spacing: 0.04em;
  line-height: 1.15;
}

.section-lead {
  margin: 0.9rem 0 0;
  color: var(--muted);
  max-width: 38rem;
  font-size: 1.05rem;
}

.products {
  background:
    linear-gradient(180deg, transparent, rgba(26, 61, 42, 0.18)),
    var(--bg-2);
  border-block: 1px solid var(--line);
}

.product-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.product {
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(212, 178, 74, 0.05), transparent 50%), var(--panel);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.product:hover {
  border-color: rgba(212, 178, 74, 0.45);
  transform: translateY(-4px);
}

.product-icon {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.product h3 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
}

.product p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.75rem 0 1.25rem;
}

.filter {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
}

.filter.is-active,
.filter:hover {
  color: #161208;
  background: var(--gold);
  border-color: var(--gold);
}

.gallery-grid {
  display: grid;
  gap: 1.1rem;
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  transition: transform 0.35s var(--ease), opacity 0.3s;
  display: flex;
  flex-direction: column;
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  max-height: 460px;
  padding: 0.85rem;
  background:
    radial-gradient(circle at 50% 40%, rgba(45, 106, 69, 0.18), transparent 60%),
    #0a0f0c;
}

.gallery-item img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
  object-position: center;
}

.gallery-item--wide .gallery-media {
  max-height: 320px;
}

.gallery-item--wide img {
  max-height: 280px;
  width: 100%;
}

.gallery-item figcaption {
  padding: 1.1rem 1.2rem 1.35rem;
}

.gallery-item h3 {
  margin: 0 0 0.4rem;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.gallery-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.product .text-link {
  margin-top: 0.9rem;
}

.build {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(700px 360px at 90% 10%, rgba(45, 106, 69, 0.22), transparent 60%),
    var(--bg);
}

.build-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.75rem 0 1.25rem;
}

.build-tab {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.build-tab.is-active,
.build-tab:hover {
  color: #161208;
  background: var(--gold);
  border-color: var(--gold);
}

.build-panel[hidden] {
  display: none;
}

.builder {
  display: grid;
  gap: 1.5rem;
}

.builder-preview,
.builder-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 1.25rem;
}

.coin-stage {
  display: grid;
  place-items: center;
  min-height: 320px;
  background:
    radial-gradient(circle at 50% 40%, rgba(212, 178, 74, 0.12), transparent 55%),
    linear-gradient(180deg, #101610, #0a0e0b);
  border-radius: 14px;
}

.coin {
  width: min(240px, 70vw);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  transition: border-radius 0.35s var(--ease), background 0.35s, box-shadow 0.35s, width 0.35s;
  animation: coinSpinIn 0.8s var(--ease) both;
}

.coin[data-shape="rect"] {
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  width: min(200px, 58vw);
}

.coin[data-shape="shield"] {
  aspect-ratio: 3 / 3.5;
  width: min(210px, 60vw);
  border-radius: 40% 40% 18% 18% / 28% 28% 55% 55%;
}

.coin[data-finish="gold"] {
  background: radial-gradient(circle at 35% 25%, #f0d878, #c9a227 45%, #6f5814 100%);
  box-shadow: inset 0 0 0 4px rgba(255, 235, 170, 0.35), 0 18px 40px rgba(0, 0, 0, 0.45);
  color: #1a1405;
}

.coin[data-finish="silver"] {
  background: radial-gradient(circle at 35% 25%, #f2f4f7, #9aa3ad 48%, #4a525a 100%);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.35), 0 18px 40px rgba(0, 0, 0, 0.45);
  color: #15181c;
}

.coin[data-finish="black"] {
  background: radial-gradient(circle at 35% 25%, #3a3f44, #171a1d 55%, #050607 100%);
  box-shadow: inset 0 0 0 3px rgba(212, 178, 74, 0.55), 0 18px 40px rgba(0, 0, 0, 0.5);
  color: var(--gold);
}

.coin-face,
.patch-face,
.pin-face {
  text-align: center;
  padding: 1rem;
  display: grid;
  gap: 0.35rem;
  place-items: center;
}

.coin-star,
.patch-star,
.pin-star {
  font-size: 1.1rem;
  opacity: 0.85;
}

.coin-title,
.patch-title,
.pin-title {
  font-family: var(--display);
  font-size: clamp(0.85rem, 3.5vw, 1.05rem);
  letter-spacing: 0.08em;
  font-weight: 700;
}

.coin-sub,
.patch-sub,
.pin-sub {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.8;
}

.coin-banner,
.patch-banner {
  margin-top: 0.4rem;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  padding: 0.35rem 0.5rem;
  opacity: 0.9;
}

.patch {
  width: min(230px, 68vw);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  color: var(--gold);
  background:
    radial-gradient(circle at 40% 30%, #244e34, #123020 55%, #0a1a12 100%);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
  transition: border-radius 0.35s var(--ease), background 0.35s, box-shadow 0.35s, width 0.35s;
  animation: coinSpinIn 0.8s var(--ease) both;
}

.patch[data-shape="shield"] {
  aspect-ratio: 3 / 3.5;
  width: min(210px, 60vw);
  border-radius: 40% 40% 18% 18% / 28% 28% 55% 55%;
}

.patch[data-shape="rect"] {
  aspect-ratio: 5 / 4;
  width: min(240px, 72vw);
  border-radius: 14px;
}

.patch[data-shape="oval"] {
  aspect-ratio: 4 / 3;
  width: min(250px, 74vw);
  border-radius: 50%;
}

.patch[data-border="merrow"] {
  box-shadow:
    inset 0 0 0 8px rgba(212, 178, 74, 0.55),
    inset 0 0 0 11px rgba(10, 20, 14, 0.9),
    0 16px 36px rgba(0, 0, 0, 0.45);
}

.patch[data-border="hotcut"] {
  box-shadow:
    inset 0 0 0 3px rgba(212, 178, 74, 0.35),
    0 16px 36px rgba(0, 0, 0, 0.45);
}

.patch[data-border="laser"] {
  box-shadow:
    inset 0 0 0 2px rgba(240, 216, 120, 0.7),
    0 16px 36px rgba(0, 0, 0, 0.45);
}

.patch[data-style="pvc"] {
  background:
    radial-gradient(circle at 35% 25%, #2d6a45, #163828 50%, #0b1811 100%);
  color: #f0d878;
}

.patch[data-style="woven"] {
  background:
    repeating-linear-gradient(135deg, #1a3d2a 0 6px, #214a34 6px 12px);
  color: #f0d878;
}

.pin {
  width: min(150px, 46vw);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  transition: border-radius 0.35s var(--ease), background 0.35s, box-shadow 0.35s, width 0.35s;
  animation: coinSpinIn 0.8s var(--ease) both;
}

.pin[data-shape="shield"] {
  aspect-ratio: 3 / 3.6;
  width: min(140px, 42vw);
  border-radius: 40% 40% 18% 18% / 28% 28% 55% 55%;
}

.pin[data-shape="rect"] {
  aspect-ratio: 5 / 4;
  width: min(160px, 48vw);
  border-radius: 10px;
}

.pin[data-shape="custom"] {
  aspect-ratio: 1;
  width: min(150px, 46vw);
  border-radius: 30% 70% 55% 45% / 45% 35% 65% 55%;
}

.pin[data-finish="gold"] {
  background: radial-gradient(circle at 35% 25%, #f0d878, #c9a227 45%, #6f5814 100%);
  box-shadow: inset 0 0 0 3px rgba(255, 235, 170, 0.4), 0 14px 28px rgba(0, 0, 0, 0.45);
  color: #1a1405;
}

.pin[data-finish="silver"] {
  background: radial-gradient(circle at 35% 25%, #f2f4f7, #9aa3ad 48%, #4a525a 100%);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.35), 0 14px 28px rgba(0, 0, 0, 0.45);
  color: #15181c;
}

.pin[data-finish="black"] {
  background: radial-gradient(circle at 35% 25%, #3a3f44, #171a1d 55%, #050607 100%);
  box-shadow: inset 0 0 0 2px rgba(212, 178, 74, 0.55), 0 14px 28px rgba(0, 0, 0, 0.5);
  color: var(--gold);
}

.pin-title {
  font-size: clamp(0.7rem, 2.8vw, 0.85rem);
}

.pin-sub {
  font-size: 0.58rem;
}

.pin-clutch {
  position: absolute;
  bottom: -14px;
  width: 18px;
  height: 10px;
  border-radius: 3px;
  background: linear-gradient(180deg, #c9a227, #6f5814);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.35);
}

.preview-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.builder-form label,
.quote-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.builder-form input,
.builder-form select,
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #0b100d;
  color: var(--ink);
  padding: 0.75rem 0.9rem;
  font: inherit;
}

.quote-form textarea {
  min-height: 130px;
  resize: vertical;
}

.chip-set {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip-set legend {
  padding: 0 0.35rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.chip {
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  grid-template-columns: none !important;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.85rem;
}

.chip input {
  width: auto;
  min-height: auto;
}

.steps {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  counter-reset: none;
}

.steps li {
  padding: 1.25rem 1.2rem;
  border-left: 2px solid var(--gold-soft);
  background: linear-gradient(90deg, rgba(212, 178, 74, 0.07), transparent);
}

.step-num {
  display: block;
  font-family: var(--display);
  color: var(--gold);
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  margin-bottom: 0.45rem;
}

.steps h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.about {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}

.about-grid {
  display: grid;
  gap: 1.5rem;
}

.about p {
  color: var(--muted);
}

.text-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 600;
}

.about-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  display: grid;
  gap: 0.35rem;
  justify-items: start;
}

.about-card img {
  border-radius: 50%;
  border: 1px solid var(--gold-soft);
  margin-bottom: 0.5rem;
}

.about-card-title {
  margin: 0;
  font-family: var(--display);
  letter-spacing: 0.08em;
  color: var(--ink);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.field-hint {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

.quote-actions {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.quote-form {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(45, 106, 69, 0.12), transparent 45%), var(--panel);
}

.form-row {
  display: grid;
  gap: 1rem;
}

.file-label input {
  padding: 0.65rem;
}

.form-status {
  margin: 0;
  min-height: 1.4em;
  color: var(--gold);
  font-size: 0.95rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 1.25rem 3rem;
  background: #050705;
}

.footer-inner {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand img {
  border-radius: 50%;
  border: 1px solid var(--gold-soft);
}

.footer-brand .brand-script {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1;
}

.footer-brand .brand-block {
  margin: 0;
}

.footer-tag,
.footer-note {
  margin: 0;
  color: var(--muted);
}

.footer-note {
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatLogo {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes coinSpinIn {
  from {
    opacity: 0;
    transform: rotateY(28deg) scale(0.92);
  }
  to {
    opacity: 1;
    transform: rotateY(0) scale(1);
  }
}

@media (min-width: 760px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.15rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .site-nav a {
    padding: 0.35rem 0.65rem;
    font-size: 0.84rem;
  }

  .nav-cta {
    margin-left: 0.25rem;
    padding: 0.4rem 0.85rem !important;
    min-height: 0;
    font-size: 0.82rem !important;
  }

  .hero-content {
    gap: 1.5rem;
    padding: 1.5rem 0 1.75rem;
  }

  .hero-logo {
    width: 132px;
    height: 132px;
  }

  .hero-title {
    max-width: 22rem;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .builder {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1.4fr 0.8fr;
    align-items: center;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .section-inner {
    padding: 5.5rem 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}
