@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/assets/hallmann-fonts/jakarta-400.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/assets/hallmann-fonts/jakarta-600.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/assets/hallmann-fonts/jakarta-800.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 800;
}

:root {
  --red: #f94137;
  --ink: #262a2d;
  --muted: #676767;
  --line: #d8d8d8;
  --header: #050609;
  --page-pad: clamp(28px, 6.875vw, 88px);
  color-scheme: light;
}

* { box-sizing: border-box; }

html { background: #fff; scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background: #fff;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

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

.site-header {
  position: sticky;
  top: 20px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(820px, calc(100% - 32px));
  height: 64px;
  margin: 20px auto 0;
  padding: 7px 9px 7px 20px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 1px 2px rgba(159,162,171,.14), 0 3px 8px rgba(159,162,171,.12), 0 10px 34px rgba(159,162,171,.08);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #202326;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.055em;
  text-decoration: none;
}

.wordmark img { width: 22px; height: 22px; object-fit: contain; }

.main-navigation {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
}

.main-navigation > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  color: #6f7072;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -.035em;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.main-navigation > a:hover,
.main-navigation > a:focus-visible { color: #202326; background: #f2f2f2; }

.main-navigation > a.header-cta {
  min-height: 42px;
  margin-left: 16px;
  padding: 0 22px;
  background: var(--red);
  color: #fff;
  font-size: 15px;
  white-space: nowrap;
}

.main-navigation > a.header-cta:hover,
.main-navigation > a.header-cta:focus-visible { background: #df2d27; color: #fff; transform: scale(1.025); }

.menu-toggle {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle { display: none; font-size: 12px; font-weight: 700; letter-spacing: .06em; }

.contact-main { min-height: 772px; overflow: hidden; }

.contact-section {
  width: min(1104px, calc(100% - (2 * var(--page-pad))));
  margin: 0 auto;
  padding: clamp(131px, 15vh, 152px) 0 78px;
}

.title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px;
  align-items: center;
  gap: 28px;
}

h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(76px, 11.1vw, 148px);
  font-weight: 600;
  letter-spacing: -.075em;
  line-height: .82;
  white-space: nowrap;
  animation: reveal-up 700ms cubic-bezier(.22,1,.36,1) both;
}

.people-mark {
  width: 66px;
  justify-self: end;
  animation: reveal-up 700ms 90ms cubic-bezier(.22,1,.36,1) both;
}

.contact-intro {
  margin: 54px 0 26px;
  color: var(--muted);
  font-size: 16px;
  letter-spacing: -.045em;
  line-height: 1.45;
  animation: reveal-up 700ms 120ms cubic-bezier(.22,1,.36,1) both;
}

.contact-form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  padding-top: 17px;
  border-top: 1px solid rgba(249,65,55,.65);
  animation: reveal-up 700ms 170ms cubic-bezier(.22,1,.36,1) both;
}

.form-column { min-width: 0; }

.field {
  position: relative;
  display: block;
  border-bottom: 1px solid var(--line);
}

.field input,
.field select,
.field textarea {
  display: block;
  width: 100%;
  margin: 0;
  padding: 14px 4px 15px;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  letter-spacing: -.04em;
  line-height: 1.2;
}

.field select {
  appearance: none;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, #777 50%), linear-gradient(135deg, #777 50%, transparent 50%);
  background-position: calc(100% - 13px) 50%, calc(100% - 8px) 50%;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.field textarea {
  min-height: 111px;
  resize: vertical;
  padding-top: 14px;
}

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

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

.field:has(:user-invalid) { border-color: rgba(249,65,55,.78); }

.form-submit-row {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  gap: 32px;
  min-height: 63px;
}

.submit-button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 52px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #202326;
  cursor: pointer;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -.06em;
  text-align: left;
}

.submit-arrow { color: var(--red); font-size: 30px; font-weight: 400; transform: translateY(-1px); transition: transform 180ms ease; }
.submit-button:hover .submit-arrow,
.submit-button:focus-visible .submit-arrow { transform: translate(8px, -1px); }

.terms-note {
  margin: 0;
  color: #4f4f4f;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.45;
  text-transform: uppercase;
}

.terms-note a { color: var(--red); text-decoration: none; }

.form-status {
  position: absolute;
  right: 0;
  bottom: -25px;
  margin: 0;
  color: var(--red);
  font-size: 12px;
}

.contact-context {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 58px;
}

.contact-context > p {
  margin: 0 0 0 16px;
  font-size: 14px;
  letter-spacing: -.045em;
  line-height: 1.5;
}

.contact-person { display: flex; align-items: center; gap: 14px; }

.contact-person img {
  width: 50px;
  height: 70px;
  border-radius: 2px;
  object-fit: cover;
  object-position: 50% 22%;
  filter: grayscale(.08);
}

.contact-person div { display: grid; gap: 4px; }
.contact-person strong { font-size: 18px; letter-spacing: -.055em; }
.contact-person span { color: #777; font-size: 12px; letter-spacing: -.025em; text-transform: uppercase; }

.contact-chip {
  position: fixed;
  right: 12px;
  bottom: 10px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 191px;
  height: 50px;
  padding: 4px 13px 4px 5px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 11px;
  background: #101214;
  box-shadow: 0 8px 28px rgba(0,0,0,.25);
  color: #fff;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-chip:hover,
.contact-chip:focus-visible { transform: translateY(-3px); box-shadow: 0 12px 34px rgba(0,0,0,.32); }
.contact-chip img { width: 42px; height: 42px; border-radius: 7px; object-fit: cover; object-position: 50% 22%; }
.contact-chip span { display: grid; gap: 1px; }
.contact-chip strong { font-size: 13px; font-weight: 500; letter-spacing: -.02em; }
.contact-chip small { color: #aaa; font-size: 9px; letter-spacing: .02em; text-transform: uppercase; }

.contact-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 110px;
  padding: 28px var(--page-pad);
  background: var(--header);
  color: rgba(255,255,255,.65);
  font-size: 12px;
}

.contact-footer p { margin: 0; }
.footer-wordmark {
  color: #fff;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: .02em;
  text-decoration: none;
}
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: inherit; text-decoration: none; }
.footer-links a:hover { color: #fff; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

@media (max-width: 980px) {
  .site-header { width: min(760px, calc(100% - 28px)); padding: 7px 8px 7px 17px; }
  .main-navigation { gap: 0; }
  .main-navigation > a { padding-inline: 9px; font-size: 12px; }
  .main-navigation > a.header-cta { margin-left: 9px; padding-inline: 17px; font-size: 14px; }
  .contact-section { padding-top: 96px; }
  .contact-form, .contact-context { gap: 40px; }
  .form-submit-row { gap: 20px; }
}

@media (max-width: 760px) {
  :root { --page-pad: 22px; }
  .site-header { top: 12px; width: calc(100% - 24px); height: 58px; margin-top: 12px; padding: 7px 14px 7px 16px; }
  .wordmark { gap: 8px; font-size: 16px; }
  .wordmark img { width: 20px; height: 20px; }
  .menu-toggle { display: block; }
  .main-navigation {
    position: absolute;
    top: 66px;
    right: 4px;
    left: 4px;
    display: grid;
    height: auto;
    max-height: 0;
    gap: 0;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 14px 36px rgba(25,27,31,.16);
    opacity: 0;
    transition: max-height 260ms ease, opacity 180ms ease;
  }
  .site-header.is-open .main-navigation { max-height: 480px; opacity: 1; }
  .main-navigation > a { height: 46px; padding: 0 18px; border-top: 1px solid rgba(38,42,45,.07); border-radius: 0; color: #555; font-size: 12px; }
  .main-navigation > a:first-child { border-top: 0; }
  .main-navigation > a.header-cta { height: 42px; margin: 8px; border: 0; border-radius: 999px; color: #fff; }
  .contact-main { min-height: auto; }
  .contact-section { width: calc(100% - (2 * var(--page-pad))); padding: 74px 0 60px; }
  .title-row { grid-template-columns: 1fr 52px; gap: 12px; }
  h1 { font-size: clamp(50px, 16.5vw, 92px); line-height: .9; white-space: normal; }
  .people-mark { width: 48px; }
  .contact-intro { margin: 32px 0 20px; font-size: 14px; }
  .contact-form { grid-template-columns: 1fr; gap: 24px; padding-top: 8px; }
  .field input, .field select, .field textarea { font-size: 15px; }
  .field textarea { min-height: 100px; }
  .form-submit-row { grid-template-columns: 1fr; gap: 2px; }
  .submit-button { font-size: 21px; }
  .terms-note { margin-bottom: 8px; }
  .contact-context { grid-template-columns: 1fr; gap: 26px; margin-top: 45px; }
  .contact-context > p { margin-left: 0; }
  .contact-chip { display: none; }
  .contact-footer { align-items: flex-start; flex-direction: column; min-height: 160px; }
}
