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

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dim: #8a6e2f;
  --gold-faint: rgba(201,168,76,0.10);
  --black: #080808;
  --surface: #0f0f0f;
  --surface2: #141414;
  --surface3: #1a1a1a;
  --border: rgba(201,168,76,0.18);
  --border-soft: rgba(255,255,255,0.06);
  --text-primary: #f0ead8;
  --text-secondary: #a89878;
  --text-muted: #5a5040;
}

html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 90px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 56px;
  background: rgba(8,8,8,0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-mark {
  width: 34px; height: 34px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.nav-wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-primary);
}
.nav-wordmark span { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--black);
  font-size: 12px; font-weight: 700;
  padding: 10px 26px;
  border: 2px solid var(--gold);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.nav-cta:hover { background: transparent; color: var(--gold); }
.nav-cta svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav-links {
  display: flex; align-items: center; gap: 30px;
}
.nav-links a {
  font-size: 12px; letter-spacing: 0.06em;
  color: var(--text-secondary); text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold); }

/* Mobile hamburger toggle */
.nav-toggle-checkbox { display: none; }
.nav-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 30px; height: 30px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle-btn span {
  display: block; width: 100%; height: 2px;
  background: var(--gold);
  transition: transform 0.25s ease, opacity 0.2s ease, width 0.2s ease;
}
.nav-toggle-checkbox:checked ~ .nav-toggle-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 100%; }
.nav-toggle-checkbox:checked ~ .nav-toggle-btn span:nth-child(2) { opacity: 0; }
.nav-toggle-checkbox:checked ~ .nav-toggle-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 100%; }

@media (max-width: 1100px) {
  nav { flex-wrap: wrap; row-gap: 12px; }
  .nav-logo { order: 1; }
  .nav-toggle-btn { display: flex; order: 2; }
  .nav-actions { order: 3; }
  .nav-links {
    order: 4;
    flex-basis: 100%;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease;
  }
  .nav-toggle-checkbox:checked ~ .nav-links {
    max-height: 600px;
    opacity: 1;
    margin-top: 14px;
    padding-top: 6px;
    border-top: 1px solid var(--border);
  }
  .nav-links a {
    width: 100%;
    padding: 14px 4px;
    border-bottom: 1px solid var(--border-soft);
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  nav { padding: 14px 18px; }
  .nav-cta-text { display: none; }
  .nav-cta { padding: 10px 14px; }
}
/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
  text-align: center;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 68%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--border);
  padding: 7px 20px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 36px;
  position: relative; z-index: 1;
}
.hero-eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--gold); border-radius: 50%;
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.65); }
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(64px, 11vw, 110px);
  font-weight: 900; line-height: 0.92;
  letter-spacing: -0.02em;
  position: relative; z-index: 1;
  margin-bottom: 12px;
}
.hero-title .gold { color: var(--gold); }
.hero-title .outline {
  -webkit-text-stroke: 1.5px var(--gold-dim);
  color: transparent;
}
.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(17px, 2.5vw, 24px);
  font-weight: 400; font-style: italic;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  position: relative; z-index: 1;
}
.hero-divider {
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 32px;
  position: relative; z-index: 1;
}
.hero-desc {
  max-width: 560px;
  font-size: 15px; color: var(--text-secondary);
  line-height: 1.85; margin: 0 auto 52px;
  position: relative; z-index: 1;
}
.btn-wa {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--gold); color: var(--black);
  font-weight: 700; font-size: 14px;
  letter-spacing: 0.09em; text-transform: uppercase;
  padding: 17px 40px; text-decoration: none;
  border: 2px solid var(--gold);
  transition: background 0.2s, color 0.2s;
  position: relative; z-index: 1;
}
.btn-wa:hover { background: transparent; color: var(--gold); }
.btn-wa svg { width: 20px; height: 20px; flex-shrink: 0; }
.hero-note {
  margin-top: 16px; font-size: 12px;
  color: var(--text-muted);
  position: relative; z-index: 1;
  letter-spacing: 0.04em;
}

/* ── CREDIT CARD VISUAL ── */
.card-showcase {
  position: relative; z-index: 1;
  margin: 64px auto 0;
  max-width: 500px; width: 100%;
  perspective: 1000px;
}
.credit-card {
  width: 100%; aspect-ratio: 1.586;
  background: linear-gradient(135deg, #191209 0%, #251b0e 45%, #191209 100%);
  border-radius: 18px;
  border: 1px solid rgba(201,168,76,0.28);
  padding: 30px 34px;
  position: relative; overflow: hidden;
  transform: perspective(900px) rotateX(6deg) rotateY(-9deg);
  box-shadow: 0 48px 96px rgba(0,0,0,0.85), 0 0 0 1px rgba(201,168,76,0.08);
}
.card-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.025) 1px, transparent 1px);
  background-size: 28px 28px;
}
.card-glow1, .card-glow2 {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.card-glow1 {
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(201,168,76,0.13), transparent 70%);
  top: -70px; right: -50px;
}
.card-glow2 {
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(201,168,76,0.07), transparent 70%);
  bottom: -50px; left: -20px;
}
.card-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  position: relative; z-index: 1;
}
.card-brand {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  color: var(--gold); letter-spacing: 0.12em;
}
.card-brand-sub {
  font-size: 9px; letter-spacing: 0.28em;
  color: var(--text-muted); text-transform: uppercase; margin-top: 3px;
}
.card-chip {
  width: 46px; height: 36px;
  background: linear-gradient(135deg, #c49838, #eec96a, #be932e);
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,0.2);
  position: relative; overflow: hidden;
}
.card-chip::before {
  content: '';
  position: absolute; inset: 5px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 3px;
}
.card-chip::after {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: rgba(0,0,0,0.1);
  transform: translateY(-50%);
}
.card-number {
  font-family: 'Inter', monospace;
  font-size: 16px; letter-spacing: 0.24em;
  color: rgba(240,234,216,0.65);
  margin-top: 40px;
  position: relative; z-index: 1;
}
.card-bottom {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-top: 16px; position: relative; z-index: 1;
}
.card-holder-label {
  font-size: 9px; letter-spacing: 0.22em;
  color: var(--text-muted); text-transform: uppercase;
}
.card-holder-name {
  font-size: 15px; letter-spacing: 0.14em;
  color: var(--text-primary); font-weight: 500; margin-top: 3px;
}
.card-network { display: flex; }
.card-network span {
  width: 38px; height: 38px; border-radius: 50%;
}
.card-network span:first-child {
  background: rgba(201,168,76,0.75); margin-right: -15px;
}
.card-network span:last-child {
  background: rgba(201,168,76,0.38);
  border: 1px solid rgba(201,168,76,0.2);
}

/* ── TICKER ── */
.ticker {
  background: var(--surface2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 13px 0; overflow: hidden; white-space: nowrap;
}
.ticker-track {
  display: inline-flex; gap: 52px;
  animation: ticker-scroll 28s linear infinite;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.t-item {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex; align-items: center; gap: 9px;
}
.t-item .dot {
  width: 5px; height: 5px;
  background: var(--gold-dim); border-radius: 50%; flex-shrink: 0;
}
.t-item .val { color: #4caf82; }

/* ── SECTION COMMONS ── */
.section {
  padding: 108px 56px;
  max-width: 1120px;
  margin: 0 auto;
}
.eyebrow {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 14px;
}
.eyebrow::before {
  content: ''; width: 34px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700; line-height: 1.1;
  margin-bottom: 60px; max-width: 620px;
}
.section-title .gold { color: var(--gold); }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.svc-card {
  background: var(--surface);
  padding: 40px 30px;
  transition: background 0.25s;
}
.svc-card:hover { background: var(--surface2); }
.svc-icon {
  width: 52px; height: 52px;
  background: var(--gold-faint);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; font-size: 24px;
}
.svc-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px; font-weight: 700;
  margin-bottom: 12px; color: var(--text-primary);
}
.svc-desc {
  font-size: 13.5px; color: var(--text-secondary); line-height: 1.78;
}
.svc-link {
  display: inline-block; margin-top: 18px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--gold); text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.svc-link:hover { border-color: var(--gold); }

/* ── STATS ── */
.stats-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: 1120px; margin: 0 auto;
}
.stat {
  padding: 56px 32px; text-align: center;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 52px; font-weight: 700;
  color: var(--gold); line-height: 1; margin-bottom: 10px;
}
.stat-lbl {
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-muted);
}

/* ── VISION ── */
.vision-wrap {
  padding: 108px 56px;
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 88px; align-items: start;
}
.vision-quote {
  font-family: 'Playfair Display', serif;
  font-size: 30px; font-weight: 700; line-height: 1.4;
  border-left: 3px solid var(--gold);
  padding-left: 26px; margin-bottom: 28px;
}
.vision-quote .gold { color: var(--gold); }
.vision-body {
  font-size: 14px; color: var(--text-secondary); line-height: 1.92;
}
.milestones { list-style: none; }
.milestones li {
  padding: 22px 0;
  border-bottom: 1px solid var(--border-soft);
  display: flex; align-items: flex-start; gap: 18px;
  font-size: 14px; color: var(--text-secondary);
}
.milestones li:first-child { padding-top: 0; }
.m-num {
  font-family: 'Playfair Display', serif;
  font-size: 11px; color: var(--gold);
  letter-spacing: 0.1em; min-width: 40px;
  padding-top: 3px; opacity: 0.65;
}
.m-text strong {
  display: block; color: var(--text-primary);
  font-size: 15px; font-weight: 600; margin-bottom: 4px;
}

/* ── PROCESS ── */
.process-wrap {
  padding: 0 56px 108px;
  max-width: 1120px; margin: 0 auto;
}
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  position: relative; gap: 0;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 27px; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim) 20%, var(--gold-dim) 80%, transparent);
}
.p-step { padding: 0 24px; text-align: center; }
.p-num {
  width: 54px; height: 54px;
  background: var(--surface); border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700; color: var(--gold);
  position: relative; z-index: 1;
}
.p-title {
  font-size: 14px; font-weight: 600;
  color: var(--text-primary); margin-bottom: 9px; letter-spacing: 0.04em;
}
.p-desc { font-size: 12.5px; color: var(--text-muted); line-height: 1.72; }

/* ── ABOUT ── */
.about-wrap {
  padding: 108px 56px;
  max-width: 1120px; margin: 0 auto;
}
.about-body {
  max-width: 720px;
  font-size: 15px; color: var(--text-secondary);
  line-height: 1.92; margin-bottom: 72px;
}
.about-body strong { color: var(--text-primary); font-weight: 600; }
.founders-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--border); border: 1px solid var(--border);
}
.founder-card {
  background: var(--surface);
  padding: 44px 38px;
  transition: background 0.25s;
}
.founder-card:hover { background: var(--surface2); }
.founder-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-dim));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; color: var(--black);
  margin-bottom: 22px;
}
.founder-name {
  font-family: 'Playfair Display', serif;
  font-size: 21px; font-weight: 700;
  color: var(--text-primary); margin-bottom: 4px;
}
.founder-role {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.founder-bio {
  font-size: 13.5px; color: var(--text-secondary); line-height: 1.78;
  margin-bottom: 24px;
}
.founder-linkedin {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.05em;
  color: var(--text-primary); text-decoration: none;
  border: 1px solid var(--border); padding: 9px 18px;
  transition: border-color 0.2s, color 0.2s;
}
.founder-linkedin:hover { border-color: var(--gold); color: var(--gold); }
.founder-linkedin svg { width: 15px; height: 15px; flex-shrink: 0; }
@media (max-width: 900px) {
  .founders-grid { grid-template-columns: 1fr; }
}

/* ── FINAL CTA ── */
.cta-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 108px 56px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-bg-word {
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 220px; font-weight: 900;
  color: rgba(201,168,76,0.022);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none; white-space: nowrap;
  letter-spacing: -0.05em;
  user-select: none;
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 700; line-height: 1.1;
  margin-bottom: 18px; position: relative; z-index: 1;
}
.cta-sub {
  font-size: 15px; color: var(--text-secondary);
  margin-bottom: 44px; position: relative; z-index: 1;
}
.btn-wa-lg {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--gold); color: var(--black);
  font-weight: 700; font-size: 15px;
  letter-spacing: 0.09em; text-transform: uppercase;
  padding: 19px 52px; text-decoration: none;
  border: 2px solid var(--gold);
  transition: background 0.2s, color 0.2s;
  position: relative; z-index: 1;
}
.btn-wa-lg:hover { background: transparent; color: var(--gold); }
.btn-wa-lg svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 36px 56px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.footer-copy { font-size: 12px; color: var(--text-muted); letter-spacing: 0.06em; }
.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 13px; color: var(--gold-dim); font-style: italic;
}
.footer-disclaimer {
  width: 100%;
  font-size: 11px; color: var(--text-muted); line-height: 1.7;
  border-top: 1px solid var(--border-soft); padding-top: 20px; margin-top: 4px;
  letter-spacing: 0.02em;
}

/* ── WA ICON ── */
.wa-icon { display: inline-block; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 14px 24px; }
  .section, .vision-wrap, .cta-band, footer { padding-left: 24px; padding-right: 24px; }
  .process-wrap { padding: 0 24px 72px; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:nth-child(3), .stat:last-child { border-bottom: none; }
  .vision-wrap { grid-template-columns: 1fr; gap: 48px; padding-top: 72px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
}
@media (max-width: 560px) {
  .hero-title { font-size: 54px; }
  nav .nav-wordmark { font-size: 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: 30px; }
}

/* ── EMAIL CTA (nav ghost button) ── */
.nav-email {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; letter-spacing: 0.06em;
  color: var(--text-secondary); text-decoration: none;
  border: 1px solid var(--border);
  padding: 9px 16px;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav-email:hover { border-color: var(--gold); color: var(--gold); }
.nav-email svg { width: 14px; height: 14px; flex-shrink: 0; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
@media (max-width: 640px) {
  .nav-email span.nav-email-text { display: none; }
  .nav-email { padding: 9px 11px; }
}

.nav-links a.active { color: var(--gold); }

/* ── SECONDARY EMAIL CTA (large, outline) ── */
.btn-email-lg {
  display: inline-flex; align-items: center; gap: 14px;
  background: transparent; color: var(--gold);
  font-weight: 700; font-size: 15px;
  letter-spacing: 0.09em; text-transform: uppercase;
  padding: 19px 52px; text-decoration: none;
  border: 2px solid var(--gold);
  transition: background 0.2s, color 0.2s;
  position: relative; z-index: 1;
}
.btn-email-lg:hover { background: var(--gold); color: var(--black); }
.btn-email-lg svg { width: 20px; height: 20px; flex-shrink: 0; }
.cta-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* ── PAGE HERO (subpages) ── */
.page-hero {
  padding: 150px 56px 90px;
  max-width: 1120px; margin: 0 auto;
  text-align: center;
  position: relative;
}
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 800; line-height: 1.05;
  margin-bottom: 20px;
}
.page-hero-title .gold { color: var(--gold); }
.page-hero-desc {
  max-width: 600px; margin: 0 auto 40px;
  font-size: 15px; color: var(--text-secondary); line-height: 1.85;
}
.page-crumb {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 20px;
}
.page-crumb a { color: var(--gold); text-decoration: none; }
.page-crumb a:hover { text-decoration: underline; }

/* ── DETAIL GRID (sub-products within a vertical) ── */
.detail-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
  margin-bottom: 20px;
}
.detail-card {
  background: var(--surface); padding: 32px 28px;
  transition: background 0.25s;
}
.detail-card:hover { background: var(--surface2); }
.detail-num {
  font-family: 'Playfair Display', serif;
  font-size: 13px; color: var(--gold); margin-bottom: 14px; opacity: 0.7;
}
.detail-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 700; color: var(--text-primary);
  margin-bottom: 10px;
}
.detail-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.72; }
@media (max-width: 900px) {
  .detail-grid { grid-template-columns: 1fr; }
}

/* ── WHY US STRIP ── */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; max-width: 1120px; margin: 0 auto; padding: 0 56px;
}
.why-item { text-align: left; }
.why-title {
  font-size: 14px; font-weight: 600; color: var(--text-primary);
  margin-bottom: 8px; letter-spacing: 0.02em;
}
.why-desc { font-size: 13px; color: var(--text-muted); line-height: 1.72; }
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ── ABOUT TEASER (home page) ── */
.about-teaser {
  padding: 108px 56px; max-width: 1120px; margin: 0 auto;
  text-align: center;
}
.about-teaser-link {
  display: inline-block; margin-top: 8px;
  font-size: 13px; font-weight: 600; color: var(--gold);
  text-decoration: none; border-bottom: 1px solid var(--gold);
}
