/*
Theme Name: Searcy Lions Campaign
Theme URI: https://searcylaw.com
Author: mkaydub
Version: 1.0.0
Requires PHP: 7.4
*/


/* ===================================================================
   Self-hosted fonts
   Avenir Next LT Pro — licensed webfont files (assets/fonts/)
   Declared as 'Avenir Next' so the existing font stack picks it up.
   =================================================================== */
@font-face {
  font-family: 'Avenir Next';
  src: url('assets/fonts/AvenirNextLTPro-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Avenir Next';
  src: url('assets/fonts/AvenirNextLTPro-Demi.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Avenir Next';
  src: url('assets/fonts/AvenirNextLTPro-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

  :root {
    --navy: #0C0A28;
    --navy-deep: #07061A;
    --yellow: #f5ce3e;
    --purple: #5B315F;
    --purple-deep: #2E2341;
    --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --sans: 'Avenir Next', Avenir, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { background: var(--navy); font-family: var(--sans); }

  /* ---------- Accessibility ---------- */
  .screen-reader-text {
    position: absolute; width: 1px; height: 1px;
    margin: -1px; padding: 0; overflow: hidden;
    clip: rect(0 0 0 0); clip-path: inset(50%);
    border: 0; white-space: nowrap;
  }
  .skip-link {
    position: absolute; top: -100px; left: 16px; z-index: 100;
    background: var(--yellow); color: var(--navy);
    font-family: var(--sans); font-weight: 700; font-size: 14px;
    padding: 12px 24px; border-radius: 0 0 6px 6px;
    text-decoration: none; transition: top 0.2s ease;
  }
  .skip-link:focus { top: 0; }

  /* Visible focus indicators (keyboard only) */
  :focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 3px;
    border-radius: 2px;
  }
  .pill:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 3px;
  }
  [tabindex="-1"]:focus { outline: none; }

  /* ---------- Scroll reveal animations (JS-gated via html.js) ---------- */
  .js .reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: opacity, transform;
  }
  .js .reveal.is-visible { opacity: 1; transform: none; }
  .js .reveal-d1 { transition-delay: 0.12s; }
  .js .reveal-d2 { transition-delay: 0.24s; }
  .js .reveal-d3 { transition-delay: 0.36s; }

  /* Callout: gold rules draw outward from center */
  .js .callout__rule { transform: scaleX(0); transition: transform 1.1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.15s; }
  .js .callout.is-visible .callout__rule { transform: scaleX(1); }

  /* Services: watermark drifts in */
  .js .services__watermark {
    opacity: 0; transform: translateY(-50%) translateX(-28px);
    transition: opacity 1.2s ease 0.2s, transform 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s;
  }
  .js .services.is-visible .services__watermark { opacity: 0.35; transform: translateY(-50%) translateX(0); }

  /* Hero: content rises on page load (above the fold — no observer needed) */
  @keyframes searcyFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: none; }
  }
  @keyframes searcyFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  .js .hero__eyebrow { animation: searcyFadeUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.1s both; }
  .js .hero__title   { animation: searcyFadeUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.25s both; }
  .js .hero__body    { animation: searcyFadeUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.4s both; }
  .js .hero__text .pill { animation: searcyFadeUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.55s both; }
  .js .hero__img-desktop img, .js .hero__img-mobile img { animation: searcyFadeIn 1.3s ease both; }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
      transition-duration: 0.01ms !important;
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
    }
    .js .reveal, .js .callout__rule,
    .js .hero__eyebrow, .js .hero__title, .js .hero__body, .js .hero__text .pill,
    .js .hero__img-desktop img, .js .hero__img-mobile img {
      opacity: 1 !important; transform: none !important; animation: none !important;
    }
    .js .callout__rule { transform: scaleX(1) !important; }
    .js .services__watermark {
      opacity: 0.35 !important; transform: translateY(-50%) !important; transition: none !important;
    }
  }

  /* ---------- Pill buttons ---------- */
  .pill {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--yellow);
    color: var(--navy);
    border: 2px solid var(--yellow);
    border-radius: 9999px;
    padding: 11px 30px;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
  }
  .pill:hover { background: transparent; color: var(--yellow); }
  .pill--outline {
    background: transparent;
    color: var(--yellow);
  }
  .pill--outline:hover { background: var(--yellow); color: var(--navy); }

  /* ---------- Navbar ---------- */
  /* Shared content container — all sections align to this */
  .container {
    max-width: 72rem; /* 1152px */
    margin: 0 auto;
    width: 100%;
    padding: 0 24px;
  }

  .navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    padding: 16px 0;
  }
  .navbar .container {
    display: flex; align-items: center; justify-content: space-between;
  }
  .navbar::before {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(to bottom, rgba(12,10,40,0.97) 0%, rgba(12,10,40,0) 100%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    /* Fade the blur out with the gradient so it doesn't cut off as a hard edge */
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 45%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 45%, transparent 100%);
  }
  .navbar img { height: 38px; width: auto; display: block; }

  /* ---------- Hero ---------- */
  .hero { position: relative; overflow: hidden; min-height: 100svh; background: var(--navy); }
  .hero__img-desktop { position: absolute; top: 0; bottom: 0; right: 0; width: 60%; display: none; }
  .hero__img-desktop img {
    width: 100%; height: 100%; object-fit: cover; object-position: center top;
    filter: brightness(0.8) saturate(0.9);
  }
  .hero__fade-left { position: absolute; inset: 0;
    background: linear-gradient(to right, #0C0A28 0%, rgba(12,10,40,0.5) 35%, rgba(12,10,40,0) 70%); }
  .hero__fade-bottom { position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 50%, #0C0A28 100%); }
  .hero__img-mobile { position: absolute; inset: 0; display: block; }
  .hero__img-mobile img {
    width: 100%; height: 100%; object-fit: cover; object-position: center top;
    filter: brightness(0.55) saturate(0.85);
  }
  .hero__img-mobile .scrim { position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(12,10,40,0.3) 0%, #0C0A28 75%); }
  .hero__content {
    position: relative; z-index: 10;
    display: flex; flex-direction: column; justify-content: center;
    min-height: 100vh; padding-top: 96px; padding-bottom: 80px;
  }
  .hero__text { max-width: 640px; }
  .hero__eyebrow {
    font-family: var(--serif); color: #fff;
    font-size: clamp(1.3rem, 3vw, 2.1rem); line-height: 1.2; font-weight: 400;
  }
  .hero__title {
    font-family: var(--serif); color: var(--yellow);
    font-size: clamp(2.8rem, 8vw, 5.5rem); line-height: 1.0;
    font-weight: 600; letter-spacing: -0.01em; margin: 6px 0 28px;
  }
  @media (min-width: 768px) {
    .hero__title { white-space: nowrap; }
  }
  .hero__body {
    font-family: var(--sans); color: #fff;
    font-size: clamp(0.95rem, 1.4vw, 1.05rem); line-height: 1.8; margin-bottom: 36px;
  }

  /* ---------- Callout ---------- */
  .callout { background: var(--navy); position: relative; overflow: hidden; padding: 64px 0; }
  .callout__glow { position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse 70% 55% at 50% 50%, rgba(90,50,170,0.2) 0%, transparent 70%); }
  .callout__inner { position: relative; z-index: 10; text-align: center; }
  .callout__rule { height: 1px; background: rgba(245,206,62,0.45); }
  .callout__quote {
    font-family: var(--serif); color: #fff;
    font-size: clamp(1.3rem, 2.8vw, 2.1rem); line-height: 1.6;
    font-style: italic; font-weight: 400; margin: 40px 0;
  }
  .callout__quote .gold { color: var(--yellow); }

  /* ---------- Services ---------- */
  .services { position: relative; overflow: hidden; padding: 80px 0; }
  .services__bg { position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center; }
  .services__blend-top { position: absolute; top: 0; left: 0; right: 0; height: 320px;
    background: linear-gradient(to bottom, rgba(12,10,40,1) 0%, rgba(12,10,40,0.87) 19%, rgba(12,10,40,0.7) 34%, rgba(12,10,40,0.5) 47%, rgba(12,10,40,0.33) 56.5%, rgba(12,10,40,0.2) 65%, rgba(12,10,40,0.12) 73%, rgba(12,10,40,0.06) 80.2%, rgba(12,10,40,0.03) 86.1%, rgba(12,10,40,0.01) 91%, rgba(12,10,40,0) 100%); z-index: 1; }
  .services__blend-bottom { position: absolute; bottom: 0; left: 0; right: 0; height: 320px;
    background: linear-gradient(to top, rgba(12,10,40,1) 0%, rgba(12,10,40,0.87) 19%, rgba(12,10,40,0.7) 34%, rgba(12,10,40,0.5) 47%, rgba(12,10,40,0.33) 56.5%, rgba(12,10,40,0.2) 65%, rgba(12,10,40,0.12) 73%, rgba(12,10,40,0.06) 80.2%, rgba(12,10,40,0.03) 86.1%, rgba(12,10,40,0.01) 91%, rgba(12,10,40,0) 100%); z-index: 1; }
  .services__watermark {
    position: absolute; left: -16%; top: 50%; transform: translateY(-50%);
    width: 52%; max-width: 680px; opacity: 0.35; mix-blend-mode: multiply;
    pointer-events: none; z-index: 2;
  }
  .services__inner { position: relative; z-index: 3; }
  .services__col { max-width: 520px; margin-left: auto; }

  .eyebrow {
    font-family: var(--sans); color: var(--yellow);
    font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase; margin-bottom: 16px;
  }
  .services h2 {
    font-family: var(--serif); color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.2;
    font-weight: 600; margin-bottom: 28px;
  }
  .body-copy { font-family: var(--sans); color: #fff; line-height: 1.8; font-size: 1rem; }
  .body-copy p + p { margin-top: 20px; }
  .body-copy .strong { font-weight: 600; }

  /* ---------- Firm Overview ---------- */
  .firm { background: var(--navy); position: relative; overflow: hidden; padding: 64px 0; }
  .firm__inner { position: relative; z-index: 2; }
  .firm__grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }
  .firm h2 {
    font-family: var(--serif); color: #fff;
    font-size: clamp(1.6rem, 2.8vw, 2.3rem); line-height: 1.2; font-weight: 600;
  }

  /* ---------- Lead form ---------- */
  .lead { background: var(--navy); position: relative; overflow: hidden; padding: 64px 0; }
  .lead__bg { position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center; }
  .lead__blend-top { position: absolute; top: 0; left: 0; right: 0; height: 320px;
    background: linear-gradient(to bottom, rgba(12,10,40,1) 0%, rgba(12,10,40,0.87) 19%, rgba(12,10,40,0.7) 34%, rgba(12,10,40,0.5) 47%, rgba(12,10,40,0.33) 56.5%, rgba(12,10,40,0.2) 65%, rgba(12,10,40,0.12) 73%, rgba(12,10,40,0.06) 80.2%, rgba(12,10,40,0.03) 86.1%, rgba(12,10,40,0.01) 91%, rgba(12,10,40,0) 100%); z-index: 1; pointer-events: none; }
  .lead__blend-bottom { position: absolute; bottom: 0; left: 0; right: 0; height: 280px;
    background: linear-gradient(to top, rgba(7,6,26,1) 0%, rgba(7,6,26,0.87) 19%, rgba(7,6,26,0.7) 34%, rgba(7,6,26,0.5) 47%, rgba(7,6,26,0.33) 56.5%, rgba(7,6,26,0.2) 65%, rgba(7,6,26,0.12) 73%, rgba(7,6,26,0.06) 80.2%, rgba(7,6,26,0.03) 86.1%, rgba(7,6,26,0.01) 91%, rgba(7,6,26,0) 100%); z-index: 1; pointer-events: none; }
  .lead__inner { position: relative; z-index: 10; }
  .lead__head { text-align: center; margin-bottom: 48px; }
  .lead__head .eyebrow { margin-bottom: 14px; }
  .lead h2 {
    font-family: var(--serif); color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 600; line-height: 1.2; margin-bottom: 14px;
  }
  .lead__sub { font-family: var(--sans); color: #fff; line-height: 1.75; font-size: 1rem; }
  .lead__sub p { margin: 0; }
  .lead__sub p + p { margin-top: 10px; }
  .lead__sub a { color: var(--yellow); text-decoration: underline; text-underline-offset: 3px; }
  .lead__sub a:hover { text-decoration: none; }
  .lead__card {
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(22,19,64,0.55);
    padding: clamp(24px, 5vw, 44px);
    border-radius: 4px;
  }
  .lead__row { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 20px; }
  .lead__field { margin-bottom: 20px; }
  .lead__field--last { margin-bottom: 28px; }
  label {
    font-family: var(--sans); color: #fff; font-size: 13px; font-weight: 600;
    letter-spacing: 0.04em; display: block; margin-bottom: 7px;
  }
  label .req { color: var(--yellow); }
  input, select, textarea {
    font-family: var(--sans); font-size: 1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff; width: 100%; padding: 13px 16px;
    transition: border-color 0.2s ease; outline: none; border-radius: 4px;
  }
  input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.6); }
  input:focus, select:focus, textarea:focus { outline: 2px solid var(--yellow); outline-offset: 2px; }
  select { cursor: pointer; }
  select option { background: #161340; }
  textarea { resize: vertical; min-height: 120px; }
  .lead__submit { width: 100%; padding: 14px 30px; font-size: 15px; }
  .lead__fineprint {
    font-family: var(--sans); color: #fff; font-size: 13px;
    text-align: center; margin-top: 14px; line-height: 1.6;
  }
  .lead__thanks {
    text-align: center; padding: 64px 24px;
    border: 1px solid rgba(245,206,62,0.35);
    background: rgba(245,206,62,0.05); border-radius: 4px;
    display: none;
  }
  .lead__thanks img { height: 32px; width: auto; margin: 0 auto 24px; display: block; }
  .lead__thanks h3 { font-family: var(--serif); color: var(--yellow); font-size: 1.6rem; font-weight: 600; margin-bottom: 12px; }
  .lead__thanks p { font-family: var(--sans); color: #fff; line-height: 1.7; }
.hero__text--thankyou {
	color:#fff;
}
  /* ---------- Footer ---------- */
  footer { background: var(--navy-deep); border-top: 1px solid rgba(255,255,255,0.07); }
  .footer__inner { padding-top: 56px; padding-bottom: 56px; }
  .footer__top {
    display: flex; flex-direction: column; gap: 20px;
    align-items: center; justify-content: center; margin-bottom: 48px;
  }
  .footer__logo-link { display: inline-flex; line-height: 0; }
  .footer__logo { height: 46px; width: auto; display: block; }
  .footer__divider {
    width: 1px; height: 48px; background: rgba(255,255,255,0.25);
    display: none;
  }
  .footer__social { display: flex; gap: 8px; }
  .footer__social a {
    color: #fff; transition: color 0.2s ease;
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 6px;
  }
  .footer__social a svg { width: 24px; height: 24px; }
  .footer__social a:hover { color: var(--yellow); }

  /* Offices */
  .footer__offices {
    display: flex; flex-direction: column; align-items: center;
    gap: 36px; margin-bottom: 48px;
  }
  .footer__office { text-align: center; }
  .footer__city {
    font-family: var(--sans); color: #fff; font-size: 16px; font-weight: 700;
    letter-spacing: 0.02em; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: color 0.2s ease; margin-bottom: 12px;
  }
  .footer__city:hover { color: var(--yellow); }
  .footer__office address {
    font-family: var(--sans); font-style: normal; color: #fff;
    font-size: 14px; line-height: 1.7; opacity: 0.75; margin-bottom: 12px;
  }
  .footer__tel {
    font-family: var(--sans); color: #fff; text-decoration: none; font-size: 14px;
    display: inline-flex; align-items: center; gap: 8px; transition: color 0.2s ease;
  }
  .footer__tel:hover { color: var(--yellow); }

  /* Legal row */
  footer ul { list-style: none; }
  .footer__legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; margin-bottom: 20px; }
  .footer__legal a {
    font-family: var(--sans); color: #fff; text-decoration: none; font-size: 14px;
    transition: color 0.2s ease;
  }
  .footer__legal a:hover { color: var(--yellow); }
  .footer__disclaimer {
    font-family: var(--sans); color: #fff; font-size: 12px;
    line-height: 1.7; max-width: 560px; opacity: 0.7;
    margin: 0 auto 32px; text-align: center;
  }
  .footer__bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 20px; }
  .footer__copyright { font-family: var(--sans); color: #fff; font-size: 12px; opacity: 0.6; text-align: center; }

  /* ---------- Mobile hero: text sits low so the lion's face shows ---------- */
  @media (max-width: 767px) {
    .hero { min-height: 100svh; }
    .hero__content {
      justify-content: flex-end;
      /* svh = visible viewport (excludes iOS Safari's address bar), so the
         content bottom truly lands ~5% from the visible bottom */
      min-height: 100svh;
      padding-bottom: 5svh;
      padding-top: 88px;
    }
    .hero__img-mobile img {
      filter: brightness(0.55) saturate(0.85);  /* lighter than before — face stays visible */
      object-position: center 22%;               /* nudge the face into view above the text */
    }
    /* Scrim: clear over the face up top, darkening only behind the lower text block */
    .hero__img-mobile .scrim {
      background: linear-gradient(to bottom,
        rgba(12,10,40,0.15) 0%,
        rgba(12,10,40,0.15) 42%,
        rgba(12,10,40,0.78) 72%,
        #0C0A28 100%);
    }
  }

  /* ---------- Small mobile: compact navbar ---------- */
  @media (max-width: 480px) {
    .navbar img { height: 28px; }
    .pill { font-size: 12px; padding: 9px 20px; }
  }

  /* ---------- Tablet: protect hero text legibility over the image ---------- */
  @media (min-width: 768px) and (max-width: 1023px) {
    .hero__text { max-width: 540px; }
    .hero__fade-left {
      background: linear-gradient(to right, #0C0A28 0%, rgba(12,10,40,0.7) 45%, rgba(12,10,40,0) 80%);
    }
    .firm__grid { gap: 32px; }
  }

  /* ---------- Responsive (md = 768px) ---------- */
  @media (min-width: 768px) {
    .container { padding-left: 40px; padding-right: 40px; }
    .hero__img-desktop { display: block; }
    .hero__img-mobile { display: none; }
    .callout { padding: 96px 0; }
    .services { padding: 112px 0; }
    .firm { padding: 96px 0; }
    .firm__grid { grid-template-columns: repeat(12, 1fr); }
    .firm__col-left { grid-column: span 4; }
    .firm__col-right { grid-column: span 8; padding-top: 48px; }
    .lead { padding: 96px 0; }
    .lead__row { grid-template-columns: 1fr 1fr; }
    .footer__inner { padding-top: 64px; padding-bottom: 64px; }
    .footer__top { flex-direction: row; gap: 28px; }
    .footer__divider { display: block; }
    .footer__offices { flex-direction: row; flex-wrap: wrap; justify-content: center; align-items: flex-start; gap: 36px 72px; }
  }

  /* ---------- Thank You page hero ---------- */
  /* Visually identical to the homepage hero; only the text differs.
     Section background is the footer color so the image blends into it. */
  .hero--thankyou { background: var(--navy-deep); }

  /* Edgeless blend: the existing left fade + a bottom-right corner fade,
     both easing to the footer color so the lion dissolves on BOTH axes
     with no hard edges anywhere. */
  .hero--thankyou .hero__fade-left {
    background:
      linear-gradient(to right,
        var(--navy-deep) 0%, rgba(7,6,26,0.5) 35%, rgba(7,6,26,0) 70%),
      linear-gradient(to bottom,
        rgba(7,6,26,0) 40%, var(--navy-deep) 100%);
  }
  .hero--thankyou .hero__fade-bottom {
    /* Radial wash anchored bottom-right so the far corner of the mane
       melts into the footer color along with the bottom and left edges. */
    background: radial-gradient(120% 120% at 15% 35%,
      rgba(7,6,26,0) 45%, rgba(7,6,26,0.65) 78%, var(--navy-deep) 100%);
  }
  .hero--thankyou .hero__img-mobile .scrim {
    background:
      linear-gradient(to bottom,
        rgba(7,6,26,0.15) 0%, rgba(7,6,26,0.15) 42%,
        rgba(7,6,26,0.78) 72%, var(--navy-deep) 100%);
  }

  /* Heading matches homepage hero scale-down for a full sentence; weight 600 to match. */
  .hero__text--thankyou { max-width: 620px; }
  .hero__title--thankyou {
    font-family: var(--serif);
    color: var(--yellow);
    font-size: clamp(2rem, 4.2vw, 3.4rem);
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -0.005em;
    white-space: normal;
    margin: 0 0 24px;
  }
  @media (min-width: 768px) {
    .hero__title--thankyou { white-space: normal; }
  }
  .hero__body--thankyou { color: #fff; }

/* ===================================================================
   WordPress-specific
   =================================================================== */

body.admin-bar .navbar { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .navbar { top: 46px; }
}

[id] { scroll-margin-top: 90px; }

.body-copy a { color: var(--yellow); text-decoration: underline; text-underline-offset: 3px; }
.body-copy a:hover { text-decoration: none; }
.body-copy ul, .body-copy ol { margin: 16px 0 16px 22px; }
.body-copy li + li { margin-top: 8px; }

.services .pill--outline, .firm .pill--outline { margin-top: 28px; }

.searcy-editor-note {
  max-width: 72rem; margin: 40px auto; padding: 24px 32px;
  border: 2px dashed rgba(245,206,62,0.5); border-radius: 6px;
  font-family: var(--sans); color: #fff; line-height: 1.7;
}

/* ===================================================================
   Fluent Forms overrides — match the campaign design system
   (!important guards against Fluent Forms' global styler specificity)
   =================================================================== */
.lead .fluentform .ff-el-input--label label {
  font-family: var(--sans) !important; color: #fff !important; font-size: 13px !important;
  font-weight: 600 !important; letter-spacing: 0.04em; margin-bottom: 7px;
}
.lead .fluentform .ff-el-input--label.ff-el-is-required.asterisk-right label:after,
.lead .fluentform .ff-el-input--label.ff-el-is-required.asterisk-left label:before {
  color: var(--yellow) !important;
}
.lead .fluentform .ff-el-form-control {
  font-family: var(--sans) !important; font-size: 1rem !important;
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  color: #fff !important; width: 100%; padding: 13px 16px !important;
  border-radius: 4px !important; transition: border-color 0.2s ease;
}
.lead .fluentform .ff-el-form-control::placeholder { color: rgba(255,255,255,0.6) !important; }
.lead .fluentform .ff-el-form-control:focus {
  outline: 2px solid var(--yellow) !important; outline-offset: 2px;
  border-color: rgba(255,255,255,0.2) !important; box-shadow: none !important;
}
.lead .fluentform select.ff-el-form-control option { background: #161340; }

/* Submit: yellow pill with navy text, inverts to outline on hover (matches site buttons) */
.lead .fluentform .ff-btn-submit,
.lead .fluentform button[type="submit"],
.lead .fluentform .ff_btn_style {
  font-family: var(--sans) !important; font-weight: 700 !important; font-size: 15px !important;
  letter-spacing: 0.06em !important; text-transform: uppercase !important;
  background: var(--yellow) !important; background-color: var(--yellow) !important;
  color: var(--navy) !important;
  border: 2px solid var(--yellow) !important; border-radius: 9999px !important;
  padding: 14px 30px !important; width: 100% !important; cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease !important;
}
.lead .fluentform .ff-btn-submit:hover,
.lead .fluentform button[type="submit"]:hover,
.lead .fluentform .ff_btn_style:hover {
  background: transparent !important; background-color: transparent !important;
  color: var(--yellow) !important;
}
.lead .fluentform .ff-btn-submit:focus-visible,
.lead .fluentform button[type="submit"]:focus-visible {
  outline: 3px solid #fff !important; outline-offset: 3px;
}

.lead .fluentform .ff-message-success {
  font-family: var(--sans); color: #fff;
  border: 1px solid rgba(245,206,62,0.35);
  background: rgba(245,206,62,0.05); border-radius: 4px;
  padding: 24px; text-align: center;
}
.lead .fluentform .ff-el-is-error .ff-el-form-control { border-color: #ff6b6b !important; }
.lead .fluentform .error,
.lead .fluentform .ff-el-validation-error,
.lead .fluentform .ff-errors-in-stack { color: #ffb3b3 !important; font-family: var(--sans); }
