/* ═══════════════════════════════════════════════════════════
   Chambers Insurance Agency — Landing Page
   Fonts: Cormorant Garamond (display) · DM Sans (body)
   ═══════════════════════════════════════════════════════════ */

/* ── Design Tokens ───────────────────────────────────────── */
:root {
  --bg:        #060D18;
  --bg-alt:    #0B1826;
  --gold:      #C4933A;
  --gold-mid:  #DAA84E;
  --gold-hi:   #F0C462;
  --gold-glow: rgba(196, 147, 58, 0.28);
  --cream:     #F5EDD8;
  --muted:     #8A9FB5;
  --border:    rgba(245, 237, 216, 0.10);
  --border-hi: rgba(245, 237, 216, 0.20);

  --display: 'Cormorant Garamond', Georgia, serif;
  --body:    'DM Sans', system-ui, sans-serif;

  --max-w: 1280px;
  --px:    clamp(1.5rem, 5vw, 4rem);
  --ease:  cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--cream);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.is-loading { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }
button { font-family: inherit; }

/* ── Loader ──────────────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}
#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-brand {
  height: 52px;
  width: auto;
  opacity: 0.88;
}
.loader-track {
  width: 160px;
  height: 1px;
  background: rgba(245, 237, 216, 0.12);
  border-radius: 1px;
  overflow: hidden;
}
#loaderBar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-hi));
  border-radius: 1px;
  transition: width 0.95s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Site Header ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem var(--px);
  transition:
    background 450ms ease,
    backdrop-filter 450ms ease,
    -webkit-backdrop-filter 450ms ease,
    padding 300ms ease,
    border-color 450ms ease;
}
.site-header.solid {
  background: rgba(6, 13, 24, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.header-brand img {
  height: 38px;
  width: auto;
}
.header-nav {
  display: flex;
  gap: 2.25rem;
}
.header-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(245, 237, 216, 0.78);
  letter-spacing: 0.02em;
  transition: color 200ms ease;
}
.header-nav a:hover { color: var(--gold-hi); }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.3rem;
  border-radius: 999px;
  border: 1.5px solid rgba(245, 237, 216, 0.28);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--cream);
  transition: border-color 200ms ease, background 200ms ease;
}
.header-cta:hover {
  border-color: var(--gold-mid);
  background: rgba(196, 147, 58, 0.10);
}

/* ── Hero Standalone ─────────────────────────────────────── */
.hero-standalone {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 0 var(--px) clamp(4rem, 9vh, 8rem);
  background: var(--bg);
  z-index: 50;
  overflow: hidden;
}
.hero-standalone::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 75% 15%, rgba(196, 147, 58, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 45% 65% at 10% 90%, rgba(59, 100, 180, 0.05) 0%, transparent 55%);
  pointer-events: none;
}

/* Thin gold accent line, left edge */
.hero-standalone::after {
  content: '';
  position: absolute;
  left: calc(var(--px) - 1.5rem);
  top: 40%;
  bottom: 10%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-mid) 30%, var(--gold-mid) 70%, transparent);
  opacity: 0.35;
}

.hero-inner { position: relative; z-index: 1; }

.hero-label {
  display: block;
  font-family: var(--body);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: heroIn 0.85s var(--ease) forwards 0.5s;
}

.hero-heading {
  display: flex;
  flex-direction: column;
  font-family: var(--display);
  font-size: clamp(4.5rem, 12vw, 11.5rem);
  font-weight: 700;
  line-height: 0.89;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.hw {
  display: block;
  overflow: hidden;
  opacity: 0;
  animation: heroIn 0.95s var(--ease) forwards;
}
.hw:nth-child(1) { animation-delay: 0.65s; }
.hw:nth-child(2) { animation-delay: 0.82s; }
.hw:nth-child(3) { animation-delay: 0.99s; }
.hero-em {
  color: var(--gold-hi);
  font-style: italic;
}

.hero-tagline {
  font-family: var(--body);
  font-size: clamp(1.05rem, 1.9vw, 1.35rem);
  font-weight: 300;
  color: rgba(245, 237, 216, 0.60);
  letter-spacing: 0.01em;
  opacity: 0;
  animation: heroIn 0.85s var(--ease) forwards 1.12s;
}

.hero-scroll-cue {
  position: absolute;
  bottom: clamp(1.5rem, 4vh, 3rem);
  right: var(--px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.38);
  opacity: 0;
  animation: heroIn 0.85s var(--ease) forwards 1.35s;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Video Wrap ──────────────────────────────────────────── */
.video-wrap {
  position: fixed;
  inset: 0;
  z-index: 1;
  clip-path: circle(0% at 50% 50%);
  will-change: clip-path;
}
.video-wrap canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.video-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 35%, rgba(6, 13, 24, 0.50) 100%),
    linear-gradient(to bottom,
      rgba(6, 13, 24, 0.28) 0%,
      transparent 18%,
      transparent 78%,
      rgba(6, 13, 24, 0.45) 100%);
  pointer-events: none;
}

/* ── Dark Overlay ────────────────────────────────────────── */
#darkOverlay {
  position: fixed;
  inset: 0;
  z-index: 2;
  background: rgba(6, 13, 24, 0.93);
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}

/* ── Marquee ─────────────────────────────────────────────── */
.marquee-wrap {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  overflow: hidden;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.7s ease;
  will-change: opacity;
}
.marquee-wrap.visible { opacity: 1; }
.marquee-text {
  display: inline-block;
  font-family: var(--display);
  font-size: 12vw;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(245, 237, 216, 0.042);
  white-space: nowrap;
  will-change: transform;
  line-height: 1;
  user-select: none;
}

/* ── Scroll Container ────────────────────────────────────── */
#scrollContainer {
  position: relative;
  height: 800vh;
  z-index: 4;
}

/* ── Scroll Sections (base) ──────────────────────────────── */
.scroll-section {
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 100vh;
  /* top / height / transform set by JS */
}

/* Side-alignment zones (text in outer 42% of viewport) */
.align-left {
  padding-left: var(--px);
  padding-right: 55vw;
}
.align-right {
  padding-left: 55vw;
  padding-right: var(--px);
}
.align-center {
  justify-content: center;
  padding: 4rem var(--px);
}

.align-left .section-inner,
.align-right .section-inner {
  max-width: 42vw;
}

/* Section typography */
.section-label {
  display: block;
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 1.25rem;
}

.section-heading {
  font-family: var(--display);
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.65), 0 1px 2px rgba(0, 0, 0, 0.4);
}

.section-body {
  font-family: var(--body);
  font-size: clamp(1.05rem, 1.45vw, 1.2rem);
  font-weight: 400;
  line-height: 1.78;
  color: rgba(245, 237, 216, 0.72);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}

/* ── Stats Section ───────────────────────────────────────── */
.section-stats {
  min-height: 100vh;
}
.stats-grid {
  display: flex;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem 0;
}
.stat {
  text-align: center;
  min-width: 160px;
}
.stat-top {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1em;
  margin-bottom: 0.55rem;
}
.stat-number {
  font-family: var(--display);
  font-size: clamp(4.5rem, 9vw, 8rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold-hi);
  letter-spacing: -0.035em;
}
.stat-suffix {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 600;
  color: var(--gold-mid);
  letter-spacing: -0.02em;
  opacity: 0.85;
}
.stat-label {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.48);
}

/* ── CTA Section ─────────────────────────────────────────── */
.section-cta {
  min-height: 100vh;
}
.cta-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-heading {
  font-size: clamp(3.5rem, 7.5vw, 7rem) !important;
  margin-bottom: 1.25rem !important;
}
.cta-body {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem) !important;
  color: rgba(245, 237, 216, 0.68) !important;
  margin-bottom: 2.5rem;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1.05rem 2.25rem;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  cursor: pointer;
  border: none;
  transition:
    transform 260ms var(--ease),
    box-shadow 260ms var(--ease),
    background 200ms ease,
    border-color 200ms ease;
}
.cta-btn:hover { transform: translateY(-3px); }
.cta-btn:active { transform: translateY(0); }

.cta-btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-hi));
  color: #060D18;
  box-shadow: 0 12px 40px var(--gold-glow);
}
.cta-btn--primary:hover {
  box-shadow: 0 16px 55px rgba(196, 147, 58, 0.45);
}
.cta-btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245, 237, 216, 0.30);
  backdrop-filter: blur(8px);
}
.cta-btn--outline:hover {
  border-color: rgba(245, 237, 216, 0.58);
  background: rgba(245, 237, 216, 0.06);
}

/* ── Below Scroll (solid background covers fixed video) ──── */
.below-scroll {
  position: relative;
  z-index: 5;
  background: var(--bg);
}

/* ── Static Sections ─────────────────────────────────────── */
.static-section {
  padding: clamp(5rem, 10vw, 9rem) var(--px);
}
.static-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.static-label {
  display: block;
  font-family: var(--body);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 1rem;
}
.static-head {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.static-heading {
  font-family: var(--display);
  font-size: clamp(2.6rem, 5.5vw, 4.75rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--cream);
}

/* ── Process Section ─────────────────────────────────────── */
.process-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding: 0 2.75rem;
}
.step:first-child { padding-left: 0; }
.step:last-child  { padding-right: 0; }

.step-rule {
  width: 1px;
  height: 110px;
  margin-top: 0.5rem;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--border-hi) 35%,
    var(--border-hi) 65%,
    transparent
  );
  flex-shrink: 0;
  align-self: flex-start;
}
.step-num {
  display: block;
  font-family: var(--display);
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-hi);
  opacity: 0.75;
  margin-bottom: 1.1rem;
  letter-spacing: -0.02em;
}
.step-title {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.1vw, 1.8rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.8rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.step-body {
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  color: var(--muted);
  line-height: 1.75;
}

/* ── Contact Section ─────────────────────────────────────── */
.contact-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.contact-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}
.contact-copy .static-label { margin-bottom: 1.2rem; }
.contact-copy .static-heading { margin-bottom: 1.5rem; }
.contact-lead {
  font-size: clamp(1.05rem, 1.45vw, 1.2rem);
  color: var(--muted);
  line-height: 1.78;
  margin-bottom: 2.25rem;
}
.contact-call {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 700;
  color: var(--gold-hi);
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  transition: color 200ms ease;
  line-height: 1;
}
.contact-call:hover { color: var(--gold-mid); }
.contact-hours {
  font-size: 0.875rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  opacity: 0.75;
}

/* Contact form card */
.contact-form-card {
  background: rgba(245, 237, 216, 0.038);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 2.75rem;
  transition: border-color 300ms ease;
}
.contact-form-card:hover { border-color: var(--border-hi); }
.contact-form-card h3 {
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.contact-form-card > p {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 1.85rem;
}

form { display: flex; flex-direction: column; gap: 1.15rem; }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
}
.form-field label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(245, 237, 216, 0.80);
  letter-spacing: 0.01em;
}
.field-opt {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.875rem;
}
.form-field input,
.form-field select {
  width: 100%;
  background: rgba(245, 237, 216, 0.055);
  border: 1px solid rgba(245, 237, 216, 0.11);
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  font-size: 1rem;
  font-family: var(--body);
  color: var(--cream);
  outline: none;
  transition: border-color 200ms ease, background 200ms ease;
  appearance: none;
  -webkit-appearance: none;
}
.form-field input::placeholder { color: rgba(245, 237, 216, 0.25); }
.form-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A9FB5' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-field select option { background: #0B1826; color: var(--cream); }
.form-field input:focus,
.form-field select:focus {
  border-color: rgba(196, 147, 58, 0.55);
  background: rgba(245, 237, 216, 0.08);
}

.form-submit {
  width: 100%;
  padding: 1.05rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-family: var(--body);
  font-size: 1.0625rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-hi));
  color: #060D18;
  box-shadow: 0 8px 32px var(--gold-glow);
  margin-top: 0.35rem;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 45px rgba(196, 147, 58, 0.42);
}
.form-submit:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
}

.form-legal {
  font-size: 0.775rem;
  color: rgba(138, 159, 181, 0.65);
  line-height: 1.58;
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 4.5rem var(--px) 3.5rem;
  background: var(--bg);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.75fr 2fr;
  gap: 3.5rem;
  align-items: start;
}
.footer-brand img {
  height: 34px;
  width: auto;
  margin-bottom: 1.1rem;
  opacity: 0.85;
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  opacity: 0.8;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-top: 0.2rem;
}
.footer-nav a {
  font-size: 0.9375rem;
  color: var(--muted);
  transition: color 200ms ease;
  opacity: 0.8;
}
.footer-nav a:hover {
  color: var(--gold-hi);
  opacity: 1;
}
.footer-legal p {
  font-size: 0.775rem;
  color: rgba(138, 159, 181, 0.5);
  line-height: 1.62;
  margin-bottom: 0.7rem;
}
.footer-copy {
  color: rgba(138, 159, 181, 0.32) !important;
  margin-top: 0.4rem;
}

/* ── Static Section Entrance Animations ──────────────────── */
[data-anim] {
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
[data-anim="fade-up"]    { opacity: 0; transform: translateY(38px); }
[data-anim="fade-right"] { opacity: 0; transform: translateX(-38px); }
[data-anim="fade-left"]  { opacity: 0; transform: translateX(38px); }
[data-anim].visible      { opacity: 1 !important; transform: none !important; }

/* Reduced motion: show everything immediately */
@media (prefers-reduced-motion: reduce) {
  [data-anim] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hw, .hero-label, .hero-tagline, .hero-scroll-cue {
    opacity: 1 !important; transform: none !important; animation: none !important;
  }
  .video-wrap { clip-path: none !important; }
}

/* ── Responsive ──────────────────────────────────────────── */

/* Tablet: collapse side zones, add glass readability layer */
@media (max-width: 1100px) {
  .align-left,
  .align-right {
    padding-left: var(--px);
    padding-right: var(--px);
    align-items: flex-end;
    padding-bottom: 5vh;
  }
  .align-left .section-inner,
  .align-right .section-inner {
    max-width: 520px;
    width: 100%;
    background: rgba(6, 13, 24, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 22px;
    padding: 2rem 2rem;
    border: 1px solid var(--border);
  }
  .section-heading { text-shadow: none; }
  .section-body    { text-shadow: none; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }

  .hero-heading {
    font-size: clamp(3.5rem, 17vw, 6rem);
  }
  .hero-standalone::after { display: none; }

  #scrollContainer { height: 600vh; }
  .marquee-text { font-size: 18vw; }

  .align-left,
  .align-right {
    align-items: center;
    padding-bottom: 0;
  }
  .align-left .section-inner,
  .align-right .section-inner {
    max-width: 100%;
    border-radius: 18px;
    padding: 1.75rem 1.5rem;
  }

  .section-heading { font-size: clamp(2.5rem, 9vw, 3.5rem) !important; }
  .section-body    { font-size: 1rem !important; }

  .stats-grid { gap: 2.5rem; }
  .stat-number { font-size: clamp(4rem, 14vw, 6rem); }

  .cta-heading { font-size: clamp(3rem, 11vw, 5rem) !important; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-btn { width: 100%; max-width: 320px; justify-content: center; }

  .steps-row { flex-direction: column; gap: 3rem; }
  .step { padding: 0; }
  .step-rule { display: none; }

  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 2.75rem; }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: clamp(3rem, 18vw, 4.5rem);
  }
  .contact-form-card {
    padding: 1.75rem 1.5rem;
    border-radius: 20px;
  }
  .static-heading {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }
}
