/* ================================================================
EAMIL INTERNATIONAL — Contact Page
contact.css · v7.0 · Mobile-safe responsive polish
================================================================ */

/* Global overflow safety */
html,
body,
.contact-page {
  overflow-x: clip;
  max-width: 100%;
}

.contact-page,
.contact-page *,
.contact-page *::before,
.contact-page *::after {
  box-sizing: border-box;
}

img,
video,
iframe,
svg {
  max-width: 100%;
}

/* ════════════════════════════════════════════════
HERO
════════════════════════════════════════════════ */
.contact-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(520px, 75vh, 780px);
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + clamp(2.5rem, 6vh, 5rem));
  padding-bottom: clamp(3rem, 6vh, 5.5rem);
  padding-inline: var(--gutter);
}

.contact-hero .page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-hero .page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  opacity: 0.62;
  display: block;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(115deg, rgba(23, 20, 15, 0.72) 0%, rgba(23, 20, 15, 0.52) 45%, rgba(23, 20, 15, 0.34) 100%);
}

.contact-hero-glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse at 72% 55%, rgba(184, 146, 58, 0.10) 0%, transparent 60%);
  pointer-events: none;
}

.contact-hero::before,
.contact-hero::after {
  display: none;
}

.contact-hero .page-hero-inner {
  position: relative;
  z-index: 3;
  max-width: var(--max-w);
  margin-inline: auto;
  width: 100%;
}

.contact-hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-top: 0.55rem;
  max-width: 680px;
}

.contact-hero .eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
}

.page-hero-p {
  color: rgba(250, 247, 242, 0.60);
  max-width: 540px;
  margin-top: 1.1rem;
  font-size: 1rem;
  line-height: 1.82;
}

/* ════════════════════════════════════════════════
QUICK CHANNELS
════════════════════════════════════════════════ */
.quick-channels-section {
  padding: clamp(1.6rem, 3vw, 2.5rem) var(--gutter) 0;
  max-width: var(--max-w);
  margin-inline: auto;
  width: 100%;
}

.quick-channels-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  min-width: 0;
}

.inquiry-channel {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.2rem;
  background: var(--ivory-warm);
  border: 1px solid var(--stone-100);
  border-radius: var(--r-md);
  transition: all var(--dur-md) var(--ease);
  text-decoration: none;
  min-width: 0;
  overflow: hidden;
}

.inquiry-channel:hover {
  border-color: var(--brass-muted);
  transform: translateX(4px);
  box-shadow: var(--sh-sm);
}

.ic-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.inquiry-channel.wa .ic-icon { background: rgba(37, 211, 102, 0.12); color: #25D366; }
.inquiry-channel.em .ic-icon { background: var(--brass-glow); color: var(--brass); }
.inquiry-channel.ph .ic-icon { background: rgba(99, 179, 237, 0.12); color: #63b3ed; }

.ic-text { flex: 1; min-width: 0; overflow: hidden; }

.ic-lbl {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.59rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-hint);
  margin-bottom: 3px;
  white-space: nowrap;
}

.ic-val {
  font-family: var(--font-ui);
  font-size: 0.86rem;
  color: var(--text-primary);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}

.ic-arrow {
  margin-left: auto;
  color: var(--stone-300);
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: transform var(--dur-md), color var(--dur-md);
}

.inquiry-channel:hover .ic-arrow {
  color: var(--brass);
  transform: translateX(3px);
}

/* ════════════════════════════════════════════════
MAIN CONTACT GRID
════════════════════════════════════════════════ */
.contact-section {
  padding: clamp(2.5rem, 5vw, 4.5rem) var(--gutter);
  max-width: var(--max-w);
  margin-inline: auto;
  width: 100%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.38fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
  min-width: 0;
}

.contact-info-panel,
.contact-form-panel {
  min-width: 0;
  max-width: 100%;
}

.contact-info-panel h2 { margin-bottom: 0.5rem; }

.contact-info-panel > p {
  margin-bottom: 2rem;
  font-size: 0.92rem;
  line-height: 1.85;
}

.info-items {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--stone-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--sh-xs);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.05rem 1.35rem;
  border-bottom: 1px solid var(--stone-100);
  transition: background var(--dur);
  min-width: 0;
}

.info-item:last-child { border-bottom: none; }
.info-item:hover { background: var(--ivory-warm); }

.info-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--brass-glow);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brass);
  font-size: 0.9rem;
  margin-top: 2px;
}

.info-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-hint);
  margin-bottom: 5px;
}

.info-val {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.info-val a { color: var(--text-primary); transition: color var(--dur); }
.info-val a:hover { color: var(--brass); }
.info-item--emails .info-icon { margin-top: 0.15rem; }

.multi-email-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 3px;
  min-width: 0;
  overflow: hidden;
}

.info-val--em {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--text-primary);
  text-decoration: none;
  padding: 3px 0;
  transition: color var(--dur);
  min-width: 0;
  overflow: hidden;
}

.info-val--em:hover { color: var(--brass); }

.em-role {
  flex-shrink: 0;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-hint);
  background: var(--ivory-warm);
  border: 1px solid var(--stone-100);
  border-radius: 20px;
  padding: 1px 7px;
  min-width: 60px;
  text-align: center;
}

.em-addr {
  font-size: 0.82rem;
  color: inherit;
  transition: color var(--dur);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  min-width: 0;
}

.info-img-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-bottom: 1.75rem;
  box-shadow: var(--sh-sm);
}

.contact-socials { margin-top: 0; }
.contact-socials h5 { margin-bottom: 0.75rem; }
.social-links { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.social-links a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--stone-200);
  border-radius: var(--r);
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all var(--dur-md) var(--ease);
}

.social-links a:hover {
  border-color: var(--brass);
  color: var(--brass);
  transform: translateY(-2px);
  background: var(--brass-glow);
}

/* ════════════════════════════════════════════════
FORM PANEL
════════════════════════════════════════════════ */
.contact-form-panel {
  background: var(--surface);
  border: 1px solid var(--stone-100);
  border-radius: var(--r-xl);
  padding: clamp(1.6rem, 3vw, 2.5rem) clamp(1.6rem, 3vw, 2.75rem);
  box-shadow: var(--sh-md);
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}

.contact-form-panel h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  margin-bottom: 0.35rem;
}

.contact-form-panel > p {
  font-size: 0.87rem;
  margin-bottom: 1.75rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--stone-100);
}

.form-note {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.form-submit-btn { flex-shrink: 0; }

.form-error-msg {
  display: none;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  color: #dc2626;
  margin-top: 4px;
  line-height: 1.4;
}

.form-group.has-error .form-error-msg { display: block; }

.form-group.has-error .form-input,
.form-group.has-error .form-textarea,
.form-group.has-error .form-select {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}

.form-group.is-valid .form-input,
.form-group.is-valid .form-textarea {
  border-color: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.07);
}

.form-group.is-valid .form-input:focus,
.form-group.is-valid .form-textarea:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 3px var(--brass-glow);
}

/* Phone selector */
.phone-field-wrap {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
  min-width: 0;
}

.cc-select-wrap {
  position: relative;
  flex-shrink: 0;
  z-index: 50;
}

.cc-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 100%;
  min-height: 40px;
  padding: 0 10px;
  background: var(--ivory-warm);
  border: 1.5px solid var(--stone-200);
  border-right: none;
  border-radius: var(--r) 0 0 var(--r);
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--text-primary);
  transition: border-color var(--dur), background var(--dur);
  white-space: nowrap;
  min-width: 82px;
}

.cc-trigger:hover { border-color: var(--stone-300); background: var(--stone-50); }
.cc-trigger:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px var(--brass-glow); }
.cc-flag-disp { font-size: 1rem; line-height: 1; }
.cc-code-disp { font-size: 0.8rem; font-weight: 600; color: var(--text-primary); letter-spacing: 0.02em; }
.cc-chevron { font-size: 0.6rem; color: var(--text-hint); transition: transform var(--dur-md) var(--ease); flex-shrink: 0; }
.cc-select-wrap.open .cc-chevron { transform: rotate(180deg); }
.cc-select-wrap.open .cc-trigger { border-color: var(--brass); background: var(--surface); }

.cc-phone-input {
  flex: 1;
  border-radius: 0 var(--r) var(--r) 0 !important;
  min-width: 0;
  width: 100%;
  border-left-color: transparent !important;
}

.cc-phone-input:focus {
  border-color: var(--brass) !important;
  border-left-color: var(--brass) !important;
  box-shadow: 0 0 0 3px var(--brass-glow) !important;
}

.cc-panel {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 260px;
  max-width: min(92vw, 260px);
  background: var(--surface);
  border: 1.5px solid var(--stone-200);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  z-index: 9999;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  max-height: 0;
  pointer-events: none;
}

.cc-select-wrap.open .cc-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  max-height: 320px;
  pointer-events: all;
}

.cc-search-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--stone-100);
  background: var(--ivory-warm);
}

.cc-search-icon { color: var(--text-hint); font-size: 0.72rem; flex-shrink: 0; }

.cc-search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--text-primary);
  outline: none;
  line-height: 1;
}

.cc-search-input::placeholder { color: var(--stone-300); }

.cc-options {
  list-style: none;
  margin: 0;
  padding: 0.3rem 0;
  max-height: 240px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.cc-options::-webkit-scrollbar { width: 4px; }
.cc-options::-webkit-scrollbar-track { background: transparent; }
.cc-options::-webkit-scrollbar-thumb { background: var(--stone-200); border-radius: 4px; }

.cc-option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.9rem;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 0.83rem;
  color: var(--text-secondary);
  transition: background var(--dur);
}

.cc-option:hover,
.cc-option.selected { background: var(--brass-glow); color: var(--text-primary); }
.cc-option.selected { font-weight: 600; }
.cc-option-flag { font-size: 1.1rem; line-height: 1; flex-shrink: 0; }
.cc-option-name { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cc-option-code { font-size: 0.75rem; color: var(--text-hint); font-weight: 500; flex-shrink: 0; }
.cc-no-results { padding: 1rem 0.9rem; font-size: 0.8rem; color: var(--text-hint); text-align: center; }

/* ════════════════════════════════════════════════
TRUST STRIP
════════════════════════════════════════════════ */
.trust-strip-section {
  padding: clamp(2.5rem, 5vw, 4rem) var(--gutter);
  background: var(--ivory-warm);
  border-top: 1px solid var(--stone-100);
  border-bottom: 1px solid var(--stone-100);
}

.trust-strip-inner { max-width: var(--max-w); margin-inline: auto; width: 100%; }

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  min-width: 0;
}

.trust-strip-item { text-align: center; padding: 1.5rem 1rem; }

.tsi-icon {
  width: 52px;
  height: 52px;
  background: var(--brass-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--brass);
  font-size: 1.15rem;
  border: 1px solid var(--brass-muted);
}

.trust-strip-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
  color: var(--text-primary);
}

.trust-strip-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* ════════════════════════════════════════════════
MAP + FAQ
════════════════════════════════════════════════ */
.map-section {
  padding: clamp(2.5rem, 5vw, 4rem) var(--gutter) clamp(3rem, 6vw, 5rem);
  max-width: var(--max-w);
  margin-inline: auto;
  width: 100%;
}

.map-header { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.map-header .btn { margin-left: auto; }

.map-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--stone-100);
  height: clamp(300px, 42vw, 480px);
  box-shadow: var(--sh-md);
  position: relative;
  background: var(--ivory-warm);
}

.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

.map-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(23,20,15,0.06), transparent);
  pointer-events: none;
  border-radius: 0 0 var(--r-xl) var(--r-xl);
}

.faq-section {
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  background: var(--ivory-warm);
  border-top: 1px solid var(--stone-100);
}

.faq-section .sec-head,
.faq-grid {
  max-width: var(--max-w);
  margin-inline: auto;
  width: 100%;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-top: clamp(1.6rem, 3vw, 2.5rem);
  align-items: start;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--stone-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--dur), box-shadow var(--dur);
}

.faq-item.open { border-color: var(--brass-muted); box-shadow: var(--sh-sm); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.35rem;
  cursor: pointer;
  gap: 1rem;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  transition: background var(--dur);
}

.faq-q:hover { background: var(--ivory-warm); }

.faq-q h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.4;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 1px solid var(--stone-200);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brass);
  font-size: 0.75rem;
  transition: all var(--dur) var(--ease);
}

.faq-item.open .faq-toggle {
  background: var(--brass);
  color: var(--ivory);
  border-color: var(--brass);
  transform: rotate(45deg);
}

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a-inner { border-top: 1px solid var(--stone-100); }
.faq-a p { padding: 1.1rem 1.35rem; font-size: 0.87rem; line-height: 1.82; margin: 0; }

/* ════════════════════════════════════════════════
RESPONSIVE
════════════════════════════════════════════════ */
@media (min-width: 1400px) {
  .contact-grid { gap: 5.5rem; }
  .quick-channels-inner { gap: 1.25rem; }
  .trust-strip-grid { gap: 2rem; }
}

@media (max-width: 1100px) {
  .contact-grid { grid-template-columns: 1fr 1.45fr; gap: 3rem; }
  .contact-form-panel { position: static; }
}

@media (max-width: 900px) {
  .contact-hero {
    min-height: clamp(480px, 65vh, 660px);
    align-items: flex-end;
    padding-bottom: clamp(2.5rem, 5vw, 4rem);
  }
  .contact-hero h1 { font-size: clamp(2.2rem, 7.5vw, 3.2rem); }
  .contact-grid { grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 3rem); }
  .contact-form-panel { position: static; }
  .quick-channels-inner { grid-template-columns: 1fr; gap: 0.7rem; }
  .faq-grid { grid-template-columns: 1fr; }
  .trust-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-section { padding: clamp(2rem, 4vw, 3rem) var(--gutter); }
  .faq-section { padding: clamp(2rem, 4vw, 3.5rem) var(--gutter); }
  .map-wrap { height: clamp(280px, 45vw, 380px); }
}

@media (max-width: 680px) {
  .contact-hero {
    min-height: clamp(460px, 72vh, 600px);
    padding-top: calc(var(--nav-h) + clamp(2rem, 5vh, 3.5rem));
    padding-bottom: clamp(2.5rem, 5vh, 4rem);
    align-items: flex-end;
  }
  .contact-hero .page-hero-bg img { opacity: 0.66; }
  .contact-hero-overlay {
    background: linear-gradient(115deg, rgba(23, 20, 15, 0.64) 0%, rgba(23, 20, 15, 0.44) 45%, rgba(23, 20, 15, 0.26) 100%);
  }
  .contact-hero h1 { font-size: clamp(2rem, 8.5vw, 2.8rem); }
  .page-hero-p { font-size: 0.92rem; }
  .contact-form-panel { padding: 1.6rem 1.4rem; border-radius: var(--r-lg); }
  .quick-channels-section { padding-top: 1.4rem; padding-inline: var(--gutter); }
  .contact-section { padding-inline: max(1rem, var(--gutter)); }
  .quick-channels-inner { grid-template-columns: 1fr; gap: 0.6rem; }
  .inquiry-channel { padding: 0.8rem 1rem; min-width: 0; overflow: hidden; }
  .trust-strip-grid { grid-template-columns: 1fr 1fr; gap: 0.65rem; }
  .trust-strip-item { padding: 1.1rem 0.75rem; }
  .trust-strip-item h4 { font-size: 0.84rem; }
  .trust-strip-item p { font-size: 0.74rem; }
  .map-wrap { height: 240px; border-radius: var(--r-lg); }
  .map-section { padding: 1.5rem var(--gutter) 2.5rem; }
  .faq-q { padding: 0.9rem 1rem; }
  .faq-q h4 { font-size: 0.92rem; }
  .faq-a p { padding: 0.9rem 1rem; }
  .phone-field-wrap { flex-wrap: nowrap; }
  .cc-trigger { min-width: 76px; padding: 0 8px; }
  .cc-code-disp { font-size: 0.76rem; }
  .form-submit-row { flex-direction: column; align-items: stretch; }
  .form-submit-btn { width: 100%; }
}

@media (max-width: 480px) {
  .contact-hero {
    min-height: clamp(400px, 70vh, 540px);
    padding-top: calc(var(--nav-h) + 1.5rem);
    padding-bottom: 2.5rem;
  }
  .contact-hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.4rem);
    max-width: 100%;
    word-break: break-word;
  }
  .page-hero-p { display: none; }
  .contact-section { padding: 1.5rem var(--gutter); }
  .contact-form-panel { padding: 1.25rem 1rem; border-radius: var(--r-md); }
  .quick-channels-section { padding: 1.25rem var(--gutter) 0; }
  .trust-strip-grid { grid-template-columns: 1fr 1fr; gap: 0.65rem; }
  .trust-strip-item { padding: 1.1rem 0.75rem; }
  .map-wrap { height: 240px; border-radius: var(--r-lg); }
  .phone-field-wrap { flex-wrap: nowrap; }
  .cc-trigger { min-width: 72px; padding: 0 7px; }
  .cc-panel { width: min(92vw, 260px); }
  .info-val,
  .ic-val,
  .em-addr { overflow-wrap: anywhere; word-break: break-word; }
}

@media (max-width: 380px) {
  .contact-hero {
    min-height: clamp(360px, 68vh, 480px);
    padding-top: calc(var(--nav-h) + 1.25rem);
    padding-bottom: 2rem;
  }
  .contact-hero h1 { font-size: clamp(1.65rem, 7.5vw, 2.1rem); }
  .trust-strip-grid { grid-template-columns: 1fr; }
  .contact-form-panel { padding: 1rem 0.85rem; }
}