:root {
  --text-black: #121212;
  --white: #ffffff;
  --dark-teaser: #242424;
  --light-teaser: #f6f6f6;
  --highlight-yellow: #f5c11a;
  --secondary-beige: #bfb9a5;
  --shop-dark: #242833;
  --shop-light-beige: #e4e0d4;
  --shop-dark-beige: #bfb9a5;
  --alert-red: #dd0000;
  --line: #121212;
  --muted: #5e5a51;
  --hero-black: #0f0f10;
  --hero-black-2: #181819;
  --max-width: 1440px;
  --shadow-hard: 6px 6px 0 #121212;
  --radius-none: 0;
  --section-space: clamp(4.5rem, 8vw, 8rem);
  --surface-primary: var(--white);
  --surface-secondary: var(--light-teaser);
  --surface-tertiary: var(--shop-light-beige);
  --surface-technical: var(--shop-dark);
  --surface-technical-soft: var(--dark-teaser);
  --accent-primary: var(--highlight-yellow);
  --accent-secondary: var(--secondary-beige);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-black);
  background: var(--surface-secondary);
  font-family: "Inter", sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

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

::selection {
  color: var(--text-black);
  background: var(--highlight-yellow);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 50;
  padding: 0.75rem 1rem;
  background: var(--white);
  font-weight: 700;
}

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

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.narrow {
  max-width: 58rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 2px solid var(--line);
  backdrop-filter: blur(10px);
}

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

.site-logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 20px 40px 20px 0;
}

.site-logo img {
  width: 160px;
  height: auto;
}

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

.primary-nav,
.header-tools,
.lang-switcher {
  display: flex;
  align-items: center;
}

.primary-nav {
  justify-content: center;
  gap: 1.15rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-nav a {
  padding: 0.2rem 0;
}

.header-tools {
  gap: 1rem;
}

.lang-switcher {
  border: 2px solid var(--line);
  background: var(--surface-secondary);
}

.lang-switcher a {
  padding: 0.55rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lang-switcher .is-active {
  background: var(--secondary-beige);
  color: var(--text-black);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.55rem;
  border: 2px solid var(--line);
  background: var(--white);
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-black);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.9rem 1.3rem;
  border: 2px solid var(--line);
  background: var(--white);
  color: var(--text-black);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--line);
}

.button-primary {
  background: var(--accent-primary);
  border-color: transparent;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--text-black);
  color: var(--accent-primary);
  border-color: transparent;
  box-shadow: 4px 4px 0 var(--accent-primary);
}

.button-dark {
  color: var(--white);
  border-color: var(--white);
  background: transparent;
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--white);
  color: var(--text-black);
  border-color: var(--white);
  box-shadow: 4px 4px 0 var(--accent-primary);
}

.hero-section {
  position: relative;
  overflow: clip;
  color: var(--white);
  background: linear-gradient(180deg, var(--hero-black) 0%, var(--hero-black-2) 100%);
  border-bottom: 2px solid var(--line);
}

.hero-bg,
.hero-vanta,
.hero-wave-fallback,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-vanta {
  z-index: 0;
  overflow: hidden;
}

.hero-vanta canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-wave-fallback {
  z-index: 0;
  background:
    radial-gradient(circle at 18% 15%, rgba(245, 193, 26, 0.18), transparent 35%),
    radial-gradient(circle at 78% 32%, rgba(191, 185, 165, 0.1), transparent 34%),
    radial-gradient(circle at 52% 84%, rgba(255, 255, 255, 0.06), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
}

.hero-wave-fallback::before,
.hero-wave-fallback::after {
  content: "";
  position: absolute;
  left: -10%;
  width: 120%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.hero-wave-fallback::before {
  bottom: 22%;
  height: 40%;
  transform: rotate(-4deg);
}

.hero-wave-fallback::after {
  bottom: 4%;
  height: 52%;
  transform: rotate(3deg);
}

.hero-grid {
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.32;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(15, 15, 16, 0.16) 0%, rgba(15, 15, 16, 0.36) 42%, rgba(15, 15, 16, 0.58) 100%);
}

.hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(20rem, 0.95fr);
  gap: 2rem;
  align-items: end;
  min-height: calc(100vh - 5rem);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero-copy h1,
.section-heading h2,
.service-card h3,
.package-card h3,
.shop-card strong,
.process-step h3,
.international-panel h3,
.simple-panel h1,
.cta-panel h2,
.hero-proof-card h2 {
  margin: 0;
  font-family: "League Gothic", sans-serif;
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.hero-copy h1 {
  max-width: 20ch;
  font-size: clamp(4rem, 10vw, 7.75rem);
}

.hero-copy h1 span {
  color: var(--accent-primary);
}

.intro {
  max-width: 42rem;
  margin: 1.5rem 0 2rem;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
}

.eyebrow,
.section-kicker,
.service-kicker,
.hero-proof-kicker,
.shop-card span,
.meta-tile span {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 1.25rem;
  padding: 0.45rem 0.7rem;
  color: var(--shop-light-beige);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof-strip li {
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-aside {
  position: relative;
  align-self: center;
}

.marker-accent,
.marker-note {
  font-family: "Permanent Marker", cursive;
  font-size: 1.2rem;
  transform: rotate(-4deg);
}

.marker-accent {
  margin: 0 0 0.8rem auto;
  width: fit-content;
  color: var(--shop-dark-beige);
}

.marker-note {
  color: rgba(255, 255, 255, 0.6);
  justify-self: end;
}

.hero-proof-card {
  padding: 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.24);
  background: rgba(0, 0, 0, 0.35);
}

.hero-proof-card h2 {
  margin: 0.6rem 0 1rem;
  font-size: clamp(2rem, 5vw, 3.1rem);
}

.hero-proof-card ul,
.service-card ul,
.package-card ul,
.international-panel ul,
.proof-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-proof-card li,
.service-card li,
.package-card li,
.international-panel li,
.proof-bullets li {
  position: relative;
  padding-left: 1rem;
}

.hero-proof-card li::before,
.service-card li::before,
.package-card li::before,
.international-panel li::before,
.proof-bullets li::before {
  content: "—";
  position: absolute;
  left: 0;
}

.section {
  padding: var(--section-space) 0;
}

.section-light {
  background: var(--surface-secondary);
}

.section-dark {
  background: var(--surface-technical);
  color: var(--white);
}

.section-beige {
  background: var(--surface-tertiary);
}

.section-process {
  background: var(--surface-technical-soft);
  color: var(--white);
}

.section-yellow {
  background: var(--surface-tertiary);
}

.section-cta {
  background: var(--surface-primary);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(16rem, 0.9fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.5rem;
}

.section-heading-center {
  grid-template-columns: 1fr;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
}

.section-heading p:not(.section-kicker):not(.marker-note) {
  margin: 0;
  color: var(--muted);
}

.section-dark .section-heading p:not(.section-kicker):not(.marker-note),
.section-process .section-heading p:not(.section-kicker):not(.marker-note) {
  color: rgba(255, 255, 255, 0.74);
}

.card-grid,
.service-grid,
.package-grid,
.proof-cards,
.process-grid,
.international-points,
.footer-grid {
  display: grid;
  gap: 1rem;
}

.card-grid-four,
.package-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: 1.25rem;
  align-items: start;
}

.proof-bullets {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
  font-weight: 700;
}

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

.info-card,
.service-card,
.package-card,
.shop-card,
.process-step,
.meta-tile,
.international-panel,
.cta-panel,
.simple-panel {
  border: 2px solid var(--line);
}

.info-card,
.shop-card,
.meta-tile,
.cta-panel,
.simple-panel {
  background: var(--surface-primary);
}

.info-card {
  padding: 1.35rem;
}

.card-number {
  margin: 0 0 0.75rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.info-card h3 {
  margin: 0 0 0.65rem;
  font-family: "League Gothic", sans-serif;
  font-size: 2rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.info-card p:last-child {
  margin-bottom: 0;
}

.service-card {
  padding: 1.5rem;
  background: var(--surface-technical-soft);
  color: var(--white);
}

.service-card-highlight {
  border-color: var(--accent-secondary);
}

.service-card-yellow {
  background: var(--shop-light-beige);
  color: var(--text-black);
  border-color: var(--line);
}

.service-card h3 {
  margin-top: 0.35rem;
  margin-bottom: 0.75rem;
  font-size: clamp(2.1rem, 4vw, 3rem);
}

.service-card ul,
.package-card ul,
.international-panel ul {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.package-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
}

.package-card-featured {
  background: var(--surface-primary);
  border-top: 6px solid var(--accent-primary);
}

.package-top {
  padding: 1.35rem;
  border-bottom: 2px solid var(--line);
}

.package-top h3 {
  font-size: clamp(2rem, 4vw, 2.9rem);
}

.price-label {
  margin: 0.9rem 0;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.package-card ul {
  flex: 1;
  padding: 1.35rem;
}

.package-button {
  width: 100%;
  border-width: 0;
  border-top: 2px solid var(--line);
  box-shadow: none;
  transform: none;
}

.package-button:hover,
.package-button:focus-visible {
  background: var(--text-black);
  color: var(--accent-primary);
}

.shop-card {
  display: block;
  min-height: 10rem;
  padding: 1.3rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.shop-card:hover,
.shop-card:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-hard);
  background: var(--text-black);
  color: var(--white);
}

.shop-card span {
  color: var(--muted);
}

.shop-card:hover span,
.shop-card:focus-visible span {
  color: var(--accent-primary);
}

.shop-card strong {
  display: block;
  margin: 0.6rem 0 0.75rem;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.process-step {
  padding: 1.4rem;
  background: #171717;
  border-top: 4px solid rgba(255, 255, 255, 0.18);
}

.process-step:nth-child(odd) {
  border-top-color: var(--accent-secondary);
}

.step-number {
  margin: 0 0 0.75rem;
  font-family: "League Gothic", sans-serif;
  font-size: 4rem;
  line-height: 0.9;
  color: rgba(255, 255, 255, 0.18);
}

.process-step h3 {
  margin: 0 0 0.55rem;
  font-size: 2.1rem;
}

.international-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.9fr);
  gap: 1.25rem;
  align-items: center;
}

.international-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
}

.meta-tile {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.56);
}

.meta-tile span {
  margin-bottom: 0.5rem;
}

.meta-tile strong {
  display: block;
  font-family: "League Gothic", sans-serif;
  font-size: 2rem;
  line-height: 0.95;
  text-transform: uppercase;
  font-weight: 400;
}

.international-panel {
  padding: 1.5rem;
  background: var(--surface-technical);
  color: var(--white);
}

.international-panel h3 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--accent-primary);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border-bottom: 2px solid var(--line);
  padding-bottom: 1rem;
}

.faq-trigger {
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.faq-panel {
  padding-top: 0.8rem;
  color: var(--muted);
}

.cta-panel {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem;
}

.cta-panel h2 {
  font-size: clamp(2.7rem, 6vw, 4.4rem);
}

.site-footer {
  padding: 2.5rem 0;
  background: var(--surface-technical);
  color: var(--white);
  border-top: 2px solid var(--accent-primary);
}

.footer-grid {
  grid-template-columns: 1.1fr 0.8fr 0.7fr 1fr;
  align-items: start;
}

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

.footer-brand img {
  width: 210px;
  margin-bottom: 1rem;
}

.site-footer h3 {
  margin: 0 0 0.75rem;
  color: var(--accent-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.site-footer p,
.site-footer li,
.site-footer a,
.site-footer address {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
}

.site-footer address {
  font-style: normal;
  line-height: 1.75;
}

.copy-email {
  margin-top: 1rem;
  padding: 0.7rem 0.9rem;
  border: 2px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.copy-email.is-copied {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.simple-panel,
.simple-panel-dark {
  padding: 2rem;
}

.simple-panel-dark {
  background: #171717;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
}

.not-found {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-vanta {
    display: none;
  }
}

@media (max-width: 1120px) {
  .site-menu,
  .header-tools {
    gap: 1rem;
  }

  .hero-layout,
  .section-heading,
  .proof-layout,
  .international-layout,
  .cta-panel,
  .footer-grid,
  .footer-grid-simple {
    grid-template-columns: 1fr;
  }

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

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

  .hero-layout {
    min-height: auto;
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 4.5rem;
  }

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

  .site-menu {
    position: fixed;
    inset: 4.5rem 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--white);
    border-bottom: 2px solid var(--line);
  }

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

  .primary-nav,
  .header-tools {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-nav a,
  .header-tools .button {
    width: 100%;
    text-align: center;
  }

  .lang-switcher {
    width: fit-content;
    align-self: center;
  }

  .site-logo img {
    width: 176px;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 4rem 0;
  }

  .card-grid-four,
  .service-grid,
  .package-grid,
  .proof-cards,
  .process-grid,
  .international-points {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: clamp(3.4rem, 16vw, 5.4rem);
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }
}
