.contact-dock {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 120;
  width: 58px;
  overflow: hidden;
  border: 1px solid rgba(5,5,5,.18);
  border-radius: 30px;
  background: #ffbb03;
  box-shadow: 0 18px 48px rgba(0,0,0,.28);
  transform: translateY(-50%);
  transition: opacity .25s ease, transform .25s ease;
}
.contact-dock.is-clear-of-footer { opacity: 0; pointer-events: none; transform: translate(18px,-50%); }
.contact-dock button,
.contact-dock a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 76px;
  padding: 8px 2px;
  color: #050505;
  background: transparent;
  border: 0;
  text-decoration: none;
  font: 800 9px/1.1 Arial,sans-serif;
  cursor: pointer;
}
.contact-dock a { border-top: 1px solid rgba(5,5,5,.28); }
.contact-dock svg { width: 25px; height: 25px; margin-bottom: 7px; fill: none; stroke: currentColor; stroke-width: 2; }
.contact-dock button:hover,
.contact-dock a:hover { background: rgba(255,255,255,.23); }
.contact-dock button:focus-visible,
.contact-dock a:focus-visible { outline: 3px solid #fff; outline-offset: -4px; }
.contact-modal[hidden] { display: none; }
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(8px);
}
.contact-panel {
  position: relative;
  width: min(720px, 100%);
  max-height: min(880px, calc(100dvh - 44px));
  overflow-y: auto;
  padding: 46px 50px 44px;
  color: #111;
  background: #fff;
  font-family: SUIT, Arial, sans-serif;
  scrollbar-width: none;
}
.contact-panel::-webkit-scrollbar { display: none; }
.contact-close {
  position: absolute;
  top: 26px;
  right: 28px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.contact-close::before,
.contact-close::after { content: ''; position: absolute; top: 20px; left: 4px; width: 34px; height: 1px; background: #111; }
.contact-close::before { transform: rotate(45deg); }
.contact-close::after { transform: rotate(-45deg); }
.contact-eyebrow { margin: 0 0 22px; color: #6f6f6f; font-size: 13px; letter-spacing: .14em; }
.contact-title { margin: 0; max-width: 520px; font-size: clamp(34px,5vw,54px); line-height: 1.08; letter-spacing: -.055em; }
.contact-intro { margin: 22px 0 38px; color: #666; font-size: 17px; line-height: 1.75; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 18px; }
.contact-field { display: grid; gap: 9px; }
.contact-field.full { grid-column: 1 / -1; }
.contact-field label { font-size: 15px; font-weight: 700; }
.contact-field label span { color: #d18f00; }
.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  min-height: 58px;
  padding: 15px 17px;
  color: #111;
  background: #fff;
  border: 1px solid #d7d7d7;
  border-radius: 0;
  font: 15px/1.5 inherit;
}
.contact-field textarea { min-height: 150px; resize: vertical; }
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus { outline: 2px solid #ffbb03; border-color: #111; }
.contact-consent { grid-column: 1 / -1; display: flex; gap: 10px; align-items: flex-start; color: #666; font-size: 13px; line-height: 1.55; }
.contact-consent input { margin-top: 3px; accent-color: #ffbb03; }
.contact-consent b { color: #d18f00; }
.contact-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-submit {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 64px;
  margin-top: 6px;
  padding: 0 22px;
  color: #050505;
  background: #ffbb03;
  border: 0;
  font: 800 16px/1 inherit;
  cursor: pointer;
}
.contact-submit:hover { background: #ffc62b; }
.contact-submit:disabled { cursor: wait; opacity: .58; }
.contact-status { grid-column: 1 / -1; min-height: 18px; margin: -8px 0 0; color: #765500; font-size: 12px; line-height: 1.5; }
.contact-note { grid-column: 1 / -1; margin: -7px 0 0; color: #777; font-size: 12px; }
body.modal-open { overflow: hidden; }
@media (max-width: 750px) {
  .contact-dock { right: 10px; width: 50px; border-radius: 26px; }
  .contact-dock button,.contact-dock a { height: 66px; font-size: 8px; }
  .contact-dock svg { width: 22px; height: 22px; }
  .contact-modal { padding: 12px; }
  .contact-panel { max-height: calc(100dvh - 24px); padding: 40px 22px 30px; }
  .contact-close { top: 14px; right: 15px; }
  .contact-grid { grid-template-columns: 1fr; gap: 18px; }
  .contact-field.full,.contact-consent,.contact-submit,.contact-status,.contact-note { grid-column: 1; }
  .contact-title { padding-right: 35px; font-size: 36px; }
  .contact-intro { margin-bottom: 28px; font-size: 15px; }
}
