/* ===== Design tokens ===== */
:root {
  --ink: #14161a;
  --ink-soft: #3a3f47;
  --muted: #6b7280;
  --line: #e6e8ec;
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --accent: #e63946;
  --accent-dark: #c32e3a;
  --dark: #14161a;
  --radius: 12px;
  --wrap: 1080px;
  --shadow: 0 10px 30px rgba(20, 22, 26, 0.08);
}

/* ===== Reset-ish ===== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { line-height: 1.1; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }

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

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.28);
}
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.btn-row.center { justify-content: center; margin-top: 40px; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand { display: inline-flex; align-items: baseline; gap: 2px; font-weight: 800; }
.brand-mark {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.9rem;
  letter-spacing: 1px;
  color: var(--accent);
  line-height: 1;
}
.brand-name { font-size: 1.3rem; letter-spacing: -0.5px; }
.header-nav { display: flex; align-items: center; gap: 28px; }
.header-nav a { font-weight: 500; color: var(--ink-soft); font-size: 0.95rem; }
.header-nav a:hover { color: var(--ink); }
/* Current page stays visible in the nav, marked rather than removed. */
.header-nav a.is-active {
  color: var(--ink);
  font-weight: 600;
  position: relative;
}
.header-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}
.nav-cta {
  background: var(--ink);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--accent); }

/* Hamburger toggle — hidden on desktop, shown at the mobile breakpoint. */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
  border-radius: 8px;
}
.nav-toggle:hover { background: var(--bg-soft); }
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .2s ease, opacity .15s ease;
}
/* Morph the bars into an X while the menu is open. */
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  padding: 96px 0 80px;
  background:
    radial-gradient(1200px 400px at 70% -10%, rgba(230, 57, 70, 0.08), transparent),
    var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -1.5px;
}
.hl { color: var(--accent); }
.lede {
  margin-top: 22px;
  max-width: 620px;
  font-size: 1.15rem;
  color: var(--ink-soft);
}
.trust { margin-top: 18px; font-size: 0.9rem; color: var(--muted); }

/* ===== Sections ===== */
.section { padding: 84px 0; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-eyebrow.light { color: #ff8b93; }
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.section-title.light { color: #fff; }

/* ===== Steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.step {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .15s ease, box-shadow .2s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.25rem; margin-bottom: 8px; }
.step p { color: var(--ink-soft); }

/* ===== Video ===== */
.section-dark { background: var(--dark); }
.video-block {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}
.video-text { color: #c7cbd2; margin-top: 18px; font-size: 1.1rem; max-width: 420px; }
.video-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  background: #000;
}
.video-frame video {
  width: 100%;
  height: auto;
  max-height: 620px;
  display: block;
  object-fit: contain;
}

/* ===== Cards ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card p { color: var(--ink-soft); }

/* ===== Form ===== */
.section-accent {
  background: linear-gradient(160deg, var(--accent), var(--accent-dark));
}
.form-block { max-width: 720px; margin: 0 auto; text-align: center; }
.form-lede { color: rgba(255, 255, 255, 0.9); margin-top: 12px; font-size: 1.1rem; }
.sample-form {
  margin-top: 36px;
  background: #fff;
  border-radius: 16px;
  padding: 34px;
  text-align: left;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 7px; }
.field .opt { color: var(--muted); font-weight: 400; }
.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg-soft);
  transition: border .15s ease, background .15s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}
.field textarea { resize: vertical; }
.sample-form .btn-lg { width: 100%; margin-top: 6px; }
.form-note { margin-top: 14px; text-align: center; font-weight: 600; color: #1a7f43; min-height: 1.2em; }
.form-note--error { color: var(--accent-dark); }

/* ===== Footer ===== */
.site-footer { background: var(--dark); color: #c7cbd2; padding: 54px 0; }
.footer-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.footer-brand .brand-name { color: #fff; }
.footer-tag { color: #9aa0aa; }
.footer-contact a { color: #ff8b93; font-weight: 600; }
.footer-copy { font-size: 0.85rem; color: #6b7280; margin-top: 8px; }

/* ===== Quote page ===== */
.quote-hero { padding: 80px 0 56px; }
.quote-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
.quote-section { padding-top: 48px; }
.quote-wrap { max-width: 760px; margin: 0 auto; }
.quote-wrap iframe { width: 100%; border: 0; display: block; }
.quote-fallback {
  margin-top: 28px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}
.quote-fallback a { color: var(--accent); font-weight: 600; }

/* ===== Gallery ===== */
.gallery-section { padding-top: 56px; }
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.gallery-item {
  margin: 0;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .15s ease, box-shadow .2s ease;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  cursor: zoom-in;
  background: #fff;
}
.gallery-item figcaption {
  padding: 16px 18px 18px;
  border-top: 1px solid var(--line);
}
.gallery-item figcaption strong { display: block; font-size: 1.02rem; }
.gallery-item figcaption span { display: block; color: var(--muted); font-size: 0.88rem; margin-top: 3px; }
.gallery-note {
  margin-top: 36px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(10, 11, 13, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: min(900px, 100%);
  max-height: 90vh;
  width: auto;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 2.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 8px;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.12); }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .steps, .cards { grid-template-columns: 1fr; }
  .video-block { grid-template-columns: 1fr; }

  /* Mobile nav: collapse the links into a panel behind the hamburger. */
  .nav-toggle { display: flex; }
  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px 24px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .header-nav.is-open { display: flex; }
  .header-nav a {
    padding: 15px 2px;
    font-size: 1rem;
    border-bottom: 1px solid var(--line);
  }
  /* Vertical menu: mark the active item with color, not the desktop underline. */
  .header-nav a.is-active { color: var(--accent); }
  .header-nav a.is-active::after { display: none; }
  .nav-cta {
    border-bottom: 0;
    text-align: center;
    margin-top: 14px;
    padding: 13px 18px;
  }
}
@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; }
  .hero { padding: 68px 0 56px; }
  .section { padding: 60px 0; }
  .sample-form { padding: 24px; }
  .gallery { grid-template-columns: 1fr; }
  .lightbox { padding: 16px; }
}
