:root {
  --bg: #050505;
  --bg-elevated: #0c0c0c;
  --bg-soft: #121212;
  --text: #ffffff;
  --text-muted: #b3b3b3;
  --red: #e10600;
  --red-bright: #ff1a14;
  --red-glow: rgba(225, 6, 0, 0.45);
  --line: rgba(225, 6, 0, 0.55);
  --border: rgba(255, 255, 255, 0.12);
  --font-display: "Michroma", system-ui, sans-serif;
  --font-body: "Montserrat", system-ui, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --max: 1280px;
  --header-h: 78px;
  --header-height: 78px;
  --color-gold: #d4af37;
  --color-gold-light: #e8c84a;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(225, 6, 0, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 45% at 100% 100%, rgba(225, 6, 0, 0.14), transparent 50%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 6px,
      rgba(255, 255, 255, 0.015) 6px,
      rgba(255, 255, 255, 0.015) 7px
    ),
    var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--red);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header – mirrors Onward fixed transparent header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-icon {
  width: 40px;
  height: 40px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
}

.brand-sub {
  margin-top: 0.35rem;
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  color: var(--red);
  font-weight: 600;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-desktop > a,
.nav-dropdown-toggle {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s ease;
}

.nav-desktop > a:hover,
.nav-desktop > a.is-active,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.is-active {
  color: var(--text);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 220px;
  background: #0a0a0a;
  border: 1px solid var(--border);
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-dropdown-menu a:hover {
  color: var(--text);
  background: rgba(225, 6, 0, 0.12);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-social {
  display: none;
  align-items: center;
  gap: 0.35rem;
}

.header-social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.header-social a:hover {
  color: #fff;
}

.header-social svg {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.btn-primary {
  background: var(--red);
  color: #fff;
}

.btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-1px);
}

.btn-white {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.btn-white:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
}

.burger {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 18px;
  height: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
}

.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgba(5, 5, 5, 0.97);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 99;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.85rem;
}

.mobile-nav a:hover {
  color: #fff;
}

/* Hero – full bleed, brand first */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 1.5rem 4rem;
  overflow: hidden;
}

.hero-glow-left,
.hero-glow-right {
  position: absolute;
  width: 2px;
  pointer-events: none;
  filter: blur(1px);
}

.hero-glow-left {
  left: 0;
  top: 0;
  bottom: 35%;
  background: linear-gradient(180deg, transparent, var(--red), transparent);
  box-shadow: 0 0 30px 8px var(--red-glow);
  animation: pulse-glow 4s ease-in-out infinite;
}

.hero-glow-right {
  right: 0;
  top: 35%;
  bottom: 0;
  background: linear-gradient(180deg, transparent, var(--red), transparent);
  box-shadow: 0 0 30px 8px var(--red-glow);
  animation: pulse-glow 4s ease-in-out infinite 1.2s;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  gap: 2.5rem;
}

.hero-brand-block {
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.9s ease forwards 0.15s;
}

.hero-logo-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.hero-logo-row img {
  width: 64px;
  height: 64px;
}

.hero-wordmark {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4.2rem);
  letter-spacing: 0.12em;
  line-height: 1;
  margin: 0;
}

.hero-wordmark span {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.42em;
  letter-spacing: 0.45em;
  color: var(--red);
  font-weight: 600;
}

.hero-wordmark span::before,
.hero-wordmark span::after {
  content: "";
  width: 1.8rem;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}

.hero-tagline {
  margin: 1.25rem 0 0;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-tagline em {
  font-style: normal;
  color: var(--red);
  font-weight: 600;
}

.hero-copy {
  max-width: 42rem;
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.9s ease forwards 0.4s;
}

.hero-copy h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  letter-spacing: 0.06em;
  line-height: 1.55;
  font-weight: 400;
}

.hero-copy p {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-rule {
  width: min(220px, 40%);
  height: 1px;
  background: linear-gradient(90deg, var(--red), transparent);
  margin: 0.5rem 0 0;
  opacity: 0;
  animation: rise 0.8s ease forwards 0.65s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections */
.section {
  padding: 5.5rem 1.5rem;
  position: relative;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.section-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  letter-spacing: 0.08em;
  line-height: 1.3;
}

.section-lead {
  margin: 0 0 2.5rem;
  color: var(--text-muted);
  max-width: 40rem;
  font-size: 1.02rem;
}

.section-dark {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Services grid – not cards: open layout with divider lines */
.service-list {
  display: grid;
  gap: 0;
}

.service-item {
  display: grid;
  gap: 1rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  transition: background 0.25s ease;
}

.service-item:last-child {
  border-bottom: 1px solid var(--border);
}

.service-item:hover {
  background: linear-gradient(90deg, rgba(225, 6, 0, 0.08), transparent 55%);
}

.service-index {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--red);
}

.service-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.1em;
}

.service-item p {
  margin: 0;
  color: var(--text-muted);
  max-width: 38rem;
}

.service-item a {
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

.service-item a:hover {
  color: var(--red);
}

/* Process / how we work */
.process-steps {
  display: grid;
  gap: 2rem;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding-left: 4rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.process-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--red);
}

.process-step h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.process-step p {
  margin: 0;
  color: var(--text-muted);
  max-width: 36rem;
}

/* Contact strip on home */
.contact-strip {
  padding: 4rem 1.5rem 5rem;
}

.contact-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  align-items: end;
}

.contact-strip a.email-link {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  letter-spacing: 0.08em;
  word-break: break-word;
}

.contact-strip a.email-link:hover {
  color: var(--red);
}

.contact-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.location-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.location-line::before,
.location-line::after {
  content: "";
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--red);
}

.location-line svg {
  color: var(--red);
  flex-shrink: 0;
}

/* Contact page form */
.contact-layout {
  display: grid;
  gap: 3rem;
}

.contact-details {
  display: grid;
  gap: 1rem;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-icon {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}

.contact-row a:hover,
.contact-row span {
  color: #fff;
}

.contact-form {
  display: grid;
  gap: 1.1rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: #fff;
  padding: 0.95rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--red);
}

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

.form-field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #fff 50%), linear-gradient(135deg, #fff 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form-message {
  padding: 1rem;
  border: 1px solid var(--border);
  font-size: 0.9rem;
}

.form-message.success {
  border-color: rgba(0, 180, 80, 0.5);
  color: #9dffc0;
}

.form-message.error {
  border-color: var(--red);
  color: #ffb4b0;
}

/* Page hero for inner pages */
.page-hero {
  padding: calc(var(--header-h) + 4rem) 1.5rem 3rem;
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  letter-spacing: 0.1em;
}

.page-hero p {
  margin: 0;
  color: var(--text-muted);
  max-width: 38rem;
}

/* Service detail blocks */
.service-detail {
  scroll-margin-top: calc(var(--header-h) + 1.5rem);
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:last-child {
  border-bottom: 0;
}

.service-detail h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.1em;
}

.service-detail p {
  color: var(--text-muted);
  max-width: 42rem;
}

.service-detail ul {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.service-detail li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.service-detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.55rem;
  height: 1px;
  background: var(--red);
}

/* Footer */
.site-footer {
  position: relative;
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem 2rem;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  right: -10%;
  bottom: -40%;
  width: 50%;
  height: 120%;
  background: radial-gradient(circle, rgba(225, 6, 0, 0.18), transparent 65%);
  pointer-events: none;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.footer-name {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0.16em;
  font-size: 0.95rem;
}

.footer-name span {
  color: var(--red);
}

.footer-tag {
  margin: 0.4rem 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-tag em {
  font-style: normal;
  color: var(--red);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 2rem;
}

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

.footer-contact .sep {
  opacity: 0.35;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom p {
  margin: 0;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-social a:hover {
  color: #fff;
}

/* Reveal helper */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .header-social {
    display: flex;
  }

  .burger {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1.05fr 1fr;
    align-items: end;
    gap: 3rem;
  }

  .service-item {
    grid-template-columns: 4rem 1fr auto;
    align-items: center;
    gap: 1.5rem;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 3rem;
  }

  .contact-strip-inner {
    grid-template-columns: 1.4fr auto;
  }

  .contact-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
  }
}

@media (min-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* --- Onward-style home hero --- */
body.is-home-hero {
  overflow: hidden;
  background: #000;
}

body.is-home-hero .site-header {
  background: transparent;
  border-bottom-color: transparent;
}

body.is-home-hero .site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

body.is-home-hero #main {
  padding: 0;
}

.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2rem) 1.5rem 5rem;
  overflow: hidden;
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.62) 48%, rgba(0, 0, 0, 0.45) 100%),
    rgba(0, 0, 0, 0.35);
}

.home-hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-left: max(0px, calc((100vw - var(--max)) / 2));
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.9s ease forwards 0.15s;
}

.home-hero__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.home-hero__brand img {
  width: 48px;
  height: 48px;
}

.home-hero__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.home-hero__wordmark strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.18em;
}

.home-hero__wordmark em {
  margin-top: 0.4rem;
  font-style: normal;
  font-size: 0.65rem;
  letter-spacing: 0.38em;
  color: var(--red);
  font-weight: 600;
}

.home-hero__title {
  margin: 0 0 1.15rem;
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 2.8vw, 2.05rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  max-width: 38rem;
}

.home-hero__desc {
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 34rem;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
}

.home-hero__actions .btn {
  min-width: 150px;
  padding: 0.95rem 1.6rem;
}

.home-hero__email {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
}

.home-hero__email:hover {
  color: var(--red);
}

.home-hero__corner {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  text-align: right;
  opacity: 0;
  animation: rise 0.8s ease forwards 0.45s;
}

.home-hero__corner-brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
  margin-bottom: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.home-hero__corner-brand img {
  width: 18px;
  height: 18px;
}

.home-hero__corner p {
  margin: 0;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 767px) {
  .home-hero {
    align-items: flex-end;
    padding-bottom: 7rem;
  }

  .home-hero__content {
    margin-left: 0;
  }

  .home-hero__corner {
    left: 1.5rem;
    right: 1.5rem;
    text-align: left;
  }

  .home-hero__corner-brand {
    justify-content: flex-start;
  }
}

/* --- Conversational Lead Form (Take Action) --- */
body.is-lead-page {
  overflow: hidden;
  background: #000;
}

body.is-lead-page .site-header {
  background: transparent;
  border-bottom-color: transparent;
}

body.is-lead-page .site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.75);
  backdrop-filter: blur(12px);
}

body.is-lead-page #main {
  padding: 0;
}

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #128c7e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(18, 140, 126, 0.45);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.lead-form {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: #000;
}

.lead-step {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s;
  z-index: 1;
}

.lead-step.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 2;
}

.lead-step__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.lead-step__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}

.lead-step__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: calc(var(--header-height) + 0.5rem) 1.5rem 3rem;
  max-height: 100vh;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.lead-step__inner::-webkit-scrollbar {
  display: none;
}

.lead-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-right: 0.6rem;
  background: var(--color-gold);
  color: #000;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-body);
  vertical-align: middle;
  border-radius: 3px;
  transform: translateY(-2px);
}

.lead-step__title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
  margin: 0 0 0.75rem;
}

.lead-step__desc {
  font-size: 14px;
  line-height: 1.65;
  color: #cfcfcf;
  margin: 0 0 1.5rem;
}

.lead-required {
  color: var(--color-gold);
  margin-left: 0.25rem;
}

.lead-field {
  margin-bottom: 1.25rem;
}

.lead-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.lead-hint {
  display: block;
  font-size: 12px;
  color: #999;
  margin: -0.35rem 0 0.65rem;
}

.lead-field input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0;
  padding: 0.65rem 0;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  letter-spacing: 0.02em;
  color: #fff;
  caret-color: var(--color-gold);
  background-image: linear-gradient(to right, var(--color-gold), #f8e08e);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0% 2px;
  transition: background-size 0.45s ease, border-color var(--transition);
}

.lead-field input::placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-style: italic;
}

.lead-field input:focus {
  outline: none;
  border-bottom-color: transparent;
  background-size: 100% 2px;
}

.lead-field input:-webkit-autofill,
.lead-field input:-webkit-autofill:hover,
.lead-field input:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  caret-color: var(--color-gold);
  transition: background-color 600000s 0s, color 600000s 0s, background-size 0.45s ease;
}

.lead-choices {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}

.lead-choice {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.9rem 0.4rem 0.4rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition);
}

.lead-choice:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.5);
}

.lead-choice.is-selected {
  border-color: var(--color-gold);
  background: rgba(212, 175, 55, 0.18);
}

.lead-choice__key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.4);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.lead-choice.is-selected .lead-choice__key {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #000;
}

.lead-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.lead-btn:hover {
  background: var(--color-gold);
  color: #000;
  transform: translateY(-2px);
}

.lead-btn[disabled] {
  opacity: 0.6;
  cursor: wait;
}

.lead-error {
  color: #ff7a7a;
  font-size: 13px;
  min-height: 1.2em;
  margin-bottom: 0.5rem;
}

.lead-nav {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 10;
}

.lead-nav__arrow {
  width: 38px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  color: #000;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
}

.lead-nav__arrow:hover {
  background: var(--color-gold);
}

.lead-nav__arrow[disabled] {
  opacity: 0.4;
  cursor: default;
}

.lead-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.lead-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 10;
}

.lead-progress__bar {
  display: block;
  height: 100%;
  width: 0;
  background: var(--color-gold);
  transition: width 0.5s ease;
}

@media (max-width: 640px) {
  .lead-step__inner {
    padding: calc(var(--header-height) + 0.5rem) 1.25rem 5rem;
  }

  .lead-choice {
    font-size: 13px;
  }

  .whatsapp-float {
    bottom: 5.5rem;
    right: 1.25rem;
  }
}
