/* ============================================================
   CONTACTS
   ============================================================ */
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
@media (max-width: 980px) { .contacts-grid { grid-template-columns: 1fr; } }

.contact-info { }
.contact-info .lede { margin-top: 24px; }
.contact-list {
  margin-top: 48px;
  display: grid; gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.contact-row {
  padding: 22px 24px;
  background: var(--bg);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  transition: background .25s ease;
}
.contact-row:hover { background: var(--bg-1); }
.contact-row .l {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-3); text-transform: uppercase; letter-spacing: .14em;
}
.contact-row .v {
  font-family: var(--font-display); font-weight: 500;
  font-size: 18px; letter-spacing: -.005em;
  text-align: right;
}

.form {
  background: var(--bg-1);
  border: 1px solid var(--line);
  padding: clamp(28px, 3.5vw, 44px);
}
.form h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 24px; letter-spacing: -.01em;
  margin: 0 0 8px;
}
.form .desc {
  color: var(--ink-3); font-size: 13px; margin-bottom: 28px;
}
.form .field {
  display: flex; flex-direction: column;
  margin-bottom: 18px;
}
.form .field label {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--ink-4); text-transform: uppercase; letter-spacing: .14em;
  margin-bottom: 8px;
}
.form .field input,
.form .field textarea,
.form .field select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-2);
  padding: 10px 0;
  color: var(--ink);
  font-size: 15px;
  outline: none;
  transition: border-color .25s ease;
  font-family: inherit;
}
.form .field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-3) 50%), linear-gradient(135deg, var(--ink-3) 50%, transparent 50%);
  background-position: calc(100% - 14px) calc(50% + 2px), calc(100% - 8px) calc(50% + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
  color: var(--ink);
}
.form .field select option {
  color: #0b0b0f;
  background: #f4f4f5;
}
.form .field input[type="file"] {
  border: 1px dashed var(--line-2);
  border-bottom: 1px dashed var(--line-2);
  padding: 10px 12px;
  cursor: pointer;
}
.form .field input[type="file"]::file-selector-button {
  margin-right: 12px;
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  color: var(--ink-2);
  padding: 8px 10px;
  cursor: pointer;
}
.form .field .file-list {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--ink-2);
}
.form .field .file-list.empty {
  color: var(--ink-4);
}
.form .field textarea { resize: vertical; min-height: 80px; }
.form .field input:focus,
.form .field textarea:focus,
.form .field select:focus { border-bottom-color: var(--accent); }
.form .field input::placeholder, .form .field textarea::placeholder { color: var(--ink-4); }

.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form .row2 { grid-template-columns: 1fr; } }

.form .agree {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 12px; color: var(--ink-3); line-height: 1.45;
  margin: 8px 0 24px;
}
.form .agree input { accent-color: var(--accent); }

.form .submit-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.form .submit-row .note { font-family: var(--font-mono); font-size: 11px; color: var(--ink-4); letter-spacing: .1em; }

.form-ok {
  padding: 28px;
  border: 1px solid var(--accent);
  background: var(--accent-ui-06);
  color: var(--ink);
  text-align: center;
}
.form-ok h4 { font-family: var(--font-display); font-weight: 500; font-size: 22px; margin: 0 0 8px; color: var(--accent); }
.form-ok p { color: var(--ink-2); margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  border-top: 1px solid var(--line);
  padding: clamp(60px, 8vw, 100px) 0 32px;
  background: linear-gradient(180deg, var(--bg), #060607);
}
.footer-brand-head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 4px;
}
.footer-brand .brand-mark {
  width: 128px;
  flex: 0 0 128px;
  height: auto;
  min-height: 64px;
  align-self: flex-start;
}
.footer-brand .brand-mark img {
  width: 100%;
  height: auto;
  max-height: 96px;
  object-fit: contain;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-col h5 {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--ink-4); text-transform: uppercase; letter-spacing: .18em;
  margin: 0 0 16px;
}
.footer-col a, .footer-col p {
  display: block;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  transition: color .25s ease;
}
.footer-col a:hover { color: var(--accent); }

.footer-brand .brand-name { font-size: 22px; }
.footer-brand .desc { color: var(--ink-3); font-size: 13px; line-height: 1.6; margin-top: 20px; max-width: 36ch; }
@media (max-width: 560px) {
  .footer-brand-head { flex-direction: column; gap: 14px; }
  .footer-brand .brand-mark { width: 112px; flex-basis: 112px; }
}

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 60px; padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-4); letter-spacing: .12em;
  text-transform: uppercase;
}

/* ============================================================
   SPARK CURSOR
   ============================================================ */
.spark {
  position: fixed;
  pointer-events: none;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  z-index: 999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .3s ease;
}
.spark.on { opacity: 1; }
.spark-ring {
  position: fixed;
  pointer-events: none;
  width: 28px; height: 28px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  z-index: 998;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: transform .15s ease, opacity .3s ease;
}
.spark-ring.on { opacity: .35; }
@media (hover: none) { .spark, .spark-ring { display: none; } }
