:root {
  --navy: #111111;
  --navy-dark: #050505;
  --gold: #d4aa52;
  --red: #82531a;
  --white: #f8f5ef;
  --slate: #ded7cb;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--white);
  background-color: var(--navy-dark);
  background-image:
    radial-gradient(circle at top left, rgba(212, 170, 82, 0.18), transparent 32%),
    radial-gradient(circle at 85% 10%, rgba(248, 245, 239, 0.06), transparent 24%),
    linear-gradient(140deg, #060606 0%, #111111 46%, #241908 100%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
  border-radius: calc(var(--radius) - 6px);
}

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

p {
  line-height: 1.6;
  color: var(--slate);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: var(--navy-dark);
  z-index: 100;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(248, 245, 239, 0.95);
  border-bottom: 1px solid rgba(5, 5, 5, 0.1);
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  min-width: 0;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.logo__icon {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 0;
}

.logo__text {
  min-width: 0;
  display: grid;
  gap: 0.1rem;
  line-height: 1;
}

.logo__mark {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.logo__name {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 0.4rem 0;
  position: relative;
  color: var(--navy);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--navy-dark);
}

.nav-links a:hover::after,
.nav-links a:focus::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(5, 5, 5, 0.3);
  color: var(--navy);
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  gap: 0.5rem;
  align-items: center;
}

.menu-toggle__icon {
  width: 18px;
  height: 2px;
  background: var(--navy);
  position: relative;
}

.menu-toggle__icon::before,
.menu-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--navy);
}

.menu-toggle__icon::before {
  top: -6px;
}

.menu-toggle__icon::after {
  top: 6px;
}

.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem 2rem;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero__content h1 {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin: 0.25rem 0 0.5rem;
}

.hero__subhead {
  max-width: 38rem;
  font-size: 1.2rem;
  color: var(--white);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.hero__highlights {
  display: grid;
  gap: 1rem;
}

.highlight {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.94), rgba(8, 8, 8, 0.88));
  border: 1px solid rgba(212, 170, 82, 0.2);
}

.hero__media {
  margin: 0;
  position: relative;
}

.hero__media img {
  border: 1px solid rgba(212, 170, 82, 0.18);
  box-shadow: var(--shadow);
}

.hero__media figcaption {
  font-size: 0.85rem;
  color: var(--slate);
  margin-top: 0.5rem;
}

.section {
  padding: 4rem 1.5rem;
}

.section__header {
  max-width: var(--max-width);
  margin: 0 auto 2rem;
}

.section__header h2 {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0.5rem 0;
}

.section__header p {
  max-width: 640px;
}

.section--accent {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.88), rgba(14, 14, 14, 0.96));
}

.section--pattern {
  background-image:
    radial-gradient(circle at top left, rgba(212, 170, 82, 0.24), transparent 45%),
    radial-gradient(circle at bottom right, rgba(248, 245, 239, 0.08), transparent 50%);
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.card-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.card,
.price-card {
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.94), rgba(8, 8, 8, 0.88));
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(212, 170, 82, 0.18);
}

.card h3,
.price-card h3 {
  margin-top: 0.2rem;
  font-family: "Oswald", "Arial Narrow", sans-serif;
}

.card img + h3 {
  margin-top: 0.75rem;
}

.card p,
.price-card p {
  margin: 0.5rem 0 0;
}

.split {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  align-items: start;
}

.contact-stack {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.quote {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  font-style: italic;
}

.quote cite {
  display: block;
  margin-top: 0.75rem;
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

.list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.list li {
  margin-bottom: 0.6rem;
  padding-left: 1.2rem;
  position: relative;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.list--compact li {
  margin-bottom: 0.4rem;
}

.timeline {
  max-width: var(--max-width);
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

.timeline li {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.94), rgba(8, 8, 8, 0.88));
  border: 1px solid rgba(212, 170, 82, 0.18);
  position: relative;
}

.timeline li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  color: var(--gold);
}

.pricing {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.socials {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.socials a {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 170, 82, 0.2);
  background: rgba(12, 12, 12, 0.68);
}

.form {
  display: grid;
  gap: 1rem;
}

.form-embed {
  width: 100%;
  max-width: 100%;
}

.form-embed__brand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 170, 82, 0.22);
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.94), rgba(8, 8, 8, 0.88));
  box-shadow: var(--shadow);
}

.form-embed__brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 0;
}

.form-embed__brand h3 {
  margin: 0 0 0.35rem;
  font-family: "Oswald", "Arial Narrow", sans-serif;
}

.form-embed__brand p {
  margin: 0;
}

.form-embed iframe {
  width: 100%;
  min-height: 1575px;
  border: 0;
}

@media (max-width: 899px) {
  .form-embed iframe {
    min-height: 1800px;
  }
}

.form__field {
  display: grid;
  gap: 0.4rem;
}

input,
select,
textarea {
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(212, 170, 82, 0.2);
  background: rgba(12, 12, 12, 0.88);
  color: var(--white);
  font-family: inherit;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible,
.menu-toggle:focus-visible,
.nav-links a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: 0 10px 25px rgba(212, 170, 82, 0.28);
}

.btn--ghost {
  border-color: rgba(247, 247, 243, 0.4);
  color: var(--white);
}

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

.footer {
  text-align: center;
  padding: 2rem 1.5rem 3rem;
  background: var(--navy-dark);
}

.footer p {
  margin: 0;
}

.footer__powered {
  margin-top: 0.6rem;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--slate);
}

.footer__powered-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__actions {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.footer__link {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(247, 247, 243, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  cursor: pointer;
}

.footer__link:hover,
.footer__link:focus-visible {
  color: var(--navy-dark);
  background: var(--gold);
}

.modal {
  border: none;
  padding: 0;
  max-width: 680px;
  width: min(90vw, 680px);
  border-radius: var(--radius);
  background: rgba(10, 10, 10, 0.98);
  color: var(--white);
  box-shadow: var(--shadow);
}

.modal::backdrop {
  background: rgba(8, 12, 18, 0.7);
}

.modal__content {
  padding: 2rem;
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.modal__header h2 {
  margin: 0;
  font-family: "Oswald", "Arial Narrow", sans-serif;
}

.modal__close {
  border: 1px solid rgba(247, 247, 243, 0.3);
  background: transparent;
  color: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  cursor: pointer;
}

.modal__close:hover,
.modal__close:focus-visible {
  background: var(--gold);
  color: var(--navy-dark);
}

.modal__body p {
  margin-top: 1rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1.1fr 0.9fr;
    padding-top: 5rem;
  }

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

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

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

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

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

@media (max-width: 899px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 1.5rem;
    background: rgba(248, 245, 239, 0.98);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1rem;
    flex-direction: column;
    min-width: 200px;
    display: none;
  }

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

  .logo__mark {
    font-size: 0.62rem;
  }

  .logo__name {
    font-size: 1.12rem;
  }

  .form-embed__brand {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
