/* ============================================================
   Your Family Lawyer — custody.yourfamilylawyer.net
   Child Custody — Collin County
   Brand: Navy #1B2A4A | Slate Blue #3E5C8A | Gold #C9A227
          Cream #F7F4EE | Charcoal #2B2B2B
   Design direction: Warm, parent-centered, accessible
   Fonts: Merriweather (headings) | Inter (body) — self-hosted
   ============================================================ */

/* ---- Font faces ----------------------------------------- */
@font-face {
  font-family: 'Merriweather';
  src: url('../fonts/merriweather-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Merriweather';
  src: url('../fonts/merriweather-400i.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Merriweather';
  src: url('../fonts/merriweather-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ---- Variables ------------------------------------------ */
:root {
  --navy:   #1B2A4A;
  --slate:  #3E5C8A;
  --gold:   #C9A227;
  --cream:  #F7F4EE;
  --coal:   #2B2B2B;
  --white:  #FFFFFF;
  --border: #DDD8CC;
  --muted:  #6B7B99;
  --cream-dark: #EDE9DF;

  --font-head: 'Merriweather', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --max-w: 1100px;
  --section-pad: 5rem 1.5rem;
  --radius: 8px;
  --shadow: 0 2px 20px rgba(27,42,74,.09);
  --shadow-hover: 0 8px 30px rgba(27,42,74,.15);
}

/* ---- Reset ---------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--coal);
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--slate); text-decoration: none; }
a:hover { text-decoration: underline; color: var(--navy); }
ul { list-style: none; }

/* ---- Typography ----------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.15rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* Empathy sections get extra breathing room */
.empathy-text {
  line-height: 1.8;
  font-size: 1.05rem;
}
.empathy-text p { margin-bottom: 1.25rem; }

/* ---- Layout helpers ------------------------------------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: var(--section-pad); }

/* Alternating section backgrounds */
.section--alt  { background: var(--cream); }
.section--white { background: var(--white); }
.section--navy  { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: rgba(255,255,255,.85); }

/* ---- Buttons -------------------------------------------- */
.btn {
  display: inline-block;
  padding: .85rem 1.9rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  cursor: pointer;
  transition: opacity .15s, transform .12s, box-shadow .15s;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { opacity: .9; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.15); text-decoration: none; }
.btn--gold    { background: var(--gold); color: var(--navy); }
.btn--navy    { background: var(--navy); color: var(--white); }
.btn--slate   { background: var(--slate); color: var(--white); }
.btn--outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,.7);
  color: var(--white);
}
.btn--outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn--outline-slate {
  background: transparent;
  border: 2px solid var(--slate);
  color: var(--slate);
}
.btn--outline-slate:hover { background: var(--slate); color: var(--white); }

/* ---- Navigation ----------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 10px rgba(0,0,0,.22);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.site-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.2;
}
.site-logo:hover { text-decoration: none; opacity: .9; }
.logo-main {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .01em;
}
.logo-main span { color: var(--gold); }
.logo-sub {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: .83rem;
  font-weight: 500;
  letter-spacing: .03em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .15s;
}
.nav-links a:hover { color: var(--white); text-decoration: none; }
.nav-links .btn {
  padding: .5rem 1.1rem;
  font-size: .82rem;
  text-transform: none;
  letter-spacing: 0;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .2s;
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 0 1.5rem;
    border-top: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 8px 20px rgba(0,0,0,.2);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .65rem 1.5rem; font-size: .9rem; }
  .nav-links .btn { margin: .75rem 1.5rem 0; text-align: center; }
}

/* ---- Hero — CENTERED ------------------------------------ */
.hero-centered {
  background: var(--navy);
  padding: 5.5rem 1.5rem 4rem;
  text-align: center;
  position: relative;
}
.hero-centered h1 {
  color: var(--white);
  max-width: 720px;
  margin: 0 auto 1.25rem;
  line-height: 1.2;
}
.hero-centered .hero-sub {
  color: rgba(255,255,255,.8);
  font-size: 1.12rem;
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.hero-centered .btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Cream intro panel below hero */
.hero-intro-panel {
  background: var(--cream);
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.hero-intro-panel .container { max-width: 760px; }
.hero-intro-panel h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  margin-bottom: .75rem;
  color: var(--navy);
}
.hero-intro-panel p {
  color: var(--coal);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Interior page hero (slimmer) */
.hero--page {
  background: var(--navy);
  padding: 3.5rem 1.5rem 3rem;
  text-align: center;
}
.hero--page h1 {
  color: var(--white);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  max-width: 720px;
  margin: 0 auto .75rem;
}
.hero--page p {
  color: rgba(255,255,255,.78);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- Trust strip --------------------------------------- */
.trust-strip {
  background: var(--slate);
  padding: 1.1rem 1.5rem;
}
.trust-strip .container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  color: var(--white);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.trust-item::before { content: '✦'; color: var(--gold); font-size: .7rem; }

/* ---- Section headings ---------------------------------- */
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head h2 { margin-bottom: .75rem; }
.section-head p {
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.03rem;
  line-height: 1.75;
}
.section-head--left { text-align: left; }
.section-head--left p { margin: 0; }

/* ---- Rounded cards (custody approachable style) ------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
}
.card-grid--3 { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.card-grid--2 { grid-template-columns: repeat(auto-fill, minmax(440px, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .15s;
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.card--cream { background: var(--cream); border-color: transparent; }
.card--navy  { background: var(--navy); border-color: transparent; }
.card--navy h3, .card--navy h4 { color: var(--white); }
.card--navy p { color: rgba(255,255,255,.8); }

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  font-size: 1.3rem;
}
.card--navy .card-icon { background: rgba(255,255,255,.12); }

.card h3 { margin-bottom: .5rem; font-size: 1.1rem; }
.card p { font-size: .93rem; color: #4A5568; line-height: 1.65; }
.card--navy p { color: rgba(255,255,255,.78); }
.card .card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--slate);
}
.card--navy .card-link { color: var(--gold); }
.card-link::after { content: ' →'; }

/* ---- Callout boxes ------------------------------------- */
/* Slate callout — used for differentiating highlights */
.callout-slate {
  background: var(--slate);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
}
.callout-slate h2, .callout-slate h3 { color: var(--white); }
.callout-slate p { color: rgba(255,255,255,.88); line-height: 1.75; }
.callout-slate a { color: var(--gold); }
.callout-slate a:hover { color: #f0c84a; }

/* Gold accent callout */
.callout-gold {
  background: var(--gold);
  border-radius: var(--radius);
  padding: 2rem;
}
.callout-gold h3 { color: var(--navy); }
.callout-gold p { color: var(--navy); opacity: .9; }

/* Cream callout */
.callout-cream {
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  padding: 1.75rem 2rem;
}
.callout-cream h3 { color: var(--navy); margin-bottom: .5rem; }
.callout-cream p { font-size: .96rem; line-height: 1.75; }

/* ---- Alternating content sections --------------------- */
.alt-section {
  padding: var(--section-pad);
}
.alt-section:nth-child(even) { background: var(--cream); }

/* ---- Prose content ------------------------------------- */
.prose { max-width: 780px; }
.prose h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 2rem; margin-bottom: .6rem; color: var(--slate); }
.prose h4 { margin-top: 1.5rem; margin-bottom: .5rem; }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1.1rem; }
.prose li { margin-bottom: .45rem; line-height: 1.75; }
.prose ul li { list-style: disc; }
.prose ol li { list-style: decimal; }
.prose blockquote {
  border-left: 4px solid var(--gold);
  padding: 1rem 1.25rem;
  margin: 1.75rem 0;
  background: var(--cream);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--slate);
}
.prose strong { font-weight: 600; color: var(--navy); }
.prose p { line-height: 1.8; }

/* ---- Two-column layout --------------------------------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.two-col--60-40 { grid-template-columns: 3fr 2fr; }
.two-col--40-60 { grid-template-columns: 2fr 3fr; }
@media (max-width: 720px) {
  .two-col,
  .two-col--60-40,
  .two-col--40-60 { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ---- Attorney bio -------------------------------------- */
.bio-photo {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 380px;
}
.bio-meta {
  margin-top: 1.25rem;
  font-size: .88rem;
  color: var(--muted);
}
.bio-meta strong {
  display: block;
  font-size: 1rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: .2rem;
}

/* ---- FAQ ----------------------------------------------- */
.faq-list { max-width: 780px; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.35rem 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.01rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  padding: 0;
  line-height: 1.4;
}
.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--slate);
  flex-shrink: 0;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1;
  margin-top: .1rem;
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  display: none;
  padding-top: .85rem;
  font-size: .97rem;
  line-height: 1.8;
  color: var(--coal);
}
.faq-item.open .faq-a { display: block; }

/* ---- Process steps ------------------------------------- */
.steps { counter-reset: step; }
.step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: start;
}
.step-num {
  counter-increment: step;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--slate);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .92rem;
}
.step-num::before { content: counter(step); }
.step-body h3 { margin-bottom: .4rem; font-size: 1.05rem; }
.step-body p { font-size: .95rem; line-height: 1.75; }

/* ---- Check list ---------------------------------------- */
.check-list { padding-left: 0; }
.check-list li {
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: .6rem;
  line-height: 1.7;
  font-size: .97rem;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--slate);
  font-weight: 700;
}

/* ---- Breadcrumb ---------------------------------------- */
.breadcrumb {
  padding: .8rem 1.5rem;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  font-size: .82rem;
  color: var(--muted);
}
.breadcrumb .container { display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; }
.breadcrumb a { color: var(--muted); transition: color .15s; }
.breadcrumb a:hover { color: var(--slate); text-decoration: none; }
.breadcrumb span { color: var(--coal); }
.breadcrumb span::before { content: '/'; margin-right: .5rem; color: var(--border); }

/* ---- CTA band ------------------------------------------ */
.cta-band {
  background: var(--cream);
  border-top: 3px solid var(--gold);
  padding: 4rem 1.5rem;
  text-align: center;
}
.cta-band h2 { color: var(--navy); margin-bottom: .75rem; }
.cta-band p {
  color: var(--coal);
  opacity: .85;
  max-width: 540px;
  margin: 0 auto 2rem;
  font-size: 1.03rem;
  line-height: 1.75;
}
.cta-band .btn { margin: .4rem; }

/* CTA band navy variant */
.cta-band--navy {
  background: var(--navy);
  border-top: none;
}
.cta-band--navy h2 { color: var(--white); }
.cta-band--navy p { color: rgba(255,255,255,.8); }

/* ---- Serving section ----------------------------------- */
.serving-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: .85rem;
  margin-top: 1.5rem;
}
.serving-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--navy);
  transition: border-color .15s, box-shadow .15s;
}
.serving-item:hover { border-color: var(--slate); box-shadow: var(--shadow); }
.serving-item a { color: var(--slate); text-decoration: none; display: block; }
.serving-item a:hover { color: var(--navy); text-decoration: none; }
.serving-city { font-weight: 600; display: block; margin-bottom: .15rem; }
.serving-note { font-size: .8rem; color: var(--muted); }

/* ---- Stat tiles ---------------------------------------- */
.stat-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}
.stat-tile {
  text-align: center;
  padding: 1.5rem 2rem;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius);
  min-width: 140px;
}
.stat-tile .stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: .35rem;
}
.stat-tile .stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ---- Footer -------------------------------------------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 3.5rem 1.5rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.footer-brand { }
.footer-logo-line {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .25rem;
}
.footer-logo-line span { color: var(--gold); }
.footer-tagline {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: .85rem;
}
.footer-brand p { font-size: .84rem; line-height: 1.65; color: rgba(255,255,255,.6); }
.footer-brand a { color: var(--gold); }

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul a {
  color: rgba(255,255,255,.62);
  font-size: .86rem;
  transition: color .15s;
}
.footer-col ul a:hover { color: var(--white); text-decoration: none; }

.footer-contact p { font-size: .88rem; margin-bottom: .45rem; color: rgba(255,255,255,.65); }
.footer-contact a { color: var(--gold); font-weight: 600; }
.footer-contact a:hover { color: #f0c84a; text-decoration: none; }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-bottom: 1.75rem;
}
.footer-compliance {
  font-size: .75rem;
  line-height: 1.7;
  color: rgba(255,255,255,.4);
  max-width: 920px;
}

/* ---- Contact form -------------------------------------- */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--coal);
  background: var(--white);
  transition: border-color .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--slate);
  box-shadow: 0 0 0 3px rgba(62,92,138,.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-note {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 1rem;
  line-height: 1.6;
}

/* ---- Utility ------------------------------------------- */
.text-center  { text-align: center; }
.text-gold    { color: var(--gold); }
.text-slate   { color: var(--slate); }
.text-muted   { color: var(--muted); }
.text-white   { color: var(--white); }
.mt-1  { margin-top: 1rem; }
.mt-2  { margin-top: 2rem; }
.mt-3  { margin-top: 3rem; }
.mb-0  { margin-bottom: 0; }
.mb-1  { margin-bottom: 1rem; }
.mb-2  { margin-bottom: 2rem; }
.gap-1 { gap: 1rem; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ---- Responsive ---------------------------------------- */
@media (max-width: 600px) {
  :root { --section-pad: 3.5rem 1.25rem; }
  .hero-centered { padding: 3.75rem 1.25rem 3rem; }
  .hero--page { padding: 2.75rem 1.25rem 2.5rem; }
  .card-grid,
  .card-grid--3,
  .card-grid--2 { grid-template-columns: 1fr; }
  .trust-strip .container { gap: 1.25rem; flex-direction: column; align-items: center; }
  .stat-row { gap: 1rem; }
  .stat-tile { padding: 1.25rem 1.5rem; min-width: 120px; }
  .contact-form { padding: 1.75rem 1.25rem; }
}
