/* ============================================================
   Gimme Giveaways — Contact page styles
   Extends styles.css + site-pages.css.
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0;
  border: 1px solid var(--ink);
}
.contact-grid .cf-col {
  padding: 44px 44px 40px;
  border-right: 1px solid var(--ink);
}
.contact-grid .cf-head { margin-bottom: 30px; }
.contact-grid .cf-head .marker {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-ink);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.contact-grid .cf-head .marker::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
}
.contact-grid .cf-head h2 {
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.contact-grid .cf-head h2 em { font-style: italic; font-weight: 400; color: var(--gold); }

/* Form fields */
.cf-form { display: flex; flex-direction: column; gap: 24px; }
.cf-form .field { display: flex; flex-direction: column; gap: 8px; }
.cf-form label {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.cf-form input,
.cf-form textarea,
.cf-form select {
  font-family: var(--f-serif);
  font-size: 18px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hairline-strong);
  padding: 12px 0;
  outline: 0;
  width: 100%;
  transition: border-color .2s ease;
}
.cf-form textarea {
  resize: vertical;
  line-height: 1.5;
  min-height: 96px;
}
.cf-form input::placeholder,
.cf-form textarea::placeholder { color: var(--ink-deep); font-style: italic; }
.cf-form input:focus,
.cf-form textarea:focus,
.cf-form select:focus { border-color: var(--gold-ink); }

.cf-form .select-wrap { position: relative; }
.cf-form select {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  padding-right: 28px;
}
.cf-form .select-wrap .chev {
  position: absolute;
  right: 2px; top: 50%;
  width: 9px; height: 9px;
  border-right: 1.5px solid var(--gold-ink);
  border-bottom: 1.5px solid var(--gold-ink);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.cf-actions {
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.cf-fineprint {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-deep);
  max-width: 220px;
  line-height: 1.5;
}

/* Success state */
.cf-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
}
.cf-success .tick {
  width: 48px; height: 48px;
  border: 1px solid var(--gold-ink);
  position: relative;
  background: var(--gold);
}
.cf-success .tick::after {
  content: "";
  position: absolute;
  left: 17px; top: 11px;
  width: 12px; height: 22px;
  border-right: 2px solid var(--on-gold);
  border-bottom: 2px solid var(--on-gold);
  transform: rotate(42deg);
}
.cf-success h3 {
  font-family: var(--f-serif);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.cf-success p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 460px;
}
.cf-success .btn { margin-top: 8px; }

/* Channels */
.cf-aside {
  display: flex;
  flex-direction: column;
}
.cf-aside .channel {
  padding: 26px 32px;
  border-bottom: var(--rule);
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.cf-aside .channel:last-child { border-bottom: 0; }
.cf-aside .ch-k {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.cf-aside .ch-v {
  font-family: var(--f-serif);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.15;
  transition: color .2s ease;
}
a.ch-v:hover { color: var(--gold-ink); }
.cf-aside .ch-v.addr {
  font-size: 18px;
  font-style: italic;
  line-height: 1.45;
  color: var(--ink-2);
}
.cf-aside .ch-note {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-deep);
}
.cf-aside .ch-note a {
  color: var(--gold-ink);
  border-bottom: 1px solid var(--gold-line);
}
.cf-aside .channel.post { background: var(--bg-2); flex: 1; }

/* Departments — email tag inside feature cards */
.departments-band .feat .tag {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
.departments-band .dept-email {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--gold-ink);
  text-transform: none;
  transition: color .2s ease;
}
.departments-band .dept-email:hover { color: var(--gold-deep); }
.departments-band .dept-note {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid .cf-col { border-right: 0; border-bottom: 1px solid var(--ink); }
}

@media (max-width: 760px) {
  .contact-grid .cf-col { padding: 32px var(--gutter) 30px; }
  .cf-aside .channel { padding: 22px var(--gutter); }
  .cf-actions { gap: 16px; }
  .cf-actions .btn { width: 100%; justify-content: space-between; }
  .cf-fineprint { max-width: none; }
}
