:root {
  --vr-navy: #0B1C2C;
  --vr-red: #E94B35;
  --vr-offwhite: #F2E9E4;
  --vr-grey: #D3D3D3;

  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-pill: 999px;

  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.5);
  --shadow-card: 0 12px 26px rgba(0, 0, 0, 0.45);

  --font-heading: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-ui: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Lato", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset & base */

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, rgba(233, 75, 53, 0.16), transparent 55%),
    radial-gradient(circle at bottom right, rgba(233, 75, 53, 0.12), transparent 60%),
    var(--vr-navy);
  color: var(--vr-offwhite);
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  text-decoration: none;
}

/* Layout */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: rgba(11, 28, 44, 0.96);
}

.section-heading {
  max-width: 620px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.9rem;
  margin-bottom: 12px;
}

.section-heading p {
  font-size: 0.98rem;
  color: var(--vr-grey);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(11, 28, 44, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(211, 211, 211, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 48px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.brand-tagline {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vr-grey);
}

/* Navigation */

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: var(--font-ui);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vr-grey);
  padding: 8px 4px;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--vr-red);
  transition: width 0.2s ease-out;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--vr-offwhite);
}

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

.nav-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--vr-offwhite);
  margin: 4px 0;
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  border: 1px solid transparent;
  transition: background 0.16s ease-out, color 0.16s ease-out, transform 0.12s ease-out, box-shadow 0.16s ease-out, border-color 0.16s ease-out;
  cursor: pointer;
}

.btn-primary {
  background: var(--vr-red);
  color: var(--vr-offwhite);
  box-shadow: 0 10px 26px rgba(233, 75, 53, 0.4);
}

.btn-primary:hover {
  background: #d5412e;
  box-shadow: 0 16px 38px rgba(233, 75, 53, 0.55);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(242, 233, 228, 0.7);
  color: var(--vr-offwhite);
}

.btn-secondary:hover {
  background: rgba(242, 233, 228, 0.08);
  border-color: var(--vr-offwhite);
}

.btn-small {
  padding: 8px 18px;
  font-size: 0.75rem;
}

.btn-outline {
  background: transparent;
  border-color: rgba(242, 233, 228, 0.6);
  color: var(--vr-offwhite);
}

.btn-outline:hover {
  background: rgba(242, 233, 228, 0.06);
  border-color: var(--vr-offwhite);
}

.btn-light {
  background: var(--vr-offwhite);
  color: var(--vr-navy);
}

.btn-light:hover {
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(242, 233, 228, 0.9);
  color: var(--vr-offwhite);
}

.btn-outline-light:hover {
  background: rgba(242, 233, 228, 0.1);
}

/* Hero */

.hero {
  padding: 72px 0 64px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.eyebrow {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--vr-grey);
  margin-bottom: 10px;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.1rem, 3.2vw + 1rem, 3.2rem);
  margin: 0 0 14px;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: var(--vr-grey);
  max-width: 36rem;
  line-height: 1.6;
}

.hero-ctas {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-link {
  font-size: 0.84rem;
  color: var(--vr-grey);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-link:hover {
  color: var(--vr-offwhite);
}

.hero-visual {
  position: relative;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(211, 211, 211, 0.22);
  box-shadow: var(--shadow-soft);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 3.5s ease-out;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 28, 44, 0.3), rgba(11, 28, 44, 0.7));
}

/* Cards and lists */

.card {
  background: rgba(11, 28, 44, 0.94);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  border: 1px solid rgba(211, 211, 211, 0.18);
  box-shadow: var(--shadow-card);
}

.card-soft {
  background: rgba(11, 28, 44, 0.9);
}

.card h3,
.card h2 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-top: 0;
  margin-bottom: 8px;
}

.card p {
  font-size: 0.94rem;
  color: var(--vr-grey);
}

.circle-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--vr-red);
  margin-bottom: 10px;
}

.bullet-list {
  list-style: none;
  padding-left: 0;
  margin: 10px 0 0;
}

.bullet-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: var(--vr-grey);
}

.bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--vr-red);
}

.inline-link {
  font-size: 0.9rem;
  color: var(--vr-offwhite);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.inline-link:hover {
  opacity: 0.9;
}

/* CTA strip */

.cta-strip {
  padding: 52px 0;
  background: linear-gradient(120deg, var(--vr-red), #ff6a4f);
}

.cta-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--vr-offwhite);
}

.cta-strip h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin: 0 0 6px;
}

.cta-strip p {
  margin: 0;
  font-size: 0.98rem;
}

.cta-strip-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Page hero */

.page-hero {
  padding: 64px 0 40px;
}

.page-hero-inner {
  max-width: 720px;
}

.page-hero-text {
  font-size: 0.98rem;
  color: var(--vr-grey);
}

/* About image */

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(211, 211, 211, 0.18);
  box-shadow: var(--shadow-soft);
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 28, 44, 0.25), rgba(11, 28, 44, 0.7));
}

/* Steps */

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.step {
  background: rgba(11, 28, 44, 0.94);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  border: 1px solid rgba(211, 211, 211, 0.18);
  box-shadow: var(--shadow-card);
}

.step-index {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vr-grey);
  margin-bottom: 6px;
}

.step h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.step p {
  font-size: 0.94rem;
  color: var(--vr-grey);
}

/* Contact */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-family: var(--font-ui);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vr-grey);
}

.form-field input,
.form-field select,
.form-field textarea {
  border-radius: 10px;
  border: 1px solid rgba(211, 211, 211, 0.4);
  background: rgba(11, 28, 44, 0.9);
  color: var(--vr-offwhite);
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 0.94rem;
  outline: none;
  transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--vr-red);
  box-shadow: 0 0 0 1px rgba(233, 75, 53, 0.5);
}

.form-field textarea {
  resize: vertical;
}

.form-status {
  font-size: 0.85rem;
  margin-top: 4px;
  color: var(--vr-grey);
}

.form-status.error {
  color: #ffb3b3;
}

.form-status.success {
  color: #b7f7c1;
}

.contact-side h2 {
  margin-top: 0;
}

.contact-block {
  margin-bottom: 16px;
}

.contact-block h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-block p {
  font-size: 0.94rem;
  color: var(--vr-grey);
}

.small-note {
  font-size: 0.82rem;
  color: var(--vr-grey);
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(211, 211, 211, 0.18);
  padding: 16px 0 18px;
  background: rgba(11, 28, 44, 0.98);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--vr-grey);
}

.footer-inner a {
  color: var(--vr-grey);
}

/* Reveal animation */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    order: -1;
  }

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

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

@media (max-width: 800px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .cta-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-logo {
    height: 42px;
  }
}

@media (max-width: 720px) {
  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: rgba(11, 28, 44, 0.98);
    border-bottom: 1px solid rgba(211, 211, 211, 0.18);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }

  .site-nav.open {
    max-height: 260px;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px 16px;
    gap: 10px;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .page-hero {
    padding-top: 48px;
  }
}
