:root {
  --bg: #130709;
  --bg-2: #210b0d;
  --ink: #181012;
  --muted: #6d5b5f;
  --white: #ffffff;
  --soft: #fff7f2;
  --line: rgba(255, 255, 255, 0.14);
  --red: #b70810;
  --red-dark: #73000b;
  --orange: #ff7a16;
  --gold: #ffbe57;
  --shadow: 0 24px 80px rgba(24, 8, 8, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 96px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px max(20px, calc((100vw - 1160px) / 2));
  background: rgba(19, 7, 9, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  min-width: 0;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 122, 22, 0.5);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 20px;
}

.brand small {
  max-width: 230px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 99px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 122, 22, 0.35), transparent 30%),
    radial-gradient(circle at 20% 78%, rgba(183, 8, 16, 0.28), transparent 35%),
    linear-gradient(135deg, #150506 0%, #2a070b 48%, #0c090a 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0 30%, rgba(255, 190, 87, 0.15) 30% 31%, transparent 31% 100%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 90px);
  opacity: 0.75;
}

.hero-bg::before {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  right: -240px;
  top: 90px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(255, 122, 22, 0.22), 0 0 80px rgba(183, 8, 16, 0.22);
  animation: floatRing 14s ease-in-out infinite;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 56px;
  padding-top: 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 0;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 18px 36px rgba(183, 8, 16, 0.32);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-row span {
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.hero-card {
  position: relative;
  isolation: isolate;
  padding: 34px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 247, 242, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -22% 18%;
  height: 170px;
  background: linear-gradient(90deg, var(--red-dark), var(--orange), var(--gold));
  transform: rotate(-8deg);
  z-index: -1;
  opacity: 0.9;
}

.phoenix-orbit {
  position: absolute;
  inset: 24px;
  z-index: -1;
  opacity: 0.28;
}

.phoenix-orbit span {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(183, 8, 16, 0.3);
  border-radius: 50%;
  transform: rotate(var(--r));
}

.phoenix-orbit span:nth-child(1) {
  --r: 12deg;
}

.phoenix-orbit span:nth-child(2) {
  --r: -24deg;
  inset: 18%;
  border-color: rgba(255, 122, 22, 0.42);
}

.phoenix-orbit span:nth-child(3) {
  --r: 44deg;
  inset: 28%;
  border-color: rgba(0, 0, 0, 0.24);
}

.hero-card img {
  width: min(330px, 88%);
  margin: 0 auto;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 22px 28px rgba(24, 8, 8, 0.18));
}

.contact-strip {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.contact-strip a {
  display: block;
  padding: 16px 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red-dark), #4d0006);
  border-radius: var(--radius);
  font-size: 24px;
  font-weight: 900;
}

.contact-strip small {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.value-band {
  padding: 32px 0;
  color: var(--white);
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--orange));
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
}

.value-item {
  padding: 30px;
  background: rgba(19, 7, 9, 0.24);
}

.value-item span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 900;
}

.value-item h2 {
  margin: 0 0 8px;
  font-size: 21px;
}

.value-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p:last-child {
  max-width: 640px;
  margin: 16px auto 0;
  color: var(--muted);
}

.centered {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 42px;
}

.about-copy {
  color: var(--muted);
  font-size: 18px;
}

.about-copy p:first-child {
  margin-top: 0;
}

.services {
  background:
    radial-gradient(circle at top left, rgba(255, 122, 22, 0.13), transparent 30%),
    linear-gradient(180deg, #ffffff, #fff7f2);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  min-height: 230px;
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(115, 0, 11, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(24, 8, 8, 0.08);
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  border-radius: 99px 99px 0 0;
  transform: scaleX(0.45);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
}

.service-card h3 {
  margin: 0 0 10px;
  color: var(--red-dark);
  font-size: 18px;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.process {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(19, 7, 9, 0.92), rgba(19, 7, 9, 0.82)),
    radial-gradient(circle at 72% 28%, rgba(255, 122, 22, 0.28), transparent 35%),
    var(--bg);
}

.process-wrap {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 40px;
  align-items: center;
}

.process-steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.step span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-radius: 50%;
  font-weight: 900;
}

.step h3 {
  margin: 0 0 4px;
}

.step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
}

.contact-info p {
  color: var(--muted);
  font-size: 18px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--bg-2), var(--red-dark));
  border-radius: var(--radius);
  font-size: 18px;
  font-weight: 900;
}

.contact-list span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  background: var(--soft);
  border: 1px solid rgba(115, 0, 11, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(24, 16, 18, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  padding: 14px 15px;
  color: var(--ink);
  font: inherit;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 122, 22, 0.12);
}

.contact-form textarea {
  resize: vertical;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.form-message {
  display: none;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

.form-message.is-success {
  display: block;
  color: #14532d;
  background: #dcfce7;
}

.form-message.is-error {
  display: block;
  color: #7f1d1d;
  background: #fee2e2;
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--bg);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-inner p {
  margin: 0;
}

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

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

@keyframes floatRing {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(-26px, 18px, 0) rotate(12deg);
  }
}

@media (max-width: 1050px) {
  .hero-grid,
  .split,
  .process-wrap,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-card {
    min-height: auto;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 12px 20px;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 82px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: rgba(19, 7, 9, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .section-pad {
    padding: 72px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 96px;
  }

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

  .footer-inner,
  .contact-list a {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-lead,
  .about-copy,
  .contact-info p {
    font-size: 16px;
  }

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

  .service-card {
    min-height: 0;
  }

  .contact-strip a {
    font-size: 20px;
  }

  .contact-form {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}
