:root {
  color-scheme: light;
  --bg: #0c0f14;
  --bg-soft: #111722;
  --surface: #f7f3ee;
  --text: #0f1115;
  --muted: #4a5568;
  --accent: #e15b3d;
  --accent-dark: #b23d26;
  --highlight: #f2c46f;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(12, 15, 20, 0.25);
  --radius: 24px;
  --radius-sm: 16px;
}

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

body {
  font-family: "Space Grotesk", sans-serif;
  background: linear-gradient(135deg, #111722 0%, #0c0f14 55%, #1a2333 100%);
  color: var(--surface);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

.ambient {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(225, 91, 61, 0.22), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(242, 196, 111, 0.2), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(80, 148, 255, 0.15), transparent 60%);
  z-index: -2;
  filter: blur(0.5px);
}

.vl-extension-header-enabled .site-header,
.vl-extension-header-enabled header.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 8vw;
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: #0b0f14;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 10;
}

.vl-extension-header-enabled .brand {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #f5f7fa;
}

.vl-extension-header-enabled .nav {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
}

.vl-extension-header-enabled .nav a {
  color: #e6e9ef;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.vl-extension-header-enabled .nav a:hover {
  opacity: 1;
}

.vl-extension-header-enabled .nav a.is-active {
  opacity: 1;
  position: relative;
}

.vl-extension-header-enabled .nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--highlight);
}

main {
  padding: 0 8vw 80px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  padding: 80px 0 40px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--highlight);
  margin-bottom: 12px;
}

.hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.lead {
  font-size: 1.05rem;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 28px 0;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 12px 32px rgba(225, 91, 61, 0.35);
}

.btn.primary:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.btn.ghost {
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.3);
  background: transparent;
}

.btn.ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
}

.signal {
  display: grid;
  gap: 12px;
  max-width: 420px;
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  padding-left: 18px;
}

.signal span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.7;
}

.signal strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-card {
  background: var(--surface);
  color: var(--text);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(225, 91, 61, 0.08), transparent 55%);
  pointer-events: none;
}

.card-head {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  margin-bottom: 16px;
  color: var(--accent-dark);
}

.card-intro {
  color: #4b5563;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.card-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.card-list li {
  font-weight: 600;
  font-size: 1rem;
}

.card-foot {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--muted);
}

.section {
  padding: 64px 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 64px 48px;
}

.section-head {
  display: grid;
  gap: 12px;
  max-width: 680px;
  margin-bottom: 32px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-family: "Fraunces", serif;
}

.section-head p {
  color: rgba(255, 255, 255, 0.75);
}

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

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.tile {
  background: rgba(255, 255, 255, 0.08);
  padding: 24px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tile.dark {
  background: rgba(12, 15, 20, 0.55);
}

.tile h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.tile p {
  color: rgba(255, 255, 255, 0.78);
}

.contact {
  background: var(--surface);
  color: var(--text);
  border-radius: var(--radius);
  padding: 64px 48px;
}

.contact .section-head p {
  color: #4b5563;
}

.contact-copy {
  color: #4b5563;
  margin-bottom: 24px;
  max-width: 680px;
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 12px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-weight: 600;
  font-size: 0.9rem;
}

.field input,
.field textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  font-family: inherit;
  font-size: 0.95rem;
}

.field.full {
  grid-column: 1 / -1;
}

.contact .btn.primary {
  justify-self: start;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 8vw 48px;
  color: rgba(255, 255, 255, 0.7);
  flex-wrap: wrap;
}

.site-footer strong {
  display: block;
  color: var(--surface);
}

.footer-note {
  max-width: 360px;
  font-size: 0.95rem;
}

@media (max-width: 860px) {
  .site-header {
    flex-direction: column;
    gap: 16px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .section-alt,
  .contact {
    padding: 48px 24px;
  }
}

@media (max-width: 640px) {
  main {
    padding: 0 6vw 64px;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    flex-direction: column;
  }
}

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

.hero,
.section {
  animation: floatIn 0.8s ease both;
}
