:root {
  --bg: #111111;
  --bg-soft: #171717;
  --surface: #1d1d1d;
  --surface-light: #252525;
  --text: #f5f1e8;
  --muted: #aaa196;
  --gold: #c8a45d;
  --gold-soft: #e0c98f;
  --gold-dark: #8f6f35;
  --line: rgba(224, 201, 143, 0.18);
  --white: #fff;
  --serif: 'Forum', serif;
  --max: 1280px;
  --pad: clamp(20px, 5vw, 68px);
  --sec: clamp(86px, 13vh, 176px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--gold);
  color: #15110a;
}

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

a {
  color: inherit;
}

/* ── Animations ── */

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

@keyframes heroZoom {
  from { transform: scale(1.14); }
  to   { transform: scale(1); }
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50%      { transform: scaleY(1);   opacity: 1; }
}

/* ── Reveal ── */

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.1s cubic-bezier(0.2, 0.7, 0.2, 1),
              transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
}

[data-reveal].in {
  opacity: 1;
  transform: none;
}

/* ── Header ── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  justify-content: center;
  padding: clamp(12px, 1.8vw, 20px) var(--pad);
  pointer-events: none;
}

.header-inner {
  pointer-events: auto;
  width: 100%;
  max-width: var(--max);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 11px 12px 11px 24px;
  border-radius: 16px;
  background: rgba(17, 17, 17, 0.3);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid rgba(224, 201, 143, 0.12);
  box-shadow: 0 1px 0 rgba(224, 201, 143, 0.04);
  transition: background 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
}

.header-inner.scrolled {
  background: rgba(17, 17, 17, 0.8);
  box-shadow: 0 14px 38px -16px rgba(0, 0, 0, 0.7);
  border-color: rgba(224, 201, 143, 0.22);
}

.logo {
  text-decoration: none;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
}

.logo span {
  color: var(--gold-soft);
}

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

.desktop-nav a {
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 450;
  letter-spacing: 0.01em;
  color: var(--muted);
  transition: color 0.25s ease;
}

.desktop-nav a:hover {
  color: var(--gold-soft);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e0c98f, #c8a45d 60%, #a9853f);
  color: #16110a;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.35s;
}

.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -12px rgba(200, 164, 93, 0.6);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(224, 201, 143, 0.04);
  border-radius: 12px;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--gold-soft);
  border-radius: 2px;
}

/* ── Mobile menu ── */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(10, 9, 8, 0.97);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  padding: 98px var(--pad) 40px;
  transition: opacity 0.45s ease, transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: var(--pad);
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: rgba(224, 201, 143, 0.04);
  border-radius: 12px;
  cursor: pointer;
  font-size: 22px;
  color: var(--gold-soft);
  line-height: 1;
}

.mobile-menu a {
  text-decoration: none;
  font-family: var(--serif);
  font-size: clamp(30px, 9vw, 46px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.mobile-menu .btn-gold {
  margin-top: 30px;
  padding: 17px 28px;
  font-size: 17px;
  justify-content: center;
}

/* ── Hero ── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-zoom {
  position: absolute;
  inset: -3%;
  animation: heroZoom 9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-bg-parallax {
  position: absolute;
  left: 0;
  right: 0;
  top: -7%;
  height: 114%;
  will-change: transform;
}

.hero-bg-parallax img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17, 17, 17, 0.55) 0%, rgba(17, 17, 17, 0.28) 34%, rgba(17, 17, 17, 0.62) 70%, rgba(17, 17, 17, 0.97) 100%);
}

.hero-overlay-2 {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 50% 58%, rgba(17, 17, 17, 0) 38%, rgba(17, 17, 17, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(130px, 18vh, 180px) var(--pad) clamp(90px, 12vh, 130px);
  text-align: center;
}

.hero-eyebrow {
  font-family: 'SF Mono', ui-monospace, Menlo, monospace;
  font-size: 12.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 500;
  margin: 0;
  animation: heroUp 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero h1 {
  margin: 24px auto 0;
  max-width: 16ch;
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text);
  text-wrap: balance;
  animation: heroUp 1s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  animation-delay: 0.1s;
}

.hero h1 .shimmer {
  background: linear-gradient(95deg, #e0c98f, #c8a45d 38%, #8f6f35 52%, #e0c98f 78%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmer 7s linear infinite;
}

.hero-sub {
  margin: 30px auto 0;
  max-width: 640px;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--muted);
  animation: heroUp 1s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  animation-delay: 0.2s;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 40px;
  animation: heroUp 1s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  animation-delay: 0.3s;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 17px 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e0c98f, #c8a45d 55%, #a9853f);
  color: #16110a;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid rgba(224, 201, 143, 0.5);
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.4s;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px -16px rgba(200, 164, 93, 0.65);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 17px 34px;
  border-radius: 999px;
  background: rgba(224, 201, 143, 0.06);
  color: var(--gold-soft);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid rgba(224, 201, 143, 0.32);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), background 0.4s, border-color 0.4s;
}

.btn-hero-secondary:hover {
  transform: translateY(-2px);
  background: rgba(224, 201, 143, 0.14);
  border-color: rgba(224, 201, 143, 0.6);
}

.hero-trust {
  margin: 32px auto 0;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  color: var(--muted);
  animation: heroUp 1s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  animation-delay: 0.4s;
}

.hero-trust .dot {
  color: var(--gold);
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll-indicator span:first-child {
  font-family: 'SF Mono', ui-monospace, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(224, 201, 143, 0.55);
}

.scroll-indicator span:last-child {
  display: block;
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  transform-origin: top;
  animation: scrollPulse 2.4s ease-in-out infinite;
}

/* ── Section eyebrow ── */

.eyebrow {
  font-family: 'SF Mono', ui-monospace, Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin: 0 0 22px;
}

/* ── Sections ── */

.section {
  padding: var(--sec) var(--pad);
}

.section-bordered {
  border-top: 1px solid var(--line);
}

.section-soft {
  background: var(--bg-soft);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text);
  text-wrap: balance;
}

/* ── Intro ── */

.intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(34px, 5vw, 80px);
  align-items: center;
}

.intro-grid h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 76px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text);
  text-wrap: balance;
}

.intro-grid p {
  margin: 0;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.7;
  color: var(--muted);
  max-width: 480px;
}

/* ── Benefits ── */

.benefits-title {
  margin: 0 0 clamp(44px, 5vw, 72px);
  font-family: var(--serif);
  font-size: clamp(32px, 4.6vw, 64px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text);
  max-width: 880px;
  text-wrap: balance;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(18px, 2vw, 26px);
}

.benefit-card {
  padding: clamp(30px, 2.6vw, 40px);
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1),
              border-color 0.5s ease,
              box-shadow 0.5s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224, 201, 143, 0.4);
  box-shadow: 0 36px 70px -40px rgba(0, 0, 0, 0.8);
}

.benefit-card .num {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
  color: var(--gold);
}

.benefit-card h3 {
  margin: 22px 0 13px;
  font-family: var(--serif);
  font-size: clamp(21px, 1.8vw, 26px);
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-weight: 400;
  color: var(--text);
}

.benefit-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}

/* ── Categories ── */

.categories-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: clamp(44px, 5vw, 68px);
}

.categories-header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.04;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text);
}

.categories-header p {
  margin: 0;
  max-width: 380px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(16px, 1.6vw, 24px);
}

.category-card {
  position: relative;
  min-height: clamp(390px, 46vh, 510px);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0c0a08;
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1),
              box-shadow 0.55s ease;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 50px 90px -44px rgba(0, 0, 0, 0.85);
}

.category-card-img {
  position: absolute;
  inset: 0;
  transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.category-card:hover .category-card-img {
  transform: scale(1.06);
}

.category-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 7, 5, 0.94) 4%, rgba(8, 7, 5, 0.45) 44%, rgba(8, 7, 5, 0) 74%);
  pointer-events: none;
}

.category-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(22px, 2.4vw, 32px);
  z-index: 2;
}

.category-card-content .tag {
  font-family: 'SF Mono', ui-monospace, Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
  margin: 0 0 12px;
}

.category-card-content h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.12;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text);
}

.category-card-content p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(245, 241, 232, 0.74);
  max-width: 42ch;
}

/* ── Process ── */

.process-steps {
  border-top: 1px solid var(--line);
}

.process-step {
  display: grid;
  grid-template-columns: clamp(76px, 9vw, 150px) 1fr;
  gap: clamp(18px, 4vw, 56px);
  align-items: start;
  padding: clamp(28px, 3.2vw, 46px) 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.process-step:hover {
  padding-left: 14px;
}

.process-step .num {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.9;
  color: var(--gold);
  opacity: 0.85;
}

.process-step h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(23px, 2.6vw, 38px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text);
}

.process-step p {
  margin: 0;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 560px;
}

/* ── Materials ── */

.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(38px, 5vw, 76px);
  align-items: center;
}

.materials-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 50px 90px -50px rgba(0, 0, 0, 0.9);
}

.materials-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.materials-info h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3.8vw, 56px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text);
  text-wrap: balance;
}

.materials-info > p {
  margin: 24px 0 0;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.7;
  color: var(--muted);
  max-width: 500px;
}

.swatches {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(124px, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.swatch-img {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 13px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.swatch-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swatches .swatch-label {
  margin-top: 12px;
  font-size: 13.5px;
  line-height: 1.3;
  color: var(--text);
  font-weight: 450;
}

/* ── Brand Logos ── */

.brands-section {
  margin-top: clamp(56px, 7vw, 96px);
  padding-top: clamp(48px, 6vw, 80px);
  border-top: 1px solid var(--line);
}

.brands-title {
  margin: 0 0 clamp(36px, 4vw, 56px);
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 46px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text);
  text-wrap: balance;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(14px, 2vw, 24px);
}

.brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 3vw, 40px) clamp(18px, 2vw, 32px);
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.brand-card:hover {
  border-color: rgba(224, 201, 143, 0.4);
  box-shadow: 0 20px 50px -30px rgba(0, 0, 0, 0.7);
}

.brand-card img {
  max-height: 36px;
  width: auto;
  max-width: 100%;
  filter: grayscale(1) brightness(0.7);
  opacity: 0.6;
  transition: filter 0.4s ease, opacity 0.4s ease;
}

.brand-card:hover img {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}

/* ── Portfolio ── */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(30px, 3.4vw, 44px);
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 450;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
  font-family: inherit;
}

.filter-btn.active {
  background: linear-gradient(135deg, #e0c98f, #c8a45d 60%, #a9853f);
  color: #16110a;
  border: 1px solid rgba(224, 201, 143, 0.5);
}

.masonry {
  columns: clamp(270px, 31vw, 380px);
  column-gap: 18px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 18px;
}

.masonry-item-inner {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -44px rgba(0, 0, 0, 0.85);
}

.masonry-item-img {
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.masonry-item-inner:hover .masonry-item-img {
  transform: scale(1.05);
}

.masonry-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Trust ── */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(38px, 5vw, 76px);
}

.trust-left h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 4.4vw, 64px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text);
  text-wrap: balance;
}

.trust-left h2 span {
  color: var(--gold-soft);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  gap: 6px 36px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.trust-check {
  position: relative;
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(224, 201, 143, 0.45);
  margin-top: 1px;
}

.trust-check::after {
  content: '';
  position: absolute;
  left: 8px;
  top: 5px;
  width: 5px;
  height: 9px;
  border-right: 1.5px solid var(--gold-soft);
  border-bottom: 1.5px solid var(--gold-soft);
  transform: rotate(45deg);
}

.trust-item span:last-child {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.45;
  color: var(--text);
  font-weight: 450;
}

/* ── FAQ ── */

.faq-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  margin: 0 0 clamp(40px, 4.4vw, 60px);
  font-family: var(--serif);
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 1.06;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 2.4vw, 32px) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.faq-question span:first-child {
  font-family: var(--serif);
  font-size: clamp(19px, 1.9vw, 27px);
  line-height: 1.22;
  letter-spacing: 0.01em;
  font-weight: 400;
  color: var(--text);
}

.faq-icon {
  position: relative;
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 4px;
}

.faq-icon span {
  position: absolute;
  top: 10px;
  left: 2px;
  width: 18px;
  height: 1.5px;
  background: var(--gold-soft);
  border-radius: 2px;
}

.faq-icon span:last-child {
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  transform: rotate(90deg);
}

.faq-item.open .faq-icon span:last-child {
  transform: rotate(0deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.5s ease;
}

.faq-item.open .faq-answer {
  max-height: 360px;
  opacity: 1;
}

.faq-answer p {
  margin: 0;
  padding: 0 0 clamp(26px, 2.4vw, 32px);
  max-width: 720px;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.65;
  color: var(--muted);
}

/* ── Social ── */

.social-section {
  text-align: center;
}

.social-title {
  margin: 0 0 clamp(36px, 4vw, 56px);
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text);
  text-wrap: balance;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(18px, 2vw, 28px);
  max-width: 760px;
  margin: 0 auto;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(34px, 3.4vw, 50px) clamp(24px, 2.4vw, 36px);
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  text-decoration: none;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1),
              border-color 0.5s ease,
              box-shadow 0.5s ease;
}

.social-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224, 201, 143, 0.4);
  box-shadow: 0 36px 70px -40px rgba(0, 0, 0, 0.8);
}

.social-icon {
  color: var(--gold-soft);
  margin-bottom: 20px;
}

.social-card h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text);
}

.social-card p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}

.social-link-text {
  font-family: 'SF Mono', ui-monospace, Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--gold);
}

/* ── Final CTA ── */

.cta-banner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: clamp(28px, 4vw, 40px);
  border: 1px solid rgba(224, 201, 143, 0.28);
  min-height: clamp(440px, 60vh, 620px);
  display: flex;
  align-items: center;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
}

.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 110% at 50% 0%, rgba(200, 164, 93, 0.2), rgba(200, 164, 93, 0) 60%),
              linear-gradient(to bottom, rgba(10, 9, 7, 0.72), rgba(10, 9, 7, 0.9));
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(56px, 8vw, 110px) clamp(28px, 6vw, 96px);
  text-align: center;
}

.cta-banner-content h2 {
  margin: 0 auto;
  max-width: 18ch;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 78px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text);
  text-wrap: balance;
}

.cta-banner-content > p {
  margin: 28px auto 0;
  max-width: 620px;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.65;
  color: var(--muted);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 40px;
}

/* ── Footer ── */

.site-footer {
  padding: clamp(52px, 6vw, 84px) var(--pad) clamp(36px, 4vw, 52px);
  border-top: 1px solid var(--line);
  background: #0d0d0d;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px 24px;
  align-items: start;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
}

.footer-logo span {
  color: var(--gold-soft);
}

.footer-tagline {
  margin: 16px 0 0;
  max-width: 260px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}

.footer-heading {
  font-family: 'SF Mono', ui-monospace, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  font-size: 16px;
  color: var(--text);
  text-decoration: none;
  margin-bottom: 11px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-nav a {
  font-size: 15px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-nav a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  max-width: var(--max);
  margin: clamp(44px, 5vw, 68px) auto 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
}

.footer-phrase {
  font-family: var(--serif);
  font-size: clamp(15px, 1.5vw, 19px);
  letter-spacing: 0.01em;
  color: var(--gold-soft);
}

.footer-copy {
  font-size: 13px;
  color: var(--muted);
}

/* ── Responsive ── */

@media (max-width: 860px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero h1 {
    font-size: clamp(34px, 11vw, 58px);
    line-height: 1;
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-banner-content h2 {
    font-size: clamp(34px, 12vw, 56px);
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  * {
    animation: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}
