@charset "UTF-8";
/*
 * District Wellness -- Shared Landing Page Stylesheet
 * new-templates/css/lp-shared.css
 *
 * Brand Colors
 *   Blue:      #0c71c3  (primary action, accents, links)
 *   Dark Gray: #414042  (headlines, dark surfaces)
 *   Black:     #111111  (hero backgrounds, nav)
 *   White:     #ffffff  (backgrounds, text on dark)
 *
 * All classes are prefixed dw-lp__ to prevent leaking into Divi.
 * This file is the ONLY CSS file needed -- all pages share it.
 * To restyle a section for one page, add a body class modifier:
 *   body.dw-lp--sciatica .dw-lp__hero { background: #06234a; }
 *
 * TABLE OF CONTENTS
 * ---------------------------------------------------------
 *  1.  Tokens & Reset
 *  2.  Divi Suppression
 *  3.  Typography Helpers
 *  4.  Buttons
 *  5.  Nav
 *  6.  Offer Banner
 *  7.  Hero
 *  8.  Proof Bar
 *  9.  Pain Hook
 * 10.  Content Sections (SEO blocks)
 * 11.  How It Works
 * 12.  Trust Badges
 * 13.  Testimonials
 * 14.  Big Phone Section
 * 15.  Lead Capture
 * 16.  Footer
 * 17.  Sticky Footer
 * 18.  Booking Modal + Calendar
 * 19.  Responsive
 * ---------------------------------------------------------
 */

/* =======================================================
   1. TOKENS & RESET
====================================================== */
:root {
  /* Brand */
  --dw-blue:        #0c71c3;
  --dw-blue-dark:   #095da3;
  --dw-blue-light:  #d6eaf8;
  --dw-gray:        #414042;
  --dw-gray-mid:    #6b6b6b;
  --dw-gray-light:  #f4f5f6;
  --dw-black:       #111111;
  --dw-white:       #ffffff;
  --dw-border:      #e0e3e7;

  /* Semantic aliases used throughout */
  --dw-accent:      var(--dw-blue);
  --dw-accent-dark: var(--dw-blue-dark);
  --dw-surface:     var(--dw-gray-light);
  --dw-text:        var(--dw-gray);
  --dw-muted:       var(--dw-gray-mid);

  /* Layout */
  --dw-section-pad: 88px 24px;
  --dw-max-w:       1550px;
  --dw-radius-card: 16px;
  --dw-radius-btn:  100px;
  --dw-radius-input:10px;
}

body.dw-lp *,
body.dw-lp *::before,
body.dw-lp *::after {
  box-sizing: border-box;
}

body.dw-lp {
  background:             var(--dw-white) !important;
  color:                  var(--dw-text)  !important;
  font-family:            'DM Sans', sans-serif !important;
  font-size:              17px;
  line-height:            1.65;
  -webkit-font-smoothing: antialiased;
  padding:                0 !important;
  margin:                 0 !important;
}

body.dw-lp h1,
body.dw-lp h2,
body.dw-lp h3,
body.dw-lp h4 {
  font-family:    'Fraunces', serif;
  line-height:    1.15;
  letter-spacing: -0.02em;
}

body.dw-lp a {
  color:           var(--dw-accent);
  text-decoration: none;
}
body.dw-lp a:hover {
  text-decoration: underline;
}

/* =======================================================
   2. DIVI SUPPRESSION
   Hides every piece of Divi chrome on landing pages
====================================================== */
body.dw-lp .et_pb_fullwidth_header,
body.dw-lp .et_fixed_nav,
body.dw-lp #wpadminbar {
  display: none !important;
}

/* Reset Divi page containers so LP content renders full-width */
body.dw-lp #page-container,
body.dw-lp #et-main-area {
  display:   block !important;
  max-width: none  !important;
  margin:    0     !important;
  padding:   0     !important;
  width:     100%  !important;
  float:     none  !important;
}

/* =======================================================
   3. TYPOGRAPHY HELPERS
====================================================== */
.dw-lp__wrap {
  max-width: var(--dw-max-w);
  margin:    0 auto;
  padding:   0 24px;
}

.dw-lp__label {
  display:        block;
  font-size:      15px;
  font-weight:    700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color:          var(--dw-accent);
  margin-bottom:  12px;
}
.dw-lp__label--center { text-align: center; }
.dw-lp__label--light  { color: rgba(255,255,255,0.5); }

.dw-lp__h2 {
  font-size:     clamp(26px, 3.5vw, 40px);
  color:         var(--dw-gray);
  margin-bottom: 48px;
}
.dw-lp__h2--center { text-align: center; }
.dw-lp__h2--white  { color: var(--dw-white); }

.dw-lp__em { font-style: italic; color: var(--dw-accent); }

.dw-lp__pull-quote {
  border-left:   4px solid var(--dw-accent);
  padding:       14px 22px;
  background:    rgba(12,113,195,0.06);
  border-radius: 0 12px 12px 0;
  margin:        24px 0;
}
.dw-lp__pull-quote p {
  font-size:   15px;
  color:       var(--dw-text);
  font-style:  italic;
  line-height: 1.75;
  margin:      0;
}

/* =======================================================
   4. BUTTONS
====================================================== */
.dw-btn {
  display:         inline-block;
  font-family:     'DM Sans', sans-serif;
  font-weight:     700;
  font-size:       15px;
  line-height:     1;
  border:          none;
  border-radius:   var(--dw-radius-btn);
  cursor:          pointer;
  text-decoration: none;
  transition:      all 0.2s;
}
.dw-btn:hover { text-decoration: none; }

/* Primary -- blue */
.dw-btn--primary {
  background: var(--dw-accent);
  color:      var(--dw-white) !important;
  padding:    15px 30px !important;
}
.dw-btn--primary:hover {
  background:  var(--dw-accent-dark);
  transform:   translateY(-1px);
  box-shadow:  0 8px 24px rgba(12,113,195,0.32);
  color:       var(--dw-white);
}

/* Dark -- gray */
.dw-btn--dark {
  background: var(--dw-gray);
  color:      var(--dw-white) !important;
  padding:    15px 32px;
}
.dw-btn--dark:hover {
  background: #333133;
  transform:  translateY(-1px);
  color:      var(--dw-white);
}

/* Ghost -- for dark backgrounds */
.dw-btn--ghost {
  background:   transparent;
  color:        rgba(255,255,255,0.75) !important;
  border:       1.5px solid rgba(255,255,255,0.2);
  padding:      15px 24px;
  display:      inline-flex;
  align-items:  center;
  gap:          9px;
}
.dw-btn--ghost:hover {
  border-color: rgba(255,255,255,0.5);
  color:        var(--dw-white);
}

/* Large variant */
.dw-btn--lg {
  font-size: 16px;
  padding:   16px 38px;
}

/* Small variant */
.dw-btn--sm {
  font-size: 13px;
  padding:   8px 20px;
}

/* White-fill for colored backgrounds */
.dw-btn--white {
  background: var(--dw-white);
  color:      var(--dw-accent);
  padding:    15px 30px;
}
.dw-btn--white:hover {
  background: #edf5fd;
  color:      var(--dw-accent);
}

/* =======================================================
   5. NAV
====================================================== */
.dw-lp__nav {
  position:        fixed;
  top: 0; left: 0; right: 0;
  z-index:         200;
  background:      rgba(17,17,17,0.97);
  backdrop-filter: blur(14px);
  border-bottom:   1px solid rgba(255,255,255,0.07);
  padding:         14px 28px;
  display:         flex;
  justify-content: space-between;
  align-items:     center;
}

.dw-lp__nav-logo {
  font-family:    'Fraunces', serif;
  font-size:      19px;
  font-weight:    900;
  color:          var(--dw-white);
  letter-spacing: -0.03em;
  text-decoration: none;
}
.dw-lp__nav-logo:hover { text-decoration: none; color: var(--dw-white); }

.dw-lp__nav-right { display: flex; align-items: center; gap: 20px; }

.dw-lp__nav-phone {
  display:     flex;
  align-items: center;
  gap:         9px;
  color:       rgba(255,255,255,0.65);
  font-size:   14px;
  font-weight: 600;
  text-decoration: none;
  transition:  color 0.2s;
}
.dw-lp__nav-phone:hover { color: var(--dw-white); text-decoration: none; }

.dw-lp__nav-dot {
  width:         8px;
  height:        8px;
  border-radius: 50%;
  background:    var(--dw-accent);
  display:       inline-block;
  flex-shrink:   0;
  animation:     dw-blink 2.5s infinite;
}
@keyframes dw-blink { 0%,100%{opacity:1} 50%{opacity:.3} }

/* =======================================================
   6. OFFER BANNER
====================================================== */
.dw-lp__offer-banner {
  background: var(--dw-accent);
  padding:    15px 24px;
}
.dw-lp__offer-inner {
  max-width:       var(--dw-max-w);
  margin:          0 auto;
  display:         flex;
  justify-content: center;
  align-items:     center;
  gap:             18px;
  flex-wrap:       wrap;
}
.dw-lp__offer-text {
  color:       var(--dw-white);
  font-weight: 700;
  font-size:   15px;
  display:     flex;
  align-items: center;
  gap:         9px;
}
.dw-lp__offer-text span { opacity: 0.78; font-weight: 400; }

/* =======================================================
   7. HERO
====================================================== */
.dw-lp__hero {
  min-height:  80vh;
  display:     flex;
  align-items: center;
  padding-top: 72px;
  background:  var(--dw-black);
  position:    relative;
  overflow:    hidden;
}

.dw-lp__hero-glow {
  position:        absolute;
  inset:           0;
  pointer-events:  none;
  background:
    radial-gradient(ellipse at 68% 40%, rgba(12,113,195,0.35) 0%, transparent 58%),
    radial-gradient(ellipse at 15% 85%, rgba(12,113,195,0.18) 0%, transparent 50%);
}

.dw-lp__hero-inner {
  display:               grid;
  grid-template-columns: 1fr 420px;
  gap:                   60px;
  align-items:           center;
  max-width:             var(--dw-max-w);
  margin:                0 auto;
  padding:               80px 28px;
  position:              relative;
  z-index:               1;
}

/* Service tag pill */
.dw-lp__hero-tag {
  display:        inline-flex;
  align-items:    center;
  gap:            9px;
  background:     rgba(12,113,195,0.14);
  border:         1px solid rgba(12,113,195,0.3);
  color:          #6ab4f5;
  padding:        6px 16px;
  border-radius:  var(--dw-radius-btn);
  font-size:      12px;
  font-weight:    700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom:  22px;
}
.dw-lp__hero-tag-dot {
  width:         6px;
  height:        6px;
  border-radius: 50%;
  background:    var(--dw-accent);
  flex-shrink:   0;
  animation:     dw-blink 2.5s infinite;
}

.dw-lp__hero-inner h1 {
  font-size:     clamp(34px, 4.8vw, 58px);
  color:         var(--dw-white);
  margin-bottom: 16px;
  font-weight:   900;
	width: 95%;
}
.dw-lp__hero-inner h1 em { font-style: italic; color: #6ab4f5; }

.dw-lp__hero-desc {
  font-size:     16px;
  color:         rgba(255,255,255,0.5);
  line-height:   1.8;
  max-width:     650px;
}
.dw-lp__hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.dw-lp__hero-micro   { font-size: 12px; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 6px; }

/* Hero form card */
.dw-lp__form-card {
  background:    var(--dw-white);
  border-radius: 22px;
  padding:       34px 30px;
  box-shadow:    0 28px 72px rgba(0,0,0,.4);
  position:      relative;
}
.dw-lp__form-badge {
  position:       absolute;
  top:            -15px;
  left:           50%;
  transform:      translateX(-50%);
  background:     var(--dw-accent);
  color:          var(--dw-white);
  font-size:      11px;
  font-weight:    700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding:        5px 18px;
  border-radius:  var(--dw-radius-btn);
  white-space:    nowrap;
}
.dw-lp__form-title {
  font-family:   'Fraunces', serif;
  font-size:     21px;
  color:         var(--dw-gray);
  margin:        10px 0 6px;
}
.dw-lp__form-sub {
  font-size:     13px;
  color:         var(--dw-muted);
  margin-bottom: 18px;
  line-height:   1.6;
}
.dw-lp__form-checks { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.dw-lp__form-check  { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--dw-text); font-weight: 500; }
.dw-lp__form-check::before { content: '\2713 '; color: var(--dw-accent); font-weight: 800; flex-shrink: 0; }

.dw-lp__field { margin-bottom: 11px; }
.dw-lp__field label { display: block; font-size: 11px; font-weight: 700; color: var(--dw-gray); margin-bottom: 4px; letter-spacing: 0.05em; text-transform: uppercase; }
.dw-lp__field input {
  width:        100%;
  padding:      12px 16px;
  border-radius: var(--dw-radius-input);
  border:       1.5px solid var(--dw-border);
  background:   var(--dw-surface);
  font-family:  'DM Sans', sans-serif;
  font-size:    15px;
  color:        var(--dw-text);
  outline:      none;
  transition:   border-color 0.2s;
}
.dw-lp__field input:focus { border-color: var(--dw-accent); background: var(--dw-white); }
.dw-lp__form-micro { text-align: center; font-size: 11px; color: var(--dw-muted); margin-top: 10px; }

/* =======================================================
   8. PROOF BAR
====================================================== */
.dw-lp__proof-bar {
  background:    var(--dw-surface);
  border-bottom: 1px solid var(--dw-border);
  padding:       28px 24px;
}
.dw-lp__proof-inner {
  max-width:       var(--dw-max-w);
  margin:          0 auto;
  display:         flex;
  justify-content: center;
  gap:             52px;
  flex-wrap:       wrap;
}
.dw-lp__proof-stat { text-align: center; }
.dw-lp__proof-stat strong {
  display:       block;
  font-family:   'Fraunces', serif;
  font-size:     28px;
  font-weight:   900;
  color:         var(--dw-gray);
  line-height:   1;
  margin-bottom: 4px;
}
.dw-lp__proof-stat span { font-size: 13px; color: var(--dw-muted); font-weight: 500; }

/* =======================================================
   9. PAIN HOOK
====================================================== */
.dw-lp__pain {
  padding:    var(--dw-section-pad);
  text-align: center;
}
.dw-lp__pain h2 {
  font-size:    clamp(28px, 4vw, 46px);
  color:        var(--dw-gray);
  margin-bottom: 16px;
  max-width:    680px;
  margin-left:  auto;
  margin-right: auto;
}
.dw-lp__pain-desc { max-width: 800px; margin: 0 auto 28px; color: var(--dw-muted); font-size: 17px; line-height: 1.8; }
.dw-lp__chip-list { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; padding: 0 20%; }
.dw-lp__chip {
  background:    var(--dw-white);
  border:        1.5px solid var(--dw-border);
  padding:       9px 18px;
  border-radius: var(--dw-radius-btn);
  font-size:     14px;
  font-weight:   600;
  color:         var(--dw-gray);
  transition:    all 0.2s;
}
.dw-lp__chip:hover { border-color: var(--dw-accent); color: var(--dw-accent); }

/* =======================================================
   10. SEO CONTENT SECTIONS
====================================================== */
.dw-lp__content-section { padding: var(--dw-section-pad); }
.dw-lp__content-section:nth-child(odd)  { background: var(--dw-white); }
.dw-lp__content-section:nth-child(even) { background: var(--dw-surface); }

/* Two-column layout */
.dw-lp__duo {
  display:     grid;
  gap:         56px;
  align-items: center;
}
.dw-lp__duo--left  { grid-template-columns: 1fr 1fr; }
.dw-lp__duo--right { grid-template-columns: 1fr 1fr; }
.dw-lp__duo--right .dw-lp__duo-text  { order: 2; }
.dw-lp__duo--right .dw-lp__duo-media { order: 1; }

/* Single-column wide */
.dw-lp__single { max-width: 1000px; margin: 0 auto; }

.dw-lp__duo-text h2,
.dw-lp__single h2 {
  font-family:   'Fraunces', serif;
  font-size:     clamp(24px, 3vw, 36px);
  color:         var(--dw-gray);
  margin-bottom: 18px;
  font-weight:   700;
}
.dw-lp__duo-text p,
.dw-lp__single p {
  font-size:     16px;
  color:         var(--dw-muted);
  line-height:   1.85;
  margin-bottom: 16px;
}
.dw-lp__duo-text p:last-child,
.dw-lp__single p:last-child { margin-bottom: 0; }
.dw-lp__duo-text a,
.dw-lp__single a { color: var(--dw-accent); font-weight: 600; }

/* Video */
.dw-lp__video {
  border-radius: var(--dw-radius-card);
  overflow:      hidden;
  box-shadow:    0 12px 48px rgba(0,0,0,.12);
  position:      relative;
  padding-top:   56.25%;
  background:    #000;
}
.dw-lp__video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* Photo */
.dw-lp__photo {
  border-radius: var(--dw-radius-card);
  overflow:      hidden;
  box-shadow:    0 12px 48px rgba(0,0,0,.1);
}
.dw-lp__photo img { width: 100%; height: 400px; display: block; object-fit:cover;}

/* =======================================================
   11. HOW IT WORKS
====================================================== */
.dw-lp__howit {
  padding:    var(--dw-section-pad);
  background: var(--dw-gray);
}
.dw-lp__howit .dw-lp__label { color: rgba(255,255,255,0.45); }
.dw-lp__howit .dw-lp__h2   { color: var(--dw-white); }

.dw-lp__steps {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   32px;
  max-width:             860px;
  margin:                0 auto;
  position:              relative;
}
.dw-lp__steps::before {
  content:    '';
  position:   absolute;
  top:        30px;
  left:       18%;
  right:      18%;
  height:     1px;
  background: rgba(12,113,195,0.3);
}
.dw-lp__step { text-align: center; position: relative; z-index: 1; }
.dw-lp__step-num {
  width:         60px;
  height:        60px;
  border-radius: 50%;
  background:    var(--dw-accent);
  color:         var(--dw-white);
  font-family:   'Fraunces', serif;
  font-size:     26px;
  font-weight:   900;
  display:       flex;
  align-items:   center;
  justify-content: center;
  margin:        0 auto 18px;
  box-shadow:    0 6px 20px rgba(12,113,195,.35);
}
.dw-lp__step h3 { color: var(--dw-white); font-size: 18px; margin-bottom: 8px; font-family: 'Fraunces', serif; }
.dw-lp__step p  { color: rgba(255,255,255,.45); font-size: 14px; }

/* =======================================================
   12. TRUST BADGES
====================================================== */
.dw-lp__trust { padding: var(--dw-section-pad); background: var(--dw-white); }
.dw-lp__trust-grid {
  display:               grid;
  grid-template-columns: repeat(4, 1fr);
  gap:                   16px;
  max-width:             860px;
  margin:                0 auto;
}
.dw-lp__trust-card {
  text-align:    center;
  padding:       24px 16px;
  border:        1.5px solid var(--dw-border);
  border-radius: var(--dw-radius-card);
  background:    var(--dw-surface);
  transition:    border-color 0.2s, box-shadow 0.2s;
}
.dw-lp__trust-card:hover { border-color: var(--dw-accent); box-shadow: 0 4px 20px rgba(12,113,195,0.1); }
.dw-lp__trust-icon { font-size: 28px; margin-bottom: 10px; }
.dw-lp__trust-card strong { display: block; font-family: 'Fraunces', serif; font-size: 18px; color: var(--dw-gray); margin-bottom: 4px; }
.dw-lp__trust-card span { font-size: 12px; color: var(--dw-muted); }

.dw-lp__reviews { padding: var(--dw-section-pad); background: var(--dw-surface); }

.dw-lp__reviews-intro {
  text-align: center;
  color: var(--dw-muted);
  font-size: 16px;
  max-width: 560px;
  margin: -24px auto 36px;
  line-height: 1.8;
}

/* =======================================================
   14. BIG PHONE SECTION
====================================================== */
.dw-lp__phone-section {
  padding:   80px 24px;
  background: var(--dw-black);
  text-align: center;
  position:   relative;
  overflow:   hidden;
}
.dw-lp__phone-section::before {
  content:        '';
  position:       absolute;
  inset:          0;
  pointer-events: none;
  background:     radial-gradient(ellipse at 50% 0%, rgba(12,113,195,.2) 0%, transparent 65%);
}
.dw-lp__phone-inner { position: relative; z-index: 1; }
.dw-lp__phone-pre   { color: rgba(255,255,255,.45); font-size: 16px; margin-bottom: 10px; }

.dw-lp__phone-number {
  font-family:    'Fraunces', serif;
  font-size:      clamp(44px, 8vw, 96px);
  color:          var(--dw-white) !important;
  font-weight:    900;
  line-height:    1;
  letter-spacing: -0.03em;
  display:        block;
  text-decoration: none;
  transition:     color 0.2s;
  margin:         14px 0;
}
.dw-lp__phone-number:hover { color: #6ab4f5; text-decoration: none; }
.dw-lp__phone-sub { color: rgba(255,255,255,.4); font-size: 15px; margin-bottom: 36px; }

.dw-lp__phone-or {
  display:         flex;
  align-items:     center;
  gap:             16px;
  justify-content: center;
  max-width:       320px;
  margin:          0 auto 28px;
}
.dw-lp__phone-or::before,
.dw-lp__phone-or::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,.1); }
.dw-lp__phone-or span { font-size: 11px; color: rgba(255,255,255,.3); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

.dw-lp__phone-hours { display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; margin-top: 32px; }
.dw-lp__hour strong { display: block; color: rgba(255,255,255,.7); font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.dw-lp__hour span   { font-size: 12px; color: rgba(255,255,255,.35); }

/* =======================================================
   15. LEAD CAPTURE
====================================================== */
.dw-lp__leadcap { padding: var(--dw-section-pad); background: var(--dw-accent); }
.dw-lp__leadcap-inner { max-width: 750px; margin: 0 auto; text-align: center; }
.dw-lp__leadcap h2 { color: var(--dw-white); font-size: clamp(24px, 4vw, 38px); margin-bottom: 12px; }
.dw-lp__leadcap-desc { color: rgba(255,255,255,.75); font-size: 15px; margin-bottom: 24px; line-height: 1.75; }

.dw-lp__offer-includes { display: flex; justify-content: center; gap: 20px; margin-bottom: 26px; flex-wrap: wrap; }
.dw-lp__offer-item { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.9); font-size: 13px; font-weight: 600; }
.dw-lp__offer-item::before { content: '\2713 '; font-weight: 800; }

.dw-lp__lc-row { display: flex; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.dw-lp__lc-row input {
  flex:        1;
  min-width:   180px;
  padding:     14px 18px;
  border-radius: var(--dw-radius-input);
  border:      none;
  background:  rgba(255,255,255,0.18);
  color:       var(--dw-white);
  font-family: 'DM Sans', sans-serif;
  font-size:   15px;
  outline:     none;
  transition:  background .2s;
}
.dw-lp__lc-row input::placeholder { color: rgba(255,255,255,.55); }
.dw-lp__lc-row input:focus { background: rgba(255,255,255,.26); }

.dw-lp__lc-submit {
  width:       100%;
  padding:     16px;
  background:  var(--dw-gray);
  border:      none;
  border-radius: var(--dw-radius-input);
  color:       var(--dw-white) !important;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size:   16px;
  cursor:      pointer;
  transition:  all .2s;
  margin-top:  4px;
}
.dw-lp__lc-submit:hover { background: #333133; transform: translateY(-1px); }
.dw-lp__lc-micro { margin-top: 12px; font-size: 12px; color: rgba(255,255,255,.4); }

/* =======================================================
   16. FOOTER
====================================================== */
.dw-lp__footer {
  background:  var(--dw-gray);
  color:       rgba(255,255,255,.4);
  padding:     40px 24px 100px;
  text-align:  center;
  font-size:   13px;
  line-height: 2.1;
}
.dw-lp__footer a { color: rgba(255,255,255,.4); text-decoration: none; }
.dw-lp__footer a:hover { color: rgba(255,255,255,.75); }
.dw-lp__footer strong { color: rgba(255,255,255,.7); }

/* =======================================================
   17. BOOKING MODAL + CALENDAR
====================================================== */
.dw-lp__modal-overlay {
  display:         none;
  position:        fixed;
  inset:           0;
  z-index:         99999;
  background:      rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
  align-items:     center;
  justify-content: center;
  padding:         20px;
}
.dw-lp__modal-overlay.open { display: flex; }

.dw-lp__modal {
  background:    var(--dw-white);
  border-radius: 20px;
  width:         100%;
  max-width:     1000px;
  overflow:      hidden;
  box-shadow:    0 32px 80px rgba(0,0,0,.26);
  animation:     dw-modal-in .28s ease;
}
@keyframes dw-modal-in { from { opacity:0; transform: translateY(14px) scale(.97); } to { opacity:1; transform:none; } }

.dw-lp__modal-hdr {
  background:      var(--dw-gray);
  padding:         22px 28px;
  display:         flex;
  justify-content: space-between;
  align-items:     center;
}
.dw-lp__modal-hdr h3 { color: var(--dw-white); font-size: 25px; font-family: 'Fraunces', serif; padding:0 }
.dw-lp__modal-close { background: none; border: none; color: rgba(255,255,255,.38); font-size: 20px; cursor: pointer; padding: 4px; line-height: 1; transition: color .2s; }
.dw-lp__modal-close:hover { color: var(--dw-white); }

.dw-lp__modal-body { padding: 26px 28px; }
.dw-lp__modal-step-lbl { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--dw-accent); margin-bottom: 6px; }
.dw-lp__modal-title { font-size: 22px; color: var(--dw-gray); margin-bottom: 4px; font-family: 'Fraunces', serif; }
.dw-lp__modal-sub   { font-size: 14px; color: var(--dw-muted); margin-bottom: 22px; }

.dw-lp__modal-field { margin-bottom: 13px; }
.dw-lp__modal-field label { display: block; font-size: 12px; font-weight: 700; color: var(--dw-gray); margin-bottom: 5px; letter-spacing: .04em; }
.dw-lp__modal-field input { width: 100%; padding: 13px 16px; border-radius: var(--dw-radius-input); border: 1.5px solid var(--dw-border); background: var(--dw-surface); font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--dw-text); outline: none; transition: border-color .2s; }
.dw-lp__modal-field input:focus { border-color: var(--dw-accent); background: var(--dw-white); }

.dw-lp__modal-submit { width: 100%; padding: 14px; background: var(--dw-accent); border: none; border-radius: var(--dw-radius-input); color: var(--dw-white); font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 15px; cursor: pointer; transition: all .2s; margin-top: 4px; }
.dw-lp__modal-submit:hover { background: var(--dw-accent-dark); }
.dw-lp__modal-micro { text-align: center; font-size: 12px; color: var(--dw-muted); margin-top: 10px; }

/* Calendar */
.dw-lp__cal-step { display: none; }
.dw-lp__cal-hdr { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.dw-lp__cal-nav { background: var(--dw-surface); border: 1px solid var(--dw-border); padding: 6px 14px; border-radius: 8px; cursor: pointer; font-size: 16px; transition: background .2s; }
.dw-lp__cal-nav:hover { background: var(--dw-border); }
.dw-lp__cal-month { font-family: 'Fraunces', serif; font-size: 17px; color: var(--dw-gray); }
.dw-lp__cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; margin-bottom: 18px; }
.dw-lp__cal-day-name { text-align: center; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--dw-muted); padding: 6px 0; }
.dw-lp__cal-day { text-align: center; padding: 8px 4px; border-radius: 8px; font-size: 13px; font-weight: 500; cursor: pointer; border: 1.5px solid transparent; transition: all .15s; }
.dw-lp__cal-day.available { color: var(--dw-gray); font-weight: 600; }
.dw-lp__cal-day.available:hover { background: var(--dw-blue-light); }
.dw-lp__cal-day.selected  { background: var(--dw-accent)!important; color: var(--dw-white)!important; border-color: var(--dw-accent)!important; }
.dw-lp__cal-day.disabled  { color: #ccc; cursor: not-allowed; }
.dw-lp__cal-day.today     { border-color: var(--dw-accent); color: var(--dw-accent); font-weight: 700; }

.dw-lp__time-slots { display: none; }
.dw-lp__time-slots.visible { display: block; }
.dw-lp__time-lbl { font-size: 12px; font-weight: 700; color: var(--dw-gray); margin-bottom: 10px; letter-spacing: .06em; text-transform: uppercase; }
.dw-lp__slots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.dw-lp__slot { text-align: center; padding: 10px 6px; border-radius: 8px; border: 1.5px solid var(--dw-border); background: var(--dw-surface); font-size: 13px; font-weight: 600; cursor: pointer; transition: all .15s; color: var(--dw-gray); }
.dw-lp__slot:hover  { border-color: var(--dw-accent); color: var(--dw-accent); }
.dw-lp__slot.selected { background: var(--dw-accent); border-color: var(--dw-accent); color: var(--dw-white); }
.dw-lp__confirm-btn { display: none; width: 100%; padding: 14px; background: var(--dw-gray); border: none; border-radius: var(--dw-radius-input); color: var(--dw-white); font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 15px; cursor: pointer; margin-top: 14px; transition: background .2s; }
.dw-lp__confirm-btn:hover { background: #333133; }
.dw-lp__confirm-btn.visible { display: block; }

/* Confirmation step */
.dw-lp__confirm-step { display: none; text-align: center; padding: 8px 0; }
.dw-lp__confirm-icon { font-size: 48px; margin-bottom: 14px; }
.dw-lp__confirm-h    { font-family: 'Fraunces', serif; font-size: 22px; color: var(--dw-gray); margin-bottom: 8px; }
.dw-lp__confirm-sub  { font-size: 14px; color: var(--dw-muted); margin-bottom: 20px; }
.dw-lp__confirm-appt { background: var(--dw-surface); border-radius: 12px; padding: 16px 18px; text-align: left; margin-bottom: 14px; }
.dw-lp__confirm-row  { display: flex; justify-content: space-between; font-size: 14px; padding: 5px 0; border-bottom: 1px solid var(--dw-border); }
.dw-lp__confirm-row:last-child { border: none; }
.dw-lp__confirm-row span:first-child { color: var(--dw-muted); }
.dw-lp__confirm-row span:last-child  { font-weight: 700; color: var(--dw-gray); }
.dw-lp__confirm-note { font-size: 13px; color: var(--dw-muted); }

/* =======================================================
   19. RESPONSIVE
====================================================== */
@media (max-width: 860px) {
	.dw-lp__hero-inner h1{width:100%	}
  .dw-lp__hero-inner        { grid-template-columns: 1fr; gap: 40px; padding: 60px 20px; }
  .dw-lp__duo--left,
  .dw-lp__duo--right        { grid-template-columns: 1fr; }
  .dw-lp__duo--right .dw-lp__duo-text  { order: 1; }
  .dw-lp__duo--right .dw-lp__duo-media { order: 2; }
  .dw-lp__trust-grid        { grid-template-columns: repeat(2, 1fr); }
  .dw-lp__steps             { grid-template-columns: 1fr; gap: 24px; }
  .dw-lp__steps::before     { display: none; }
  .dw-lp__phone-number      { font-size: clamp(36px, 11vw, 60px); }
  .dw-lp__nav-right .dw-lp__nav-phone { display: none; }
	.dw-lp__chip-list{padding:0}
	.dw-lp__photo img{height:auto;}
}

@media (max-width: 540px) {
  :root { --dw-section-pad: 60px 16px; }
  .dw-lp__form-card  { padding: 28px 20px; }
  .dw-lp__trust-grid { grid-template-columns: 1fr 1fr; }
  .dw-lp__lc-row     { flex-direction: column; }
  .dw-lp__proof-inner{ gap: 28px; }
}

/* ── MODAL SHORTCODE BODY ────────────────────── */
.dw-lp__modal-shortcode {
  padding: 0;
}
.dw-lp__modal-shortcode form,
.dw-lp__modal-shortcode input,
.dw-lp__modal-shortcode select,
.dw-lp__modal-shortcode textarea {
  width: 100%;
  max-width: 100%;
}

/* ============================================================
   LP — Services Grid (used on lp-chiropractic-services.php)
   Append to new-templates/css/lp-shared.css
   ============================================================ */

.dw-lp__services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0 20px;
}

@media (max-width: 980px) {
  .dw-lp__services-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  .dw-lp__services-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

@media (max-width: 479px) {
  .dw-lp__services-grid { grid-template-columns: 1fr; }
}

.dw-lp__service-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: left;
  text-decoration: none !important;
  color: #2d2d2d !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  height: 100%;
  min-height: 200px;
}

.dw-lp__service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: #414042;
  color: #2d2d2d !important;
}

.dw-lp__service-card-icon {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 12px;
}

.dw-lp__service-card-title {
  font-size: 17px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  margin: 0 0 8px !important;
  padding: 0 !important;
  color: #2d2d2d !important;
}

.dw-lp__service-card-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin: 0 0 16px !important;
  padding: 0 !important;
  flex-grow: 1;
}

.dw-lp__service-card-link {
  font-size: 13px;
  font-weight: 600;
  color: #414042;
  margin-top: auto;
}
/* ============================================================
   LP — Services Grid (used on lp-chiropractic-services.php)
   Append to new-templates/css/lp-shared.css

   NOTE: Uses <span> elements internally (instead of <div>/<p>) so
   the markup stays valid when wrapped in a parent <p> tag by the
   template paragraph renderer. display:block on the spans forces
   them to stack vertically inside the card.
   ============================================================ */

.dw-lp__services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0 20px;
}

@media (max-width: 980px) {
  .dw-lp__services-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  .dw-lp__services-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

@media (max-width: 479px) {
  .dw-lp__services-grid { grid-template-columns: 1fr; }
}

.dw-lp__service-card {
  display: flex !important;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: left;
  text-decoration: none !important;
  color: #2d2d2d !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  height: 100%;
  min-height: 200px;
}

.dw-lp__service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: #414042;
  color: #2d2d2d !important;
}

.dw-lp__service-card-icon {
  display: block;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 12px;
}

.dw-lp__service-card-title {
  display: block;
  font-size: 17px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  margin: 0 0 8px !important;
  padding: 0 !important;
  color: #2d2d2d !important;
}

.dw-lp__service-card-desc {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin: 0 0 16px !important;
  padding: 0 !important;
  flex-grow: 1;
}

.dw-lp__service-card-link {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #414042;
  margin-top: auto;
}

/* ============================================================
   LP — Detailed Service Descriptions (SEO block)
   ============================================================ */

.dw-lp__service-details {
  margin: 40px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.dw-lp__service-details-item {
  display: block;
}

.dw-lp__service-details-h3 {
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  margin: 0 0 8px !important;
  padding: 0 !important;
  color: #2d2d2d !important;
}

.dw-lp__service-details-p {
  display: block;
  font-size: 15px !important;
  line-height: 1.65 !important;
  color: #4a4a4a;
  margin: 0 !important;
  padding: 0 !important;
}

.dw-lp__service-details-p a {
  color: #414042;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.dw-lp__service-details-p a:hover {
  opacity: 0.7;
}

.page-id-23 .dw-lp__pain{
	display:none;
}

@media (max-width: 767px) {
  .dw-lp__service-details { gap: 24px; }
  .dw-lp__service-details-h3 { font-size: 18px !important; }
  .dw-lp__service-details-p { font-size: 14px !important; }
}