/* Skopos contact sheet + inline request forms.
   Self-contained: palette + type are declared here so it renders identically
   on the dark pages and the cold-paper document pages. Always a dark panel. */
.sk-contact {
  --skc-ink:        #0A0A0B;
  --skc-panel:      #141416;
  --skc-field:      #0A0A0B;
  --skc-line:       rgba(233, 235, 231, .13);
  --skc-line-2:     rgba(233, 235, 231, .16);
  --skc-text-hi:    #F4F5F2;
  --skc-text:       #E9EBE7;
  --skc-text-dim:   #9A9C96;
  --skc-text-faint: #5C5A54;
  --skc-gold:       #E0B540;
  --skc-gold-hot:   #F2C94C;
  --skc-gold-ink:   #141005;
  --skc-ui:         'Archivo', 'Helvetica Neue', system-ui, sans-serif;
  --skc-display:    'futura-pt', 'Futura', 'Jost', 'Avenir Next', system-ui, sans-serif;
  --skc-ease:       cubic-bezier(.3, 0, .1, 1);
}

/* ── Sheet (modal) ─────────────────────────────────────────── */
.sk-contact[hidden] { display: none; }
.sk-contact {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: flex-end; justify-content: center;
}
@media (min-width: 720px) { .sk-contact { align-items: center; } }

.sk-contact__scrim {
  position: absolute; inset: 0;
  background: rgba(10, 10, 11, .7);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  animation: sk-fade .2s var(--skc-ease);
}
.sk-contact__panel {
  position: relative;
  width: min(560px, 100%);
  max-height: 92vh; overflow-y: auto;
  background: var(--skc-panel);
  color: var(--skc-text);
  border: 1px solid var(--skc-line-2);
  border-top: 1px solid var(--skc-gold);
  border-radius: 0;
  padding: clamp(26px, 4vw, 40px);
  animation: sk-rise .28s var(--skc-ease);
}

.sk-contact__x {
  position: absolute; top: 14px; right: 16px;
  width: 34px; height: 34px; padding: 0;
  border: none; background: none; cursor: pointer;
  font-size: 26px; line-height: 1; color: var(--skc-text-faint);
  transition: color .1s var(--skc-ease);
}
.sk-contact__x:hover { color: var(--skc-text); }

.sk-contact__hd { margin-bottom: 22px; }
.sk-contact__k {
  display: block; font-family: var(--skc-ui); font-weight: 700;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--skc-gold); margin-bottom: 12px;
}
.sk-contact__hd h2 {
  font-family: var(--skc-display); font-weight: 500;
  font-size: clamp(24px, 4vw, 32px); letter-spacing: .01em;
  color: var(--skc-text-hi); line-height: 1.05; margin: 0 0 10px;
}
.sk-contact__hd p {
  font-family: var(--skc-ui); font-size: 15px; line-height: 1.5;
  color: var(--skc-text-dim); margin: 0;
}

/* ── Form (shared by sheet + inline) ───────────────────────── */
.sk-form { display: flex; flex-direction: column; gap: 14px; }
.sk-form__two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .sk-form__two { grid-template-columns: 1fr; } }

.sk-field { display: flex; flex-direction: column; gap: 6px; }
.sk-field > span {
  font-family: var(--skc-ui); font-weight: 600;
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--skc-text-faint);
}
.sk-field input,
.sk-field select,
.sk-field textarea {
  font-family: var(--skc-ui); font-size: 15px; color: var(--skc-text);
  background: var(--skc-field);
  border: 1px solid var(--skc-line-2);
  border-radius: 0; padding: 10px 12px; width: 100%;
  transition: border-color .1s var(--skc-ease);
}
.sk-field textarea { resize: vertical; min-height: 88px; line-height: 1.5; }
.sk-field input:focus,
.sk-field select:focus,
.sk-field textarea:focus {
  outline: none; border-color: var(--skc-gold);
}
.sk-field input::placeholder,
.sk-field textarea::placeholder { color: var(--skc-text-faint); }
.sk-field select { -webkit-appearance: none; appearance: none; cursor: pointer; }

.sk-form__foot { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 4px; }
.sk-send {
  font-family: var(--skc-ui); font-weight: 700;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--skc-gold-ink); background: var(--skc-gold);
  border: none; border-radius: 0; padding: 12px 20px; cursor: pointer;
  transition: background .1s var(--skc-ease), opacity .1s;
}
.sk-send:hover { background: var(--skc-gold-hot); }
.sk-send:disabled { opacity: .5; cursor: default; }

.sk-status {
  font-family: var(--skc-ui); font-size: 13px; color: var(--skc-text-dim);
}
.sk-status.is-ok  { color: var(--skc-gold); }
.sk-status.is-err { color: #ED5247; }

/* honeypot — visually and audibly hidden, still submitted */
.sk-hp {
  position: absolute !important; left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
}

/* ── Inline variant (cameras / lenses) ─────────────────────── */
.sk-form--inline {
  border: 1px solid var(--skc-line-2, rgba(233, 235, 231, .16));
  border-top: 1px solid var(--skc-gold, #E0B540);
  border-radius: 0;
  background: var(--skc-panel, #141416);
  padding: 22px 24px;
  margin: 18px 0 4px;
  --skc-ink:        #0A0A0B;
  --skc-panel:      #141416;
  --skc-field:      #0A0A0B;
  --skc-line:       rgba(233, 235, 231, .13);
  --skc-line-2:     rgba(233, 235, 231, .16);
  --skc-text-hi:    #F4F5F2;
  --skc-text:       #E9EBE7;
  --skc-text-dim:   #9A9C96;
  --skc-text-faint: #5C5A54;
  --skc-gold:       #E0B540;
  --skc-gold-hot:   #F2C94C;
  --skc-gold-ink:   #141005;
  --skc-ui:         'Archivo', 'Helvetica Neue', system-ui, sans-serif;
  --skc-display:    'futura-pt', 'Futura', 'Jost', 'Avenir Next', system-ui, sans-serif;
  --skc-ease:       cubic-bezier(.3, 0, .1, 1);
}
.sk-form--inline .sk-form__hd {
  font-family: var(--skc-ui); font-weight: 700;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--skc-gold); margin-bottom: 4px;
}

/* ── Injected "Contact" nav trigger ────────────────────────── */
.letterhead .filed a.sk-nav-link { cursor: pointer; }

/* The letterhead Contact link reads "Contact" on screen and prints as the
   address, so the PDF letterhead carries a real route instead of a dead word. */
.letterhead .filed .sk-c-print { display: none; }
@media print {
  .letterhead .filed .sk-c-screen { display: none; }
  .letterhead .filed .sk-c-print  { display: inline; }
}

@keyframes sk-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes sk-rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .sk-contact__scrim, .sk-contact__panel { animation: none; }
}

body.sk-lock { overflow: hidden; }
