:root {
  --ink: #05070a;
  --ink-2: #0b1118;
  --ink-3: #131b25;
  --paper: #f7f6f3;
  --paper-2: #ebe8e3;
  --white: #ffffff;
  --muted: #59636f;
  --line: rgba(5, 7, 10, 0.14);
  --line-soft: rgba(5, 7, 10, 0.09);
  --line-invert: rgba(255, 255, 255, 0.16);
  --blue: #0066b3;
  --blue-2: #058fe3;
  --blue-3: #9bd6ff;
  --shadow: 0 28px 70px rgba(5, 7, 10, 0.14);
  --shadow-dark: 0 28px 80px rgba(0, 0, 0, 0.34);
  --header-h: 72px;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(5, 7, 10, 0.026) 1px, transparent 1px),
    var(--paper);
  background-size: 88px 88px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

body.access-locked {
  overflow: hidden;
  background: var(--ink);
}

body.access-locked [data-protected-content],
body.access-locked .skip-link {
  pointer-events: none;
  user-select: none;
}

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

img {
  display: block;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: default;
}

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

input {
  min-width: 0;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 300;
  transform: translateY(-160%);
  background: var(--blue);
  color: var(--white);
  padding: 10px 14px;
  font-weight: 800;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.access-gate {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  overflow-y: auto;
  background:
    linear-gradient(115deg, rgba(0, 102, 179, 0.28), transparent 36%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.052) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.038) 1px, transparent 1px),
    var(--ink);
  background-size: auto, 88px 88px, 88px 88px, auto;
  color: var(--white);
  padding: 32px;
}

.access-gate[hidden] {
  display: none;
}

.access-card {
  width: min(960px, 100%);
  display: grid;
  grid-template-columns: minmax(260px, 0.84fr) minmax(0, 1.16fr);
  border: 1px solid var(--line-invert);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(5, 7, 10, 0.78);
  box-shadow: var(--shadow-dark);
}

.access-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  display: grid;
  align-content: end;
  gap: 10px;
  border-right: 1px solid var(--line-invert);
  background:
    linear-gradient(135deg, rgba(0, 102, 179, 0.48), transparent 42%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    var(--ink-3);
  background-size: auto, 44px 44px, 44px 44px, auto;
  padding: 30px;
}

.access-mark {
  min-width: 70px;
  min-height: 46px;
  width: fit-content;
  display: inline-grid;
  place-items: center;
  border: 2px solid var(--white);
  background: var(--blue);
  color: var(--white);
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: 1.34rem;
  font-weight: 800;
}

.access-visual strong {
  color: var(--white);
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.access-visual small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.access-copy {
  display: grid;
  align-content: center;
  padding: 54px;
}

.access-copy h2 {
  margin-top: 18px;
  color: var(--white);
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 0.96;
}

.access-copy p {
  max-width: 520px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.access-form {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.access-form label {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.access-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.access-input-row input {
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 12px 14px;
  font-size: 1.1rem;
  font-weight: 800;
}

.access-input-row input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.access-input-row input:disabled,
.access-input-row button:disabled {
  opacity: 0.58;
  cursor: default;
}

.access-status {
  min-height: 24px;
  color: var(--blue-3) !important;
  font-size: 0.9rem;
  font-weight: 800 !important;
}

.access-gate.is-expired .access-status {
  color: #ffd3d3 !important;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 7, 10, 0.72);
  color: var(--white);
  backdrop-filter: blur(20px) saturate(1.15);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line-soft);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(5, 7, 10, 0.1);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
}

.brand-mark {
  min-width: 56px;
  min-height: 36px;
  display: inline-grid;
  place-items: center;
  border: 2px solid currentColor;
  background: linear-gradient(135deg, var(--blue), rgba(255, 255, 255, 0.12));
  color: var(--white);
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1;
}

.site-header.is-scrolled .brand-mark {
  color: var(--white);
  border-color: var(--blue);
}

.brand-copy {
  display: grid;
  color: inherit;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 0.96;
  text-transform: uppercase;
}

.brand-copy strong {
  font-size: 0.86rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a,
.site-nav button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.65);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav button {
  opacity: 0.6;
}

.nav-cta {
  min-height: 46px !important;
  background: linear-gradient(135deg, var(--blue), #00477d) !important;
  color: var(--white) !important;
  padding: 0 22px !important;
  box-shadow: 0 16px 34px rgba(0, 102, 179, 0.26);
}

.nav-toggle,
.nav-mobile-head {
  display: none;
}

.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 136px 0 0;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 45%;
  filter: saturate(0.82) contrast(1.12) brightness(0.82);
  transform: scale(1.08);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.98) 0%, rgba(5, 7, 10, 0.86) 42%, rgba(5, 7, 10, 0.42) 100%),
    linear-gradient(0deg, rgba(5, 7, 10, 0.88) 0%, rgba(5, 7, 10, 0.08) 52%, rgba(5, 7, 10, 0.74) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, auto, 96px 96px, 96px 96px;
}

.hero-content {
  padding-bottom: 88px;
}

.eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-3);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 42px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow.dark {
  color: var(--blue);
}

.hero h1 {
  max-width: 850px;
  margin-top: 22px;
  color: var(--white);
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 0.96;
}

.hero-lead {
  max-width: 720px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.65;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0 24px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
}

.button-primary {
  background: linear-gradient(135deg, var(--blue), #00477d);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(0, 102, 179, 0.32);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.button-quiet {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.button-outline {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary:hover,
.button-primary:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
}

.button-ghost:hover,
.button-ghost:focus-visible,
.button-quiet:hover,
.button-quiet:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  max-width: 820px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-notes li {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-notes svg {
  width: 17px;
  height: 17px;
  color: var(--blue-3);
}

.hero-proof {
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-invert);
  background: rgba(5, 7, 10, 0.74);
}

.hero-proof div {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 24px;
  border-right: 1px solid var(--line-invert);
}

.hero-proof div:first-child {
  border-left: 1px solid var(--line-invert);
}

.hero-proof strong {
  color: var(--white);
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: 1.24rem;
  line-height: 1.1;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
}

.classic-section {
  scroll-margin-top: 100px;
  padding: 110px 0;
}

.intro-section {
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.034) 1px, transparent 1px),
    linear-gradient(0deg, rgba(5, 7, 10, 0.026) 1px, transparent 1px),
    var(--paper);
  background-size: 88px 88px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 72px;
  align-items: center;
}

.intro-copy h2,
.section-head h2,
.process-copy h2,
.shop-card h2,
.card-title h2 {
  color: var(--ink);
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: 3.7rem;
  font-weight: 800;
  line-height: 1;
}

.intro-copy h2 {
  max-width: 700px;
  margin-top: 20px;
}

.intro-copy p {
  max-width: 610px;
  margin-top: 20px;
  color: #27303a;
  font-size: 1rem;
}

.rider-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.rider-chips span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(0, 102, 179, 0.24);
  background: rgba(255, 255, 255, 0.78);
  color: #17324a;
  padding: 0 14px;
  font-size: 0.84rem;
  font-weight: 800;
}

.proof-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.proof-media img {
  width: 100%;
  aspect-ratio: 0.9 / 1;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.04);
}

.proof-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(5, 7, 10, 0.84);
  color: var(--white);
}

.proof-media figcaption span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: right;
}

.image-section,
.process-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    var(--ink-2);
  background-size: 88px 88px;
  color: var(--white);
}

.section-head {
  max-width: 820px;
  margin-bottom: 48px;
}

.section-head.compact {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.image-section .section-head h2,
.image-section .section-head p,
.process-section h2,
.process-section p {
  color: var(--white);
}

.section-head h2 {
  margin-top: 18px;
}

.section-head p,
.process-copy p {
  max-width: 680px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1rem;
}

.image-section .section-head p,
.process-copy p {
  color: rgba(255, 255, 255, 0.86);
}

.workshop-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 16px;
}

.workshop-shot {
  position: relative;
  min-height: 286px;
  overflow: hidden;
  border: 1px solid var(--line-invert);
  background: var(--ink-3);
  box-shadow: var(--shadow-dark);
}

.workshop-shot-large {
  grid-row: span 2;
  min-height: 588px;
}

.workshop-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
  transition: transform 700ms ease;
}

.workshop-shot:hover img {
  transform: scale(1.025);
}

.workshop-shot figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 4px;
  padding: 28px;
  background: linear-gradient(180deg, transparent, rgba(5, 7, 10, 0.9) 34%, rgba(5, 7, 10, 0.96));
  color: var(--white);
}

.workshop-shot strong {
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: 1.22rem;
  line-height: 1.1;
}

.workshop-shot span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.services-section {
  background: var(--paper-2);
}

.services-section .section-head {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.service-card {
  position: relative;
  min-height: 292px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 251, 0.9)),
    var(--white);
  padding: 28px;
  box-shadow: 0 18px 42px rgba(5, 7, 10, 0.08);
}

.service-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  content: "";
}

.service-card > svg {
  width: 38px;
  height: 38px;
  color: var(--blue);
}

.service-card h3 {
  margin-top: 24px;
  color: var(--ink);
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: 1.35rem;
  line-height: 1.1;
}

.service-card p {
  margin-top: 12px;
  color: #45505c;
  font-size: 0.95rem;
}

.service-card a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border: 1px solid var(--ink);
  color: var(--ink);
  padding: 0 14px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card a:hover,
.service-card a:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 78px;
  align-items: start;
}

.process-list {
  border-top: 1px solid var(--line-invert);
}

.process-list article {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-invert);
}

.process-list span {
  color: var(--blue-3);
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
}

.process-list strong {
  color: var(--white);
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: 1.28rem;
}

.process-list p {
  grid-column: 2;
  margin-top: -8px;
  color: rgba(255, 255, 255, 0.86);
}

.reassurance-section {
  background: var(--paper);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.why-grid article {
  min-height: 236px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  padding: 30px;
}

.why-grid span,
.why-grid svg {
  color: var(--blue);
}

.why-grid span {
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.why-grid svg {
  width: 38px;
  height: 38px;
}

.why-grid h3 {
  margin-top: 22px;
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: 1.35rem;
  line-height: 1.1;
}

.why-grid p {
  margin-top: 10px;
  color: #4f5965;
}

.region-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(0, 102, 179, 0.2), transparent 38%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--ink-2);
  background-size: auto, 88px 88px, 88px 88px, auto;
  color: var(--white);
}

.region-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 58px;
  align-items: end;
}

.region-section h2 {
  max-width: 640px;
  margin-top: 18px;
  color: var(--white);
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: 3.35rem;
  font-weight: 800;
  line-height: 1;
}

.region-section p {
  max-width: 610px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.84);
}

.region-panel {
  border: 1px solid var(--line-invert);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  padding: 28px;
  box-shadow: var(--shadow-dark);
}

.region-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.region-list span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(155, 214, 255, 0.26);
  background: rgba(5, 7, 10, 0.42);
  color: var(--white);
  padding: 0 14px;
  font-size: 0.83rem;
  font-weight: 800;
}

.region-note {
  padding-top: 20px;
  border-top: 1px solid var(--line-invert);
}

.contact-section {
  background:
    linear-gradient(120deg, rgba(0, 102, 179, 0.08), transparent 44%),
    var(--paper-2);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 42px;
  align-items: start;
}

.contact-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.92)),
    var(--white);
  padding: 34px;
  box-shadow: var(--shadow);
}

.card-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.card-title svg {
  width: 28px;
  height: 28px;
  color: var(--blue);
}

.card-title h2,
.shop-card h2 {
  font-size: 2.45rem;
}

.contact-card > p,
.shop-card > p {
  margin-top: 14px;
  color: #47515d;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.form-grid label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.form-grid input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  padding: 10px 12px;
}

.form-grid input:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(0, 102, 179, 0.18);
  outline-offset: 0;
}

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

.checkbox-row {
  min-height: 48px;
  display: flex !important;
  align-items: center;
  gap: 10px !important;
  color: #4d5661 !important;
  font-weight: 700 !important;
}

.checkbox-row input {
  width: 24px;
  min-width: 24px;
  min-height: 24px;
}

.form-status {
  min-height: 24px;
  margin-top: 12px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.contact-actions .button-outline {
  border-color: var(--line);
}

.contact-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.contact-facts div {
  display: grid;
  gap: 5px;
  color: #4e5965;
}

.contact-facts strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.map-panel {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.map-panel iframe {
  width: 100%;
  min-height: 310px;
  border: 1px solid var(--line);
  filter: saturate(0.92) contrast(1.04);
}

.map-link {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--ink);
  color: var(--white);
  padding: 0 18px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.map-link:hover,
.map-link:focus-visible {
  background: var(--blue);
}

.faq-section {
  background: var(--paper);
}

.faq-shell {
  max-width: 980px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
}

.faq-list summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  color: var(--ink);
  cursor: pointer;
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: 1.14rem;
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 102, 179, 0.28);
  color: var(--blue);
  content: "+";
  font-weight: 800;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  max-width: 760px;
  padding: 0 24px 24px;
  color: #46515c;
}

.site-footer {
  padding: 42px 0 46px;
  border-top: 1px solid var(--line-invert);
  background: var(--ink);
  color: var(--white);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.footer-inner strong {
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: 1.1rem;
}

.footer-inner p,
.trademark {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 800;
}

.trademark {
  margin-top: 24px;
}

.quickbar {
  display: none;
}

.demo-cta-section {
  padding: 76px 0 110px;
  border-top: 1px solid var(--line-invert);
  background:
    linear-gradient(100deg, rgba(0, 102, 179, 0.2), transparent 38%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--ink-2);
  background-size: auto, 88px 88px, 88px 88px, auto;
  color: var(--white);
}

.demo-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  border: 1px solid var(--line-invert);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  padding: 34px;
  box-shadow: var(--shadow-dark);
}

.demo-cta-panel h2 {
  max-width: 700px;
  margin-top: 18px;
  color: var(--white);
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: 3.35rem;
  font-weight: 800;
  line-height: 1;
}

.demo-cta-panel > p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
  font-weight: 700;
}

.demo-popup {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 135;
  width: min(410px, calc(100% - 36px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(18, 26, 36, 0.98), rgba(5, 7, 10, 0.98)),
    var(--ink);
  color: var(--white);
  padding: 16px;
  box-shadow: var(--shadow-dark);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
}

.demo-popup[hidden] {
  display: none;
}

.demo-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body.nav-open .demo-popup {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.demo-popup p {
  display: grid;
  gap: 2px;
}

.demo-popup p span {
  color: var(--blue-3);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.demo-popup strong {
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: 1.05rem;
  line-height: 1.1;
}

.demo-popup small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
}

.demo-popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.demo-popup-close svg {
  width: 16px;
  height: 16px;
}

.demo-cta-actions {
  display: flex;
  gap: 8px;
}

.demo-cta-actions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 0 13px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.demo-cta-actions .demo-whatsapp {
  border-color: rgba(155, 214, 255, 0.36);
  background: linear-gradient(135deg, var(--blue), #00477d);
}

.demo-cta-actions svg {
  width: 18px;
  height: 18px;
}

[data-lucide] {
  stroke-width: 2.35;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid var(--blue-3);
  outline-offset: 4px;
}

.button,
.nav-cta,
.service-card a,
.map-link,
.quickbar a,
.demo-cta-actions a {
  position: relative;
  overflow: hidden;
}

.button::after,
.nav-cta::after,
.service-card a::after,
.map-link::after,
.quickbar a::after,
.demo-cta-actions a::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.3) 46%, transparent 72%);
  content: "";
  opacity: 0;
  transform: translateX(-120%);
  pointer-events: none;
}

.button:hover::after,
.nav-cta:hover::after,
.service-card a:hover::after,
.map-link:hover::after,
.quickbar a:hover::after,
.demo-cta-actions a:hover::after {
  opacity: 1;
  transform: translateX(120%);
  transition:
    opacity 120ms ease,
    transform 680ms ease;
}

.is-clicked {
  animation: click-compression 260ms ease;
}

@keyframes click-compression {
  0% {
    transform: scale(1);
  }

  45% {
    transform: scale(0.985);
  }

  100% {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .motion-ready .reveal:not(.classic-section) {
    opacity: 0;
    transform: translateY(26px);
    transition:
      opacity 720ms ease,
      transform 720ms ease;
  }

  .motion-ready .reveal:not(.classic-section).is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .hero-bg img {
    animation: hero-drift 18s ease-in-out infinite alternate;
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1.12) translate3d(-0.8%, 0, 0);
  }
}

@media (max-width: 1040px) {
  .site-nav {
    gap: 12px;
  }

  .hero h1 {
    font-size: 4.4rem;
  }

  .intro-grid,
  .process-grid,
  .region-shell,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .proof-media {
    max-width: 620px;
  }

  .workshop-grid {
    grid-template-columns: 1fr;
  }

  .workshop-shot,
  .workshop-shot-large {
    grid-row: auto;
    min-height: 420px;
  }
}

@media (max-width: 840px) {
  :root {
    --header-h: 68px;
  }

  .access-gate {
    place-items: start center;
    padding: 18px;
  }

  .access-card {
    grid-template-columns: 1fr;
    margin: 0 0 18px;
  }

  .access-visual {
    min-height: 280px;
    border-right: 0;
    border-bottom: 1px solid var(--line-invert);
  }

  .access-copy {
    padding: 30px;
  }

  .access-copy h2 {
    font-size: 3rem;
  }

  .access-input-row {
    grid-template-columns: 1fr;
  }

  .access-input-row .button {
    width: 100%;
  }

  body {
    padding-bottom: calc(84px + env(safe-area-inset-bottom));
  }

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

  .site-header {
    background: rgba(5, 7, 10, 0.98);
    backdrop-filter: none;
  }

  body.nav-open::before {
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: calc(84px + env(safe-area-inset-bottom));
    left: 0;
    z-index: 110;
    background:
      linear-gradient(180deg, rgba(5, 7, 10, 0.84), rgba(5, 7, 10, 0.58)),
      rgba(5, 7, 10, 0.72);
    content: "";
  }

  body.nav-open .site-header {
    border-bottom-color: var(--line-soft);
    background: rgba(247, 246, 243, 0.98);
    color: var(--ink);
    box-shadow: 0 18px 44px rgba(5, 7, 10, 0.14);
  }

  body.nav-open .brand-mark {
    color: var(--white);
    border-color: var(--blue);
  }

  .brand-copy {
    display: none;
  }

  .nav-toggle {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 2px solid currentColor;
    background: transparent;
    color: inherit;
  }

  .nav-toggle svg {
    transition: transform 180ms ease;
  }

  body.nav-open .nav-toggle svg {
    transform: rotate(90deg);
  }

  .site-nav {
    position: fixed;
    right: 15px;
    bottom: calc(84px + env(safe-area-inset-bottom));
    left: 15px;
    top: calc(var(--header-h) + 12px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background:
      linear-gradient(180deg, rgba(18, 26, 36, 0.98), rgba(5, 7, 10, 0.98)),
      var(--ink);
    color: var(--white);
    box-shadow: 0 -24px 60px rgba(0, 0, 0, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px) scale(0.985);
    transition:
      opacity 180ms ease,
      transform 220ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-mobile-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(90deg, rgba(0, 102, 179, 0.22), transparent);
  }

  .nav-mobile-head strong,
  .nav-mobile-head small {
    display: block;
  }

  .nav-mobile-head strong {
    font-family: "Hanken Grotesk", Inter, sans-serif;
    font-size: 1rem;
    line-height: 1.1;
  }

  .nav-mobile-head small {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.78rem;
    font-weight: 800;
  }

  .site-nav a,
  .site-nav button {
    min-height: 54px;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0 20px;
    font-size: 0.9rem;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav button {
    color: rgba(255, 255, 255, 0.58);
  }

  .nav-cta {
    min-height: 56px !important;
    justify-content: center !important;
    margin: 12px;
    border-bottom: 0 !important;
  }

  .hero {
    min-height: 0;
    padding: 120px 0 0;
  }

  .hero-content {
    padding-bottom: 56px;
  }

  .hero h1 {
    font-size: 3.4rem;
  }

  .hero-lead {
    font-size: 1.08rem;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-notes {
    display: grid;
  }

  .hero-proof {
    width: 100%;
    grid-template-columns: 1fr;
    border-right: 0;
    border-left: 0;
  }

  .hero-proof div {
    min-height: 84px;
    border-right: 0;
    border-left: 0 !important;
    border-bottom: 1px solid var(--line-invert);
    padding: 18px 20px;
  }

  .classic-section {
    padding: 78px 0;
  }

  .intro-copy h2,
  .section-head h2,
  .process-copy h2,
  .region-section h2,
  .shop-card h2,
  .card-title h2 {
    font-size: 2.55rem;
  }

  .workshop-shot,
  .workshop-shot-large {
    min-height: 340px;
  }

  .why-grid,
  .contact-facts,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 24px;
  }

  .region-panel {
    padding: 22px;
  }

  .map-panel iframe {
    min-height: 300px;
  }

  .quickbar {
    position: fixed;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    z-index: 140;
    min-height: 68px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background:
      linear-gradient(180deg, rgba(17, 25, 35, 0.96), rgba(5, 7, 10, 0.96)),
      var(--ink);
    color: var(--white);
    box-shadow: 0 -16px 46px rgba(0, 0, 0, 0.28);
  }

  .quickbar a {
    min-height: 50px;
    display: grid;
    place-items: center;
    gap: 2px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.055);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
  }

  .quickbar a:first-child {
    background: linear-gradient(135deg, var(--blue), #00477d);
    border-color: rgba(155, 214, 255, 0.4);
  }

  .quickbar svg {
    width: 21px;
    height: 21px;
  }

  .demo-cta-section {
    padding: 58px 0 96px;
  }

  .demo-cta-panel {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }

  .demo-cta-panel h2 {
    font-size: 2.55rem;
  }

  .demo-popup {
    right: 10px;
    bottom: calc(86px + env(safe-area-inset-bottom));
    left: 10px;
    z-index: 145;
    width: auto;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .demo-cta-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .demo-cta-actions a {
    min-height: 46px;
  }
}

@media (max-width: 560px) {
  .access-gate {
    padding: 10px;
  }

  .access-visual {
    min-height: 230px;
  }

  .access-copy {
    padding: 24px;
  }

  .access-copy h2 {
    font-size: 2.52rem;
  }

  .access-copy p {
    font-size: 0.98rem;
  }

  .demo-cta-panel h2 {
    font-size: 2.18rem;
  }

  .demo-popup {
    gap: 10px;
  }

  .demo-popup small {
    font-size: 0.78rem;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .intro-copy h2,
  .section-head h2,
  .process-copy h2,
  .region-section h2,
  .shop-card h2,
  .card-title h2 {
    font-size: 2.18rem;
  }

  .eyebrow {
    align-items: flex-start;
    font-size: 0.76rem;
  }

  .eyebrow::before {
    width: 30px;
    margin-top: 9px;
  }

  .proof-media figcaption {
    position: static;
    display: grid;
  }

  .proof-media figcaption span {
    text-align: left;
  }

  .workshop-shot,
  .workshop-shot-large {
    min-height: 300px;
  }

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

  .process-list p {
    grid-column: 1;
    margin-top: 0;
  }

  .footer-inner {
    display: grid;
  }

  .footer-inner nav {
    justify-content: flex-start;
  }
}
