/* =============================================
   HONEDE — Global Styles v3
   Palette: Yellow-Gold / Steel Blue / #DBDBD5 Gray / Black
   Fonts: Space Grotesk (headings) + Inter (body) + DM Mono (data)
   ============================================= */

:root {
  /* Core palette */
  --gold:          #E8C43A;
  --gold-dark:     #C9A820;
  --gold-deep:     #9E8018;
  --gold-bg:       #FDF8E1;

  --steel:         #4A6FA5;
  --steel-light:   #6B8FBF;
  --steel-dark:    #2E4D7A;
  --steel-bg:      #EEF3FA;

  --gray:          #DBDBD5;
  --gray-dark:     #ADADAA;
  --gray-light:    #EFEFEC;
  --gray-surface:  #F5F5F2;

  --black:         #111110;
  --black-soft:    #2A2A28;
  --black-muted:   #5A5A57;
  --white:         #FAFAFA;

  /* Semantic aliases */
  --accent:        var(--gold);
  --accent-dark:   var(--gold-dark);
  --bg:            var(--white);
  --surface:       var(--gray-surface);
  --line:          rgba(17,17,16,0.1);
  --line-med:      rgba(17,17,16,0.18);
  --line-strong:   rgba(17,17,16,0.3);

  /* Typography */
  --font-head:   'Space Grotesk', system-ui, sans-serif;
  --font-body:   'Inter', system-ui, sans-serif;
  --font-mono:   'DM Mono', 'Courier New', monospace;

  /* Layout */
  --max-w:       1280px;
  --nav-h:       68px;
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   14px;
  --radius-xl:   20px;

  /* Motion */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows */
  --shadow-sm:   0 1px 4px rgba(17,17,16,0.07), 0 1px 2px rgba(17,17,16,0.05);
  --shadow-md:   0 4px 16px rgba(17,17,16,0.10), 0 2px 4px rgba(17,17,16,0.06);
  --shadow-lg:   0 12px 40px rgba(17,17,16,0.13), 0 4px 12px rgba(17,17,16,0.07);
  --shadow-gold: 0 4px 20px rgba(232,196,58,0.35);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--gold); color: var(--black); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
p { color: var(--black-muted); line-height: 1.7; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--black);
}
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); }
h4 { font-size: 1.05rem; letter-spacing: -0.01em; }
h5 { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }

em { font-style: normal; color: var(--gold-deep); }

.label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.label::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-steel {
  background: var(--steel);
  color: #fff;
  border-color: var(--steel);
}
.btn-steel:hover {
  background: var(--steel-dark);
  border-color: var(--steel-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(74,111,165,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--black);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
  background: var(--gold-bg);
}
.btn-outline {
  background: transparent;
  color: var(--black-muted);
  border-color: var(--gray);
}
.btn-outline:hover {
  border-color: var(--black);
  color: var(--black);
}
.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover {
  background: var(--black-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  z-index: 200;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(250,250,250,0.94);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--black);
}
/* Gold dot accent on logo */
.nav-logo::after {
  content: '.';
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--black-muted);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: right 0.25s var(--ease-out);
}
.nav-links a:hover,
.nav-links a.active { color: var(--black); }
.nav-links a:hover::after,
.nav-links a.active::after { right: 0; }
.nav-cart {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--gray-light);
  border: 1px solid var(--gray);
  border-radius: var(--radius-md);
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--black) !important;
  transition: background 0.2s, border-color 0.2s !important;
}
.nav-cart:hover {
  background: var(--gold-bg) !important;
  border-color: var(--gold) !important;
}
.nav-cart::after { display: none !important; }
.cart-count {
  background: var(--gold);
  color: var(--black);
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  font-family: var(--font-head);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--black);
}
.hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 4rem) 3rem 4rem max(2.5rem, 8vw);
  background: var(--black);
}
/* Gold accent bar on left edge */
.hero-left::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 4px;
  background: var(--gold);
  border-radius: 0 2px 2px 0;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) 0.1s forwards;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.hero-title {
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.22s forwards;
}
.hero-title em {
  color: var(--gold);
  font-style: italic;
  font-family: 'Space Grotesk', sans-serif;
}
.hero-sub {
  font-size: 1rem;
  color: rgba(250,250,250,0.6);
  max-width: 440px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.34s forwards;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.46s forwards;
}
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroImgIn 1.4s var(--ease-out) 0.2s both;
}
.hero-right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17,17,16,0.4) 0%, transparent 40%);
}
.hero-canvas-wrap {
  position: absolute;
  inset: 0;
  background: var(--black-soft);
}
#heroCanvas { width: 100%; height: 100%; display: block; }
.hero-stat-band {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(232,196,58,0.92);
  backdrop-filter: blur(8px);
  display: flex;
  opacity: 0;
  animation: fadeUp 0.7s ease 1s forwards;
}
.hero-stat {
  flex: 1;
  padding: 1rem 1.5rem;
  border-right: 1px solid rgba(17,17,16,0.15);
  text-align: center;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.hero-stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(17,17,16,0.6);
}

/* ── Sections ── */
.section {
  padding: 6rem max(2.5rem, 7vw);
}
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-header { margin-bottom: 3.5rem; }
.section-footer { margin-top: 3rem; display: flex; justify-content: center; }

/* Section color variants */
.section-gray { background: var(--gray-surface); }
.section-dark { background: var(--black); }
.section-gold { background: var(--gold); }
.section-steel { background: var(--steel-bg); }

/* ── Product Grid ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.product-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--gray);
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out), border-color 0.3s;
  color: inherit;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--gold);
}
.product-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--gray-light);
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,17,16,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.product-card:hover .product-overlay { opacity: 1; }
.product-overlay span {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--black);
  background: var(--gold);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-md);
}
.product-info { padding: 1.25rem 1.35rem 1.5rem; }
.product-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
  color: var(--black);
}
.product-desc {
  color: var(--black-muted);
  font-size: 0.82rem;
  margin-bottom: 0.85rem;
  line-height: 1.6;
}
.product-price {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--steel-dark);
}
.product-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold-bg);
  color: var(--gold-deep);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  border: 1px solid rgba(232,196,58,0.4);
  margin-bottom: 0.6rem;
}

/* ── How It Works ── */
.hiw-inner {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 6rem;
  align-items: start;
}
.hiw-text h2 { margin-bottom: 1.25rem; }
.hiw-text p { margin-bottom: 1rem; font-size: 0.95rem; max-width: 420px; }
.hiw-text .btn { margin-top: 1.25rem; }
.hiw-steps { display: flex; flex-direction: column; }
.hiw-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--gray);
  align-items: start;
}
.hiw-step:first-child { border-top: 1px solid var(--gray); }
.step-num {
  width: 36px; height: 36px;
  border-radius: var(--radius-md);
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.hiw-step h4 { margin-bottom: 0.35rem; font-size: 1rem; }
.hiw-step p { font-size: 0.85rem; color: var(--black-muted); line-height: 1.6; }

/* ── Collab traits ── */
.collab-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.collab-text h2 { margin-bottom: 1.25rem; }
.collab-text p { margin-bottom: 2rem; font-size: 0.95rem; }
.collab-traits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.trait {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray);
  background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s var(--ease-out);
}
.trait:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.trait-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-md);
  background: var(--gold-bg);
  border: 1.5px solid rgba(232,196,58,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  font-size: 1rem;
  color: var(--gold-deep);
}
.trait h4 { font-size: 0.9rem; margin-bottom: 0.35rem; }
.trait p { font-size: 0.78rem; color: var(--black-muted); line-height: 1.6; }

/* ── Brand Vision (dark band) ── */
.brand-vision {
  background: var(--black);
  color: var(--white);
  padding: 6rem max(2.5rem, 7vw);
}
.brand-vision .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.brand-vision .label { color: var(--gold); }
.brand-vision .label::before { background: var(--gold); }
.brand-vision h2 { color: var(--white); }
.brand-vision h2 em { color: var(--gold); font-style: italic; }
.brand-vision p { color: rgba(250,250,250,0.6); font-size: 0.95rem; }
.brand-vision .btn-ghost {
  color: var(--white);
  border-color: rgba(250,250,250,0.3);
  margin-top: 1.75rem;
}
.brand-vision .btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(232,196,58,0.08);
}
.brand-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid rgba(255,255,255,0.08);
}
.brand-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── Divider ── */
.divider {
  width: 40px; height: 3px;
  background: var(--gold);
  border-radius: 3px;
  margin: 1.25rem 0;
}

/* ── Footer ── */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 5rem max(2.5rem, 7vw) 2.5rem;
  border-top: 3px solid var(--gold);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1.5fr;
  gap: 3.5rem;
  max-width: var(--max-w);
  margin: 0 auto 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250,250,250,0.1);
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 0.85rem;
  color: var(--white);
}
.footer-logo::after { content: '.'; color: var(--gold); }
.footer-brand p { font-size: 0.82rem; color: rgba(250,250,250,0.4); max-width: 260px; }
.footer-nav h5 { color: var(--gold); margin-bottom: 1rem; }
.footer-contact h5 { color: var(--gold); margin-bottom: 0.75rem; margin-top: 1.5rem; }
.footer-nav ul li { margin-bottom: 0.55rem; }
.footer-nav a { font-size: 0.85rem; color: rgba(250,250,250,0.55); transition: color 0.2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-contact p { font-size: 0.82rem; color: rgba(250,250,250,0.55); line-height: 1.75; }
.footer-contact a { color: rgba(250,250,250,0.55); transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.72rem; color: rgba(250,250,250,0.25); }

/* ── Configurator ── */
.configurator {
  background: var(--gray-surface);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray);
  overflow: hidden;
}
.config-section {
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--gray);
}
.config-section:last-of-type { border-bottom: none; }
.config-section-title {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.config-section-title::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.config-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}
.config-row:last-child { margin-bottom: 0; }
.config-label { font-size: 0.85rem; color: var(--black-soft); font-weight: 500; flex: 1; }
.config-control { display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.config-input {
  width: 74px;
  padding: 0.4rem 0.55rem;
  background: var(--white);
  border: 1.5px solid var(--gray);
  border-radius: var(--radius-sm);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 500;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.config-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232,196,58,0.2);
}
.config-unit { font-size: 0.7rem; color: var(--gray-dark); font-family: var(--font-mono); width: 18px; }
.config-range {
  -webkit-appearance: none;
  appearance: none;
  width: 120px; height: 3px;
  background: var(--gray);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.config-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: 2px solid var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  transition: transform 0.15s var(--ease-spring);
}
.config-range::-webkit-slider-thumb:active { transform: scale(1.3); }
.locked-badge {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-dark);
  background: var(--gray-light);
  padding: 0.18rem 0.5rem;
  border-radius: 100px;
  border: 1px solid var(--gray);
  white-space: nowrap;
}

/* Price box */
.price-box {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin-top: 1.25rem;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.45rem 0;
  font-size: 0.82rem;
  color: rgba(250,250,250,0.45);
  border-bottom: 1px solid rgba(250,250,250,0.07);
}
.price-row:last-of-type { border-bottom: none; }
.price-row.total {
  color: var(--white);
  padding-top: 1rem;
  margin-top: 0.35rem;
  border-top: 1px solid rgba(250,250,250,0.15);
  border-bottom: none;
}
.price-row.total .price-val {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.price-val {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--white);
  font-weight: 500;
}
.price-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.35rem;
}
.price-actions .btn { flex: 1; border-radius: var(--radius-md); }

/* ── Page Hero ── */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) max(2.5rem, 7vw) 3.5rem;
  background: var(--black);
  border-bottom: 3px solid var(--gold);
}
.page-hero h1 { color: var(--white); margin-top: 0.5rem; font-size: clamp(2.5rem, 6vw, 4.5rem); }
.page-hero p { color: rgba(250,250,250,0.6); max-width: 520px; margin-top: 1rem; font-size: 0.95rem; }

/* ── Form ── */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black-muted);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--gray-surface);
  border: 1.5px solid var(--gray);
  border-radius: var(--radius-md);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232,196,58,0.15);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* Steel blue accent elements */
.steel-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--steel-bg);
  color: var(--steel-dark);
  border: 1px solid rgba(74,111,165,0.25);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes heroImgIn {
  from { opacity: 0; transform: scale(1.06); }
  to   { opacity: 1; transform: scale(1); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
  .hiw-inner { grid-template-columns: 1fr; gap: 3rem; }
  .collab-inner { grid-template-columns: 1fr; gap: 3rem; }
  .brand-vision .section-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { height: 55vw; min-height: 260px; }
  .hero-left { padding: calc(var(--nav-h) + 2.5rem) 1.75rem 2.5rem; }
  .hero-stat-band { display: none; }
  .product-grid { grid-template-columns: 1fr; }
  .collab-traits { grid-template-columns: 1fr; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--white);
    border-bottom: 3px solid var(--gold);
    flex-direction: column;
    padding: 2rem 2.5rem;
    gap: 1.5rem;
    z-index: 199;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .price-actions { flex-direction: column; }
  .section { padding: 4rem max(1.75rem, 5vw); }
}
@media (max-width: 480px) {
  .nav { padding: 0 1.5rem; }
  .hero-ctas { flex-direction: column; }
  h1 { font-size: clamp(2.2rem, 10vw, 3.5rem); }
}
