.contact { background: var(--b2); }
.contact-g {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 9rem; align-items: start;
}
.c-h  { margin-bottom: 1rem; }
.c-sub { margin-bottom: 3rem; color: rgba(250,250,248,.7); }
.c-emails { display: flex; flex-direction: column; gap: 1.4rem; }
.c-lbl { font-size: .54rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(250,250,248,.5); margin-bottom: .14rem; }
.c-val { font-size: .82rem; color: rgba(250,250,248,.78); }

/* Glass form wrapper */
.frm-wrap {
  background: linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
  border: 1px solid var(--br2); border-radius: 18px;
  padding: 2.5rem; position: relative; overflow: hidden;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.frm-wrap::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1.5px;
  background: linear-gradient(90deg, var(--g), transparent 60%);
}
.frm-wrap::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 80% 0%, var(--g4), transparent);
  pointer-events: none;
}
.frm   { display: flex; flex-direction: column; gap: .7rem; position: relative; z-index: 1; }
.frow  { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.ff    { display: flex; flex-direction: column; gap: .28rem; }
.fl    { font-size: .54rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--t3); }
.fi, .fs, .fta {
  width: 100%; background: rgba(255,255,255,.05);
  border: 1px solid var(--br); color: var(--t);
  font-family: var(--sans); font-size: .82rem; font-weight: 300;
  padding: .72rem 1rem; border-radius: 9px; outline: none;
  transition: border-color .25s, background .25s;
}
.fi::placeholder, .fta::placeholder { color: rgba(250,250,248,.3); }
.fi:focus, .fs:focus, .fta:focus { border-color: rgba(200,144,10,.45); background: rgba(200,144,10,.04); }
.fs  { background: rgba(255,255,255,.04); color: var(--t2); }
.fs option { background: #0D0F18; }
.fta { resize: vertical; min-height: 95px; }
.fb {
  width: 100%; padding: .88rem; margin-top: .2rem;
  background: linear-gradient(135deg, var(--g), rgba(229,168,18,.82));
  color: #000; font-family: var(--sans); font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  border: none; border-radius: 9px; cursor: pointer;
  box-shadow: 0 4px 22px rgba(200,144,10,.28);
  transition: box-shadow .25s, transform .2s;
}
.fb:hover { box-shadow: 0 6px 32px rgba(200,144,10,.5); transform: translateY(-1px); }
.fok { display: none; color: var(--g); font-size: .75rem; text-align: center; padding: .35rem; }
