:root {
  color-scheme: dark;
  --background: #101414;
  --text: #eeeee5;
  --muted: #a3aaa5;
  --line: #424b47;
  --focus: #a6c6ba;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-synthesis: none;
}
* { box-sizing: border-box; }
html { min-width: 280px; background: var(--background); }
body { margin: 0; color: var(--text); -webkit-font-smoothing: antialiased; }
button, input, textarea { font: inherit; }
button, a, input, textarea { -webkit-tap-highlight-color: transparent; }
[hidden] { display: none !important; }
.holding-page {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  height: 100svh;
  overflow: hidden;
  background: radial-gradient(ellipse at 77% 38%, #222a2526, transparent 62%), #101414;
}
.holding-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image: linear-gradient(#a5b3a303 1px, transparent 1px), linear-gradient(90deg, #a5b3a303 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent 24%, #000 80%);
}
.model {
  position: absolute;
  z-index: -1;
  top: 55%;
  left: 70%;
  width: 84%;
  height: 104%;
  /* Stop the artwork growing once the desktop composition reaches this size. */
  max-width: 1200px;
  max-height: 940px;
  margin: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 98%);
}
.model svg { width: 100%; height: 100%; display: block; overflow: visible; }
.signature {
  position: absolute;
  top: 50%;
  left: 7%;
  transform: translateY(-50%);
  width: 292px;
  max-width: 27%;
}
h1 { margin: 0 0 11px; font-size: 44px; line-height: 1.05; font-weight: 400; letter-spacing: -2.4px; }
.brand-descriptor { margin: 0 0 42px; color: #b7c1b7; font-size: 14px; line-height: 1.5; letter-spacing: .065em; }
.field { display: block; margin-bottom: 25px; }
.field > span { display: block; color: var(--muted); font-size: 14px; line-height: 1.4; margin-bottom: 2px; }
input, textarea {
  display: block;
  width: 100%;
  padding: 6px 0 8px;
  min-height: 34px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  color: var(--text);
  background: transparent;
  font-size: 16px;
  line-height: 1.5;
  transition: border-color .2s;
}
textarea { min-height: 74px; resize: vertical; max-height: 160px; }
input:hover, textarea:hover { border-color: #718176; }
input:focus-visible, textarea:focus-visible { border-color: var(--focus); box-shadow: 0 1px 0 var(--focus); }
input:-webkit-autofill { -webkit-box-shadow: 0 0 0 100px var(--background) inset; -webkit-text-fill-color: var(--text); }
button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 43px;
  padding: 10px 15px;
  margin-top: 2px;
  color: #d6ddd4;
  border: 1px solid #535e54;
  border-radius: 2px;
  background: #a7b79a08;
  font-size: 13px;
  line-height: 1.4;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
button svg { width: 16px; height: 16px; }
button:hover { background: #c0cbbd14; border-color: #93a08e; }
button:focus-visible, a:focus-visible { outline: 2px solid var(--focus); outline-offset: 5px; }
button:disabled { opacity: .55; cursor: wait; }
#contact-status { margin: 15px 0 0; color: #d1b3a0; font-size: 13px; line-height: 1.55; }
#contact-status:empty { display: none; }
#contact-status[data-state="pending"] { color: var(--muted); }
.copyright { position: absolute; left: 7%; bottom: 30px; color: #89938c; line-height: 1.5; }
.copyright small { font-size: .75rem; letter-spacing: .015em; }
.form-trap { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
@media (prefers-reduced-motion: no-preference) {
  .assembly-layer { animation: assemble 1.1s cubic-bezier(.22,.66,.24,1) both; animation-delay: var(--delay); }
  @keyframes assemble {
    from { opacity: 0; transform: translateY(-26px); }
    to { opacity: 1; transform: translateY(0); }
  }
}
@media (min-width: 1600px) {
  .signature { width: 310px; }
}
@media (min-width: 761px) and (max-height: 759px) {
  .holding-page { min-height: 630px; }
  .brand-descriptor { margin-bottom: 30px; }
  .field { margin-bottom: 17px; }
}
@media (max-width: 1000px) and (min-width: 761px) {
  .signature { left: 6%; width: 260px; max-width: 29%; }
  .copyright { left: 6%; }
  .model { left: 79%; width: 96%; height: 110%; }
}
@media (max-width: 760px) {
  .holding-page { height: auto; min-height: 100svh; display: flex; flex-direction: column; padding-bottom: 54px; }
  .model {
    position: relative;
    inset: auto;
    flex: none;
    width: 114%;
    height: auto;
    max-width: none;
    max-height: none;
    aspect-ratio: 1.13;
    margin: -17px -7% -3px;
    transform: none;
    mask-image: linear-gradient(180deg, #000 85%, #000b);
  }
  .model svg { overflow: hidden; }
  .signature { position: relative; inset: auto; transform: none; width: 100%; max-width: 380px; margin: 0 auto; padding: 0 29px; }
  .copyright { position: relative; inset: auto; width: 100%; max-width: 380px; margin: 44px auto 0; padding: 0 29px; }
  h1 { font-size: 40px; letter-spacing: -2.2px; }
  .brand-descriptor { margin-bottom: 33px; }
  input { min-height: 40px; }
  .field { margin-bottom: 23px; }
  textarea { min-height: 80px; }
  button { min-height: 44px; font-size: 14px; }
}
