:root {
  /* Brown ↔ green inverted: green bases, brown accents (logo hues) */
  --ink: #060a06;
  --bg-deep: #0a1008;
  --bg: #0e160c;
  --bg-alt: #121a10;
  --panel-top: #1c2816;
  --panel-bottom: #121c0e;
  --stone: #2a3424;
  --dirt: #301800;
  --dirt-bright: #c49a5a;
  --dirt-mid: #6b4528;
  --dirt-shadow: #3d2814;
  --grass: #60a818;
  --grass-bright: #7ec830;
  --grass-shadow: #487818;
  --grass-dark: #345018;
  --light: #f0f0f0;
  --light-dim: #d8d8d8;
  --text: #f0f0f0;
  --muted: #a8b0a0;
  --accent: #e8dcc8;
  --danger: #e07060;
  --success: #d4b896;
}

* {
  box-sizing: border-box;
}

html {
  background-color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  /* Layered “grass / cave” feel: soft light above, dirt warmth below, block rows, subtle grid */
  background-color: #060906;
  background-image:
    radial-gradient(ellipse 130% 70% at 50% -15%, rgba(126, 200, 48, 0.14), transparent 52%),
    radial-gradient(ellipse 110% 55% at 50% 108%, rgba(61, 40, 20, 0.35), transparent 48%),
    radial-gradient(ellipse 85% 95% at 50% 50%, transparent 35%, rgba(3, 6, 3, 0.75) 100%),
    repeating-linear-gradient(
      0deg,
      var(--bg-deep) 0 24px,
      var(--bg) 24px 48px,
      #0c110a 48px 72px,
      var(--bg-alt) 72px 96px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02) 0 1px,
      transparent 1px 48px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0 95px,
      rgba(0, 0, 0, 0.12) 95px 96px
    );
}

h1,
h2,
h3,
.btn,
.chip {
  font-family: "Press Start 2P", monospace;
  line-height: 1.4;
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 18, 10, 0.96);
  border-bottom: 4px solid var(--ink);
  overflow: visible;
}

body.nav-open {
  overflow: hidden;
}

.nav-wrap {
  position: relative;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px 14px;
  flex-wrap: nowrap;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 3px solid var(--ink);
  background: linear-gradient(180deg, #354428, var(--stone));
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--grass-bright);
  outline-offset: 2px;
}

.nav-toggle__bars {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 15px;
}

.nav-toggle__bar {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--light-dim);
  border-radius: 1px;
  transition: transform 0.22s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 101;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
  transition:
    max-height 0.35s ease,
    opacity 0.22s ease,
    visibility 0.35s ease;
  background: rgba(8, 14, 8, 0.98);
  border-bottom: 4px solid var(--ink);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.site-nav.is-open {
  max-height: min(75vh, 440px);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  overflow-y: auto;
}

.site-nav__list {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 14px 16px 20px;
  justify-content: stretch;
}

.site-nav a {
  display: block;
  padding: 12px 14px;
  border: 3px solid var(--ink);
  background: linear-gradient(180deg, #354428, var(--stone));
  color: var(--light-dim);
  text-decoration: none;
  font-family: "Press Start 2P", monospace;
  font-size: clamp(8px, 2.4vw, 10px);
  line-height: 1.45;
  white-space: normal;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.site-nav a:hover {
  color: var(--dirt-bright);
  background: linear-gradient(180deg, #3d4e30, #2a3424);
}

.site-nav a:focus-visible {
  outline: 2px solid var(--grass-bright);
  outline-offset: 2px;
}

.nav-cta {
  flex-shrink: 0;
}

@media (min-width: 880px) {
  body.nav-open {
    overflow: auto;
  }

  .nav-wrap {
    padding: 14px 0;
  }

  .nav-toggle {
    display: none !important;
  }

  .site-nav {
    position: static;
    flex: 1 1 auto;
    min-width: 0;
    max-height: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    overflow: visible !important;
    background: transparent;
    border-bottom: none;
    box-shadow: none;
    margin-inline: 8px;
  }

  .site-nav.is-open {
    max-height: none;
  }

  .site-nav__list {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 4px 0 2px;
    justify-content: center;
  }

  .site-nav a {
    display: inline-block;
    padding: 10px 12px;
    font-size: clamp(7px, 1.1vw, 9px);
    line-height: 1.35;
    white-space: nowrap;
    width: auto;
  }
}

section[id],
.hero.section-hero {
  scroll-margin-top: clamp(88px, 22vw, 160px);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  line-height: 0;
}

.brand img {
  display: block;
  height: clamp(72px, 14vw, 112px);
  width: auto;
  max-width: min(360px, 72vw);
  object-fit: contain;
  object-position: left center;
  image-rendering: pixelated;
}

.site-main {
  overflow-x: hidden;
}

.hero.section-hero {
  padding: clamp(48px, 8vw, 88px) 0 clamp(56px, 7vw, 80px);
  position: relative;
}

.hero.section-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(196, 154, 90, 0.25) 20%,
    rgba(126, 200, 48, 0.2) 50%,
    rgba(196, 154, 90, 0.25) 80%,
    transparent
  );
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.2fr 1fr;
  align-items: stretch;
}

.frame-block {
  background: linear-gradient(165deg, var(--panel-top) 0%, var(--panel-bottom) 100%);
  border: 4px solid #0a1208;
  box-shadow:
    0 0 0 2px rgba(196, 154, 90, 0.32),
    0 14px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.hero-copy {
  padding: clamp(22px, 4vw, 32px);
}

h1 {
  font-size: clamp(24px, 3.2vw, 36px);
  margin: 0 0 18px;
}

.lead {
  margin: 0;
  color: var(--muted);
  max-width: 65ch;
}

.cta-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  border: 3px solid var(--ink);
  text-decoration: none;
  font-size: 11px;
  padding: 12px 16px;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(180deg, var(--dirt-bright), var(--dirt-shadow));
  color: var(--light);
}

.btn-ghost {
  background: var(--stone);
  color: var(--light);
}

.contact-form {
  background: linear-gradient(180deg, var(--panel-top), var(--panel-bottom));
  border: 4px solid #0e160c;
  box-shadow: 0 0 0 4px rgba(240, 240, 240, 0.04) inset;
}

.hero-card {
  padding: 24px;
}

.hero-card h2 {
  margin: 0 0 14px;
  font-size: 17px;
}

.hero-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.hero-card li + li {
  margin-top: 8px;
}

.layer-divider {
  height: 20px;
  width: 100%;
  image-rendering: pixelated;
}

.layer-divider--dirt {
  background: repeating-linear-gradient(
    90deg,
    #24160e 0 8px,
    #3d2818 8px 16px,
    #1a100a 16px 24px,
    #322018 24px 32px
  );
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.06),
    inset 0 -3px 0 rgba(0, 0, 0, 0.45);
}

.layer-divider--grass {
  background: repeating-linear-gradient(
    90deg,
    #345018 0 8px,
    #487818 8px 16px,
    #283810 16px 24px,
    #5a9820 24px 32px
  );
  box-shadow:
    inset 0 2px 0 rgba(126, 200, 48, 0.2),
    inset 0 -3px 0 rgba(0, 0, 0, 0.4);
}

.section {
  padding: clamp(56px, 8vw, 88px) 0;
}

.section-panels {
  position: relative;
}

.section-panels::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(96, 168, 24, 0.06), transparent 60%);
  pointer-events: none;
}

.section-panels > .container {
  position: relative;
  z-index: 1;
}

.section-alt {
  position: relative;
  background: linear-gradient(180deg, #0d160c 0%, #080e08 40%, #0a120a 100%);
  border-block: 1px solid rgba(196, 154, 90, 0.12);
  box-shadow: inset 0 24px 48px rgba(0, 0, 0, 0.25);
}

.section-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: clamp(28px, 4vw, 40px);
  padding-bottom: clamp(20px, 3vw, 28px);
  border-bottom: 4px dashed rgba(196, 154, 90, 0.28);
}

.section-intro--center {
  align-items: center;
  text-align: center;
}

.section-intro--center .section-intro__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.section-intro--stack {
  align-items: flex-start;
}

.section-intro__body {
  flex: 1;
  min-width: 0;
  width: 100%;
}

.section-intro .section-title {
  margin: 0 0 12px;
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
  font-family: "Press Start 2P", monospace;
  font-size: clamp(10px, 1.35vw, 14px);
  line-height: 1.55;
  padding: 14px 18px;
  color: var(--dirt-bright);
  background: linear-gradient(180deg, #2a1c14, #140c08);
  border: 4px solid var(--dirt-mid);
  box-shadow:
    inset 0 -5px 0 rgba(0, 0, 0, 0.35),
    0 4px 0 rgba(0, 0, 0, 0.25);
  text-align: center;
}

.section-intro:not(.section-intro--center) .section-title {
  text-align: left;
}

.section-intro--center .section-title {
  margin-inline: auto;
}

.section-guarantee {
  padding-top: clamp(64px, 9vw, 96px);
  padding-bottom: clamp(72px, 10vw, 104px);
}

.section-subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 52ch;
}

.section-intro--center .section-subtitle {
  margin-inline: auto;
}

.cards-grid {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 28px);
  align-items: stretch;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 18px 18px 22px;
  overflow: visible;
  border: 4px solid #0e160c;
  border-top: 6px solid var(--grass-shadow);
  background: linear-gradient(
    165deg,
    #243218 0%,
    var(--panel-bottom) 38%,
    var(--panel-top) 100%
  );
  box-shadow:
    0 0 0 4px rgba(240, 240, 240, 0.05) inset,
    0 12px 32px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.package-card:hover {
  transform: translateY(-4px);
}

.package-card:not(.featured):hover {
  box-shadow:
    0 0 0 4px rgba(240, 240, 240, 0.06) inset,
    0 18px 40px rgba(0, 0, 0, 0.45);
}

.package-card.featured {
  isolation: isolate;
  padding: 22px 24px 24px 20px;
  border-width: 5px;
  border-color: #c9a050;
  border-top-color: #f0d070;
  z-index: 1;
  background:
    radial-gradient(ellipse 130% 90% at 50% -30%, rgba(255, 230, 160, 0.28), transparent 58%),
    linear-gradient(165deg, #423828 0%, #1a140e 42%, #221c12 100%);
  box-shadow:
    0 0 0 3px rgba(255, 200, 100, 0.55),
    0 0 0 7px rgba(20, 14, 8, 0.95),
    0 0 48px rgba(255, 180, 70, 0.35),
    0 0 96px rgba(255, 140, 40, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -12px 32px rgba(0, 0, 0, 0.38);
}

.package-card.featured > :not(.package-card__ribbon) {
  position: relative;
  z-index: 1;
}

.package-card.featured::before {
  content: "";
  position: absolute;
  inset: -4px;
  z-index: 0;
  border: 2px solid rgba(255, 220, 150, 0.4);
  pointer-events: none;
  opacity: 0.85;
}

.package-card.featured::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    transparent 0%,
    transparent 36%,
    rgba(255, 252, 220, 0.35) 50%,
    transparent 64%,
    transparent 100%
  );
  background-size: 240% 100%;
  animation: featured-shine 3.2s ease-in-out infinite;
  opacity: 0.75;
}

@keyframes featured-shine {
  0%,
  100% {
    background-position: 140% 0;
  }

  50% {
    background-position: -40% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .package-card.featured::after {
    animation: none;
    opacity: 0.1;
  }
}

@media (min-width: 880px) {
  .package-card.featured {
    transform: scale(1.03);
  }

  .package-card.featured:hover {
    transform: scale(1.03) translateY(-5px);
  }
}

.package-card.featured:hover {
  box-shadow:
    0 0 0 3px rgba(255, 220, 140, 0.75),
    0 0 0 8px rgba(20, 14, 8, 0.95),
    0 0 56px rgba(255, 200, 90, 0.45),
    0 0 100px rgba(255, 150, 50, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -12px 32px rgba(0, 0, 0, 0.4);
}

.package-card__ribbon {
  position: absolute;
  top: 14px;
  right: -6px;
  z-index: 3;
  padding: 8px 14px;
  font-family: "Press Start 2P", monospace;
  font-size: 7px;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: linear-gradient(180deg, var(--dirt-bright), var(--dirt-mid));
  border: 3px solid var(--ink);
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.35);
  transform: rotate(3deg);
}

.package-card.featured .package-card__ribbon {
  top: 16px;
  right: -4px;
  padding: 10px 18px;
  font-size: clamp(7px, 1vw, 9px);
  background: linear-gradient(180deg, #ffecc8, #e8b84a);
  box-shadow:
    0 4px 0 rgba(0, 0, 0, 0.38),
    0 0 28px rgba(255, 200, 80, 0.55);
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.5));
}

.package-card__head {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.package-card .chip {
  display: inline-block;
  margin: 0;
  padding: 9px 12px;
  font-size: clamp(8px, 1.2vw, 10px);
  color: var(--light);
  background: linear-gradient(180deg, #1a2414, var(--ink));
  border: 3px solid #101810;
  box-shadow: inset 0 1px 0 rgba(126, 200, 48, 0.12);
}

.package-card .chip--diamond {
  color: #b8f8ff;
  background: linear-gradient(180deg, #1a3040, #0c1820);
  border-color: #2a6a82;
  box-shadow:
    inset 0 1px 0 rgba(120, 220, 255, 0.2),
    0 0 12px rgba(80, 200, 255, 0.12);
}

.package-card .chip--gold {
  color: #fff3b0;
  background: linear-gradient(180deg, #4a3a10, #2a2208);
  border-color: #8a7020;
  box-shadow:
    inset 0 1px 0 rgba(255, 220, 120, 0.25),
    0 0 12px rgba(255, 200, 60, 0.1);
}

.package-card.featured .chip--gold {
  border-color: #c9a040;
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 200, 0.45),
    0 0 22px rgba(255, 200, 80, 0.45),
    0 0 40px rgba(255, 180, 50, 0.2);
}

.package-card .chip--copper {
  color: #ffd4b8;
  background: linear-gradient(180deg, #4a2818, #28140c);
  border-color: #8a5030;
  box-shadow: inset 0 1px 0 rgba(255, 160, 100, 0.15);
}

.package-card__tier-note {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  font-style: italic;
  color: var(--muted);
  line-height: 1.35;
  max-width: 20rem;
}

.package-card__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 10px;
  margin: 0 0 14px;
  padding: 14px 12px 12px;
  background: linear-gradient(180deg, rgba(196, 154, 90, 0.18), rgba(0, 0, 0, 0.28));
  border: 3px solid rgba(196, 154, 90, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.package-card.featured .package-card__price {
  border-color: rgba(255, 215, 130, 0.75);
  background: linear-gradient(180deg, rgba(255, 230, 160, 0.28), rgba(40, 30, 12, 0.45));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 28px rgba(255, 190, 80, 0.22);
}

.price__currency {
  font-family: "Press Start 2P", monospace;
  font-size: clamp(16px, 2.8vw, 22px);
  color: var(--dirt-bright);
  line-height: 1;
}

.price__amount {
  font-family: "Press Start 2P", monospace;
  font-size: clamp(22px, 4.2vw, 36px);
  line-height: 1;
  color: var(--accent);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.45);
}

.price__note {
  flex: 1 0 100%;
  margin-top: 4px;
  font-family: Inter, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.price__plus {
  flex: 1 0 100%;
  margin-top: 2px;
  font-family: Inter, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--light-dim);
  line-height: 1.35;
}

.package-card__title {
  margin: 0 0 14px;
  font-family: Inter, sans-serif;
  font-size: clamp(0.95rem, 1.35vw, 1.08rem);
  font-weight: 800;
  line-height: 1.35;
  color: var(--light);
  letter-spacing: -0.02em;
}

.package-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: auto;
}

.package-card__list li {
  position: relative;
  margin: 0;
  padding: 10px 10px 10px 34px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--muted);
  border-top: 2px dashed rgba(196, 154, 90, 0.15);
}

.package-card__list li:first-child {
  border-top: none;
}

.package-card__list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: linear-gradient(180deg, var(--grass-bright), var(--grass-shadow));
  border: 2px solid var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 2px 0 rgba(0, 0, 0, 0.35);
}

.package-card__cta {
  display: block;
  width: 100%;
  margin-top: 18px;
  padding: 14px 16px;
  box-sizing: border-box;
  font-size: clamp(9px, 1.25vw, 11px);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.package-card__cta--featured {
  background: linear-gradient(180deg, #fff0b8, #e8b848);
  color: var(--ink);
  border-color: var(--ink);
  box-shadow:
    0 0 24px rgba(255, 200, 90, 0.55),
    0 5px 0 rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.package-card__cta--featured:hover {
  filter: brightness(1.07);
}

.guarantee {
  padding: clamp(24px, 4vw, 40px);
  margin-top: 8px;
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
  border-color: var(--dirt-bright);
}

.guarantee__lede {
  margin: 0;
  font-size: clamp(1rem, 2.1vw, 1.2rem);
  line-height: 1.7;
  color: var(--muted);
}

.section-faq {
  padding-bottom: clamp(64px, 9vw, 96px);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 48rem;
}

.faq-item {
  border: 4px solid #0e160c;
  background: linear-gradient(180deg, var(--panel-top), var(--panel-bottom));
  box-shadow: 0 0 0 4px rgba(240, 240, 240, 0.04) inset;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 52px 18px 18px;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--text);
  position: relative;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Press Start 2P", monospace;
  font-size: 12px;
  color: var(--dirt-bright);
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--grass-bright);
  outline-offset: 2px;
}

.faq-item__body {
  padding: 0 18px 20px;
  margin-inline: 6px;
  border-top: 2px dashed rgba(196, 154, 90, 0.22);
}

.faq-item__body p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 1rem;
}

.faq-item__body strong {
  color: var(--accent);
}

.contact-copy {
  padding-top: 6px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

.contact-form {
  padding: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 3px solid var(--ink);
  background: #080c08;
  color: var(--text);
  padding: 12px;
  margin-bottom: 12px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}

#form-status {
  min-height: 24px;
  margin: 10px 0 0;
  font-weight: 700;
}

#form-status.error {
  color: var(--danger);
}

#form-status.success {
  color: var(--success);
}

.footer {
  padding: 28px 0 32px;
  border-top: 4px solid var(--ink);
  background: #060a06;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.footer__copy {
  margin: 0;
  color: var(--light-dim);
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.footer__legal {
  margin: 0;
  max-width: 52rem;
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--muted);
  text-align: center;
  opacity: 0.95;
}

@media (max-width: 960px) {
  .hero-grid,
  .cards-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

}
