/* Shared convert layer: hamburger (~960px), sticky call, intake form.
   Namespaced .lu-* so it can sit on top of per-page inline CSS. */

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1.5px solid var(--line, #D8D4CA);
  border-radius: 10px;
  background: var(--white, #fff);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy, #0A1F75);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.lu-desktop-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.lu-desktop-nav a {
  color: var(--navy, #0A1F75) !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 500;
}
.lu-desktop-nav a:hover { color: var(--red, #B22234) !important; }
.lu-desktop-nav a.nav-cta {
  background: var(--red, #B22234);
  color: #fff !important;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}
.lu-desktop-nav a.nav-cta:hover {
  background: var(--red-dark, #8F1B2A);
  color: #fff !important;
}

.lu-mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 88vw);
  background: var(--cream, #F7F5F0);
  z-index: 120;
  padding: 88px 28px 40px;
  box-shadow: -16px 0 40px rgba(10, 31, 117, 0.18);
  overflow-y: auto;
  flex-direction: column;
  gap: 4px;
}
.lu-mobile-nav.is-open { display: flex; }
.lu-mobile-nav a {
  color: var(--navy, #0A1F75) !important;
  text-decoration: none !important;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 4px;
  border-bottom: 1px solid var(--line, #D8D4CA);
}
.lu-mobile-nav a:hover { color: var(--red, #B22234) !important; }
.lu-mobile-nav a.nav-cta {
  background: var(--red, #B22234);
  color: #fff !important;
  border: 0;
  border-radius: 999px;
  text-align: center;
  margin-top: 16px;
  padding: 14px 20px;
}
.lu-mobile-nav a.lu-nav-call {
  color: var(--red, #B22234) !important;
  border-bottom: 0;
  margin-top: 8px;
}
.lu-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 25, 0.45);
  z-index: 110;
}
.lu-nav-backdrop.is-open { display: block; }
.lu-mobile-nav[hidden],
.lu-nav-backdrop[hidden] { display: none !important; }
body.lu-nav-open { overflow: hidden; }

.lu-sticky-call {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: var(--white, #fff);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.12);
  padding: 10px 12px;
  gap: 8px;
}
.lu-sticky-call a {
  flex: 1;
  text-align: center;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 13px;
  padding: 12px 8px;
  border-radius: 10px;
  line-height: 1.2;
}
.lu-sticky-call a.call {
  background: var(--red, #B22234);
  color: #fff !important;
}
.lu-sticky-call a.text {
  background: var(--cream, #F7F5F0);
  color: var(--navy, #0A1F75) !important;
  border: 1.5px solid var(--navy, #0A1F75);
}
.lu-sticky-call a.review {
  background: var(--navy, #0A1F75);
  color: #fff !important;
}
.lu-mobile-nav a.lu-nav-text {
  color: var(--navy, #0A1F75) !important;
  border-bottom: 0;
}

.lu-intake-section {
  background: var(--navy, #0A1F75);
  color: var(--cream, #F7F5F0);
  padding: 64px 24px;
}
.lu-intake-section .lu-intake-wrap {
  max-width: 560px;
  margin: 0 auto;
}
.lu-intake-section h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  text-align: center;
}
.lu-intake-section .lu-intake-lede {
  text-align: center;
  color: rgba(247, 245, 240, 0.82);
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.55;
}
.lu-intake-card {
  background: #fff;
  color: var(--ink, #0F1419);
  border-radius: 20px;
  padding: 28px 24px 22px;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.35);
  position: relative;
}
.lu-intake-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, #0A1F75 0 33.333%, #fff 33.333% 66.666%, #B22234 66.666%);
  border-radius: 20px 20px 0 0;
}
.lu-intake input,
.lu-intake select,
.lu-intake textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line, #D8D4CA);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  margin-bottom: 10px;
  color: var(--ink, #0F1419);
  background: #fff;
  box-sizing: border-box;
}
.lu-intake input:focus,
.lu-intake select:focus,
.lu-intake textarea:focus {
  outline: none;
  border-color: var(--red, #B22234);
}
.lu-intake .sms-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  margin: 6px 0 8px;
  background: var(--cream, #F7F5F0);
  border: 1.5px solid var(--line, #D8D4CA);
  border-radius: 10px;
  cursor: pointer;
}
.lu-intake .sms-consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--red, #B22234);
}
.lu-intake .sms-consent-text {
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--slate, #4A5260);
}
.lu-intake .sms-consent-text a {
  color: var(--red, #B22234);
  font-weight: 600;
}
.lu-intake button[type="submit"] {
  width: 100%;
  background: var(--red, #B22234);
  color: #fff !important;
  padding: 16px;
  border: none;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  border-radius: 12px;
  cursor: pointer;
}
.lu-intake button[type="submit"]:hover { background: #8F1B2A; }
.lu-intake .fine {
  font-size: 12px;
  color: var(--slate, #4A5260);
  text-align: center;
  margin-top: 12px;
}
.lu-intake-call {
  display: block;
  text-align: center;
  margin-top: 18px;
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
}

@media (max-width: 960px) {
  .nav,
  .lu-desktop-nav { display: none !important; }
  .nav-toggle { display: flex; }
  .lu-sticky-call { display: flex; }
  body { padding-bottom: 76px; }
  header.header { position: sticky; top: 0; z-index: 50; }
}
