/* ---------------------------------------------
   BASE / TOKENS
--------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #050509;
  --bg-soft: #0b0b16;
  --bg-elevated: #101021;
  --text: #f7f7f7;
  --muted: #a7a7bb;
  --accent: #f4a84a;
  --accent-soft: rgba(244, 168, 74, 0.2);
  --border-soft: rgba(255, 255, 255, 0.08);
  --radius-lg: 20px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.55);
  --shadow-strong: 0 26px 60px rgba(0, 0, 0, 0.8);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #171727 0, var(--bg) 55%, #020207 100%);
  color: var(--text);
  line-height: 1.6;
}

/* ---------------------------------------------
   HEADER
--------------------------------------------- */

.vm-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 12, 0.9),
    rgba(5, 5, 12, 0.6),
    transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.vm-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vm-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vm-logo-mark {
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
}

.vm-logo-word {
  opacity: 0.75;
}

.vm-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.vm-nav a {
  position: relative;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.18s ease;
}

.vm-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.18s ease;
}

.vm-nav a:hover {
  color: var(--text);
}

.vm-nav a:hover::after {
  width: 100%;
}

/* ---------------------------------------------
   HERO
--------------------------------------------- */

.hero {
  position: relative;
  min-height: 80vh;
  max-height: 920px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 3rem;
  gap: 2rem;
}

.hero-media {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  isolation: isolate;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 82%, rgba(244, 168, 74, 0.3), transparent 55%),
    linear-gradient(to top right, rgba(0, 0, 0, 0.7), transparent 45%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 40%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-content {
  align-self: center;
  max-width: 480px;
}

.hero-tag {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--accent);
  margin-bottom: 0.7rem;
}

.hero-title {
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.2;
  margin-bottom: 0.9rem;
}

.hero-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* ---------------------------------------------
   BUTTONS
--------------------------------------------- */

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease,
    border-color 0.16s ease,
    color 0.16s ease;
}

.btn-primary {
  background: var(--accent);
  color: #050508;
  border-color: var(--accent);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.7);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: #ffc676;
  border-color: #ffc676;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
}

.btn-ghost {
  background: rgba(12, 12, 25, 0.7);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--text);
}

.btn-ghost:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.75);
}

/* ---------------------------------------------
   SECTIONS
--------------------------------------------- */

.section {
  padding: 3.75rem 1.5rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-story {
  background: radial-gradient(circle at top left, #18182a 0, var(--bg-soft) 55%, var(--bg) 100%);
  border-top: 1px solid var(--border-soft);
}

.section-approach {
  background: linear-gradient(to bottom, var(--bg), #06060f);
  border-top: 1px solid var(--border-soft);
}

.section-delivery {
  background: radial-gradient(circle at top, #171727 0, var(--bg-soft) 55%, var(--bg) 100%);
  border-top: 1px solid var(--border-soft);
}

.section-cta {
  background: #020208;
  border-top: 1px solid var(--border-soft);
  text-align: center;
}

.section-cta h2 {
  font-size: 1.7rem;
  margin-bottom: 0.75rem;
}

.section-cta p {
  max-width: 560px;
  margin: 0 auto 1.4rem;
  color: var(--muted);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 0.7rem;
}

.section-title {
  font-size: 1.7rem;
  margin-bottom: 1.4rem;
}

.section-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
}

.section-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.section-text p + p {
  margin-top: 0.8rem;
}

.section-text {
  font-size: 0.95rem;
  color: var(--muted);
}

.section-aside {
  align-self: flex-start;
}

.highlight {
  color: var(--accent);
}

/* ---------------------------------------------
   CARDS
--------------------------------------------- */

.fact-card,
.quote-card,
.pill {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.96)),
    linear-gradient(135deg, rgba(244, 168, 74, 0.08), transparent 65%);
  box-shadow: var(--shadow-soft);
  padding: 1.4rem 1.5rem;
  font-size: 0.9rem;
}

.fact-card h3 {
  font-size: 1rem;
  margin-bottom: 0.7rem;
}

.fact-card ul {
  list-style: none;
}

.fact-card li {
  margin-bottom: 0.35rem;
  color: var(--muted);
}

.fact-card li span {
  color: var(--text);
  font-weight: 500;
}

.pill h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.pill p {
  color: var(--muted);
}

.quote-card p {
  font-style: italic;
  margin-bottom: 0.6rem;
}

.quote-card span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.link-out {
  display: inline-flex;
  margin-top: 1.1rem;
  font-size: 0.85rem;
  color: var(--accent);
  text-decoration: none;
  position: relative;
}

.link-out::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.18s ease;
}

.link-out:hover::after {
  width: 100%;
}

/* ---------------------------------------------
   FOOTER
--------------------------------------------- */

.vm-footer {
  border-top: 1px solid var(--border-soft);
  background: #020206;
}

.vm-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
}

.vm-footer-inner a {
  color: var(--muted);
  text-decoration: none;
  position: relative;
}

.vm-footer-inner a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.18s ease;
}

.vm-footer-inner a:hover::after {
  width: 100%;
}

/* ---------------------------------------------
   REVEAL ANIMATIONS
--------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------------------
   RESPONSIVE
--------------------------------------------- */

@media (max-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    max-height: none;
  }

  .hero-media {
    order: 1;
    height: 320px;
  }

  .hero-content {
    order: 2;
    max-width: none;
    margin-top: 1.7rem;
  }

  .vm-nav {
    display: none;
  }

  .section-grid,
  .section-grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .section {
    padding-inline: 1.25rem;
  }

  .vm-footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 2.5rem;
  }

  .hero-media {
    height: 260px;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }
}
