:root {
  color-scheme: dark;
  --base: #0a0a0a;
  --base-2: #151514;
  --panel: #f5f0eb;
  --panel-ink: #0a0a0a;
  --ink: #f5f0eb;
  --muted: #9a968d;
  --line: #2d2d2a;
  --line-dark: rgba(20, 29, 25, 0.16);
  --gold: #c2ff00;
  --copper: #a09280;
  --teal: #c2ff00;
  --forest: #244f3c;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 8%, rgba(194, 255, 0, 0.08), transparent 32%),
    linear-gradient(135deg, #0a0a0a 0%, #151514 58%, #0a0a0a 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 13px clamp(16px, 4vw, 54px);
  background: rgba(10, 10, 10, 0.88);
  border-bottom: 0.5px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  padding: 5px;
  border: 0.5px solid #3a3934;
  border-radius: 12px;
  background: #0a0a0a;
}

.brand small,
figcaption {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: rgba(247, 242, 231, 0.82);
  font-size: 0.95rem;
}

nav a {
  text-decoration: none;
}

.language-switcher {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.lang-button {
  display: inline-flex;
  min-width: 44px;
  height: 32px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 0.5px solid transparent;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
}

.lang-button.active {
  background: var(--gold);
  color: var(--base);
  border-color: var(--gold);
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #0a0a0a;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(15, 19, 16, 0.96), transparent);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 17, 14, 0.94), rgba(12, 17, 14, 0.64) 50%, rgba(12, 17, 14, 0.18)),
    url("assets/wingcopter-delivery.png");
  background-position: center;
  background-size: cover;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 36px));
  margin: 0 0 clamp(44px, 9vh, 94px) clamp(18px, 7vw, 92px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.55rem, 6.6vw, 6.1rem);
  line-height: 0.97;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(1.95rem, 4vw, 3.75rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.hero-copy p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(247, 242, 231, 0.86);
  font-size: 1.12rem;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--gold);
  color: #15130d;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  border-color: rgba(215, 180, 93, 0.35);
}

.button.disabled {
  opacity: 0.55;
  pointer-events: none;
}

.signal-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.82);
}

.signal-bar div {
  min-height: 118px;
  padding: 22px clamp(18px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.signal-bar strong {
  display: block;
  color: var(--gold);
  font-size: 1.6rem;
}

.signal-bar span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: clamp(64px, 10vw, 120px) clamp(18px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
}

.section-copy p,
.booking-intro p,
.fee-section p,
.steps p,
.fee-grid p {
  color: var(--muted);
}

.section-copy p {
  max-width: 700px;
  font-size: 1.05rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--teal);
}

.image-panel {
  margin: 0;
}

.image-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

figcaption {
  margin-top: 10px;
}

.process {
  background: rgba(248, 245, 236, 0.06);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.steps article,
.fee-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #1f1f1c;
}

.steps span {
  display: block;
  margin-bottom: 32px;
  color: var(--teal);
  font-weight: 900;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(64px, 10vw, 120px) clamp(18px, 5vw, 72px);
}

.booking-intro {
  position: sticky;
  top: 104px;
  align-self: start;
}

.booking-form {
  display: grid;
  gap: 16px;
}

fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  background: var(--panel);
  color: var(--panel-ink);
}

legend {
  padding: 0 8px;
  color: var(--gold);
  font-weight: 900;
}

label {
  display: grid;
  gap: 8px;
  color: #526158;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c9c4b6;
  border-radius: 6px;
  background: #fffdf6;
  color: #151a17;
  font: inherit;
  padding: 12px 13px;
}

textarea,
label:has(textarea) {
  grid-column: 1 / -1;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(57, 211, 189, 0.22);
  border-color: var(--forest);
}

.form-footer {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(248, 245, 236, 0.08);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(247, 242, 231, 0.84);
}

.consent input {
  width: 18px;
  margin-top: 3px;
}

output {
  display: block;
  margin-top: 18px;
  color: var(--teal);
  font-weight: 900;
}

.fee-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 5vw, 70px);
  background: #151514;
  border-top: 1px solid var(--line);
}

.fee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 5vw, 72px);
  background: #0a0a0a;
  color: var(--white);
  border-top: 1px solid var(--line);
}

.site-footer p {
  color: var(--muted);
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  nav {
    justify-content: flex-start;
  }

  .language-switcher {
    justify-content: flex-start;
  }
}

@media (max-width: 980px) {
  .signal-bar,
  .steps,
  .fee-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .booking-section,
  .fee-section {
    grid-template-columns: 1fr;
  }

  .booking-intro {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    min-height: 720px;
  }

  .hero-copy {
    margin-left: 18px;
    margin-bottom: 36px;
  }

  .signal-bar,
  .steps,
  .fee-grid,
  fieldset {
    grid-template-columns: 1fr;
  }

  .signal-bar div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .button {
    width: 100%;
  }
}
