:root {
  --bg: #050506;
  --bg-soft: #0b0b0d;
  --ink: #111113;
  --paper: #f5f3ee;
  --paper-soft: #e7e3d8;
  --text: #f7f6f2;
  --muted: #c8c4ba;
  --line: rgba(255, 255, 255, 0.16);
  --line-dark: rgba(17, 17, 19, 0.16);
  --red: #ef1b24;
  --red-deep: #b80e17;
  --gold: #f2c84b;
  --cyan: #27b6f6;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --font-display: "Anton", "Arial Narrow", Impact, sans-serif;
  --font-body: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --header-h: 74px;
}

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

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 9999;
  background: var(--gold);
  color: var(--ink);
  padding: 0.75rem 1rem;
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 5, 6, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  flex: 0 0 auto;
  color: var(--red);
}

.brand-type {
  display: grid;
  line-height: 0.95;
  text-transform: uppercase;
}

.brand-type strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.18rem;
  letter-spacing: 0.02em;
}

.brand-type span {
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav a:hover {
  color: var(--red);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  align-items: center;
  justify-content: center;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 44px;
  padding: 0.78rem 1.05rem;
  border: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

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

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

.btn-red:hover {
  background: #ff2933;
  border-color: #ff2933;
  color: #fff;
}

.btn-dark {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.btn-light {
  color: var(--ink);
  border-color: var(--ink);
  background: var(--paper);
}

.btn-large {
  min-height: 52px;
  padding-inline: 1.28rem;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.98) 0%, rgba(5, 5, 6, 0.82) 38%, rgba(5, 5, 6, 0.34) 100%),
    radial-gradient(circle at 18% 18%, rgba(239, 27, 36, 0.26), transparent 26%),
    radial-gradient(circle at 78% 78%, rgba(39, 182, 246, 0.16), transparent 30%);
  z-index: -1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  filter: saturate(1.05) contrast(1.05);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.52fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: end;
}

.hero h1,
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 0.94;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(4rem, 11vw, 8.8rem);
}

.hero-copy {
  max-width: 760px;
}

.hero-lead {
  max-width: 640px;
  margin-top: 1.2rem;
  color: var(--text);
  font-size: clamp(1.04rem, 1.7vw, 1.35rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2rem;
  max-width: 600px;
  border: 1px solid var(--line);
  background: var(--line);
}

.proof-stat {
  background: rgba(5, 5, 6, 0.64);
  padding: 1rem;
}

.proof-stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1;
  color: var(--red);
}

.proof-stat span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-panel {
  align-self: end;
  border-left: 4px solid var(--red);
  padding: 1.15rem 1.2rem;
  background: rgba(5, 5, 6, 0.74);
  box-shadow: var(--shadow);
}

.hero-panel h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
}

.hero-panel p {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.band {
  background: var(--paper);
  color: var(--ink);
}

.dark-band {
  background: var(--bg);
  color: var(--text);
}

.section {
  padding: clamp(3.5rem, 8vw, 6.4rem) 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(280px, 0.48fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.section-title span {
  color: var(--red);
}

.section-copy {
  color: color-mix(in srgb, currentColor 78%, transparent);
  font-size: 1.06rem;
}

.kicker-line {
  width: 44px;
  height: 4px;
  background: var(--red);
  margin-top: 1rem;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.method-card {
  min-height: 390px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  background: var(--paper);
}

.method-card img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  filter: saturate(0.98);
}

.method-card:nth-child(4) img {
  object-position: left center;
}

.method-card div {
  padding: 1.1rem;
}

.method-card h3,
.event-card h3,
.price-card h3,
.answer-card h3,
.mini-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.02;
}

.method-card h3 {
  font-size: 1.7rem;
}

.method-card p {
  margin-top: 0.65rem;
  color: #424244;
}

.process-strip {
  display: grid;
  grid-template-columns: 0.7fr repeat(5, 1fr);
  border-block: 1px solid var(--line);
}

.process-intro,
.process-step {
  min-height: 190px;
  padding: 1.25rem;
  border-right: 1px solid var(--line);
}

.process-step:last-child {
  border-right: 0;
}

.process-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.process-intro strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.process-step b {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--red);
  font-size: 2.2rem;
  line-height: 1;
}

.process-step h3 {
  margin-top: 1.55rem;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.45rem;
}

.process-step p {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.7fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.feature-media {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  background: var(--bg-soft);
}

.feature-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.feature-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 36%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
}

.feature-note {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  padding-top: 0.8rem;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.copy-stack > * + * {
  margin-top: 1rem;
}

.copy-stack h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.98;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
}

.copy-stack p,
.copy-stack li {
  color: var(--muted);
}

.check-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.72rem;
}

.check-list li {
  position: relative;
  padding-left: 1.55rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 0.72rem;
  height: 0.72rem;
  background: var(--red);
  transform: rotate(45deg);
}

.event-grid,
.price-grid,
.answer-grid,
.mini-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.event-grid {
  grid-template-columns: repeat(3, 1fr);
}

.event-card,
.price-card,
.answer-card,
.mini-card {
  background: var(--bg-soft);
  padding: 1.2rem;
}

.event-card h3 {
  font-size: 1.65rem;
}

.event-card p,
.price-card p,
.answer-card p,
.mini-card p {
  margin-top: 0.65rem;
  color: var(--muted);
}

.price-grid {
  grid-template-columns: repeat(3, 1fr);
}

.price-card {
  min-height: 230px;
}

.price-card h3 {
  font-size: 1.75rem;
}

.price-card strong {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 400;
  line-height: 1;
  color: var(--red);
}

.price-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.gallery-rail {
  display: grid;
  grid-template-columns: 1.2fr 0.88fr 0.88fr;
  gap: 1rem;
}

.gallery-rail img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.gallery-rail img:first-child {
  min-height: 520px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.faq-item {
  background: var(--paper);
  color: var(--ink);
  padding: 1.15rem;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  font-weight: 900;
}

.faq-question span {
  color: var(--red);
  font-size: 1.35rem;
  line-height: 1;
}

.faq-answer {
  display: none;
  margin-top: 0.8rem;
  color: #484848;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 0.9fr);
  min-height: 680px;
}

.contact-media {
  position: relative;
  overflow: hidden;
}

.contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-copy {
  position: absolute;
  inset: auto 0 0;
  padding: clamp(1.25rem, 4vw, 2rem);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.92));
}

.contact-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.contact-copy p {
  max-width: 520px;
  margin-top: 1rem;
  color: var(--muted);
}

.contact-form-wrap {
  display: flex;
  align-items: center;
  padding: clamp(1.25rem, 4vw, 3rem);
  background: var(--paper);
  color: var(--ink);
}

.lead-form {
  width: 100%;
  display: grid;
  gap: 0.86rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.86rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  padding: 0.78rem 0.82rem;
}

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

.form-note {
  min-height: 1.4rem;
  color: #474747;
  font-size: 0.9rem;
}

.lead-form.is-success .form-note {
  color: #0d6b2d;
  font-weight: 800;
}

.page-hero {
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.98), rgba(5, 5, 6, 0.72)),
    var(--bg);
  border-bottom: 1px solid var(--line);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.58fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.page-hero h1 {
  font-size: clamp(3.4rem, 7vw, 6.6rem);
}

.page-hero p {
  max-width: 660px;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.14rem;
}

.page-hero img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.35fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}

.article {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(1.25rem, 4vw, 2.4rem);
}

.article > * + * {
  margin-top: 1rem;
}

.article h2,
.article h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.article h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.article h3 {
  font-size: 1.8rem;
}

.article ul,
.article ol {
  padding-left: 1.3rem;
}

.article li + li {
  margin-top: 0.5rem;
}

.side-panel {
  align-self: start;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  border: 1px solid var(--line);
  padding: 1.1rem;
  background: var(--bg-soft);
}

.side-panel h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.8rem;
}

.side-panel a {
  display: block;
  margin-top: 0.75rem;
  color: var(--muted);
  text-decoration: none;
}

.side-panel a:hover {
  color: var(--red);
}

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

.answer-card {
  text-decoration: none;
  color: inherit;
}

.answer-card:hover h3 {
  color: var(--red);
}

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

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.3rem 0;
  color: var(--muted);
  background: #030303;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.footer-inner a {
  color: var(--muted);
  text-decoration: none;
}

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

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

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

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

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 20px 1.2rem;
    background: rgba(5, 5, 6, 0.98);
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav a {
    padding: 0.95rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .section-head,
  .feature-split,
  .page-hero-grid,
  .content-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 520px;
  }

  .process-strip {
    grid-template-columns: 1fr;
  }

  .process-intro,
  .process-step {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .method-grid,
  .event-grid,
  .price-grid,
  .answer-grid,
  .mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-rail {
    grid-template-columns: 1fr;
  }

  .gallery-rail img,
  .gallery-rail img:first-child {
    min-height: 320px;
  }

  .side-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 66px;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .brand-type strong {
    font-size: 0.98rem;
  }

  .brand-type span {
    font-size: 0.58rem;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(5, 5, 6, 0.86) 0%, rgba(5, 5, 6, 0.96) 42%, rgba(5, 5, 6, 0.99) 100%),
      radial-gradient(circle at 18% 18%, rgba(239, 27, 36, 0.22), transparent 28%);
  }

  .hero-bg img {
    object-position: 63% top;
    opacity: 0.56;
  }

  .hero h1 {
    width: min-content;
    max-width: 100%;
    font-size: clamp(3rem, 14.8vw, 4rem);
  }

  .hero-lead {
    max-width: 34ch;
    font-size: 1rem;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
    padding-inline: 0.85rem;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .method-grid,
  .event-grid,
  .price-grid,
  .faq-list,
  .answer-grid,
  .mini-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .feature-media {
    min-height: 320px;
  }

  .contact-media {
    min-height: 360px;
  }
}
