/* Unify Feed — Contact page styles (brick orange + anthracite, sharp corners) */

/* ============== HERO ============== */
.uc-hero {
  background: var(--anth-900);
  color: #fff;
  padding: 56px 0 0;
  position: relative;
  overflow: hidden;
}
.uc-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 38%;
  background:
    repeating-linear-gradient(135deg, transparent 0 22px, rgba(216,90,27,0.06) 22px 23px),
    linear-gradient(135deg, transparent 30%, rgba(216,90,27,0.18) 130%);
  pointer-events: none;
}
.uc-hero .container { position: relative; z-index: 1; }

.uc-crumb {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--feed-300);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.uc-crumb a { color: var(--anth-100); border: none; text-decoration: none; }
.uc-crumb a:hover { color: #fff; }
.uc-crumb .sep { color: var(--anth-300); }
.uc-crumb .current { color: #fff; }

.uc-hero__head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: flex-end;
  padding-bottom: 56px;
}
.uc-hero h1 {
  font-family: var(--font-serif);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.04;
  font-size: clamp(48px, 6vw, 84px);
  color: #fff;
  margin: 8px 0 0;
  text-transform: none;
}
.uc-hero h1 em { font-style: normal !important; color: var(--feed-500); font-weight: 800; }
.uc-hero__lede {
  color: var(--anth-100);
  font-size: 16px;
  line-height: 1.7;
  max-width: 420px;
}
.uc-hero__lede strong { color: #fff; font-weight: 600; }

/* ============== MAIN GRID ============== */
.uc-main {
  background: var(--cream-100);
  padding: 0;
}
.uc-main__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
}

/* ===== FORM PANEL ===== */
.uc-form-panel {
  background: var(--cream-50);
  border-right: 1.5px solid var(--anth-900);
  border-bottom: 1.5px solid var(--anth-900);
  padding: 56px 56px 64px;
}
.uc-form__eyebrow { margin-bottom: 14px; }
.uc-form__title {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 8px;
  color: var(--ink-900);
}
.uc-form__sub {
  color: var(--ink-500);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 32px;
  max-width: 460px;
}

/* ── Basket section in form ── */
.uc-basket-section {
  border: 1.5px solid var(--feed-500);
  background: var(--cream-50);
  padding: 16px;
  margin-bottom: 24px;
}
.uc-basket-section__head {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em;
  color: var(--feed-600); text-transform: uppercase; margin-bottom: 12px;
}
.uc-basket-clear {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em;
  color: var(--ink-400); text-decoration: underline; padding: 0;
}
.uc-basket-clear:hover { color: #c0392b; }
.uc-basket-list { display: flex; flex-direction: column; gap: 6px; }
.uc-basket-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; background: #fff; border: 1.5px solid var(--ink-100);
}
.uc-basket-item__sku {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em;
  color: var(--feed-500); min-width: 64px; flex-shrink: 0;
}
.uc-basket-item__name { font-size: 13px; color: var(--ink-800); flex: 1; }
.uc-basket-item__rm {
  background: none; border: none; cursor: pointer;
  font-size: 16px; color: var(--ink-300); padding: 0 4px; line-height: 1;
}
.uc-basket-item__rm:hover { color: #c0392b; }

/* inquiry type selector */
.uc-type {
  margin-bottom: 32px;
}
.uc-type__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--feed-600);
  margin-bottom: 12px;
  display: block;
}
.uc-type__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1.5px solid var(--anth-900);
}
.uc-type__opt {
  background: #fff;
  border: none;
  border-right: 1px solid var(--anth-100);
  border-bottom: 1px solid var(--anth-100);
  padding: 16px 18px;
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all var(--dur) var(--ease-house);
}
.uc-type__opt:nth-child(2n) { border-right: none; }
.uc-type__opt:nth-last-child(-n+2) { border-bottom: none; }
.uc-type__opt .ti {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-900);
  letter-spacing: 0.01em;
}
.uc-type__opt .ds {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-500);
  letter-spacing: 0.02em;
}
.uc-type__opt:hover { background: var(--cream-100); }
.uc-type__opt.active { background: var(--anth-900); }
.uc-type__opt.active .ti { color: #fff; }
.uc-type__opt.active .ds { color: var(--feed-300); }

/* form fields */
.uc-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}
.uc-field { display: flex; flex-direction: column; gap: 8px; }
.uc-field.full { grid-column: 1 / -1; }
.uc-field label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-700);
  display: flex;
  align-items: center;
  gap: 6px;
}
.uc-field label .req { color: var(--feed-600); }
.uc-field input,
.uc-field textarea,
.uc-field select {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink-900);
  background: #fff;
  border: 1.5px solid var(--anth-900);
  padding: 13px 14px;
  outline: none;
  transition: all var(--dur) var(--ease-house);
  border-radius: 0;
  width: 100%;
}
.uc-field select { cursor: pointer; appearance: none; background-image: none; }
.uc-field input::placeholder,
.uc-field textarea::placeholder { color: var(--ink-300); }
.uc-field input:focus,
.uc-field textarea:focus,
.uc-field select:focus {
  border-color: var(--feed-500);
  box-shadow: 3px 3px 0 var(--feed-500);
  transform: translate(-1px, -1px);
}
.uc-field textarea { resize: vertical; min-height: 120px; line-height: 1.55; }
.uc-field__hint {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-300);
  letter-spacing: 0.04em;
}

.uc-form__consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}
.uc-form__consent input {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--anth-900);
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}
.uc-form__consent input:checked { background: var(--feed-500); border-color: var(--feed-500); }
.uc-form__consent input:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.uc-form__consent label {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--ink-500);
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}
.uc-form__consent a { color: var(--feed-600); }

.uc-form__actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
}
.uc-form__submit {
  background: var(--feed-500);
  color: #fff;
  border: 1.5px solid var(--feed-500);
  padding: 16px 32px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all var(--dur) var(--ease-house);
}
.uc-form__submit:hover { background: var(--feed-600); border-color: var(--feed-600); transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--anth-900); }
.uc-form__note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-500);
  letter-spacing: 0.04em;
}

/* success state */
.uc-success {
  grid-column: 1 / -1;
  border: 1.5px solid var(--anth-900);
  background: var(--anth-900);
  color: #fff;
  padding: 40px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.uc-success__icon {
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--feed-500);
  background: var(--feed-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.uc-success__icon svg { width: 28px; height: 28px; color: #fff; }
.uc-success h3 {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 26px;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.uc-success p { color: var(--anth-100); line-height: 1.6; margin: 0 0 6px; font-size: 14px; }
.uc-success .ref {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--feed-300);
  letter-spacing: 0.1em;
  margin-top: 12px;
}
.uc-success__reset {
  margin-top: 16px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 18px;
  cursor: pointer;
}
.uc-success__reset:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ===== INFO PANEL ===== */
.uc-info {
  background: var(--cream-100);
  border-bottom: 1.5px solid var(--anth-900);
  padding: 56px 48px 64px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.uc-info__block {
  padding: 24px 0;
  border-bottom: 1px solid var(--cream-200);
  display: flex;
  gap: 18px;
}
.uc-info__block:first-of-type { padding-top: 0; }
.uc-info__ico {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--anth-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--feed-600);
}
.uc-info__ico svg { width: 20px; height: 20px; }
.uc-info__k {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--feed-600);
  margin-bottom: 8px;
}
.uc-info__v {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-900);
}
.uc-info__v strong { font-weight: 600; }
.uc-info__v a { color: var(--ink-900); border-bottom: 1px solid var(--feed-300); text-decoration: none; }
.uc-info__v a:hover { color: var(--feed-600); }
.uc-info__sub { color: var(--ink-500); font-size: 12px; margin-top: 4px; font-family: var(--font-mono); letter-spacing: 0.02em; }

.uc-hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}
.uc-hours__row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-700);
  padding: 3px 0;
}
.uc-hours__row .d { font-family: var(--font-sans); }
.uc-hours__row .h { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--ink-900); }
.uc-hours__row.closed .h { color: var(--feed-600); }

.uc-map__bar {
  background: var(--anth-900);
  padding: 12px 24px;
  display: flex;
  justify-content: flex-end;
}
.uc-map__link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--feed-400);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}
.uc-map__link:hover { color: var(--feed-300); }

/* ============== MAP ============== */
.uc-map {
  border-top: 1.5px solid var(--anth-900);
  border-bottom: 1.5px solid var(--anth-900);
  height: 420px;
  position: relative;
  background: var(--anth-900);
  overflow: hidden;
}
.uc-map__placeholder {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 48px, rgba(255,255,255,0.04) 48px 49px),
    repeating-linear-gradient(90deg, transparent 0 48px, rgba(255,255,255,0.04) 48px 49px),
    radial-gradient(circle at 60% 45%, rgba(216,90,27,0.22), transparent 50%),
    var(--anth-900);
  display: flex;
  align-items: center;
  justify-content: center;
}
.uc-map__pin {
  position: absolute;
  left: 60%;
  top: 45%;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.uc-map__pin .dot {
  width: 18px;
  height: 18px;
  background: var(--feed-500);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.uc-map__pin .stick { width: 2px; height: 18px; background: #fff; }
.uc-map__card {
  position: absolute;
  left: 48px;
  bottom: 48px;
  background: var(--cream-50);
  border: 1.5px solid var(--anth-900);
  padding: 24px 28px;
  max-width: 340px;
  box-shadow: 6px 6px 0 var(--feed-500);
}
.uc-map__card .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--feed-600);
  margin-bottom: 8px;
}
.uc-map__card h4 {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 20px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}
.uc-map__card p { font-size: 13px; line-height: 1.55; color: var(--ink-700); margin: 0 0 14px; }
.uc-map__card a {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--feed-600);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.uc-map__card a:hover { color: var(--feed-700); gap: 12px; }
.uc-map__embed-note {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border: 1px dashed rgba(255,255,255,0.3);
  padding: 6px 10px;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1100px) {
  .uc-hero__head { grid-template-columns: 1fr; gap: 28px; padding-bottom: 48px; }
  .uc-main__grid { grid-template-columns: 1fr; }
  .uc-form-panel { border-right: none; padding: 48px 32px; }
  .uc-info { padding: 48px 32px; }
}
@media (max-width: 720px) {
  .uc-fields { grid-template-columns: 1fr; }
  .uc-type__grid { grid-template-columns: 1fr; }
  .uc-type__opt { border-right: none; }
  .uc-type__opt:nth-last-child(-n+2) { border-bottom: 1px solid var(--anth-100); }
  .uc-type__opt:last-child { border-bottom: none; }
  .uc-map__card { left: 16px; right: 16px; bottom: 16px; max-width: none; }
}
