*, *::before, *::after {
  box-sizing: border-box;
}
:root {
  color-scheme: light;
  --contact-bg: #f4f1ec;
  --contact-paper: #fffefa;
  --contact-ink: #181827;
  --contact-muted: #686775;
  --contact-line: rgba(24, 24, 39, 0.12);
  --contact-field-border: #cbc5c8;
  --contact-accent: #8b2252;
  --contact-accent-bright: #a62d65;
}
html {
  scroll-behavior: smooth;
  background: #f8f7f4;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--contact-bg);
  color: var(--contact-ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a {
  color: inherit;
}
button,
input,
select,
textarea {
  font: inherit;
}
[hidden] {
  display: none !important;
}
.contact-skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1100;
  padding: 10px 14px;
  border-radius: 4px;
  background: #fff;
  color: var(--contact-ink);
  transform: translateY(-150%);
}
.contact-skip-link:focus {
  transform: translateY(0);
}
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem clamp(1.5rem, 4vw, 4rem);
  border-bottom: 1px solid rgba(27, 24, 31, 0.08);
  background: #f8f7f4;
  box-shadow: 0 14px 40px rgba(20, 16, 12, 0.08);
  font-family: Oswald, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(20px);
}
.logo {
  position: relative;
  color: #161316;
  font-family: Oswald, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.logo::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 3.2ch;
  height: 3px;
  background: linear-gradient(90deg, var(--contact-accent) 0%, #cf7a91 100%);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.magnetic-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.2rem 3rem;
  border: 0;
  border-radius: 999px;
  background: var(--contact-accent);
  box-shadow: 0 18px 36px rgba(139, 34, 82, 0.18);
  color: #fff;
  font-family: Oswald, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
}
.magnetic-btn:hover,
.magnetic-btn:focus-visible {
  background: var(--contact-accent-bright);
  box-shadow: 0 0 40px rgba(139, 34, 82, 0.4);
  transform: translateY(-2px);
}
.nav-start-btn {
  padding: 0.8rem 1.5rem;
  font-size: 0.85rem;
}
main {
  padding-top: 84px;
}
.contact-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  background:
    radial-gradient(circle at 8% 12%, rgba(139, 34, 82, 0.1), transparent 35%),
    radial-gradient(circle at 94% 16%, rgba(139, 34, 82, 0.07), transparent 28%),
    linear-gradient(135deg, #faf8f4 0%, #f3f0eb 58%, #eee9e4 100%);
  color: var(--contact-ink);
}
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0 50% 0 auto;
  width: 1px;
  background: rgba(24, 24, 39, 0.09);
}
.contact-intro,
.contact-form-card {
  position: relative;
  z-index: 1;
}
.contact-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 5vw, 72px) clamp(28px, 5vw, 76px);
}
.contact-eyebrow {
  margin: 0 0 18px;
  color: var(--contact-accent);
  font-family: Oswald, Inter, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.contact-intro h1 {
  max-width: 680px;
  margin: 0;
  font-family: Oswald, Inter, sans-serif;
  font-size: clamp(52px, 5.6vw, 88px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.92;
  text-transform: uppercase;
  text-wrap: balance;
}
.contact-intro h1 span {
  color: var(--contact-accent);
}
.contact-lead {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--contact-muted);
  font-size: clamp(15px, 1.1vw, 18px);
}
.contact-direct {
  max-width: 640px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  border-top: 1px solid var(--contact-line);
  border-bottom: 1px solid var(--contact-line);
}
.contact-direct > * {
  min-width: 0;
  min-height: 82px;
  display: grid;
  align-content: center;
  grid-template-columns: 1fr auto;
  gap: 2px 8px;
  padding: 14px 16px 14px 0;
  color: inherit;
  text-decoration: none;
}
.contact-direct > * + * {
  padding-left: 18px;
  border-left: 1px solid var(--contact-line);
}
.contact-direct-label {
  grid-column: 1 / -1;
  color: #8a838c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.contact-direct strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 13px;
}
.contact-status-dot {
  align-self: center;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ac28a;
  box-shadow: 0 0 0 5px rgba(74, 194, 138, 0.1);
}
.contact-founders {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
.contact-founder-photos {
  display: flex;
  padding-left: 9px;
}
.contact-founder-photo {
  width: 46px;
  height: 46px;
  display: block;
  overflow: hidden;
  margin-left: -9px;
  border: 3px solid #f7f0ed;
  border-radius: 50%;
  background: #e8e2df;
}
.contact-founder-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.contact-founder-photo--serve img {
  transform: scale(1.45);
  transform-origin: 55% 47%;
}
.contact-founder-photo--martijn img {
  transform: scale(2.1);
  transform-origin: 50% 18%;
}
.contact-founders p {
  margin: 0;
  color: var(--contact-muted);
  font-size: 13px;
}
.contact-founders strong {
  color: var(--contact-ink);
}
.contact-form-card {
  align-self: center;
  width: min(570px, calc(100% - clamp(34px, 6vw, 90px)));
  margin: clamp(42px, 4vw, 64px) auto;
  padding: clamp(26px, 3vw, 40px);
  border: 1px solid rgba(24, 24, 39, 0.1);
  border-radius: 10px;
  background: var(--contact-paper);
  color: var(--contact-ink);
  box-shadow: 0 28px 72px rgba(83, 57, 65, 0.13);
}
.contact-form-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--contact-line);
}
.contact-form-heading span {
  font-family: Oswald, Inter, sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
}
.contact-form-heading p {
  margin: 0;
  color: var(--contact-muted);
  font-size: 12px;
}
.contact-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.contact-field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}
.contact-field > span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-field small {
  color: #9a98a2;
  font-size: 9px;
  font-weight: 600;
}
.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--contact-field-border);
  border-radius: 5px;
  outline: none;
  background: #fff;
  color: var(--contact-ink);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.contact-field textarea {
  min-height: 112px;
  resize: vertical;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #aaa8b0;
}
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--contact-accent);
  box-shadow: 0 0 0 3px rgba(139, 34, 82, 0.1);
}
.contact-field .site-select {
  z-index: 4;
}
.contact-field .site-select.is-open {
  z-index: 40;
}
.contact-field .site-select-trigger {
  width: 100% !important;
  height: 48px !important;
  min-height: 48px !important;
  padding: 11px 42px 11px 13px !important;
  border: 1px solid var(--contact-field-border) !important;
  border-radius: 5px !important;
  background: #fff !important;
  color: var(--contact-ink);
  line-height: 1.55;
  box-shadow: none !important;
}
.contact-field .site-select-trigger:hover {
  border-color: #a99fa4 !important;
}
.contact-field .site-select-trigger:focus-visible,
.contact-field .site-select.is-open .site-select-trigger {
  border-color: var(--contact-accent) !important;
  box-shadow: 0 0 0 3px rgba(139, 34, 82, 0.1) !important;
  opacity: 1;
  pointer-events: auto;
}
.contact-field .site-select-trigger::after {
  right: 15px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-left: 0;
  border-top: 0;
  width: 8px;
  height: 8px;
  color: #77727a;
  transform: translateY(-65%) rotate(45deg);
}
.contact-field .site-select.is-open .site-select-trigger::after {
  transform: translateY(-25%) rotate(225deg);
}
.contact-field .site-select-menu {
  top: calc(100% + 7px);
  padding: 6px;
  gap: 2px;
  border: 1px solid var(--contact-field-border);
  border-radius: 7px;
  background: var(--contact-paper);
  color: var(--contact-ink);
  box-shadow: 0 16px 34px rgba(56, 42, 48, 0.14);
}
.contact-field .site-select-option {
  position: relative;
  min-height: 40px;
  padding: 9px 38px 9px 11px;
  border-radius: 5px;
  color: var(--contact-ink);
  font-size: 13px;
  font-weight: 600;
}
.contact-field .site-select-option:hover,
.contact-field .site-select-option:focus-visible {
  background: rgba(139, 34, 82, 0.07);
  color: var(--contact-accent);
}
.contact-field .site-select-option.is-selected {
  background: rgba(139, 34, 82, 0.1);
  color: var(--contact-accent);
}
.contact-field .site-select-option.is-selected::after {
  content: "✓";
  position: absolute;
  top: 50%;
  right: 13px;
  color: var(--contact-accent);
  font-weight: 800;
  transform: translateY(-52%);
}
.contact-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}
.contact-submit-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 6px;
}
.contact-submit-row button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 21px;
  border: 0;
  border-radius: 5px;
  background: var(--contact-accent);
  color: #fff;
  font-family: Oswald, Inter, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}
.contact-submit-row button:hover,
.contact-submit-row button:focus-visible {
  background: var(--contact-accent-bright);
  transform: translateY(-1px);
}
.contact-submit-row button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}
.contact-submit-row p {
  margin: 0;
  color: #898791;
  font-size: 10px;
  line-height: 1.5;
}
.contact-form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--contact-muted);
  font-size: 12px;
}
.contact-form-status.is-error {
  color: #a11e38;
}
.contact-success {
  min-height: 370px;
  align-content: center;
  padding: 30px 10px;
}
.contact-success:not([hidden]) {
  display: grid;
}
.contact-success-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  border-radius: 50%;
  background: rgba(139, 34, 82, 0.1);
  color: var(--contact-accent);
  font-size: 24px;
  font-weight: 800;
}
.contact-success h2 {
  max-width: 440px;
  margin: 0;
  font-family: Oswald, Inter, sans-serif;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1;
  text-transform: uppercase;
}
.contact-success > p:last-child {
  max-width: 460px;
  margin: 22px 0 0;
  color: var(--contact-muted);
}
.contact-success a {
  color: var(--contact-accent);
  font-weight: 700;
}
.contact-next {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(48px, 8vw, 130px);
  padding: clamp(76px, 9vw, 130px) clamp(24px, 7vw, 110px);
  background: var(--contact-paper);
}
.contact-next h2 {
  max-width: 580px;
  margin: 0;
  font-family: Oswald, Inter, sans-serif;
  font-size: clamp(42px, 5.6vw, 76px);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
  text-wrap: balance;
}
.contact-next-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}
.contact-next-steps li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-top: 1px solid var(--contact-line);
}
.contact-next-steps li:last-child {
  border-bottom: 1px solid var(--contact-line);
}
.contact-next-steps li > span {
  color: var(--contact-accent);
  font-family: Oswald, Inter, sans-serif;
  font-size: 13px;
  font-weight: 800;
}
.contact-next-steps strong {
  font-family: Oswald, Inter, sans-serif;
  font-size: 22px;
  text-transform: uppercase;
}
.contact-next-steps p {
  max-width: 520px;
  margin: 6px 0 0;
  color: var(--contact-muted);
  font-size: 14px;
}
@media (max-width: 1080px) {
  .nav-start-btn {
    display: none !important;
  }
  .contact-hero {
    grid-template-columns: 1fr;
  }
  .contact-hero::before {
    display: none;
  }
  .contact-intro {
    padding-bottom: 40px;
  }
  .contact-form-card {
    width: min(640px, calc(100% - 48px));
    margin-top: 18px;
  }
  .contact-next {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  #navbar {
    gap: 12px;
    padding: calc(14px + env(safe-area-inset-top)) 18px 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: #f8f7f4;
    box-shadow: 0 10px 24px rgba(17, 19, 30, 0.06);
    backdrop-filter: blur(18px);
  }
  .logo {
    font-size: 1.45rem;
    letter-spacing: -0.01em;
  }
  .logo::after {
    bottom: -2px;
    width: 2.8ch;
    height: 2px;
  }
  .nav-links {
    gap: 0;
  }
  main {
    padding-top: calc(66px + env(safe-area-inset-top));
  }
  .contact-intro {
    padding: 44px 20px 26px;
  }
  .contact-eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: 0.14em;
  }
  .contact-intro h1 {
    font-size: clamp(44px, 13vw, 56px);
    line-height: 0.94;
  }
  .contact-lead {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.55;
  }
  .contact-direct {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
  }
  .contact-direct > * {
    min-height: 72px;
    padding: 12px 14px 12px 0;
  }
  .contact-direct > * + * {
    padding-left: 14px;
    border-left: 1px solid var(--contact-line);
  }
  .contact-direct > *:nth-child(3) {
    grid-column: 1 / -1;
    min-height: 68px;
    padding: 12px 0;
    border-top: 1px solid var(--contact-line);
    border-left: 0;
  }
  .contact-founders {
    gap: 13px;
    margin-top: 20px;
  }
  .contact-founder-photo {
    width: 44px;
    height: 44px;
  }
  .contact-founders p {
    font-size: 12px;
    line-height: 1.45;
  }
  .contact-form-card {
    width: calc(100% - 24px);
    margin-top: 14px;
    margin-bottom: 30px;
    padding: 24px 16px 22px;
    border-radius: 12px;
  }
  .contact-form-heading {
    align-items: baseline;
    margin-bottom: 18px;
    padding-bottom: 14px;
  }
  .contact-form-heading span {
    font-size: 22px;
  }
  .contact-form-heading p {
    font-size: 11px;
  }
  .contact-submit-row {
    align-items: stretch;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 4px;
  }
  .contact-field-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-field {
    gap: 7px;
    margin-bottom: 12px;
  }
  .contact-field > span {
    font-size: 10px;
  }
  .contact-field input,
  .contact-field select,
  .contact-field textarea,
  .contact-field .site-select-trigger {
    font-size: 16px;
  }
  .contact-field textarea {
    height: 136px;
    min-height: 136px;
  }
  .contact-field .site-select-menu {
    max-height: min(290px, calc(100vh - 170px));
    overscroll-behavior: contain;
  }
  .contact-field .site-select-option {
    min-height: 44px;
    font-size: 14px;
  }
  .contact-submit-row button {
    width: 100%;
    min-height: 52px;
  }
  .contact-submit-row p {
    max-width: 320px;
    margin: 0 auto;
    font-size: 11px;
    text-align: center;
  }
  .contact-next {
    gap: 34px;
    padding: 58px 20px 64px;
  }
  .contact-next h2 {
    font-size: clamp(38px, 11vw, 44px);
  }
  .contact-next-steps li {
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding: 18px 0;
  }
  .contact-next-steps strong {
    font-size: 20px;
  }
  .contact-next-steps p {
    font-size: 13px;
    line-height: 1.5;
  }
}
@media (max-width: 360px) {
  .contact-form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }
  .contact-direct strong {
    font-size: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
  }
}
