/* ════════════════════════════════════════
   DWELLTRY, Contact page
   Loaded after style.css + footer.css + rail.css + municipality.css.
   4 snap panels: hero, full form, next-steps, direct contact + socials.
   The form panel allows internal scrolling when content overflows
   (muni-snap.js exempts wheel events inside scrollable form areas).
════════════════════════════════════════ */

body { background: #000; color: #FFF; scrollbar-width: none; }
body::-webkit-scrollbar { display: none; }

/* Netlify Forms honeypot — invisible to humans, bait for bots. */
.cform-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.muni-section-eyebrow--light { color: var(--gold); }
.muni-section-h2--light       { color: #111; }
.muni-section-h2--light em    { color: var(--gold); font-style: italic; }

/* ════════════════════════════════════════
   SNAP 1, HERO
══════════════════════════════════════ */
.contact-hero-panel {
  background: #000;
  overflow: hidden;
  isolation: isolate;
}
.contact-hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.contact-topo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.4;
  animation: contactTopoDrift 28s ease-in-out infinite alternate;
}
@keyframes contactTopoDrift {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-2%, 1%, 0); }
}
.contact-hero-radial {
  position: absolute; inset: 0;
  background:
    radial-gradient(40% 50% at 12% 14%, rgba(240,168,0,0.20), transparent 70%), radial-gradient(50% 60% at 90% 88%, rgba(240,168,0,0.10), transparent 75%);
}
.contact-hero-hatch {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.020) 0 1px, transparent 1px 14px);
}
.contact-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.contact-hero-left { max-width: 620px; }
.contact-hero-sub {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 1.18vw, 1.18rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  max-width: 600px;
  margin: 0 0 1.4rem;
}
.contact-hero-info {
  border: 1px solid rgba(240,168,0,0.35);
  background: rgba(240,168,0,0.04);
  padding: 1.2rem 1.4rem 1.3rem;
  display: grid;
  gap: 0.7rem;
}
.contact-hero-info-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 0.85rem;
  align-items: baseline;
  border-bottom: 1px dashed rgba(255,255,255,0.10);
  padding-bottom: 0.55rem;
}
.contact-hero-info-row:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-hero-info-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.contact-hero-info-value {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #FFF;
  text-decoration: none;
}
a.contact-hero-info-value:hover { color: var(--gold); }

/* ════════════════════════════════════════
   SNAP 2, FORM
══════════════════════════════════════ */
/* ════════════════════════════════════════
   SNAP, CALENDLY EMBED
══════════════════════════════════════ */
.contact-cal-panel {
  background:
    radial-gradient(50% 60% at 50% 0%, rgba(240,168,0,0.10), transparent 70%), #050505;
}
.contact-cal-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}
.contact-cal-head {
  text-align: center;
  flex: 0 0 auto;
}
.contact-cal-h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  margin-bottom: 0.5rem;
}
.contact-cal-lede {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1.04rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-width: 680px;
  margin: 0 auto 0.5rem;
}
.contact-cal-widget {
  flex: 1 1 auto;
  border: 1px solid rgba(240,168,0,0.25);
  background: rgba(255,255,255,0.02);
  min-height: 0 !important;
  height: 100% !important;
}

.contact-form-panel {
  background: #060606;
  padding-bottom: 1.5rem;
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  min-height: auto;
  overflow: hidden;
}
.contact-form-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}
.contact-form-head {
  flex: 0 0 auto;
  text-align: center;
  margin-bottom: 1rem;
}
.contact-form-h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  margin-bottom: 0.5rem;
}
.contact-form-lede {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1.04rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-width: 720px;
  margin: 0 auto;
}

/* The form itself can scroll internally if needed */
.contact-form {
  flex: 1 1 auto;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(240,168,0,0.4) transparent;
  padding-right: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contact-form::-webkit-scrollbar { width: 6px; }
.contact-form::-webkit-scrollbar-track { background: transparent; }
.contact-form::-webkit-scrollbar-thumb { background: rgba(240,168,0,0.3); border-radius: 3px; }

.cform-group {
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.025);
  padding: 1.2rem 1.4rem 1.3rem;
  margin: 0;
  position: relative;
  transition: border-color 0.25s, background 0.25s;
}
.cform-group:hover {
  border-color: rgba(240,168,0,0.35);
  background: rgba(240,168,0,0.025);
}
.cform-group:nth-child(even) {
  background: rgba(240,168,0,0.025);
  border-color: rgba(240,168,0,0.18);
}
.cform-legend {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  margin-bottom: 0.95rem;
  padding: 0 0 0.55rem;
  border-bottom: 1px dashed rgba(240,168,0,0.3);
  width: 100%;
}
.cform-legend-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  line-height: 1;
}
.cform-legend-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: #FFF;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: none;
}

/* Field rows */
.cform-row {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 0.85rem;
}
.cform-row:last-child { margin-bottom: 0; }
.cform-row--2 { grid-template-columns: 1fr 1fr; }
.cform-row--3 { grid-template-columns: 1fr 1fr 1fr; }

.cform-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.cform-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
}
.cform-label--full { grid-column: 1 / -1; }
.cform-label em {
  font-style: normal;
  color: var(--gold);
  margin-left: 0.15rem;
}

/* Inputs / selects / textarea */
.cform-field input,
.cform-field select,
.cform-field textarea {
  width: 100%;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.15);
  color: #FFF;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  letter-spacing: 0.02em;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.2s;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  box-sizing: border-box;
}
.cform-field input:hover,
.cform-field select:hover,
.cform-field textarea:hover {
  border-color: rgba(240,168,0,0.4);
}
.cform-field input::placeholder.cform-field textarea::placeholder { color: rgba(255,255,255,0.32); }
.cform-field input:focus,
.cform-field select:focus,
.cform-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(240,168,0,0.04);
  box-shadow: 0 0 0 1px rgba(240,168,0,0.25);
}
.cform-field select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position:
    calc(100% - 1rem) 55%, calc(100% - 0.55rem) 55%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 1.8rem;
}
.cform-field select option {
  background: #0a0a0a;
  color: #FFF;
}
.cform-field textarea {
  resize: vertical;
  min-height: 80px;
  font-family: 'Jost', sans-serif;
}

/* Checkboxes */
.cform-checks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem 0.7rem;
  margin-bottom: 0.7rem;
}
.cform-check {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.5rem 0.65rem;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.10);
  transition: border-color 0.2s, background 0.2s;
}
.cform-check:hover { border-color: rgba(240,168,0,0.5); background: rgba(240,168,0,0.04); }
.cform-check input {
  appearance: none;
  -webkit-appearance: none;
  width: 14px; height: 14px;
  border: 1px solid var(--gold);
  background: transparent;
  position: relative;
  cursor: pointer;
  border-radius: 0;
}
.cform-check input:checked {
  background: var(--gold);
}
.cform-check input:checked::after {
  content: '';
  position: absolute;
  left: 4px; top: 0px;
  width: 4px; height: 9px;
  border: solid #000;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.cform-check span {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
}

/* Submit */
.cform-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.4rem;
  flex-wrap: wrap;
}
.cform-required-note {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.cform-required-note em { color: var(--gold); font-style: normal; }
.cform-submit { padding: 0.95rem 1.6rem 0.9rem 1.7rem; }

.cform-privacy {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.5);
  text-align: center;
  margin: 0.5rem 0 0;
}

/* Invalid + submission banner */
.cform-invalid {
  border-color: #ff6b6b !important;
  box-shadow: 0 0 0 1px rgba(255,107,107,0.4) !important;
}
.cform-banner {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 0.7rem 1rem;
  margin-bottom: 0.7rem;
  border-left: 3px solid var(--gold);
  background: rgba(240,168,0,0.08);
  color: #FFF;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s, transform 0.3s;
}
.cform-banner--show { opacity: 1; transform: translateY(0); }
.cform-banner[data-kind="warn"] {
  border-left-color: #ff6b6b;
  background: rgba(255,107,107,0.08);
}

/* ════════════════════════════════════════
   SNAP 3, WHAT HAPPENS NEXT (light)
══════════════════════════════════════ */
.contact-next-panel {
  background: #FFF;
  color: #111;
}
.contact-next-panel::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(45deg, rgba(0,0,0,0.025) 0 1px, transparent 1px 16px), radial-gradient(35% 50% at 10% 90%, rgba(240,168,0,0.10), transparent 70%);
  z-index: 0;
}
.contact-next-panel .muni-snap-inner { position: relative; z-index: 1; }
.contact-next-head {
  max-width: 880px;
  margin: 0 auto 1.5rem;
  text-align: center;
}
.contact-next-lede {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(0,0,0,0.65);
  max-width: 660px;
  margin: 0.6rem auto 0;
}
.contact-next-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  counter-reset: nextsteps;
}
.contact-next-step {
  background: #FFF;
  border: 1px solid rgba(0,0,0,0.10);
  padding: 1.2rem 1.25rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  position: relative;
}
.contact-next-step:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 22px -12px rgba(240,168,0,0.55);
  transform: translateY(-3px);
}
.contact-next-step::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 32px; height: 1px;
  background: var(--gold);
}
.contact-next-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  color: var(--gold);
}
.contact-next-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.45rem;
  line-height: 1.1;
  margin: 0;
  color: #111;
}
.contact-next-text {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(0,0,0,0.65);
  margin: 0;
}

/* ════════════════════════════════════════
   SNAP 4, DIRECT CONTACT + SOCIALS
══════════════════════════════════════ */
.contact-direct-panel {
  background: #000;
  overflow: hidden;
  isolation: isolate;
}
.contact-direct-bg {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(55% 75% at 22% 78%, rgba(240,168,0,0.18), transparent 70%), radial-gradient(50% 70% at 88% 15%, rgba(240,168,0,0.10), transparent 70%), repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 14px), linear-gradient(150deg, #0a0a0a, #050505);
}
.contact-direct-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.contact-direct-h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  margin-bottom: 1.1rem;
  line-height: 1.05;
}
.contact-direct-lede {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 0 1.5rem;
}
.contact-direct-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
}
.contact-direct-card {
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  padding: 1rem 1.1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.contact-direct-card:hover {
  border-color: var(--gold);
  background: rgba(240,168,0,0.05);
  transform: translateY(-3px);
}
.contact-direct-icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
  line-height: 1;
}
.contact-direct-card-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.contact-direct-card-value {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: #FFF;
}
.contact-direct-card-note {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.55);
}

.contact-direct-socials {
  border: 1px solid rgba(240,168,0,0.35);
  background: rgba(240,168,0,0.04);
  padding: 1.2rem 1.4rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.contact-direct-socials-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-socials-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.contact-socials-list a {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-decoration: none;
  border-left: 1px solid rgba(240,168,0,0.35);
  padding: 0.2rem 0 0.2rem 0.85rem;
  transition: border-color 0.2s;
}
.contact-socials-list a:hover { border-color: var(--gold); }
.contact-soc-handle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: #FFF;
}
.contact-soc-platform {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
}
.contact-direct-socials-foot {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold);
  border-top: 1px dashed rgba(240,168,0,0.35);
  padding-top: 0.7rem;
  text-align: center;
}

/* ════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1180px) {
  .contact-form-h2          { font-size: clamp(1.6rem, 3vw, 2.2rem); }
  .contact-form-lede        { font-size: 0.84rem; }
  .cform-group              { padding: 0.85rem 1rem 0.95rem; }
  .cform-legend             { margin-bottom: 0.65rem; padding-bottom: 0.45rem; }
  .cform-legend-num         { font-size: 1.2rem; }
  .cform-legend-name        { font-size: 1.2rem; }
  .cform-row                { gap: 0.65rem; margin-bottom: 0.55rem; }
  .cform-field input.cform-field select.cform-field textarea     { font-size: 0.92rem; padding: 0.6rem 0.75rem; }
  .cform-label              { font-size: 0.68rem; }
  .cform-check span         { font-size: 0.82rem; }
  .cform-check              { padding: 0.5rem 0.65rem; }
  .contact-next-step        { padding: 0.85rem 0.95rem 0.95rem; }
  .contact-next-name        { font-size: 1.2rem; }
  .contact-next-text        { font-size: 0.78rem; line-height: 1.5; }
}
@media (max-width: 900px) {
  .contact-hero-inner       { grid-template-columns: 1fr; gap: 1.5rem; }
  .cform-row--3             { grid-template-columns: 1fr 1fr; }
  .cform-checks             { grid-template-columns: 1fr 1fr; }
  .contact-next-steps       { grid-template-columns: 1fr 1fr; }
  .contact-direct-inner     { grid-template-columns: 1fr; }
  .contact-direct-grid      { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .cform-row--2.cform-row--3             { grid-template-columns: 1fr; }
  .cform-checks             { grid-template-columns: 1fr; }
  .contact-next-steps       { grid-template-columns: 1fr; }
  .contact-hero-info-row    { grid-template-columns: 1fr; gap: 0.2rem; }
}

/* ════════════════════════════════════════
   v2 — Bigger HERO right-side info card, bigger Snap-3 (What Happens Next)
   and Snap-4 (Direct Contact). +30% on those sections per user ask.
══════════════════════════════════════ */
.contact-hero-info { padding: 1.6rem 1.85rem 1.75rem !important; gap: 0.8rem; }
.contact-hero-info-label { font-size: 0.82rem !important; letter-spacing: 0.24em; }
.contact-hero-info-value { font-size: 1.2rem !important; }

/* Snap 3 — What Happens Next */
.contact-next-head .muni-section-h2 { font-size: clamp(2.4rem, 4.4vw, 3.6rem) !important; }
.contact-next-lede { font-size: 1.2rem !important; line-height: 1.7 !important; }
.contact-next-step { padding: 1.6rem 1.9rem 1.7rem !important; }
.contact-next-num  { font-size: 1.4rem !important; }
.contact-next-name { font-size: 1.5rem !important; }
.contact-next-text { font-size: 1.05rem !important; line-height: 1.65 !important; }

/* Snap 4 — Direct Contact */
.contact-direct-h2 { font-size: clamp(2.4rem, 4.4vw, 3.8rem) !important; }
.contact-direct-lede { font-size: 1.18rem !important; line-height: 1.7 !important; }
.contact-direct-row { padding: 1rem 1.25rem !important; gap: 1.2rem !important; }
.contact-direct-row span,
.contact-direct-row a { font-size: 1.1rem !important; }
.contact-direct-label { font-size: 0.86rem !important; letter-spacing: 0.24em; }

@media (max-width: 1180px) {
  .contact-hero-info-value { font-size: 1.05rem !important; }
  .contact-next-name { font-size: 1.25rem !important; }
  .contact-next-text { font-size: 0.94rem !important; }
  .contact-direct-row span, .contact-direct-row a { font-size: 0.98rem !important; }
}

/* ════════════════════════════════════════
   v3 — Bigger everything except the form (form is intentionally untouched)
══════════════════════════════════════ */
/* Section 1 (Hero) */
.contact-hero-sub { font-size: clamp(1.2rem, 1.45vw, 1.4rem) !important; line-height: 1.7 !important; }
.contact-hero-info { padding: 2rem 2.1rem 2.2rem !important; gap: 1.15rem !important; }
.contact-hero-info-row { padding-bottom: 1.05rem !important; }
.contact-hero-info-label { font-size: 0.94rem !important; letter-spacing: 0.24em !important; }
.contact-hero-info-value { font-size: 1.26rem !important; }

/* Section 3 (What Happens Next) */
.contact-next-head .muni-section-h2,
.contact-next-h2 { font-size: clamp(2.6rem, 4.8vw, 4rem) !important; }
.contact-next-lede { font-size: 1.34rem !important; line-height: 1.7 !important; }
.contact-next-step { padding: 1.8rem 2rem 1.9rem !important; }
.contact-next-num { font-size: 1.5rem !important; }
.contact-next-name { font-size: 1.78rem !important; }
.contact-next-text { font-size: 1.16rem !important; line-height: 1.7 !important; }

/* Section 4 (Direct Contact) */
.contact-direct-h2 { font-size: clamp(2.7rem, 4.8vw, 4.1rem) !important; }
.contact-direct-lede { font-size: 1.32rem !important; line-height: 1.7 !important; }
.contact-direct-info-row { padding: 1.05rem 0 !important; }
.contact-direct-info-label { font-size: 0.96rem !important; letter-spacing: 0.22em !important; }
.contact-direct-info-value { font-size: 1.32rem !important; }
.contact-direct-row { padding: 1.15rem 1.4rem !important; gap: 1.3rem !important; }
.contact-direct-row span,
.contact-direct-row a { font-size: 1.22rem !important; }
.contact-direct-label { font-size: 0.96rem !important; letter-spacing: 0.24em !important; }
.contact-direct-social-text { font-size: 1.08rem !important; }

@media (max-width: 1180px) {
  .contact-hero-sub { font-size: 1.1rem !important; }
  .contact-hero-info-value { font-size: 1.1rem !important; }
  .contact-hero-info-label { font-size: 0.82rem !important; }
  .contact-next-lede { font-size: 1.14rem !important; }
  .contact-next-name { font-size: 1.5rem !important; }
  .contact-next-text { font-size: 1rem !important; }
  .contact-direct-lede { font-size: 1.12rem !important; }
  .contact-direct-info-value { font-size: 1.12rem !important; }
  .contact-direct-row span, .contact-direct-row a { font-size: 1.04rem !important; }
}
