/* ============================================
   Vantage Goods LLC — vantagegoods.co
   Dark charcoal + metallic gold design system
   ============================================ */

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

:root {
  --bg: #262220;
  --bg-deep: #1d1a18;
  --bg-panel: #2e2a26;
  --bg-elev: #38332e;
  --ink: #f4f1eb;
  --text: #acafb9;
  --text-dim: #8b8e99;
  --gold: #d2ad75;
  --gold-soft: #e8cda0;
  --gold-grad: linear-gradient(
    309.94deg,
    rgba(173, 141, 85, 0.95) 5.06%,
    #d2ad75 23.8%,
    #e8cda0 38.72%,
    #d2ad75 63.7%,
    rgba(173, 141, 85, 0.95) 77.2%
  );
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --radius: 18px;
  --radius-pill: 999px;
  --max: 1140px;
  --nav-h: 76px;
  --font-display: "Manrope", -apple-system, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--ink);
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

/* Gradient-white display text (reference-style) */
.grad-text {
  background: linear-gradient(#fff -21.83%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Gold label text */
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- Navigation ---------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(29, 26, 24, 0.72);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.01em;
  color: var(--ink);
  white-space: nowrap;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--gold-grad);
  color: #26221e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text);
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-grad);
  color: #26221e;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  transition: filter 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
  box-shadow: 0 0 24px rgba(210, 173, 117, 0.18);
}

.nav-cta:hover {
  filter: brightness(1.06);
}

/* Mobile menu */

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-display);
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.15s ease,
    background-color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: var(--gold-grad);
  color: #26221e;
  box-shadow: 0 0 40px rgba(210, 173, 117, 0.22);
}

.btn-primary:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--ink);
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  border-color: rgba(210, 173, 117, 0.5);
  background: rgba(210, 173, 117, 0.06);
}

.btn .arrow {
  font-size: 16px;
  line-height: 1;
  transition: transform 0.15s ease;
}

.btn:hover .arrow {
  transform: translateX(3px);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: calc(var(--nav-h) + 120px) 0 130px;
  background: var(--bg-deep);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 700px;
  background: radial-gradient(
    59.14% 50.08% at 50% 49.92%,
    rgba(192, 160, 109, 0.28) 0%,
    transparent 94.28%
  );
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 160px;
  background: linear-gradient(rgba(38, 34, 32, 0) 0%, var(--bg) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(210, 173, 117, 0.07);
  border: 1px solid rgba(210, 173, 117, 0.25);
  border-radius: var(--radius-pill);
  padding: 9px 20px;
  margin-bottom: 34px;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-grad);
  box-shadow: 0 0 10px rgba(210, 173, 117, 0.8);
}

.hero h1 {
  font-size: clamp(40px, 6.4vw, 70px);
  line-height: 1.06;
  letter-spacing: -0.028em;
  font-weight: 800;
  margin-bottom: 28px;
}

.hero p.lede {
  font-size: clamp(16.5px, 2.1vw, 19px);
  color: var(--text);
  max-width: 660px;
  margin: 0 auto 44px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ---------- Trust strip ---------- */

.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  padding: 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.strip-item {
  padding: 36px 32px;
  border-left: 1px solid var(--line);
}

.strip-item:first-child {
  border-left: 0;
}

.strip-item h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  color: var(--ink);
}

.strip-item p {
  font-size: 14px;
  color: var(--text-dim);
}

/* ---------- Sections ---------- */

section {
  padding: 110px 0;
}

.section-deep {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 680px;
  margin-bottom: 64px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head .kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.section-head h2 {
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin-bottom: 18px;
}

.section-head p {
  color: var(--text);
  font-size: 17px;
}

/* ---------- Cards ---------- */

.grid {
  display: grid;
  gap: 22px;
}

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

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

.card {
  position: relative;
  background: linear-gradient(180deg, var(--bg-elev) 0%, var(--bg-panel) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(210, 173, 117, 0.45),
    transparent
  );
  opacity: 0;
  transition: opacity 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(210, 173, 117, 0.28);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--gold-grad);
  color: #26221e;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  box-shadow: 0 0 26px rgba(210, 173, 117, 0.22);
}

.card-icon svg {
  width: 21px;
  height: 21px;
}

.card h3 {
  font-size: 19px;
  font-weight: 750;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.card p {
  font-size: 14.5px;
  color: var(--text);
}

/* ---------- Process ---------- */

.step {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: border-color 0.2s ease;
}

.step:hover {
  border-color: rgba(210, 173, 117, 0.25);
}

.step-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.step h3 {
  font-size: 17px;
  font-weight: 750;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: var(--text);
}

/* ---------- About ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}

.about-copy p {
  color: var(--text);
  font-size: 16.5px;
  margin-bottom: 20px;
}

.about-copy p strong {
  color: var(--ink);
  font-weight: 650;
}

.info-card {
  background: linear-gradient(180deg, var(--bg-elev) 0%, var(--bg-panel) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(210, 173, 117, 0.5),
    transparent
  );
}

.info-card h3 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 22px;
  color: var(--gold);
}

.info-row {
  padding: 15px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink);
}

.info-row .label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.info-row a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(210, 173, 117, 0.4);
}

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.contact-info > p {
  color: var(--text);
  font-size: 16.5px;
  margin-bottom: 32px;
}

.contact-info a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(210, 173, 117, 0.4);
}

.form {
  background: linear-gradient(180deg, var(--bg-elev) 0%, var(--bg-panel) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}

.form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(210, 173, 117, 0.5),
    transparent
  );
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  color: var(--ink);
}

.field input,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  padding: 13px 15px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-dim);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(210, 173, 117, 0.6);
  box-shadow: 0 0 0 3px rgba(210, 173, 117, 0.12);
}

.field textarea {
  resize: vertical;
  min-height: 135px;
}

.form-note {
  font-size: 12.5px;
  color: var(--text-dim);
  margin-top: 16px;
}

.form-note a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-status {
  display: none;
  margin-top: 18px;
  padding: 13px 17px;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 500;
}

.form-status.ok {
  display: block;
  background: rgba(101, 163, 101, 0.12);
  border: 1px solid rgba(101, 163, 101, 0.35);
  color: #a8d5a8;
}

.form-status.err {
  display: block;
  background: rgba(200, 100, 100, 0.1);
  border: 1px solid rgba(200, 100, 100, 0.35);
  color: #e0a8a8;
}

/* ---------- Footer ---------- */

.footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 44px;
  background: var(--bg-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 52px;
}

.footer h4 {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 11px;
}

.footer a {
  font-size: 14px;
  color: var(--text);
  transition: color 0.15s ease;
}

.footer a:hover {
  color: var(--ink);
}

.footer-about p {
  font-size: 14px;
  color: var(--text-dim);
  max-width: 330px;
  margin-top: 16px;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--text-dim);
}

.footer-bottom a {
  color: var(--text-dim);
}

.footer-bottom a:hover {
  color: var(--ink);
}

/* ---------- Legal pages ---------- */

.legal {
  padding: calc(var(--nav-h) + 72px) 0 110px;
  background: var(--bg);
}

.legal-body {
  max-width: 780px;
}

.legal-body h1 {
  font-size: clamp(32px, 4.5vw, 46px);
  letter-spacing: -0.025em;
  font-weight: 800;
  margin-bottom: 12px;
}

.legal-body .updated {
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 44px;
}

.legal-body h2 {
  font-size: 21px;
  font-weight: 750;
  letter-spacing: -0.01em;
  margin: 44px 0 14px;
}

.legal-body p,
.legal-body li {
  font-size: 15.5px;
  color: var(--text);
  margin-bottom: 14px;
}

.legal-body ul {
  padding-left: 22px;
  margin-bottom: 14px;
}

.legal-body li {
  margin-bottom: 8px;
}

.legal-body a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(210, 173, 117, 0.4);
}

.legal-body strong {
  color: var(--ink);
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .strip-grid {
    grid-template-columns: 1fr;
  }

  .strip-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .strip-item:first-child {
    border-top: 0;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  section {
    padding: 80px 0;
  }

  .hero {
    padding: calc(var(--nav-h) + 72px) 0 88px;
  }

  .eyebrow {
    font-size: 10.5px;
    letter-spacing: 0.16em;
    padding: 8px 16px;
    white-space: nowrap;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--bg-deep);
    border-bottom: 1px solid var(--line);
    padding: 8px 28px 18px;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 13px 0;
    font-size: 16px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form {
    padding: 30px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
