.contact-shell {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  padding: 48px 40px 80px;
  max-width: var(--container);
  margin: 0 auto;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  padding: 36px;
  box-shadow: 0 1px 0 rgba(15,23,41,0.03);
  transition: box-shadow 320ms ease;
}

.form-card:focus-within {
  box-shadow: 0 24px 48px -28px rgba(27,42,74,0.18);
}

.form-card h2 {
  font-family: var(--ff-display);
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 28px;
  font-weight: 500;
}

.form-card .desc {
  color: var(--ink-700);
  margin: 0 0 28px;
  font-size: 14.5px;
  line-height: 1.55;
  max-width: 56ch;
}

.form-step-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 8px;
}

.form-step-label.message {
  margin: 18px 0 8px;
}

.topic-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 22px;
}

.topic-row .opt {
  padding: 11px 12px;
  background: var(--cream-50);
  border: 1px solid var(--hairline);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-700);
  cursor: pointer;
  text-align: center;
  transition:
    background 200ms ease,
    color 200ms ease,
    border-color 200ms ease,
    transform 200ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.topic-row .opt:hover {
  background: var(--white);
  border-color: var(--navy);
  color: var(--navy);
}

.topic-row .opt.active {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 6px 12px -6px rgba(27,42,74,0.36);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.field label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-500);
}

.form-card .send-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
}

.form-card .send-row .note {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  max-width: 38ch;
}

.side-panels {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.channel {
  background: var(--white);
  border: 1px solid var(--hairline);
  padding: 26px;
  position: relative;
  overflow: hidden;
  transition: border-color 220ms ease, transform 280ms cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 280ms ease;
}

.channel::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 360ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.channel:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -20px rgba(27,42,74,0.18);
}

.channel:hover::before {
  transform: scaleY(1);
}

.channel .row {
  transition: padding-left 240ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.channel .row:hover {
  padding-left: 6px;
}

.channel .eyebrow {
  display: block;
  margin-bottom: 10px;
}

.channel h3 {
  font-family: var(--ff-display);
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 21px;
  font-weight: 500;
}

.channel .row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 8px 0;
  align-items: center;
}

.channel .row .k {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.channel .row .v {
  font-size: 14.5px;
  color: var(--ink);
  font-family: var(--ff-mono);
}

.channel .row .v a {
  color: var(--navy);
  text-decoration: underline;
}

.channel .row .v.copy {
  font-family: var(--ff-sans);
  font-size: 14px;
  line-height: 1.5;
}

.ndpa-card {
  background: var(--cream-50);
  border: 1px solid var(--gold-300);
  padding: 26px;
}

.ndpa-card h3 {
  font-family: var(--ff-display);
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 500;
}

.ndpa-card p {
  color: var(--ink-700);
  font-size: 14px;
  margin: 0 0 12px;
  line-height: 1.55;
}

.ndpa-card .row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 6px 0;
  font-size: 13px;
}

.ndpa-card .row .k {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ndpa-card .row .v {
  color: var(--ink);
  font-family: var(--ff-mono);
}

.ndpa-eyebrow {
  margin-bottom: 10px;
  display: block;
}

.map-wrap {
  position: relative;
  max-width: min(calc(var(--container) + 220px), calc(100vw - 48px));
}

.map {
  aspect-ratio: 16 / 10;
  min-height: 460px;
  max-height: 720px;
  border: 1px solid var(--hairline);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--cream);
  box-shadow:
    0 1px 0 rgba(15,23,41,0.04),
    0 34px 72px -38px rgba(27,42,74,0.3);
}

.map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.9) contrast(1.03);
  transition: filter 320ms ease;
}

.map:hover iframe {
  filter: saturate(0.94) contrast(1.05);
}

.map::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(251,250,246,0.08) 0%, rgba(251,250,246,0) 24%, rgba(251,250,246,0.04) 100%),
    linear-gradient(90deg, rgba(27,42,74,0.05) 0%, rgba(27,42,74,0) 18%, rgba(27,42,74,0) 82%, rgba(27,42,74,0.05) 100%);
  pointer-events: none;
  z-index: 1;
}

.map::after {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(245,237,214,0.58);
  pointer-events: none;
  z-index: 1;
  transition: inset 320ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.map:hover::after {
  inset: 24px;
}

.map .pin {
  width: 14px;
  height: 14px;
  background: var(--gold);
  border: 2px solid var(--navy);
  border-radius: 50%;
  position: absolute;
  top: 48%;
  left: 38%;
  box-shadow: 0 0 0 0 rgba(201,168,76,0.56);
  animation: pin-ping 2.6s ease-out infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes pin-ping {
  0%   { box-shadow: 0 0 0 0 rgba(201,168,76,0.56); }
  70%  { box-shadow: 0 0 0 22px rgba(201,168,76,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
}

@media (prefers-reduced-motion: reduce) {
  .map .pin {
    animation: none;
  }
}

.map .pin::after {
  content: '24 Biaduo Street · Ikoyi';
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--navy);
  background: rgba(251,250,246,0.94);
  padding: 4px 10px;
  border: 1px solid var(--gold-300);
  white-space: nowrap;
}

.map-stamp {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: min(420px, calc(100% - 28px));
  padding: 14px 16px;
  background: rgba(251,250,246,0.92);
  border: 1px solid var(--gold-300);
  backdrop-filter: blur(6px);
  box-shadow: 0 20px 40px -30px rgba(27,42,74,0.28);
  pointer-events: none;
  z-index: 2;
}

.map-stamp .k {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-500);
}

.map-stamp .v {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--navy);
}

.section-no-top {
  padding-top: 0;
}

.strip-support {
  background: var(--navy);
  color: var(--cream);
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
}

.strip-support::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -40px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(245,237,214,0.12);
  border-radius: 50%;
  pointer-events: none;
}

.strip-support::after {
  content: '';
  position: absolute;
  top: 20px;
  right: 40px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 50%;
  pointer-events: none;
}

.strip-support .inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.strip-support h4 {
  font-family: var(--ff-display);
  margin: 0 0 4px;
  color: var(--cream);
  font-size: 22px;
  font-weight: 500;
}

.strip-support-title {
  margin-top: 10px;
}

.strip-support p {
  margin: 0;
  color: rgba(245,237,214,0.7);
  font-size: 14.5px;
  max-width: 48ch;
}

.strip-support .channels {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--gold-300);
  letter-spacing: 0.08em;
}

.strip-support .channels b {
  color: var(--cream);
  font-weight: 500;
}

.support-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

@media (max-width: 980px) {
  .contact-shell {
    grid-template-columns: 1fr;
    padding: 20px 14px 44px;
    gap: 28px;
  }

  .strip-support .inner,
  .topic-row,
  .field-row {
    grid-template-columns: 1fr;
  }

  .strip-support {
    padding: 20px 14px;
  }

  .map-wrap {
    max-width: 100%;
  }

  .map {
    aspect-ratio: 16 / 11;
    min-height: 500px;
    max-height: 620px;
  }

  .map::after {
    inset: 14px;
  }

  .map:hover::after {
    inset: 18px;
  }

  .map-stamp {
    top: 12px;
    right: 12px;
    bottom: auto;
    left: auto;
    width: min(320px, calc(100% - 24px));
  }

  .form-card .send-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .map {
    aspect-ratio: auto;
    min-height: 420px;
    max-height: none;
  }

  .map .pin::after {
    font-size: 10px;
    letter-spacing: 0.1em;
    padding: 4px 8px;
  }

  .map-stamp {
    width: min(280px, calc(100% - 24px));
    padding: 12px 14px;
  }
}
