/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0c0c0c;
  --bg-2:      #131313;
  --bg-3:      #1b1b1b;
  --text:      #f0ebe4;
  --text-dim:  #7a756e;
  --text-mid:  #b0aa9f;
  --accent:    #e8a020;
  --accent-dk: #c4871a;
  --border:    rgba(232, 160, 32, 0.10);
  --border-2:  rgba(240, 235, 228, 0.07);
  --radius:    10px;
  --radius-lg: 18px;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --nav-h:     72px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

em { font-style: italic; color: var(--accent); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 7px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: #0c0c0c;
}
.btn--primary:hover { background: #f5b030; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(232,160,32,0.25); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn--outline-accent {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(232,160,32,0.35);
}
.btn--outline-accent:hover { background: rgba(232,160,32,0.08); }

.btn--small {
  padding: 9px 18px;
  font-size: 13px;
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--border);
  border-radius: 6px;
}
.btn--small:hover { background: var(--accent); color: #0c0c0c; border-color: var(--accent); }

.btn--lg {
  padding: 18px 40px;
  font-size: 15px;
}

/* ── Eyebrow / Section ── */
.eyebrow {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.section-header { margin-bottom: 52px; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(12, 12, 12, 0.9);
  backdrop-filter: blur(14px);
  border-color: var(--border-2);
}

.nav__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.nav__logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav__links a {
  color: var(--text-mid);
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
  position: relative;
}
.nav__links a:hover, .nav__links a.active { color: var(--text); }
.nav__links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
}

.nav__cta { margin-left: 8px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(12,12,12,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-2);
  padding: 16px 28px 24px;
  flex-direction: column;
  z-index: 199;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  color: var(--text-mid);
  font-size: 15px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-2);
  transition: color 0.2s;
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover { color: var(--text); }

/* ── PAGE OFFSET ── */
.page-top { padding-top: var(--nav-h); }

/* ── HERO (homepage) ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 28px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__grid-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0.5;
}

.hero__glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,160,32,0.06) 0%, transparent 70%);
  top: 50%; left: 60%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 120px 0 100px;
  animation: fadeUp 0.9s ease both;
}

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

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  background: rgba(232,160,32,0.05);
}
.hero__tag-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero__headline {
  font-family: var(--font-head);
  font-size: clamp(48px, 7.5vw, 100px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.hero__sub {
  font-size: 18px;
  color: var(--text-mid);
  max-width: 520px;
  margin-bottom: 44px;
  line-height: 1.7;
}

.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__right {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero__visual svg { width: 100%; max-width: 440px; }

.hex-ring { transform-origin: 220px 220px; }
.hex-ring--1 { animation: hexSpin 30s linear infinite; }
.hex-ring--2 { animation: hexSpin 22s linear infinite reverse; }
.hex-ring--3 { animation: hexSpin 16s linear infinite; }

@keyframes hexSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero__scroll {
  position: absolute;
  bottom: 36px; left: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.hero__scroll-bar {
  width: 44px; height: 1px;
  background: var(--text-dim);
  overflow: hidden;
  position: relative;
}
.hero__scroll-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  animation: scanLine 2.4s ease-in-out infinite;
}
@keyframes scanLine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

/* ── CUSTOM BANNER (homepage) ── */
.custom-banner {
  background: var(--accent);
  padding: 20px 28px;
  text-align: center;
}
.custom-banner p {
  font-size: 14px;
  font-weight: 500;
  color: #0c0c0c;
  letter-spacing: 0.02em;
}
.custom-banner a {
  color: #0c0c0c;
  font-weight: 700;
  text-decoration: underline;
}

/* ── HOW IT WORKS ── */
.how {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
}

.how__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.how__step {
  background: var(--bg-2);
  padding: 40px 28px;
  transition: background 0.3s;
}
.how__step:hover { background: var(--bg-3); }

.how__num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.18;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}

.how__step h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.how__step p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ── FEATURED PRODUCTS ── */
.featured {
  padding: 100px 0;
}

.featured__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 20px;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.25s;
  cursor: pointer;
}
.product-card:hover {
  border-color: rgba(232,160,32,0.3);
  transform: translateY(-3px);
}

.product-card__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-3);
}

.product-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card__img img { transform: scale(1.04); }

.product-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(12,12,12,0.75);
  color: var(--text-mid);
  border: 1px solid var(--border-2);
  backdrop-filter: blur(4px);
}
.product-card__badge--gold {
  background: rgba(232,160,32,0.15);
  color: var(--accent);
  border-color: rgba(232,160,32,0.3);
}

.product-card__info { padding: 20px; }
.product-card__info h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.product-card__info p {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 18px;
  line-height: 1.5;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-card__price {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  color: var(--accent);
}

/* ── CUSTOM CTA BLOCK ── */
.cta-block {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
}

.cta-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-block__text .section-title { margin-bottom: 20px; }
.cta-block__text p {
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 440px;
}

.cta-block__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cta-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-2);
  background: var(--bg-3);
  transition: background 0.2s;
}
.cta-step:last-child { border-bottom: none; }
.cta-step:hover { background: rgba(232,160,32,0.04); }

.cta-step__num {
  min-width: 28px; height: 28px;
  background: rgba(232,160,32,0.12);
  border: 1px solid rgba(232,160,32,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-head);
  flex-shrink: 0;
}

.cta-step__text h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}
.cta-step__text p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ── REVIEWS ── */
.reviews { padding: 100px 0; }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.3s;
}
.review-card:hover { border-color: rgba(232,160,32,0.25); }

.review-card__stars { font-size: 15px; color: var(--accent); margin-bottom: 14px; letter-spacing: 2px; }
.review-card p { font-size: 15px; line-height: 1.7; font-style: italic; color: var(--text-mid); margin-bottom: 18px; }
.review-card__author { font-size: 12px; color: var(--text-dim); letter-spacing: 0.06em; }

/* ── TRUST BAR ── */
.trust {
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  background: var(--bg-2);
  padding: 32px 0;
}
.trust__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-mid);
  white-space: nowrap;
}
.trust__item svg { color: var(--accent); flex-shrink: 0; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border-2);
  background: var(--bg-2);
}
.page-hero__eyebrow { margin-bottom: 12px; }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.page-hero p {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.7;
}

/* ── CUSTOM ORDER PAGE ── */
.custom-page { padding: 80px 0 100px; }

.custom-page__layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}

.custom-form { display: flex; flex-direction: column; gap: 28px; }

.form-section {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.form-section__title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-2);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid--3 { grid-template-columns: 1fr 1fr 1fr; }
.form-full { grid-column: 1 / -1; }

.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: 7px;
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
  width: 100%;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(232,160,32,0.45);
  background: rgba(232,160,32,0.03);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a756e' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 36px;
}

.color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.color-option {
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
}
.color-option:hover { transform: scale(1.15); }
.color-option.selected { border-color: var(--accent); }
.color-option[data-color="white"]   { background: #f0f0f0; }
.color-option[data-color="black"]   { background: #1a1a1a; border: 2px solid rgba(255,255,255,0.15); }
.color-option[data-color="grey"]    { background: #888; }
.color-option[data-color="red"]     { background: #c0392b; }
.color-option[data-color="blue"]    { background: #2874a6; }
.color-option[data-color="green"]   { background: #1e8449; }
.color-option[data-color="yellow"]  { background: #d4ac0d; }
.color-option[data-color="orange"]  { background: #d35400; }
.color-option[data-color="pink"]    { background: #c0647d; }
.color-option[data-color="custom"]  { background: linear-gradient(135deg,#e8a020,#c0392b,#2874a6,#1e8449); }

.file-drop {
  border: 1.5px dashed var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.file-drop:hover, .file-drop.dragover {
  border-color: rgba(232,160,32,0.45);
  background: rgba(232,160,32,0.04);
}
.file-drop input { display: none; }
.file-drop__icon { margin: 0 auto 10px; color: var(--accent); opacity: 0.6; }
.file-drop p { font-size: 13px; color: var(--text-dim); line-height: 1.5; }
.file-drop strong { color: var(--text-mid); }
.file-drop__files { margin-top: 10px; font-size: 12px; color: var(--accent); }

.custom-sidebar { position: sticky; top: calc(var(--nav-h) + 24px); }

.sidebar-card {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
}

.sidebar-card__head {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-2);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.sidebar-card__body { padding: 20px; }

.price-breakdown { display: flex; flex-direction: column; gap: 10px; }
.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.price-row span:first-child { color: var(--text-dim); }
.price-row span:last-child { font-weight: 500; }
.price-row--total {
  padding-top: 10px;
  border-top: 1px solid var(--border-2);
  font-size: 16px;
}
.price-row--total span:last-child { color: var(--accent); font-weight: 700; }

.faq-item {
  border-bottom: 1px solid var(--border-2);
  padding: 14px 0;
}
.faq-item:first-child { padding-top: 0; }
.faq-item:last-child { border-bottom: none; padding-bottom: 0; }
.faq-item summary {
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--accent);
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 10px;
  line-height: 1.6;
}

.submit-bar {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.submit-bar .btn { width: 100%; margin-bottom: 12px; }
.submit-bar__note { font-size: 12px; color: var(--text-dim); text-align: center; line-height: 1.5; }

/* ── SHOP PAGE ── */
.shop-page { padding: 60px 0 100px; }

.shop-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--border-2);
  background: transparent;
  color: var(--text-dim);
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  color: #0c0c0c;
  border-color: var(--accent);
}

/* ── ABOUT PAGE ── */
.about-page { padding: 80px 0 100px; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--text-dim);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about-text h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.about-text p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 18px;
}
.about-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-spec {
  background: var(--bg-2);
  padding: 32px 24px;
  text-align: center;
}
.about-spec__num {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.about-spec p { font-size: 13px; color: var(--text-dim); }

/* ── FOOTER ── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border-2);
  padding: 64px 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  margin-bottom: 52px;
}

.footer__brand p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 20px;
}

.footer__socials { display: flex; gap: 12px; }
.footer__social {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 13px;
  transition: all 0.2s;
  text-decoration: none;
}
.footer__social:hover { background: var(--accent); color: #0c0c0c; border-color: var(--accent); }

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer__col h4 {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.footer__col a {
  display: block;
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 9px;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--text); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border-2);
  font-size: 13px;
  color: var(--text-dim);
}

.footer__legal { display: flex; gap: 20px; }
.footer__legal a { color: var(--text-dim); transition: color 0.2s; }
.footer__legal a:hover { color: var(--text); }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .how__grid { grid-template-columns: repeat(2, 1fr); }
  .custom-page__layout { grid-template-columns: 1fr; }
  .custom-sidebar { position: static; }
  .hero__right { display: none; }
  .hero__content { max-width: 100%; }
}

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .cta-block__inner { grid-template-columns: 1fr; gap: 40px; }
  .reviews__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__links { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { display: none; }
  .about-specs { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .products__grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid--3 { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: 1fr; }
  .how__grid { grid-template-columns: 1fr; }
  .trust__inner { gap: 24px; }
  .featured__header { flex-direction: column; align-items: flex-start; }
}
