/* ═══════════════════════════════════════════════════════
   SYNE Carbon — Contact Page
   ═══════════════════════════════════════════════════════ */

/* Narrow header variant */
.pg-header-narrow { padding-top: 64px; }
.pg-header-narrow .container { padding-top: 56px; padding-bottom: 56px; }
.pg-header-narrow .pg-h1 { margin-bottom: 12px; }
.pg-header-narrow .pg-lead { margin-bottom: 0; }

/* ── CONTACT SECTION ─────────────────────────────────── */
.contact-sec {
  padding: 80px 0 96px;
  background: var(--bg-white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.018em;
  color: var(--ink);
  margin-bottom: 10px;
}

.contact-intro {
  font-size: 14.5px;
  line-height: 1.68;
  color: var(--ink-3);
  margin-bottom: 32px;
}

/* ── TOPIC CARDS ─────────────────────────────────────── */
.contact-topics {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-topic {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: var(--bg-grey);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color .18s, box-shadow .18s, background .18s;
  cursor: pointer;
}

.contact-topic:hover {
  border-color: var(--blue);
  background: var(--blue-lt);
  box-shadow: var(--sh-sm);
}

.ct-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--r);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.ct-icon svg {
  width: 18px;
  height: 18px;
}
.ct-icon-blue   { background: var(--blue-lt);   color: var(--blue-dark); }
.ct-icon-indigo { background: var(--indigo-lt);  color: var(--indigo); }
.ct-icon-green  { background: var(--green-lt);   color: #16A34A; }
.ct-icon-amber  { background: var(--amber-lt);   color: #B45309; }

.ct-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.ct-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-3);
  margin-bottom: 8px;
}

.ct-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--blue);
}
.ct-link svg {
  width: 11px;
  height: 11px;
  fill: currentColor;
  stroke: none;
  opacity: 0;
  transition: opacity .15s, transform .15s;
  transform: translateX(-2px);
}
.contact-topic:hover .ct-link svg {
  opacity: 1;
  transform: translateX(0);
}

/* ── OFFICES ─────────────────────────────────────────── */
.offices-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.office-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 26px;
  background: var(--bg-white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  transition: border-color .18s, box-shadow .18s;
}

.office-card:hover {
  border-color: var(--blue-mid);
  box-shadow: var(--sh-md);
}

.office-flag {
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.18);
  line-height: 0;
}

.office-body {
  flex: 1;
}

.office-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-dark);
  background: var(--blue-lt);
  border: 1px solid var(--blue-mid);
  border-radius: 3px;
  padding: 3px 8px;
  margin-bottom: 10px;
}

.office-badge-grey {
  color: var(--ink-3);
  background: var(--bg-grey);
  border-color: var(--line);
}

.office-entity {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.014em;
  margin-bottom: 2px;
}

.office-country {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
}

.office-addr {
  display: flex;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 14px;
}

.office-addr svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--blue);
}

.office-contact {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  transition: color .15s;
}

.office-contact:hover { color: var(--blue-dark); }

.office-contact svg {
  width: 14px;
  height: 14px;
  color: var(--blue-mid);
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

@media (max-width: 520px) {
  .contact-sec { padding: 56px 0 72px; }
  .office-card { flex-direction: column; gap: 14px; }
}

/* ── CONTACT COLUMN LAYOUT ───────────────────────────── */
.contact-left  { /* left column — enquiry topic cards */ }
.contact-right { /* right column — offices */ }

/* These are handled by .contact-layout grid — explicit
   class hooks kept for JS targeting if needed.       */
