/* Fan Pajamas - Contact Us page styles.
 *
 * Extracted from the approved "contact us.html" mockup. Loaded only on the Contact page; the
 * mockup namespaces its rules under `.contact-page` and a body_class filter adds that class for
 * this page only. Header/footer rules already live site-wide in fp-header-footer.css.
 *
 * FILE ORDER (same discipline as fp-about.css / fp-careers.css):
 *   1. base reset / shared primitives
 *   2. Elementor container reset (padding/gap/display/flex-direction defaults)
 *   3. mockup design rules (structural selectors adapted where needed - see inline notes)
 *   4. media queries
 *   5. theme-override layer (!important, loads after elessi-theme)
 *
 * Lessons carried over from About/Careers, applied proactively here instead of discovered by
 * bug-hunting:
 *   - every `.e-con` Container defaults to flex-direction:column even when styled display:flex -
 *     restated to row below for `.contact-form-heading`.
 *   - Elementor wraps widget content one level deeper than the mockup's markup, breaking any
 *     `>` direct-child selector - rewritten to descendant space.
 *   - icon widgets always render as a `<div>`, never `<span>` - any selector that depended on
 *     the icon holder being literally `<span>` is rewritten to a dedicated class.
 *   - the whole contact form is one raw-HTML Text-Editor widget (native input/select/textarea
 *     semantics, Elementor free has no multi-field form builder) - the wp_kses allowlist for
 *     form controls was already extended in fanpajamas-svg-icons.php while building Careers, so
 *     no repeat of that fix should be needed here.
 *   - elessi-theme's own generic label/input/select default bottom-margin fights this design's
 *     own `gap`-based spacing - reset to 0 on every form control up front.
 *   - a native `<select>` with appearance:none can ignore min-height's usual floor in some
 *     engines - pin an explicit `height` too.
 *   - no blanket span/strong/div line-height override; only `p` gets a low-specificity base
 *     restatement so every component's own line-height wins on specificity+order.
 */

/* ---------- 1. base ---------- */
:root {
  --navy: #061e4a;
  --navy-800: #12336a;
  --ink: #24334d;
  --red: #f7192d;
  --orange: #ff7919;
  --yellow: #ffc323;
  --surface: #f6f8fd;
  --brand-tint: #e9eff9;
  --white: #ffffff;
  --line: #d8e1f0;
  --container: 1344px;
  --shadow: 0 24px 58px rgba(6, 30, 74, 0.15);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--surface);
  color: var(--navy);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.55;
}
body, button, input { font-family: "Manrope", Arial, sans-serif; }
.contact-page p { font-family: "Manrope", Arial, sans-serif; line-height: 1.55; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
h1, h2, p { margin-top: 0; }
h1, h2 {
  margin-bottom: 20px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(4.25rem, 5.25vw, 5.75rem); line-height: 0.91; }
h2 { font-size: clamp(3.2rem, 4.4vw, 4.8rem); line-height: 0.94; }
h3, h4 { margin-top: 0; }
.container { width: min(calc(100% - 64px), var(--container)); margin-inline: auto; }
.speed-line {
  display: block;
  height: 5px;
  background: linear-gradient(90deg, var(--red) 0 45%, var(--orange) 45% 80%, var(--yellow) 80%);
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}
.speed-line-short { width: 108px; height: 4px; }
.speed-line-long { width: 330px; margin-bottom: 24px; }
.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 30px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--yellow); color: var(--navy); }
:focus-visible { outline: 3px solid rgba(247,25,45,.42); outline-offset: 3px; }

/* ---------- 2. Elementor container reset -------------------------------- */
.contact-page .e-con { padding: 0; gap: 0; }
.contact-page .container,
.contact-page .contact-hero-copy, .contact-page .contact-form-card,
.contact-page .section-heading-compact, .contact-page .help-card,
.contact-page .details-copy, .contact-page .business-card,
.contact-page .faq-intro { display: block; }
.contact-page .contact-form-heading { flex-direction: row; }

/* ---------- 3. design ---------- */
.contact-page main { overflow: hidden; }
.contact-page .contact-hero {
  position: relative;
  padding: 92px 0 104px;
  background:
    radial-gradient(circle at 78% 22%, rgba(255,195,35,.24), transparent 20%),
    linear-gradient(120deg, var(--surface) 0 62%, #e4ecf8 62% 100%);
}
.contact-page .contact-hero::after {
  position: absolute;
  top: 40px;
  /* `right` restated as `left` - see `.contact-form-card::before` note below. Defensive fix
     even though this one measured correctly, for consistency. */
  left: calc(100% - 300px);
  width: 410px;
  height: 270px;
  background: linear-gradient(163deg, var(--red) 0 25%, transparent 25% 36%, var(--orange) 36% 62%, transparent 62% 73%, var(--yellow) 73% 96%, transparent 96%);
  content: "";
  opacity: .95;
  transform: rotate(-8deg);
}
.contact-page .contact-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 86px;
}
.contact-page .contact-kicker {
  margin-bottom: 9px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.contact-page .contact-hero-copy h1 { margin: 20px 0 17px; }
/* mockup: `.contact-hero-copy > p:not(.contact-kicker)` - rewritten to descendant (see file note). */
.contact-page .contact-hero-copy p:not(.contact-kicker) {
  max-width: 540px;
  margin-bottom: 27px;
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.75;
}
.contact-page .contact-points { display: grid; gap: 13px; padding: 0; margin: 0; list-style: none; }
/* mockup: `.contact-points li` - each item is a real Container (icon widget child). */
.contact-page .contact-points .point-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 700;
}
/* mockup: `.contact-points span` - rewritten (real Icon widget, div wrapper not span). */
.contact-page .contact-points .point-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 9px;
  background: white;
  box-shadow: 0 7px 18px rgba(6,30,74,.08);
  color: var(--red);
}
.contact-page .contact-points svg { width: 18px; height: 18px; stroke-width: 2.1; }
.contact-page .contact-form-card {
  position: relative;
  padding: 42px;
  border: 7px solid white;
  border-radius: 22px;
  background: var(--navy);
  box-shadow: 16px 18px 0 var(--orange), var(--shadow);
  color: white;
}
.contact-page .contact-form-card::before {
  position: absolute;
  top: 0;
  /* `right` alone (no `left`) resolves to `left: 0` on this element - same bug/fix as
     `.pod-section::before` on the About page. */
  left: calc(100% - 128px);
  width: 92px;
  height: 7px;
  background: var(--yellow);
  content: "";
}
.contact-page .contact-form-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; margin-bottom: 27px; }
.contact-page .contact-form-heading h2 { margin: 0; font-size: clamp(2.5rem, 3.5vw, 3.65rem); }
.contact-page .form-badge {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: white;
}
.contact-page .form-badge svg { width: 25px; height: 25px; }
/* Below this point the form is rendered by Contact Form 7 (via an Elementor Shortcode widget
   embedding `[contact-form-7 id="..."]`), templated in the CF7 form editor to reuse these same
   class names - CF7's own wrapper is `.wpcf7-form`, not the mockup's original `.contact-form`. */
.contact-page .wpcf7 { display: contents; }
.contact-page .wpcf7-form { display: grid; gap: 17px; }
.contact-page .wpcf7-form label,
.contact-page .wpcf7-form input,
.contact-page .wpcf7-form select,
.contact-page .wpcf7-form textarea,
.contact-page .wpcf7-form button { margin: 0; }
.contact-page .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
/* CF7 nests each control in its own wrapper span - collapse it so `.field input`/`.field
   select`/`.field textarea` still reach the real control unchanged. */
.contact-page .field .wpcf7-form-control-wrap { display: contents; }
.contact-page .wpcf7-not-valid-tip { display: block; margin-top: 4px; color: var(--yellow); font-size: .68rem; font-weight: 700; }
.contact-page .wpcf7-response-output { margin: 0; padding: 12px 14px; border-radius: 8px; background: rgba(255,255,255,.1); font-size: .78rem; }
.contact-page .wpcf7-mail-sent-ok { border: 1px solid rgba(255,255,255,.4); }
.contact-page .wpcf7-validation-errors, .contact-page .wpcf7-mail-sent-ng { border: 1px solid var(--yellow); color: var(--yellow); }
.contact-page .wpcf7 .screen-reader-response { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.contact-page .field { display: grid; gap: 7px; }
.contact-page .field label { color: #d9e0ee; font-size: .72rem; font-weight: 800; }
.contact-page .field label span { color: var(--yellow); }
.contact-page .field input,
.contact-page .field select,
.contact-page .field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 9px;
  outline: 0;
  background: rgba(255,255,255,.075);
  color: white;
  font: inherit;
  font-size: .84rem;
}
.contact-page .field select {
  height: 52px;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #b8c5dc 50%), linear-gradient(135deg, #b8c5dc 50%, transparent 50%);
  background-position: calc(100% - 18px) 22px, calc(100% - 13px) 22px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}
.contact-page .field select option { color: var(--navy); }
.contact-page .field textarea { min-height: 126px; resize: vertical; }
.contact-page .field input::placeholder,
.contact-page .field textarea::placeholder { color: #91a1be; }
.contact-page .field input:focus,
.contact-page .field select:focus,
.contact-page .field textarea:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(255,195,35,.12); }
.contact-page .form-footer { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 2px; }
.contact-page .form-footer p { max-width: 320px; margin: 0; color: #93a4c1; font-size: .66rem; line-height: 1.5; }
.contact-page .send-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 0;
  border-radius: 9px;
  background: var(--yellow);
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}
.contact-page .send-button:hover { background: #ffd154; transform: translateY(-2px); }
.contact-page .send-button svg { width: 19px; height: 19px; }

.contact-page .help-section { padding: 104px 0; background: white; }
.contact-page .section-heading-compact { max-width: 740px; margin: 0 auto 45px; text-align: center; }
.contact-page .section-heading-compact h2 { margin-bottom: 17px; }
.contact-page .section-heading-compact p:not(.contact-kicker) { margin-bottom: 0; color: var(--ink); }
.contact-page .heading-line {
  display: block;
  width: 116px;
  height: 4px;
  margin: 21px auto 0;
  background: linear-gradient(90deg, var(--red) 0 44%, var(--orange) 44% 77%, var(--yellow) 77%);
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}
.contact-page .help-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 19px; }
.contact-page .help-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 31px 27px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.contact-page .help-card:hover { box-shadow: 0 15px 34px rgba(6,30,74,.1); transform: translateY(-4px); }
.contact-page .help-card::after {
  position: absolute;
  /* `right` restated as `left` - see `.contact-form-card::before` note below. Clipped by this
     card's own `overflow:hidden` either way, but kept consistent/defensive. */
  left: calc(100% - 91px);
  bottom: -54px;
  width: 135px;
  height: 135px;
  border: 24px solid rgba(247,25,45,.07);
  border-radius: 50%;
  content: "";
}
.contact-page .help-card:nth-child(2)::after { border-color: rgba(255,121,25,.09); }
.contact-page .help-card:nth-child(3)::after { border-color: rgba(255,195,35,.14); }
.contact-page .help-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 13px;
  background: var(--navy);
  color: white;
}
.contact-page .help-card:nth-child(2) .help-icon { background: var(--red); }
.contact-page .help-card:nth-child(3) .help-icon { background: var(--orange); }
.contact-page .help-icon svg { width: 27px; height: 27px; }
.contact-page .help-card h3 { position: relative; z-index: 1; margin-bottom: 10px; font-size: 1.05rem; }
.contact-page .help-card p { position: relative; z-index: 1; margin-bottom: 0; color: var(--ink); font-size: .82rem; line-height: 1.7; }

.contact-page .details-section { padding: 104px 0; background: var(--brand-tint); }
.contact-page .details-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 78px; }
/* mockup: `.details-copy > p:not(.contact-kicker)` - rewritten to descendant. */
.contact-page .details-copy p:not(.contact-kicker) { max-width: 550px; margin-bottom: 0; color: var(--ink); line-height: 1.8; }
.contact-page .business-card {
  position: relative;
  overflow: hidden;
  padding: 40px;
  border: 1px solid var(--line);
  border-left: 7px solid var(--red);
  border-radius: 17px;
  background: white;
  box-shadow: 0 18px 42px rgba(6,30,74,.1);
}
.contact-page .business-card::after {
  position: absolute;
  /* `right` restated as `left` - see `.contact-form-card::before` note below. Clipped by this
     card's own `overflow:hidden` either way, but kept consistent/defensive. */
  left: calc(100% - 130px);
  bottom: -82px;
  width: 205px;
  height: 205px;
  border: 34px solid rgba(255,121,25,.08);
  border-radius: 50%;
  content: "";
}
.contact-page .business-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: start;
  gap: 15px;
}
.contact-page .business-row + .business-row { padding-top: 24px; margin-top: 24px; border-top: 1px solid var(--line); }
.contact-page .business-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 10px;
  background: var(--navy);
  color: white;
}
.contact-page .business-row small { display: block; margin: 1px 0 4px; color: #657594; font-size: .66rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.contact-page .business-row strong { display: block; font-size: .98rem; line-height: 1.6; }
.contact-page .return-note {
  position: relative;
  z-index: 1;
  padding: 14px 16px;
  margin: 25px 0 0;
  border-radius: 9px;
  background: var(--brand-tint);
  color: var(--ink);
  font-size: .73rem;
  line-height: 1.6;
}
.contact-page .return-note strong { color: var(--red); }

.contact-page .contact-faq { padding: 104px 0; background: white; }
.contact-page .faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 74px; }
/* mockup: `.faq-layout > div:first-child > p:not(.contact-kicker)` - the intro wrapper gets a
   dedicated `.faq-intro` class (mockup's div was unclassed) and `>` is rewritten to descendant. */
.contact-page .faq-layout .faq-intro p:not(.contact-kicker) { color: var(--ink); }
/* The whole FAQ accordion is raw HTML (native <details>/<summary> semantics are the simplest,
   most robust way to keep independent open/close state per item). */
.contact-page .contact-faq-list { border-top: 1px solid var(--line); }
.contact-page .contact-faq-list details { border-bottom: 1px solid var(--line); }
.contact-page .contact-faq-list summary {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  cursor: pointer;
  font-size: .88rem;
  font-weight: 800;
  list-style: none;
}
.contact-page .contact-faq-list summary::-webkit-details-marker { display: none; }
.contact-page .contact-faq-list summary::after {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-tint);
  content: "+";
  font-size: 1.15rem;
}
.contact-page .contact-faq-list details[open] summary::after { content: "\2212"; }
.contact-page .contact-faq-list details p { padding: 0 48px 24px 0; margin: 0; color: var(--ink); font-size: .82rem; line-height: 1.7; }

.contact-page .contact-closing { padding: 88px 0; background: var(--red); color: white; text-align: center; }
.contact-page .contact-closing h2 { max-width: 790px; margin-right: auto; margin-left: auto; }
.contact-page .contact-closing p { max-width: 680px; margin: 0 auto 25px; color: rgba(255,255,255,.84); }

/* ---------- 4. responsive ---------- */
@media (max-width: 1120px) {
  .contact-page .contact-hero-grid { gap: 48px; }
  .contact-page .details-grid { gap: 50px; }
}
@media (max-width: 900px) {
  .contact-page .contact-hero { background: linear-gradient(180deg, var(--surface) 0 35%, #e4ecf8 35% 100%); }
  .contact-page .contact-hero-grid, .contact-page .details-grid, .contact-page .faq-layout { grid-template-columns: 1fr; }
  .contact-page .help-grid { grid-template-columns: 1fr 1fr; }
  .contact-page .help-card:last-child { grid-column: 1 / -1; }
  .contact-page .contact-form-card { margin-top: 8px; }
}
@media (max-width: 640px) {
  /* This rule lives in the mockup's shared base CSS (not the contact-page-scoped block), and
     was missed when fp-contact.css was assembled - .container fell back to the 64px desktop
     gutter instead of 34px on mobile. */
  .container { width: min(calc(100% - 34px), var(--container)); }
  .contact-page .contact-hero, .contact-page .help-section, .contact-page .details-section, .contact-page .contact-faq { padding: 76px 0; }
  .contact-page .contact-hero-grid { gap: 42px; }
  .contact-page .contact-form-card { padding: 29px 22px; border-width: 5px; box-shadow: 9px 11px 0 var(--orange), var(--shadow); }
  .contact-page .form-row, .contact-page .help-grid { grid-template-columns: 1fr; }
  .contact-page .help-card:last-child { grid-column: auto; }
  .contact-page .form-footer { align-items: stretch; flex-direction: column; }
  .contact-page .send-button { width: 100%; }
  .contact-page .business-card { padding: 29px 21px; }
  .contact-page .business-row { grid-template-columns: 46px 1fr; gap: 12px; }
  .contact-page .contact-closing { padding: 76px 0; }
  .contact-page .contact-closing .button { width: 100%; }
}

/* ---------- 5. elessi-theme override layer ------------------------------ */
/* The theme's own generic `button{...}` rule forces uppercase, 2px letter-spacing and
   font-weight:500 onto every native <button> - `.send-button` is a plain <button> inside the
   raw-HTML form and needs the same reset already applied to `.application-submit` (Careers). */
html body.contact-page .send-button {
  text-transform: none !important;
  letter-spacing: normal !important;
  font-weight: 800 !important;
}
html:has(body.contact-page) { font-size: 16px !important; }
html body.contact-page {
  background: var(--surface) !important;
  color: var(--navy) !important;
  font-family: "Manrope", Arial, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.55 !important;
}
html body.contact-page .elementor h1, html body.contact-page .elementor h2 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif !important;
  font-style: italic !important; font-weight: 800 !important; }
html body.contact-page .elementor h3, html body.contact-page .elementor h4 {
  font-family: "Manrope", Arial, sans-serif !important;
  font-style: normal !important; font-weight: 700 !important; line-height: 1.55; }
html body.contact-page .elementor strong { font-weight: 700 !important; }

/* Icon widgets: same bridge as fp-about.css/fp-careers.css. */
.contact-page .contact-points .point-icon > .elementor-widget-container,
.contact-page .form-badge > .elementor-widget-container,
.contact-page .help-icon > .elementor-widget-container,
.contact-page .business-icon > .elementor-widget-container,
.contact-page .elementor-widget-icon .elementor-icon-wrapper { display: contents; }
.contact-page .elementor-widget-icon .elementor-icon {
  display: grid; place-items: center; width: 100%; height: 100%;
  font-size: inherit; color: inherit; background: transparent; border: 0; }
.contact-page .e-font-icon-svg { fill: currentColor; stroke: none; }

/* Buttons: same bridge as the other pages. */
.contact-page .elementor-widget-button.button { display: inline-flex; border: 0; padding: 0;
  height: auto; font-size: inherit; border-radius: 0; background: transparent; box-shadow: none;
  text-transform: none; letter-spacing: normal; }
.contact-page .elementor-widget-button.button:hover { background: transparent !important;
  border-color: transparent !important; }
.contact-page .elementor-widget-button.button > .elementor-widget-container,
.contact-page .elementor-widget-button.button .elementor-button-wrapper { display: contents; }
.contact-page .elementor-widget-button.button a.elementor-button {
  display: inline-flex; min-height: 56px; align-items: center; justify-content: center;
  gap: 12px; padding: 0 30px; border: 2px solid transparent; border-radius: 10px;
  font-size: 1rem; line-height: 1.55; font-weight: 800 !important; text-decoration: none;
  text-transform: none !important; letter-spacing: normal !important; color: inherit;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease; }
.contact-page .elementor-widget-button.button a.elementor-button:hover { transform: translateY(-2px); }
.contact-page .elementor-widget-button.button-gold a.elementor-button {
  background: var(--yellow); color: var(--navy); }
.contact-page .elementor-widget-button.button .elementor-button-content-wrapper { gap: 12px; }
.contact-page .elementor-widget-button.button .elementor-button-icon svg { width: 20px; height: 20px; }

html body.contact-page .elementor a { color: inherit; }

/* Heading sizes: same theme collision (style.css's own h1/h2/h3 rules) fixed the same way as
   fp-home.css / fp-about.css / fp-careers.css. */
html body.contact-page h1 { font-size: clamp(4.25rem, 5.25vw, 5.75rem) !important; line-height: .91 !important; }
html body.contact-page h2 { font-size: clamp(3.2rem, 4.4vw, 4.8rem) !important; line-height: .94 !important; }
html body.contact-page .elementor .contact-form-heading h2 { font-size: clamp(2.5rem, 3.5vw, 3.65rem) !important; }
@media (max-width: 640px) {
  html body.contact-page h1 { font-size: clamp(3.45rem, 15vw, 4.3rem) !important; }
  html body.contact-page h2 { font-size: clamp(3rem, 13vw, 3.8rem) !important; }
}
