:root {
  --ink: #0b0c09;
  --ink-soft: #161812;
  --paper: #f1eddf;
  --paper-dim: #c5c1b4;
  --line: rgba(241, 237, 223, 0.16);
  --line-dark: rgba(11, 12, 9, 0.18);
  --lime: #b9f000;
  --green: #58c700;
  --amber: #e59a00;
  --error: #ff7a68;
  --success: #b9f000;
  --display: "Unbounded", sans-serif;
  --body: "Manrope", sans-serif;
  --gutter: clamp(1.25rem, 3.6vw, 4.75rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--body);
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 50;
  padding: 0.65rem 0.85rem;
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 96px;
  padding: 1rem var(--gutter);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  width: fit-content;
}

.brand img {
  width: clamp(146px, 16vw, 210px);
  height: auto;
}

.header-status,
.header-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-status {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  color: var(--paper-dim);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(185, 240, 0, 0.08);
}

.header-link {
  justify-self: end;
  text-decoration: none;
}

.header-link span {
  margin-left: 0.4rem;
  color: var(--lime);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  min-height: calc(100svh - 96px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.52;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-position: -1px -1px;
  background-size: clamp(72px, 7vw, 118px) clamp(72px, 7vw, 118px);
  mask-image: linear-gradient(90deg, transparent, #000 38%, #000);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: clamp(5rem, 9vw, 9rem) var(--gutter);
}

.eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0 0 2.15rem;
}

.eyebrow span {
  padding: 0.42rem 0.68rem;
  color: var(--paper-dim);
  border: 1px solid var(--line);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
.parcel-title strong {
  font-family: var(--display);
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.2rem, 7.4vw, 8.8rem);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: -0.065em;
}

h1 em,
h2 em {
  color: var(--lime);
  font-style: normal;
}

.hero-lead {
  max-width: 740px;
  margin: clamp(2.3rem, 5vw, 4.4rem) 0 0;
  font-size: clamp(1.15rem, 1.8vw, 1.65rem);
  line-height: 1.5;
}

.hero-support {
  max-width: 620px;
  margin: 1.3rem 0 0;
  color: var(--paper-dim);
  font-size: 1rem;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 0;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.button-primary {
  color: var(--ink);
  background: var(--lime);
}

.button-ghost {
  color: var(--paper);
  border-color: var(--line);
  background: rgba(11, 12, 9, 0.35);
}

.button-ghost:hover {
  border-color: var(--paper);
}

.parcel-stage {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 700px;
  padding: clamp(3rem, 7vw, 7rem) var(--gutter);
  border-left: 1px solid var(--line);
  background: radial-gradient(circle at 58% 42%, rgba(185, 240, 0, 0.11), transparent 38%);
}

.parcel-orbit {
  position: absolute;
  width: min(58vw, 720px);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.parcel-orbit::before,
.parcel-orbit::after {
  position: absolute;
  content: "";
  border: 1px solid var(--line);
  border-radius: inherit;
}

.parcel-orbit::before {
  inset: 12%;
}

.parcel-orbit::after {
  inset: 28%;
}

.parcel-card {
  position: relative;
  z-index: 2;
  width: min(100%, 530px);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 32px 38px 0 rgba(229, 154, 0, 0.9);
  transform: rotate(1.7deg);
}

.parcel-card-head,
.parcel-facts,
.form-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.parcel-card-head {
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.parcel-card-head span:last-child {
  color: #7a5200;
}

.parcel-map {
  position: relative;
  height: clamp(260px, 31vw, 370px);
  overflow: hidden;
  background-image:
    linear-gradient(rgba(11, 12, 9, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 12, 9, 0.13) 1px, transparent 1px);
  background-size: 42px 42px;
}

.plot {
  position: absolute;
  display: block;
  border: 1px solid rgba(11, 12, 9, 0.55);
  background: rgba(11, 12, 9, 0.05);
}

.plot-a {
  inset: 9% 52% 44% 8%;
  clip-path: polygon(0 0, 100% 8%, 86% 100%, 12% 84%);
}

.plot-b {
  inset: 12% 8% 51% 50%;
  clip-path: polygon(8% 0, 100% 13%, 88% 100%, 0 88%);
}

.plot-c {
  inset: 49% 48% 7% 11%;
  background: linear-gradient(135deg, var(--green), var(--lime));
  clip-path: polygon(9% 0, 100% 13%, 88% 100%, 0 84%);
  box-shadow: inset 0 0 0 2px rgba(11, 12, 9, 0.5);
}

.plot-d {
  inset: 47% 8% 9% 53%;
  clip-path: polygon(0 0, 88% 5%, 100% 90%, 13% 100%);
}

.map-pin {
  position: absolute;
  top: 66%;
  left: 34%;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 50% 50% 50% 0;
  font-family: var(--display);
  font-size: 0.85rem;
  transform: rotate(-45deg) translate(12px, -12px);
}

.map-pin::first-letter {
  transform: rotate(45deg);
}

.parcel-title {
  display: grid;
  gap: 0.5rem;
  padding: 1.45rem 1.3rem 1.2rem;
  border-top: 1px solid var(--line-dark);
}

.parcel-title small {
  color: #5d5d53;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.parcel-title strong {
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  letter-spacing: -0.04em;
}

.parcel-facts {
  margin: 0;
  padding: 1.1rem 1.3rem 1.35rem;
  border-top: 1px solid var(--line-dark);
}

.parcel-facts div {
  display: grid;
  gap: 0.3rem;
}

.parcel-facts dt {
  color: #68685e;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.parcel-facts dd {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
}

.parcel-caption {
  position: absolute;
  right: var(--gutter);
  bottom: 2.2rem;
  max-width: 260px;
  margin: 0;
  color: var(--paper-dim);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
}

.offer-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--ink);
  background: var(--paper);
}

.offer-strip article {
  min-height: 280px;
  padding: 2.5rem var(--gutter) 3rem;
  border-right: 1px solid var(--line-dark);
}

.offer-strip article:last-child {
  border-right: 0;
}

.offer-strip span,
.section-index {
  color: #76766b;
  font-family: var(--display);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
}

.offer-strip h2 {
  margin: 3.4rem 0 0.9rem;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  letter-spacing: -0.035em;
}

.offer-strip p {
  max-width: 420px;
  margin: 0;
  color: #55564d;
  line-height: 1.65;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1.14fr);
  gap: clamp(3rem, 8vw, 10rem);
  padding: clamp(5.5rem, 10vw, 10rem) var(--gutter);
  background:
    linear-gradient(118deg, rgba(185, 240, 0, 0.045), transparent 42%),
    var(--ink-soft);
}

.contact-intro h2 {
  margin: 1.7rem 0 2rem;
  font-size: clamp(2.4rem, 5.2vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.contact-intro > p:not(.section-index, .whatsapp-note) {
  max-width: 610px;
  color: var(--paper-dim);
  font-size: 1.05rem;
  line-height: 1.7;
}

.direct-contacts {
  display: grid;
  margin-top: 2.6rem;
  border-top: 1px solid var(--line);
}

.direct-contacts a {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 1rem;
  align-items: center;
  min-height: 82px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: color 160ms ease, padding 160ms ease;
}

.direct-contacts a:hover {
  padding-left: 0.7rem;
  color: var(--lime);
}

.direct-contacts span {
  color: var(--paper-dim);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.direct-contacts strong {
  font-size: 0.95rem;
}

.direct-contacts i {
  color: var(--lime);
  font-style: normal;
}

.whatsapp-note {
  margin: 0.9rem 0 0;
  color: #85867a;
  font-size: 0.72rem;
  line-height: 1.5;
}

.contact-form {
  align-self: start;
  padding: clamp(1.5rem, 3.4vw, 3rem);
  color: var(--ink);
  background: var(--paper);
}

.form-heading {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-dark);
  color: #66675e;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.field {
  display: grid;
  gap: 0.55rem;
  padding: 1.35rem 0 1rem;
  border-bottom: 1px solid var(--line-dark);
}

.field span {
  color: #6c6d63;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: #9a998e;
  opacity: 1;
}

.field:focus-within {
  border-bottom-color: var(--green);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  margin: 1.5rem 0;
  color: #696a60;
  font-size: 0.78rem;
  line-height: 1.5;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 0.08rem 0 0;
  accent-color: var(--green);
}

.button-submit {
  width: 100%;
  color: var(--paper);
  background: var(--ink);
}

.button-submit i {
  margin-left: auto;
  color: var(--lime);
  font-style: normal;
  font-size: 1.25rem;
}

.button-submit[disabled] {
  cursor: wait;
  opacity: 0.65;
}

.form-status {
  min-height: 1.5em;
  margin: 1rem 0 0;
  color: #5d5e55;
  font-size: 0.82rem;
}

.form-status[data-state="error"] {
  color: #b43b2b;
}

.form-status[data-state="success"] {
  color: #427b00;
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  min-height: 110px;
  padding: 1.5rem var(--gutter);
  border-top: 1px solid var(--line);
  color: var(--paper-dim);
  font-size: 0.74rem;
}

.site-footer img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.site-footer a {
  font-weight: 700;
  text-decoration: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: reveal-in 780ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.js .reveal-late {
  animation-delay: 160ms;
}

@keyframes reveal-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 3rem;
  }

  .parcel-stage {
    min-height: 680px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .parcel-orbit {
    width: min(90vw, 680px);
  }

  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 78px;
  }

  .header-status {
    display: none;
  }

  .header-link {
    font-size: 0.66rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    mask-image: linear-gradient(180deg, transparent, #000 25%, #000);
  }

  .hero-copy {
    padding-top: 4.5rem;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2rem, 9.7vw, 4.8rem);
    letter-spacing: -0.075em;
  }

  .hero-actions {
    display: grid;
  }

  .parcel-stage {
    min-height: 560px;
    padding-top: 4rem;
    padding-bottom: 6rem;
  }

  .parcel-card {
    width: calc(100% - 18px);
    box-shadow: 14px 16px 0 rgba(229, 154, 0, 0.9);
  }

  .parcel-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
  }

  .parcel-caption {
    right: var(--gutter);
    bottom: 1.5rem;
    left: var(--gutter);
    text-align: left;
  }

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

  .offer-strip article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .offer-strip h2 {
    margin-top: 2.2rem;
  }

  .contact-section {
    gap: 3.8rem;
  }

  .direct-contacts a {
    grid-template-columns: 88px 1fr auto;
  }

  .form-heading {
    display: grid;
  }

  .site-footer {
    grid-template-columns: auto 1fr;
  }

  .site-footer a {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
