/* ═══════════════════════════════════════
   TOKENS
═══════════════════════════════════════ */
:root {
  --charcoal: #1A1A1A;
  --charcoal-2: #222222;
  --charcoal-3: #2a2a2a;
  --ivory: #F4F1EC;
  --ivory-2: #EDE9E2;
  --gold: #A08850;
  --gold-mid: #8C7540;
  --gold-lt: #B89E68;
  --gold-dim: rgba(160,136,80,0.15);
  --gold-line: rgba(160,136,80,0.25);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  --body: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  --nav-h: 84px;
  --max: 1600px;
  --radius: 2px;
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ivory);
  background: var(--charcoal);
  line-height: 1.6;
  letter-spacing: 0.05em;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--sans); }
img { display: block; width: 100%; object-fit: cover; }

/* ═══════════════════════════════════════
   LAYOUT
═══════════════════════════════════════ */
.container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 40px; }
.section { padding: 100px 0; }
.section-light { background: var(--ivory); color: var(--charcoal); }
.section-dark  { background: var(--charcoal); color: var(--ivory); }
.section-mid   { background: var(--charcoal-2); color: var(--ivory); }

/* ═══════════════════════════════════════
   TYPE SCALE
═══════════════════════════════════════ */
.eyebrow {
  font-family: var(--sans); font-weight: 400; font-size: 12px;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 16px;
}
.h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(40px, 4.5vw, 65px); line-height: 1.1; letter-spacing: -0.012em; }
.h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(32px, 3.4vw, 50px); line-height: 1.15; letter-spacing: -0.008em; }
.h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(24px, 2.4vw, 32px); line-height: 1.2; letter-spacing: -0.005em; }
.h4 { font-family: var(--serif); font-weight: 500; font-size: 24px; line-height: 1.3; }
.body-lg { font-size: 18px; font-weight: 300; line-height: 1.75; opacity: 0.75; }
.body-sm { font-size: 15px; font-weight: 300; line-height: 1.7; opacity: 0.65; }
.label { font-size: 12px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-family: var(--sans); font-weight: 400;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 16px 32px; border-radius: var(--radius);
  transition: all 0.2s ease; white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--ivory); }
.btn-primary:hover { background: var(--gold-mid); color: var(--ivory); box-shadow: 0 4px 16px rgba(160,136,80,0.25); }
.btn-outline { border: 1px solid rgba(244,241,236,0.4); color: var(--ivory); background: transparent; }
.btn-outline:hover { border-color: var(--gold); color: var(--ivory); background: rgba(160,136,80,0.15); }
.btn-outline-dark { border: 1px solid rgba(244,241,236,0.4); color: var(--ivory); background: rgba(26,26,26,0.6); }
.btn-outline-dark:hover { border-color: var(--gold); color: var(--ivory); background: rgba(26,26,26,0.8); }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(26,26,26,0.96);
  border-bottom-color: rgba(160,136,80,0.12);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 40px;
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 13px; font-weight: 400; letter-spacing: 0.05em;
  text-transform: uppercase; color: rgba(244,241,236,0.85);
  transition: color 0.2s;
}
.nav-links a:not(.btn):hover,
.nav-links a:not(.btn).active { color: var(--gold); }

/* Buttons inside nav must beat .nav-links a specificity */
.nav-links a.btn,
.nav-links a.btn-primary,
.nav-links a.btn-primary:hover,
.nav-links a.btn-primary.active { color: var(--ivory) !important; }

.nav-cta { margin-left: 24px; }

.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 32px; height: 32px; padding: 0;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ivory);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-logo {
  flex-shrink: 0;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 7px;
  transition: opacity 0.2s ease;
}
.nav-logo svg { display: block; height: auto; max-width: 100%; }
.nav-tagline {
  font-family: var(--sans);
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--gold); line-height: 1;
}
.nav.menu-open .nav-logo { opacity: 0; pointer-events: none; }

@media (max-width: 768px) {
  .nav-logo svg { width: 230px !important; }
  .nav-tagline { font-size: 9.5px; letter-spacing: 0.05em; }
}
@media (max-width: 480px) {
  .nav-logo svg { width: 200px !important; }
  .nav-tagline { font-size: 8.5px; letter-spacing: 0.05em; }
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  background: var(--charcoal);
  display: flex; flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--nav-h) + 55px);
  padding-bottom: 60px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(160,136,80,0.06) 0%, transparent 70%),
    linear-gradient(180deg, rgba(26,26,26,0) 0%, rgba(26,26,26,0.7) 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(160,136,80,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(160,136,80,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-video-frame {
  position: absolute;
  top: 50%; right: 40px; transform: translateY(-50%);
  width: min(42vw, 68vh, 600px);
  aspect-ratio: 1 / 1; height: auto;
  overflow: hidden; border-radius: 0;
  box-shadow: none; z-index: 1;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.hero-fade { display: none; }
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto; padding: 0 40px;
  width: 100%;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 32px;
}
.hero-kicker-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}
.hero-headline { max-width: 560px; margin-bottom: 24px; color: var(--ivory); }
.hero-sub {
  max-width: 520px; font-size: 24px; font-weight: 300;
  line-height: 1.7; color: rgba(244,241,236,0.9);
  margin-bottom: 48px;
}
.hero-stats {
  display: flex; gap: 48px; margin-top: 64px;
  padding-top: 32px; border-top: 1px solid rgba(160,136,80,0.15);
}
.hero-stat-num {
  font-family: var(--serif); font-size: 32px; font-weight: 300;
  color: var(--gold-lt); line-height: 1;
}
.hero-stat-label {
  font-size: 10px; font-weight: 400; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(244,241,236,0.4);
  margin-top: 6px;
}

/* ═══════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════ */
.hiw-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 64px;
}
.hiw-step {
  background: var(--ivory-2);
  padding: 52px 48px;
  position: relative;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.hiw-step:hover { border-bottom-color: var(--gold); background: var(--ivory); }
.hiw-step-num {
  font-family: var(--serif); font-size: 72px; font-weight: 300;
  color: rgba(160,136,80,0.18); line-height: 1;
  position: absolute; top: 24px; right: 32px;
}
.hiw-icon { width: 48px; height: 48px; margin-bottom: 28px; }
.hiw-title {
  font-family: var(--serif); font-size: 28px; font-weight: 300;
  color: var(--charcoal); margin-bottom: 12px; letter-spacing: 0.02em; line-height: 1.2;
}
.hiw-desc {
  font-size: 13px; font-weight: 300; line-height: 1.75;
  color: rgba(26,26,26,0.55);
}
.hiw-connector {
  position: absolute; top: 50%; right: -1px;
  width: 2px; height: 32px; background: var(--gold-line);
  transform: translateY(-50%);
}

/* ═══════════════════════════════════════
   PRODUCTS GRID
═══════════════════════════════════════ */
.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 64px;
}
.product-card {
  background: var(--charcoal-2);
  cursor: pointer;
  transition: background 0.2s;
  position: relative; overflow: hidden;
}
.product-card:hover { background: var(--charcoal-3); }
.product-card:hover .product-img-overlay { opacity: 1; }
.product-img {
  aspect-ratio: 900 / 790;
  background: var(--charcoal-3);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  border: 1px solid rgba(160,136,80,0.18);
}
.product-card:hover .product-img { border-color: rgba(160,136,80,0.35); }
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.5s ease;
}
.product-card:hover .product-img img { transform: scale(1.04); }
.product-img-overlay {
  position: absolute; inset: 0;
  background: rgba(160,136,80,0.08);
  opacity: 0; transition: opacity 0.3s;
}
.product-info { padding: 24px; }
.product-name {
  font-family: var(--serif); font-size: 20px; font-weight: 300;
  color: var(--ivory); margin-bottom: 6px; letter-spacing: 0.02em;
}
.product-desc {
  font-size: 11px; font-weight: 300; letter-spacing: 0.2em;
  color: rgba(244,241,236,0.45); text-transform: uppercase;
}
.product-tag {
  display: inline-block; margin-top: 16px;
  padding: 5px 12px; border: 1px solid var(--gold-line);
  font-size: 9px; font-weight: 400; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
}

/* ═══════════════════════════════════════
   WHY LAYER CO
═══════════════════════════════════════ */
.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; margin-top: 64px;
}
.why-card {
  padding: 52px 48px;
  background: var(--ivory-2);
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.why-card:hover { border-bottom-color: var(--gold); background: var(--ivory); }
.why-icon { margin-bottom: 24px; }
.why-headline {
  font-family: var(--serif); font-size: 28px; font-weight: 300;
  color: var(--charcoal); margin-bottom: 12px; line-height: 1.2;
}
.why-body { font-size: 13px; font-weight: 300; color: rgba(26,26,26,0.55); line-height: 1.75; }

/* ═══════════════════════════════════════
   PLATING BEFORE/AFTER
═══════════════════════════════════════ */
.plating-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; margin-top: 64px;
}
.plating-panel {
  aspect-ratio: 4/3;
  position: relative; overflow: hidden;
  background: var(--charcoal-3);
}
.plating-panel img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.plating-panel::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.plating-label {
  position: absolute; top: 24px; left: 24px; z-index: 2;
  display: inline-flex; align-items: center;
  padding: 8px 16px;
  background: rgba(26,26,26,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(160,136,80,0.4);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 10px; font-weight: 400; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
}
.plating-caption {
  position: absolute; left: 24px; right: 24px; bottom: 24px; z-index: 2;
  font-family: var(--serif); font-size: 18px; font-weight: 300;
  color: var(--ivory); font-style: italic;
}
.plating-caption-sub {
  display: block;
  font-family: var(--sans);
  font-size: 11px; font-style: normal;
  font-weight: 300; letter-spacing: 0.05em;
  color: rgba(244,241,236,0.6);
  margin-top: 6px;
}

/* ═══════════════════════════════════════
   TRUST
═══════════════════════════════════════ */
.trust-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap; margin-top: 48px;
  border: 1px solid rgba(26,26,26,0.07);
}
.trust-item {
  flex: 1; min-width: 160px;
  padding: 32px 24px; text-align: center;
  border-right: 1px solid rgba(26,26,26,0.07);
  transition: background 0.2s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(160,136,80,0.04); }
.trust-item-num {
  font-family: var(--serif); font-size: 36px; font-weight: 300;
  color: var(--gold); line-height: 1; margin-bottom: 6px;
}
.trust-item-label { font-size: 10px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(26,26,26,0.4); }
.testimonials {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.testimonial-card {
  padding: 36px;
  background: var(--ivory);
  border-top: 2px solid var(--gold);
}
.testimonial-quote {
  font-family: var(--serif); font-size: 17px; font-weight: 300;
  font-style: italic; color: var(--charcoal); line-height: 1.65; margin-bottom: 24px;
}
.testimonial-author { font-size: 11px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.testimonial-place { font-size: 11px; font-weight: 300; color: rgba(26,26,26,0.45); margin-top: 2px; }

/* ═══════════════════════════════════════
   ORDER INFO BANNER
═══════════════════════════════════════ */
.order-info-banner {
  background: var(--ivory-2);
  color: var(--charcoal);
  padding: 56px 40px;
}
.order-info-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}
.order-info-block { flex: 1; }
.order-info-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-mid);
  display: block;
  margin-bottom: 12px;
}
.order-info-amount {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 600;
  line-height: 1;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}
.order-info-sub {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: rgba(26,26,26,0.55);
  margin-top: 6px;
}
.order-info-divider {
  width: 1px;
  height: 80px;
  background: rgba(26,26,26,0.18);
  flex-shrink: 0;
}
.order-info-text {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 300;
  line-height: 1.55;
  color: var(--charcoal);
}
.order-info-text em {
  font-style: italic;
  color: var(--gold-mid);
}
@media (max-width: 600px) {
  .order-info-banner { padding: 48px 24px; }
  .order-info-inner { flex-direction: column; gap: 36px; align-items: flex-start; }
  .order-info-divider { width: 48px; height: 1px; }
}

/* ═══════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════ */
.cta-section {
  background: var(--charcoal);
  padding: 120px 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(160,136,80,0.07) 0%, transparent 70%);
}
.cta-inner {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 720px; margin: 0 auto; padding: 0 40px;
}
.cta-headline { color: var(--ivory); margin-bottom: 20px; }
.cta-sub { color: rgba(244,241,236,0.55); margin-bottom: 48px; font-size: 15px; line-height: 1.75; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: #111;
  padding: 64px 0 40px;
  border-top: 1px solid rgba(160,136,80,0.1);
}
.footer-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-logo-mark { display: block; height: auto; }
.footer-brand-desc { font-size: 14px; font-weight: 300; color: rgba(244,241,236,0.5); line-height: 1.65; margin-top: 12px; max-width: 280px; }
.footer-col-title { font-size: 11px; font-weight: 400; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-links a { font-size: 15px; font-weight: 300; letter-spacing: 0.05em; color: rgba(244,241,236,0.55); transition: color 0.2s; }
.footer-links a:hover { color: var(--ivory); }
.footer-bottom {
  max-width: var(--max); margin: 48px auto 0; padding: 24px 40px 0;
  border-top: 1px solid rgba(244,241,236,0.06);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-size: 11px; font-weight: 300; letter-spacing: 0.05em; color: rgba(244,241,236,0.25); }

/* ═══════════════════════════════════════
   PRODUCTS PAGE
═══════════════════════════════════════ */
.products-page-hero {
  padding: 160px 0 80px;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(160,136,80,0.1);
}
.products-full-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 40px;
  display: flex; flex-direction: column;
  gap: 32px;
}
.product-detail-card {
  background: var(--charcoal-2);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  padding: 0; cursor: pointer;
  transition: background 0.2s;
  overflow: hidden;
  border: 1px solid rgba(160,136,80,0.12);
}
.product-detail-card:hover { background: var(--charcoal-3); }
.product-detail-img {
  background: var(--charcoal-3);
  position: relative; overflow: hidden;
  min-height: 380px;
}
.product-detail-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.5s ease;
}
.product-detail-card:hover .product-detail-img img { transform: scale(1.04); }
.product-detail-info {
  padding: 48px;
  display: flex; flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.product-detail-name { font-family: var(--serif); font-size: 32px; font-weight: 500; color: var(--ivory); margin-bottom: 8px; letter-spacing: -0.005em; }
.product-detail-tagline { font-size: 13px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.product-detail-desc { font-size: 16px; font-weight: 300; line-height: 1.85; color: rgba(244,241,236,0.85); margin-bottom: 28px; }
.product-spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.product-spec { padding: 18px 20px; border: 1px solid rgba(160,136,80,0.18); }
.product-spec-key { font-size: 12px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(244,241,236,0.55); margin-bottom: 8px; }
.product-spec-val { font-size: 16px; font-weight: 300; color: var(--ivory); letter-spacing: 0.05em; }

/* ═══════════════════════════════════════
   HOW IT WORKS PAGE
═══════════════════════════════════════ */
.hiw-page-steps { display: flex; flex-direction: column; gap: 2px; margin-top: 64px; }
.hiw-page-step {
  display: grid; grid-template-columns: 80px 1fr 1fr;
  gap: 48px; align-items: center;
  background: var(--charcoal-2); padding: 52px 48px;
  transition: background 0.2s;
}
.hiw-page-step:hover { background: var(--charcoal-3); }
.hiw-page-num { font-family: var(--serif); font-size: 64px; font-weight: 300; color: rgba(160,136,80,0.2); line-height: 1; }
.hiw-page-title { font-family: var(--serif); font-size: 32px; font-weight: 300; color: var(--ivory); margin-bottom: 12px; }
.hiw-page-desc { font-size: 14px; font-weight: 300; line-height: 1.75; color: rgba(244,241,236,0.55); }
.hiw-page-detail { font-size: 12px; font-weight: 300; color: rgba(244,241,236,0.35); line-height: 1.8; }

/* ═══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; padding: 100px 0;
}
.about-problem {
  background: var(--charcoal-2);
  padding: 52px 48px;
  border-left: 3px solid rgba(160,136,80,0.15);
}
.about-solution {
  background: var(--charcoal-2);
  padding: 52px 48px;
  border-left: 3px solid var(--gold);
}
.about-values { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 64px; }
.about-value {
  padding: 40px 36px;
  background: var(--charcoal-2);
}
.about-value-title { font-family: var(--serif); font-size: 22px; font-weight: 300; color: var(--ivory); margin-bottom: 10px; }
.about-value-body { font-size: 12px; font-weight: 300; color: rgba(244,241,236,0.45); line-height: 1.75; }

/* ═══════════════════════════════════════
   CONTACT / FORM
═══════════════════════════════════════ */
.contact-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.contact-form-wrap { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 9px; font-weight: 400; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }
.form-input {
  background: var(--charcoal-2); border: 1px solid rgba(160,136,80,0.15);
  padding: 16px 20px; font-family: var(--sans); font-size: 13px;
  font-weight: 300; color: var(--ivory); border-radius: var(--radius);
  transition: border-color 0.2s; outline: none;
  width: 100%;
}
.form-input:focus { border-color: rgba(160,136,80,0.5); }
.form-input::placeholder { color: rgba(244,241,236,0.25); }
select.form-input option { background: var(--charcoal); }
.form-textarea { min-height: 120px; resize: vertical; }
.required-mark { color: #E27D6B; margin-left: 2px; font-weight: 400; }
.form-error {
  display: none;
  color: #E27D6B;
  font-size: 11px;
  letter-spacing: 0.05em;
  margin-top: 2px;
  font-weight: 400;
}
.form-group.has-error .form-error { display: block; }
.form-group.has-error .form-input { border-color: rgba(226,125,107,0.55); }
.form-result {
  display: none;
  padding: 16px 20px;
  font-size: 13px;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  border: 1px solid;
}
.form-result.show { display: block; }
.form-result.success { background: rgba(160,136,80,0.12); border-color: var(--gold); color: var(--ivory); }
.form-result.error   { background: rgba(226,125,107,0.10); border-color: rgba(226,125,107,0.55); color: #E27D6B; }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info-label { font-size: 9px; font-weight: 400; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.contact-info-val { font-size: 14px; font-weight: 300; color: rgba(244,241,236,0.7); }

/* ═══════════════════════════════════════
   LEGAL / POLICY PAGES
═══════════════════════════════════════ */
.legal-page {
  background: var(--charcoal);
  color: var(--ivory);
  padding: 160px 0 100px;
  min-height: 60vh;
}
.legal-content {
  max-width: 860px;
  margin: 48px auto 0;
  padding: 0 40px;
}
.legal-content h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: 28px; line-height: 1.3;
  color: var(--gold-lt);
  margin-top: 48px; margin-bottom: 16px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 20px; color: var(--ivory);
  margin-top: 32px; margin-bottom: 12px;
}
.legal-content p { margin-bottom: 16px; }
.legal-content ul, .legal-content ol {
  margin: 0 0 16px 24px;
  color: rgba(244,241,236,0.9);
  font-size: 17px; font-weight: 300;
  line-height: 1.85; letter-spacing: 0.05em;
}
.legal-content li { margin-bottom: 8px; }
.legal-content a { color: var(--gold-lt); border-bottom: 1px solid rgba(160,136,80,0.3); }
.legal-content a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.legal-updated { font-size: 12px; color: rgba(244,241,236,0.4); margin-top: 8px; letter-spacing: 0.1em; text-transform: uppercase; }

/* FAQs accordion */
.faq-list { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.faq-item {
  background: var(--charcoal-2);
  border: 1px solid rgba(160,136,80,0.12);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.faq-item summary {
  cursor: pointer; list-style: none;
  font-family: var(--serif); font-size: 20px;
  font-weight: 500; color: var(--ivory);
  position: relative; padding-right: 32px;
}
.faq-item summary::after {
  content: '+'; position: absolute; right: 0; top: 0;
  font-size: 24px; color: var(--gold); transition: transform 0.2s;
  font-family: var(--sans); font-weight: 300;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin-top: 16px; color: rgba(244,241,236,0.85); }

/* ═══════════════════════════════════════
   SECTION DIVIDER
═══════════════════════════════════════ */
.divider { width: 100%; height: 1px; background: rgba(160,136,80,0.1); }
.gold-rule { display: flex; align-items: center; gap: 16px; margin-bottom: 48px; }
.gold-rule-line { flex: 1; height: 1px; background: rgba(160,136,80,0.15); }
.gold-rule-diamond { width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }

/* ═══════════════════════════════════════
   PARAGRAPH / BODY TEXT
═══════════════════════════════════════ */
p,
.body-lg, .body-sm,
.hero-sub,
.hiw-desc, .hiw-page-desc, .hiw-page-detail,
.product-detail-desc,
.why-body, .about-value-body,
.cta-sub, .footer-brand-desc,
.plating-caption, .plating-caption-sub,
.testimonial-place,
.legal-content p {
  font-family: var(--body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  letter-spacing: 0.05em;
}

.hero-sub,
.product-detail-desc,
.about-value-body,
.cta-sub,
.footer-brand-desc,
.hiw-page-desc { color: rgba(244, 241, 236, 0.9); }
.body-lg { opacity: 0.9; }
.body-sm { opacity: 0.85; }
.hiw-page-detail { color: rgba(244, 241, 236, 0.75); }
.plating-caption-sub { color: rgba(244, 241, 236, 0.8); }
.why-body, .hiw-desc { color: rgba(26, 26, 26, 0.8); }
.testimonial-place { color: rgba(26, 26, 26, 0.65); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (min-width: 1025px) and (max-width: 1440px) {
  .hero-video-frame { width: min(38vw, 64vh, 520px); }
  .hero-headline { max-width: 500px; }
  .hero-sub { max-width: 460px; }
  .hero { padding-top: calc(var(--nav-h) + 40px); padding-bottom: 48px; }
  .section { padding: 80px 0; }
  .hero-stats { gap: 32px; margin-top: 48px; padding-top: 24px; }
  .hero-stat-num { font-size: 28px; }
  .products-full-grid { padding: 64px 40px; }
  .product-detail-info { padding: 40px; }
}

@media (max-width: 1024px) {
  .container, .container-sm { padding: 0 32px; }
  .nav-inner { padding: 0 32px; }
  .section { padding: 80px 0; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-full-grid { padding: 64px 32px; }
  .product-detail-info { padding: 36px 32px; }
  .hiw-steps { grid-template-columns: 1fr; }
  .hiw-step { padding: 40px 32px; }
  .why-card { padding: 40px 32px; }
  .hero-video-frame {
    right: 0;
    width: clamp(340px, 40vw, 520px);
  }
  .hero-headline { max-width: 60%; }
  .hero-sub { max-width: 60%; }
  .hero-stats { gap: 32px; flex-wrap: wrap; }
  .hiw-page-step { grid-template-columns: 60px 1fr; gap: 32px; }
  .hiw-page-detail { grid-column: 2; }
  .about-split { grid-template-columns: 1fr; gap: 24px; }
  .contact-split { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-values { grid-template-columns: 1fr 1fr; }
  .legal-content { padding: 0 32px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .container, .container-sm { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .section { padding: 64px 0; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    gap: 0;
    background: rgba(26,26,26,0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(160,136,80,0.12);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, visibility 0s linear 0.3s;
  }
  .nav-links.open {
    max-height: calc(100vh - var(--nav-h));
    padding: 8px 0 24px;
    visibility: visible;
    overflow-y: auto;
    transition: max-height 0.3s ease, padding 0.3s ease, visibility 0s linear 0s;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 18px 24px;
    font-size: 13px;
    border-bottom: 1px solid rgba(160,136,80,0.08);
  }
  .nav-cta { margin: 16px 24px 0; padding: 14px 24px !important; text-align: center; }
  .nav-toggle { display: flex; }

  .hero { padding-bottom: 64px; min-height: auto; padding-top: 120px; }
  .hero-fade { display: none; }
  .hero-content { height: auto !important; padding: 0 20px !important; }
  .hero-headline { max-width: 100%; }
  .hero-sub { max-width: 100%; margin-bottom: 28px; font-size: 18px; line-height: 1.6; }
  p, .body-lg, .body-sm,
  .hiw-desc, .hiw-page-desc, .hiw-page-detail,
  .product-detail-desc, .why-body, .about-value-body,
  .cta-sub, .footer-brand-desc,
  .plating-caption, .plating-caption-sub, .testimonial-place,
  .legal-content p, .legal-content li { font-size: 15px; line-height: 1.8; }
  .product-detail-name { font-size: 25px; }
  .product-detail-desc { font-size: 15px; }
  .product-spec-key { font-size: 10px; }
  .product-spec-val { font-size: 14px; }
  .hero-video-frame {
    position: static; transform: none;
    width: 100%; max-width: none;
    aspect-ratio: 1 / 1;
    margin: 0 0 32px;
  }
  .hero-stats { gap: 24px; margin-top: 40px; padding-top: 24px; }
  .hero-stat-num { font-size: 26px; }
  .btn { padding: 14px 24px; font-size: 10px; }

  .products-grid { grid-template-columns: 1fr; }
  .products-full-grid { padding: 48px 20px; gap: 24px; }
  .product-detail-card { grid-template-columns: 1fr; }
  .product-detail-info { padding: 28px 24px; }
  .why-grid { grid-template-columns: 1fr; }
  .plating-grid { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; gap: 16px; }
  .about-values { grid-template-columns: 1fr; }
  footer { padding: 40px 0 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding: 0 20px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; margin-top: 32px; padding: 20px 20px 0; }
  .footer-logo-mark { width: 240px !important; }
  .footer-brand-desc { font-size: 15px; margin-top: 10px; max-width: 100%; }
  .product-spec-grid { grid-template-columns: 1fr 1fr; }

  .hiw-page-step { grid-template-columns: 1fr; gap: 16px; padding: 36px 24px; }
  .hiw-page-num { font-size: 48px; }
  .trust-bar { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(26,26,26,0.07); min-width: 100%; }
  .trust-item:last-child { border-bottom: none; }
  .cta-section { padding: 80px 0; }
  .cta-inner { padding: 0 20px; }
  .products-page-hero { padding: 120px 0 56px; }
  .form-input { padding: 14px 16px; font-size: 14px; }
  .legal-page { padding: 120px 0 64px; }
  .legal-content { padding: 0 20px; margin-top: 32px; }
  .legal-content h2 { font-size: 24px; }
  .faq-item summary { font-size: 17px; }
}

@media (max-width: 480px) {
  .container, .container-sm { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .section { padding: 48px 0; }
  .hero { padding-top: 100px; padding-bottom: 48px; }
  .hero-kicker { margin-bottom: 20px; }
  .hero-sub { font-size: 17px; margin-bottom: 24px; line-height: 1.6; }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .hero-stats > div { min-width: 0; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn { width: 100%; }
  .hiw-step, .why-card { padding: 32px 20px; }
  .hiw-step-num { font-size: 56px; top: 16px; right: 20px; }
  .product-info { padding: 20px; }
  .product-detail-info { padding: 0 20px; }
  .product-spec-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 28px 24px; }
  .about-problem, .about-solution { padding: 36px 24px; }
  .hiw-page-step { padding: 28px 20px; }
}
