.page-hero {
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}
.page-hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
}
.page-hero h1 {
  margin: 16px 0 24px;
  font-size: clamp(56px, 9vw, 140px);
}
.page-hero h1 .red { color: var(--red); }

.contact-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 60px;
  padding: 40px 0 120px;
}
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
}

/* Form */
.form-card {
  border: 1px solid var(--ink);
  background: var(--paper);
  padding: 40px;
  position: relative;
}
.form-card::before {
  content: "FORM · 001";
  position: absolute; top: 14px; right: 18px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em;
  color: var(--mute);
}
.form-head {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ink);
  margin-bottom: 28px;
}
.form-head h2 {
  margin: 0 0 6px;
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1;
}
.form-head p { margin: 6px 0 0; color: var(--ink-2); font-size: 15px; }

.field { margin-bottom: 22px; }
.field label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.field label::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
}
.field input, .field select, .field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ink);
  padding: 10px 2px 10px;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  border-radius: 0;
  outline: none;
  transition: border-color 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-bottom-color: var(--red);
  border-bottom-width: 2px;
  padding-bottom: 9px;
}
.field textarea { resize: vertical; min-height: 120px; font-family: inherit; }
.field.invalid input, .field.invalid select, .field.invalid textarea {
  border-bottom-color: var(--red);
}
.field .err {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--red);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 6px;
  display: none;
}
.field.invalid .err { display: block; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }

.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.radio-row label {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 8px 14px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  margin: 0;
  transition: background 0.15s, color 0.15s;
}
.radio-row label::before { display: none; }
.radio-row input { position: absolute; opacity: 0; pointer-events: none; }
.radio-row label:has(input:checked) {
  background: var(--ink);
  color: var(--paper);
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  gap: 16px;
  flex-wrap: wrap;
}
.form-actions .meta {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}

.submit-btn {
  position: relative;
  overflow: hidden;
}
.success {
  display: none;
  padding: 24px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  margin-top: 24px;
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-items: center;
  gap: 14px;
}
.success.show { display: flex; }
.success::before {
  content: "";
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

/* Side panel */
.side-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.channel {
  border: 1px solid var(--ink);
  padding: 28px;
  text-decoration: none;
  color: var(--ink);
  display: block;
  transition: background 0.15s, color 0.15s;
  position: relative;
}
.channel:hover { background: var(--ink); color: var(--paper); }
.channel:hover .channel-arrow { color: var(--red); }
.channel-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 12px;
}
.channel-val {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  word-break: break-word;
}
.channel-arrow {
  position: absolute;
  top: 24px; right: 24px;
  color: var(--red);
  font-family: var(--f-mono);
  font-size: 18px;
}
.channel:hover .channel-label { color: #c9c7bf; }

.founder-card {
  border: 1px solid var(--ink);
  padding: 0;
  overflow: hidden;
  background: var(--paper);
}
.founder-photo {
  aspect-ratio: 4 / 3;
  background: var(--ink);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}
.founder-photo .dots {
  position: absolute; inset: 0;
  --d: 3px; --g: 18px;
  background-image: radial-gradient(circle, var(--red) 0 var(--d), transparent calc(var(--d) + 0.5px));
  background-size: var(--g) var(--g);
  opacity: 0.6;
}
.founder-photo .placeholder-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c9c7bf;
  mix-blend-mode: difference;
}
.founder-info { padding: 24px 28px 28px; }
.founder-info .role {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--mute);
}
.founder-info h3 {
  font-family: var(--f-display);
  font-size: 32px; letter-spacing: -0.02em;
  margin: 6px 0 8px;
  line-height: 1;
}
.founder-info p { margin: 0; color: var(--ink-2); font-size: 14px; }

.hours {
  border: 1px solid var(--ink);
  padding: 24px 28px;
  background: var(--paper-2);
}
.hours h5 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 14px;
  font-weight: 400;
  color: var(--mute);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  font-family: var(--f-mono);
  letter-spacing: 0.05em;
}
.hours-row.active { color: var(--red); }