/* ----- HERO ----- */
.contact-hero {
  padding-block: clamp(56px, 6vw, 100px) clamp(40px, 5vw, 64px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.contact-hero::before {
  content: "";
  position: absolute;
  top: -240px; right: -200px;
  width: 720px; height: 720px;
  background: radial-gradient(closest-side, var(--plum-mist), transparent 70%);
  filter: blur(40px);
  opacity: 0.7;
  z-index: -1;
}
.contact-hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(56px, 8vw, 132px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 18px 0 0;
  font-variation-settings: "wdth" 100, "opsz" 96;
  max-width: 14ch;
}
.contact-hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--plum);
}
.contact-hero .lead {
  margin: 28px 0 0;
  max-width: 540px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ----- CHANNELS ----- */
.channels {
  padding-block: clamp(40px, 5vw, 64px) clamp(60px, 7vw, 100px);
}
.channels-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) {
  .channels-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
}
.ch-card {
  position: relative;
  padding: clamp(24px, 2.6vw, 32px);
  border-radius: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all .4s var(--ease-out);
  text-decoration: none;
  color: inherit;
}
.ch-card:hover {
  transform: translateY(-3px);
  border-color: var(--plum-soft);
  box-shadow: 0 30px 60px -30px rgba(107, 77, 138, 0.32);
}
.ch-card .ch-ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--plum-wash);
  color: var(--plum);
  display: grid; place-items: center;
}
.ch-card.is-dark {
  background: var(--plum-ink);
  border-color: transparent;
  color: white;
}
.ch-card.is-dark .ch-ic {
  background: rgba(255,255,255,.08);
  color: var(--plum-soft);
}
.ch-card .ch-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.ch-card.is-dark .ch-label { color: rgba(255,255,255,.55); }
.ch-card .ch-value {
  margin-top: 2px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(20px, 1.8vw, 24px);
  letter-spacing: -0.015em;
  color: var(--ink);
}
.ch-card.is-dark .ch-value { color: white; }
.ch-card .ch-meta {
  margin-top: auto;
  font-size: 13px;
  color: var(--ink-soft);
}
.ch-card.is-dark .ch-meta { color: rgba(255,255,255,.6); }
.ch-card .ch-meta .pulse {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #4ade80;
}
.ch-card .ch-meta .pulse::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 999px;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74,222,128,.55);
  animation: chPulse 1.8s infinite;
}
@keyframes chPulse {
  0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, .55); }
  70%  { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

/* ----- BIG FORM + ASIDE ----- */
.contact-block {
  padding-block: clamp(60px, 8vw, 110px);
  background: var(--plum-wash);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media (min-width: 980px) {
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; }
}
.contact-aside h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 14px 0 0;
  max-width: 12ch;
}
.contact-aside h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--plum);
}
.contact-aside p {
  margin: 20px 0 0;
  max-width: 460px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.contact-people {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-person {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: all .3s;
}
.contact-person:hover { border-color: var(--plum-soft); transform: translateY(-2px); }
.contact-person .av {
  width: 56px; height: 56px;
  border-radius: 999px;
  background-size: cover;
  background-position: center;
}
.contact-person .name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.contact-person .role {
  margin-top: 2px;
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}
.contact-person .reach {
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--plum);
}

/* Form */
.contact-form {
  background: var(--paper);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -50px rgba(42, 31, 61, 0.25);
}
.contact-form-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 12px;
}
.contact-form h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.02em;
  margin: 0;
}
.contact-form-head .step {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.contact-form p.sub {
  margin: 0 0 24px;
  font-size: 14.5px;
  color: var(--ink-muted);
}

/* Topic picker */
.topic-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 22px;
}
.topic-row label {
  position: relative;
  padding: 10px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--paper);
  cursor: pointer;
  font-size: 13.5px;
  color: var(--ink-soft);
  transition: all .2s;
}
.topic-row label:hover { border-color: var(--plum-soft); color: var(--plum); }
.topic-row input { position: absolute; opacity: 0; pointer-events: none; }
.topic-row label:has(input:checked) {
  background: var(--plum-ink);
  border-color: var(--plum-ink);
  color: white;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.cf-row.two { grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .cf-row.two { grid-template-columns: 1fr; } }
.cf-field { display: flex; flex-direction: column; gap: 8px; }
.cf-field label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.cf-field input, .cf-field select, .cf-field textarea {
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  transition: all .25s;
}
.cf-field input::placeholder, .cf-field textarea::placeholder { color: var(--ink-muted); }
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus {
  outline: none;
  border-color: var(--plum);
  box-shadow: 0 0 0 4px rgba(107,77,138,.08);
}
.cf-field textarea { resize: vertical; min-height: 120px; line-height: 1.55; }

.cf-foot {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.cf-foot button {
  padding: 16px 24px;
  background: var(--plum-ink);
  color: white;
  border: 0;
  border-radius: 14px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all .3s var(--ease-out);
}
.cf-foot button:hover {
  background: var(--plum-deep);
  transform: translateY(-1px);
  box-shadow: 0 22px 50px -10px rgba(107,77,138,.4);
}
.cf-foot .hint {
  font-size: 12.5px;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

/* SUCCESS */
.cf-success {
  display: none;
  text-align: center;
  padding: 24px 0 12px;
}
.cf-success.in { display: block; }
.cf-success .ok {
  width: 60px; height: 60px;
  margin: 0 auto;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--plum-soft), var(--plum));
  color: white;
  display: grid; place-items: center;
}
.cf-success h4 {
  margin: 18px 0 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.cf-success p {
  margin: 8px auto 0;
  max-width: 380px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

/* ----- OFFICE + MAP ----- */
.office {
  padding-block: clamp(60px, 7vw, 100px);
}
.office-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 3.5vw, 56px);
  align-items: stretch;
}
@media (min-width: 900px) {
  .office-grid { grid-template-columns: 1fr 1.2fr; gap: clamp(28px, 3vw, 48px); }
}
.office-text h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 14px 0 0;
}
.office-text h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--plum);
}
.office-text p {
  margin: 18px 0 0;
  max-width: 420px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.office-address {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line-strong);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.office-address .a {
  display: flex; flex-direction: column; gap: 6px;
}
.office-address .a .l {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.office-address .a .v {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}
.office-address .a .v.mono {
  font-family: var(--mono);
  font-size: 13.5px;
}
.office-map {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: var(--plum-ink);
  min-height: clamp(280px, 36vw, 460px);
  isolation: isolate;
}
.office-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.office-map .pin {
  position: absolute;
  top: 48%; left: 38%;
  z-index: 2;
}
.office-map .pin .dot {
  width: 16px; height: 16px;
  border-radius: 999px;
  background: var(--plum-soft);
  box-shadow: 0 0 0 8px rgba(178,146,206,.22), 0 0 0 18px rgba(178,146,206,.1);
  position: relative;
}
.office-map .pin .dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--plum-soft);
  animation: pingPin 2.2s infinite;
}
@keyframes pingPin {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(3.2); opacity: 0; }
}
.office-map .pin .label {
  position: absolute;
  top: -12px; left: 28px;
  white-space: nowrap;
  padding: 8px 14px;
  background: var(--paper);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  box-shadow: 0 8px 18px -6px rgba(0,0,0,.3);
}

/* Final reassurance band */
.contact-foot-band {
  padding-block: clamp(48px, 5vw, 72px);
  background: var(--plum-ink);
  color: white;
}
.contact-foot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
@media (min-width: 800px) {
  .contact-foot-grid { grid-template-columns: 1.4fr auto; }
}
.contact-foot-grid h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 38px);
  letter-spacing: -0.025em;
  color: white;
  max-width: 22ch;
  margin: 0;
}
.contact-foot-grid h3 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--plum-soft);
}
.contact-foot-grid .ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.contact-foot-grid .btn-primary {
  background: white;
  color: var(--plum-ink);
}
.contact-foot-grid .btn-primary:hover {
  background: var(--plum-soft);
  color: var(--paper);
  box-shadow: 0 22px 50px -10px rgba(178, 146, 206, .35);
}
.contact-foot-grid .btn-ghost {
  border-color: rgba(255,255,255,.2);
  color: white;
}
.contact-foot-grid .btn-ghost:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.4);
  color: white;
}
