.elementor-3092 .elementor-element.elementor-element-be236a2{--display:flex;}/* Start custom CSS for html, class: .elementor-element-f084995 */:root{
    --navy: #961E20;         /* exact brand red, pulled from CGT logo */
    --navy-deep: #7A1719;    /* darker shade of the brand red */
    --gold: #22938F;         /* exact brand teal, pulled from CGT logo */
    --gold-light: #8CC9CA;   /* lighter teal tint from the logo, for text on red backgrounds */
    --cream: #FAF8F4;
    --white: #FFFFFF;
    --ink: #23262B;
    --ink-soft: #55595F;
    --line: #E4DFD4;
    --radius: 6px;
  }
  *{ box-sizing: border-box; }
  html{ scroll-behavior: smooth; }
  body{
    margin:0;
    background: var(--cream);
    color: var(--ink);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.65;
    font-size: clamp(15.5px, 0.4vw + 15px, 17px);
  }
  h1,h2,h3,h4{
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--navy);
    margin: 0 0 .5em;
    line-height: 1.25;
  }
  p{ margin: 0 0 1.2em; }
  .wrap{ width: 100%; max-width: 900px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 40px); box-sizing: border-box; }
  .wrap-narrow{ width: 100%; max-width: 740px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 40px); box-sizing: border-box; }

  section{ padding: 56px 0; }
  section.tight{ padding: 40px 0; }

  /* ---------- HERO ---------- */
  .hero{
    background: var(--navy);
    color: var(--white);
    padding: 64px 0 56px;
    text-align: center;
  }
  .hero .site-logo{
    width: 100%;
    max-width: 740px; /* matches .wrap-narrow, so it lines up with the body text column below */
    margin: 0 auto 30px;
    display: block;
  }
  .hero h1{
    color: var(--white);
    font-size: clamp(26px, 3vw + 14px, 38px);
    max-width: 640px;
    margin: 0 auto 20px;
  }
  .hero .sub{
    max-width: 560px;
    margin: 0 auto 32px;
    color: rgba(255,255,255,0.9);
    font-size: 18px;
  }

  /* ---------- CTA BUTTON ---------- */
  .btn{
    display:inline-block;
    background: var(--gold);
    color: var(--ink) !important;
    font-weight: 700;
    text-decoration:none;
    padding: 16px 36px;
    border-radius: 999px;
    font-size: 16px;
    letter-spacing: .2px;
    box-shadow: 0 6px 18px rgba(34,147,143,0.35);
    transition: transform .15s ease, box-shadow .15s ease;
  }
  .btn:hover{ transform: translateY(-2px); box-shadow: 0 10px 24px rgba(34,147,143,0.45); }
  .cta-wrap{ text-align:center; margin: 8px 0 6px; }
  .cta-note{
    font-size: 13px;
    color: var(--ink-soft);
    max-width: 380px;
    margin: 24px auto 0;
  }
  .hero .cta-note{ color: rgba(255,255,255,0.75); }
  .final-cta .cta-note{ color: rgba(255,255,255,0.75); }

  /* ---------- TESTIMONIAL ---------- */
  .testimonial{
    background: var(--white);
    border: 1px solid var(--line);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius);
    padding: 26px 30px;
    margin: 40px 0;
  }
  .testimonial p{
    font-style: italic;
    font-size: 17px;
    color: var(--ink);
    margin-bottom: 10px;
  }
  .testimonial .attr{
    font-style: normal;
    font-weight: 700;
    color: var(--navy);
    font-size: 14px;
  }
  .testimonial .attr span{
    font-weight: 400;
    color: var(--ink-soft);
  }

  /* ---------- VIDEO EMBED (responsive 16:9) ---------- */
  .video-embed-wrap{
    margin: 6px 0 40px;
  }
  .video-embed-caption{
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
  }
  .video-embed{
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    background: var(--navy-deep);
  }
  .video-embed iframe,
  .video-embed video{
    position: absolute;
    top:0; left:0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }
  .video-embed-placeholder{
    position: absolute;
    top:0; left:0;
    width:100%; height:100%;
    display:flex; align-items:center; justify-content:center;
    flex-direction: column;
    gap: 10px;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    text-align:center;
    padding: 20px;
  }
  .video-embed-placeholder .play-icon{
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--gold);
    display:flex; align-items:center; justify-content:center;
    color: var(--white);
    font-size: 22px;
  }

  /* ---------- SECTION HEADERS ---------- */
  .eyebrow{
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    text-align:center;
  }
  .section-title{
    font-size: clamp(22px, 1.6vw + 14px, 28px);
    text-align:center;
    max-width: 600px;
    margin: 0 auto 24px;
  }

  /* ---------- BAD OPTIONS LIST ---------- */
  .bad-list{
    list-style:none; padding:0; margin: 24px 0;
    display:grid; gap:10px;
  }
  .bad-list li{
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px 18px;
    display:flex; gap:10px; align-items:flex-start;
  }
  .bad-list li::before{ content:"✗"; color: var(--navy); font-weight:900; }

  .question-callout{
    background: var(--navy-deep);
    color: var(--white);
    border-radius: var(--radius);
    padding: 30px 32px;
    text-align:center;
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 19px;
    margin: 28px 0;
  }

  /* ---------- HOW IT WORKS STEPS ---------- */
  .steps{ counter-reset: step; margin: 28px 0; padding:0; list-style:none; }
  .steps li{
    counter-increment: step;
    position: relative;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px 24px 20px 64px;
    margin-bottom: 14px;
  }
  .steps li::before{
    content: counter(step);
    position:absolute; left:18px; top:18px;
    width:32px; height:32px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display:flex; align-items:center; justify-content:center;
    font-weight:700; font-family: 'Georgia', serif;
  }
  .steps li h4{ margin-bottom: 4px; font-size: 17px; }
  .steps li p{ margin-bottom:0; color: var(--ink-soft); font-size: 15.5px; }

  /* ---------- PLAYBOOK ---------- */
  .playbook-panel{
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius);
    padding: 44px 36px;
    margin: 8px 0 40px;
  }
  .playbook-panel .eyebrow{ color: var(--gold-light); }
  .playbook-panel h2{ color: var(--white); text-align:center; }
  .playbook-panel p{ color: rgba(255,255,255,0.9); }
  .checklist{ list-style:none; padding:0; margin: 22px 0; display:grid; gap: 10px; }
  .checklist li{
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: var(--radius);
    padding: 12px 16px;
    font-weight:600;
  }

  /* ---------- STORY FROM THE FIELD ---------- */
  .field-story{
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px 34px;
    margin: 8px 0 40px;
  }
  .field-story .kicker{
    text-transform:uppercase; letter-spacing:1.5px; font-size:12px;
    font-weight:700; color: var(--navy); margin-bottom:8px;
  }
  .field-story blockquote{
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 19px;
    color: var(--navy) !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    border-left: 3px solid var(--gold) !important;
    border-radius: 0 !important;
    padding: 4px 0 4px 18px !important;
    margin: 20px 0 !important;
    quotes: none !important;
  }
  .field-story blockquote::before,
  .field-story blockquote::after{
    content: none !important;
  }

  /* ---------- INCLUDED LIST / PRICING CARD ---------- */
  .included-list{
    list-style:none; padding:0; margin: 20px 0 28px;
    display:grid; gap:10px;
  }
  .included-list li{
    display:flex; gap:10px; align-items:flex-start;
    font-weight:600; color: var(--navy);
  }
  .included-list li::before{ content:"✓"; color: var(--gold); font-weight:900; font-size:17px; }
  .not-included{
    color: var(--ink-soft);
    font-size: 14.5px;
    border-top: 1px solid var(--line);
    padding-top: 14px;
    margin-top: 8px;
  }

  .pricing-card{
    background: var(--white);
    border: 2px solid var(--navy);
    border-radius: var(--radius);
    padding: 40px 36px;
    text-align:center;
    max-width: 460px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  }
  .pricing-card .name{
    font-weight:700; color: var(--ink-soft);
    text-transform:uppercase; letter-spacing:1px; font-size:13px;
    margin-bottom:6px;
  }
  .pricing-card .price{
    font-family:'Georgia',serif;
    font-size: clamp(36px, 4vw + 14px, 52px);
    color: var(--navy);
    margin-bottom: 18px;
  }
  .pricing-card .included-list{ text-align:left; }
  .softlink{
    font-size: 14.5px;
    color: var(--ink-soft);
    max-width: 480px;
    margin: 20px auto 0;
    text-align:center;
  }
  .softlink a{ color: var(--navy); font-weight:600; }

  /* ---------- ADD-ON ---------- */
  .addon-card{
    background: var(--cream);
    border: 1px dashed var(--navy);
    border-radius: var(--radius);
    padding: 28px 30px;
    margin: 8px 0 40px;
  }
  .addon-card .price-tag-wrap{
    text-align: center;
    margin-top: 8px;
  }
  .addon-card .price-tag{
    display:inline-block;
    background: var(--navy);
    color: var(--white) !important;
    font-weight:700;
    border-radius: 999px;
    padding: 10px 24px;
    font-size: 15px;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  }
  .addon-card .price-tag:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  }

  /* ---------- NOT FOR YOU ---------- */
  .not-for-you{
    background: var(--white);
    border-left: 4px solid var(--navy);
    border-radius: var(--radius);
    padding: 22px 26px;
    margin: 8px 0 40px;
    font-size: 15.5px;
    color: var(--ink-soft);
  }

  /* ---------- FAQ ---------- */
  .faq details{
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px 22px;
    margin-bottom: 12px;
  }
  .faq summary{
    cursor:pointer;
    font-weight:700;
    color: var(--navy);
    font-size: 16.5px;
    list-style:none;
    display:flex; justify-content:space-between; align-items:center;
  }
  .faq summary::-webkit-details-marker{ display:none; }
  .faq summary::after{
    content:"+";
    font-size: 22px;
    color: var(--gold);
    font-weight:700;
    margin-left: 12px;
  }
  .faq details[open] summary::after{ content:"–"; }
  .faq details p{
    margin-top: 14px;
    color: var(--ink-soft);
    font-size: 15.5px;
  }
  .faq details p a{ color: var(--navy); font-weight:600; }

  /* ---------- FINAL CTA ---------- */
  .final-cta{
    background: var(--navy);
    color: var(--white);
    text-align:center;
    padding: 60px 0 56px;
  }
  .final-cta h2{ color: var(--white); font-size: clamp(24px, 2vw + 14px, 32px); max-width: 560px; margin: 0 auto 14px; }
  .final-cta p{ color: rgba(255,255,255,0.9); max-width: 520px; margin: 0 auto 28px; }

  footer{
    text-align:center;
    padding: 26px 0;
    color: var(--ink-soft);
    font-size: 13px;
  }
  footer a{ color: var(--ink-soft); }

  .placeholder-img{
    width:100%;
    background: repeating-linear-gradient(45deg, #eee, #eee 10px, #e2e2e2 10px, #e2e2e2 20px);
    border: 1px dashed #b9b9b9;
    color:#888; display:flex; align-items:center; justify-content:center;
    font-size: 13px; text-align:center; border-radius: var(--radius);
    height: 220px; margin-bottom: 24px;
  }

  /* ---------- PHOTO BREAK (scattered event/portrait photos) ---------- */
  .photo-break{
    margin: 32px 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.10);
  }
  .photo-break img{
    width: 100%;
    display:block;
    object-fit: cover;
    max-height: 480px;
  }
  .photo-break.caption{ margin-bottom: 8px; }
  .photo-break .cap-text{
    font-size: 13px;
    color: var(--ink-soft);
    text-align:center;
    margin: 8px 0 32px;
    font-style: italic;
  }

  /* ---------- PHOTO INTRO (photo + one paragraph, vertically centered — used for the first photo only) ---------- */
  .photo-intro{
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 20px 0 28px;
  }
  .photo-intro.reverse{ flex-direction: row-reverse; }
  .photo-intro .side-photo{
    flex: 0 0 auto;
    width: 44%;
    max-width: 300px;
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(0,0,0,0.12);
  }
  .photo-intro .side-photo img{
    width: 100%;
    display: block;
    object-fit: cover;
  }
  .photo-intro p{
    flex: 1;
    margin: 0;
  }

  @media (max-width: 640px){
    .photo-intro,
    .photo-intro.reverse{
      flex-direction: column;
      align-items: stretch;
      gap: 16px;
    }
    .photo-intro .side-photo{
      width: 100%;
      max-width: none;
    }
  }

  /* ---------- SIDE PHOTO (floats beside text, per DVN's placement notes) ---------- */
  .side-photo{
    width: 44%;
    max-width: 300px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(0,0,0,0.12);
    margin: 6px 0 20px;
  }
  .side-photo img{
    width: 100%;
    display:block;
    object-fit: cover;
  }
  .side-photo.left{ float:left; margin-right: 22px; }
  .side-photo.right{ float:right; margin-left: 22px; }
  .clearfix::after{ content:""; display:table; clear:both; }

  @media (max-width: 640px){
    .side-photo,
    .side-photo.left,
    .side-photo.right{
      float:none !important;
      width: 100% !important;
      max-width: none !important;
      margin: 0 0 20px !important;
    }
  }

  .headshot-inline{
    display:flex;
    align-items:center;
    gap: 20px;
    margin: 22px 0;
  }
  .headshot-inline img{
    width: 110px; height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    flex-shrink: 0;
  }
  .headshot-inline .cap{
    font-size: 14px;
    color: var(--ink-soft);
    font-weight: 600;
  }
  .headshot-inline .cap span{
    display:block;
    font-weight: 400;
    color: var(--ink-soft);
    font-size: 13px;
    margin-top: 2px;
  }

  @media (max-width: 640px){
    .hero h1{ font-size: 26px; }
    .checklist{ grid-template-columns: 1fr; }
    section{ padding: 40px 0; }
    .field-story, .playbook-panel, .pricing-card{ padding: 26px 22px; }
  }/* End custom CSS */
/* Start custom CSS */:root{
    --navy: #961E20;         /* exact brand red, pulled from CGT logo */
    --navy-deep: #7A1719;    /* darker shade of the brand red */
    --gold: #22938F;         /* exact brand teal, pulled from CGT logo */
    --gold-light: #8CC9CA;   /* lighter teal tint from the logo, for text on red backgrounds */
    --cream: #FAF8F4;
    --white: #FFFFFF;
    --ink: #23262B;
    --ink-soft: #55595F;
    --line: #E4DFD4;
    --radius: 6px;
  }
  *{ box-sizing: border-box; }
  html{ scroll-behavior: smooth; }
  body{
    margin:0;
    background: var(--cream);
    color: var(--ink);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.65;
    font-size: clamp(15.5px, 0.4vw + 15px, 17px);
  }
  h1,h2,h3,h4{
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--navy);
    margin: 0 0 .5em;
    line-height: 1.25;
  }
  p{ margin: 0 0 1.2em; }
  .wrap{ width: 100%; max-width: 900px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 40px); box-sizing: border-box; }
  .wrap-narrow{ width: 100%; max-width: 740px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 40px); box-sizing: border-box; }

  section{ padding: 56px 0; }
  section.tight{ padding: 40px 0; }

  /* ---------- HERO ---------- */
  .hero{
    background: var(--navy);
    color: var(--white);
    padding: 64px 0 56px;
    text-align: center;
  }
  .hero .site-logo{
    width: 100%;
    max-width: 740px; /* matches .wrap-narrow, so it lines up with the body text column below */
    margin: 0 auto 30px;
    display: block;
  }
  .hero h1{
    color: var(--white);
    font-size: clamp(26px, 3vw + 14px, 38px);
    max-width: 640px;
    margin: 0 auto 20px;
  }
  .hero .sub{
    max-width: 560px;
    margin: 0 auto 32px;
    color: rgba(255,255,255,0.9);
    font-size: 18px;
  }

  /* ---------- CTA BUTTON ---------- */
  .btn{
    display:inline-block;
    background: var(--gold);
    color: var(--ink) !important;
    font-weight: 700;
    text-decoration:none;
    padding: 16px 36px;
    border-radius: 999px;
    font-size: 16px;
    letter-spacing: .2px;
    box-shadow: 0 6px 18px rgba(34,147,143,0.35);
    transition: transform .15s ease, box-shadow .15s ease;
  }
  .btn:hover{ transform: translateY(-2px); box-shadow: 0 10px 24px rgba(34,147,143,0.45); }
  .cta-wrap{ text-align:center; margin: 8px 0 6px; }
  .cta-note{
    font-size: 13px;
    color: var(--ink-soft);
    max-width: 380px;
    margin: 24px auto 0;
  }
  .hero .cta-note{ color: rgba(255,255,255,0.75); }
  .final-cta .cta-note{ color: rgba(255,255,255,0.75); }

  /* ---------- TESTIMONIAL ---------- */
  .testimonial{
    background: var(--white);
    border: 1px solid var(--line);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius);
    padding: 26px 30px;
    margin: 40px 0;
  }
  .testimonial p{
    font-style: italic;
    font-size: 17px;
    color: var(--ink);
    margin-bottom: 10px;
  }
  .testimonial .attr{
    font-style: normal;
    font-weight: 700;
    color: var(--navy);
    font-size: 14px;
  }
  .testimonial .attr span{
    font-weight: 400;
    color: var(--ink-soft);
  }

  /* ---------- VIDEO EMBED (responsive 16:9) ---------- */
  .video-embed-wrap{
    margin: 6px 0 40px;
  }
  .video-embed-caption{
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
  }
  .video-embed{
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    background: var(--navy-deep);
  }
  .video-embed iframe,
  .video-embed video{
    position: absolute;
    top:0; left:0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }
  .video-embed-placeholder{
    position: absolute;
    top:0; left:0;
    width:100%; height:100%;
    display:flex; align-items:center; justify-content:center;
    flex-direction: column;
    gap: 10px;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    text-align:center;
    padding: 20px;
  }
  .video-embed-placeholder .play-icon{
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--gold);
    display:flex; align-items:center; justify-content:center;
    color: var(--white);
    font-size: 22px;
  }

  /* ---------- SECTION HEADERS ---------- */
  .eyebrow{
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    text-align:center;
  }
  .section-title{
    font-size: clamp(22px, 1.6vw + 14px, 28px);
    text-align:center;
    max-width: 600px;
    margin: 0 auto 24px;
  }

  /* ---------- BAD OPTIONS LIST ---------- */
  .bad-list{
    list-style:none; padding:0; margin: 24px 0;
    display:grid; gap:10px;
  }
  .bad-list li{
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px 18px;
    display:flex; gap:10px; align-items:flex-start;
  }
  .bad-list li::before{ content:"✗"; color: var(--navy); font-weight:900; }

  .question-callout{
    background: var(--navy-deep);
    color: var(--white);
    border-radius: var(--radius);
    padding: 30px 32px;
    text-align:center;
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 19px;
    margin: 28px 0;
  }

  /* ---------- HOW IT WORKS STEPS ---------- */
  .steps{ counter-reset: step; margin: 28px 0; padding:0; list-style:none; }
  .steps li{
    counter-increment: step;
    position: relative;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px 24px 20px 64px;
    margin-bottom: 14px;
  }
  .steps li::before{
    content: counter(step);
    position:absolute; left:18px; top:18px;
    width:32px; height:32px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display:flex; align-items:center; justify-content:center;
    font-weight:700; font-family: 'Georgia', serif;
  }
  .steps li h4{ margin-bottom: 4px; font-size: 17px; }
  .steps li p{ margin-bottom:0; color: var(--ink-soft); font-size: 15.5px; }

  /* ---------- PLAYBOOK ---------- */
  .playbook-panel{
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius);
    padding: 44px 36px;
    margin: 8px 0 40px;
  }
  .playbook-panel .eyebrow{ color: var(--gold-light); }
  .playbook-panel h2{ color: var(--white); text-align:center; }
  .playbook-panel p{ color: rgba(255,255,255,0.9); }
  .checklist{ list-style:none; padding:0; margin: 22px 0; display:grid; gap: 10px; }
  .checklist li{
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: var(--radius);
    padding: 12px 16px;
    font-weight:600;
  }

  /* ---------- STORY FROM THE FIELD ---------- */
  .field-story{
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px 34px;
    margin: 8px 0 40px;
  }
  .field-story .kicker{
    text-transform:uppercase; letter-spacing:1.5px; font-size:12px;
    font-weight:700; color: var(--navy); margin-bottom:8px;
  }
  .field-story blockquote{
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 19px;
    color: var(--navy) !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    border-left: 3px solid var(--gold) !important;
    border-radius: 0 !important;
    padding: 4px 0 4px 18px !important;
    margin: 20px 0 !important;
    quotes: none !important;
  }
  .field-story blockquote::before,
  .field-story blockquote::after{
    content: none !important;
  }

  /* ---------- INCLUDED LIST / PRICING CARD ---------- */
  .included-list{
    list-style:none; padding:0; margin: 20px 0 28px;
    display:grid; gap:10px;
  }
  .included-list li{
    display:flex; gap:10px; align-items:flex-start;
    font-weight:600; color: var(--navy);
  }
  .included-list li::before{ content:"✓"; color: var(--gold); font-weight:900; font-size:17px; }
  .not-included{
    color: var(--ink-soft);
    font-size: 14.5px;
    border-top: 1px solid var(--line);
    padding-top: 14px;
    margin-top: 8px;
  }

  .pricing-card{
    background: var(--white);
    border: 2px solid var(--navy);
    border-radius: var(--radius);
    padding: 40px 36px;
    text-align:center;
    max-width: 460px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  }
  .pricing-card .name{
    font-weight:700; color: var(--ink-soft);
    text-transform:uppercase; letter-spacing:1px; font-size:13px;
    margin-bottom:6px;
  }
  .pricing-card .price{
    font-family:'Georgia',serif;
    font-size: clamp(36px, 4vw + 14px, 52px);
    color: var(--navy);
    margin-bottom: 18px;
  }
  .pricing-card .included-list{ text-align:left; }
  .softlink{
    font-size: 14.5px;
    color: var(--ink-soft);
    max-width: 480px;
    margin: 20px auto 0;
    text-align:center;
  }
  .softlink a{ color: var(--navy); font-weight:600; }

  /* ---------- ADD-ON ---------- */
  .addon-card{
    background: var(--cream);
    border: 1px dashed var(--navy);
    border-radius: var(--radius);
    padding: 28px 30px;
    margin: 8px 0 40px;
  }
  .addon-card .price-tag-wrap{
    text-align: center;
    margin-top: 8px;
  }
  .addon-card .price-tag{
    display:inline-block;
    background: var(--navy);
    color: var(--white) !important;
    font-weight:700;
    border-radius: 999px;
    padding: 10px 24px;
    font-size: 15px;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  }
  .addon-card .price-tag:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  }

  /* ---------- NOT FOR YOU ---------- */
  .not-for-you{
    background: var(--white);
    border-left: 4px solid var(--navy);
    border-radius: var(--radius);
    padding: 22px 26px;
    margin: 8px 0 40px;
    font-size: 15.5px;
    color: var(--ink-soft);
  }

  /* ---------- FAQ ---------- */
  .faq details{
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px 22px;
    margin-bottom: 12px;
  }
  .faq summary{
    cursor:pointer;
    font-weight:700;
    color: var(--navy);
    font-size: 16.5px;
    list-style:none;
    display:flex; justify-content:space-between; align-items:center;
  }
  .faq summary::-webkit-details-marker{ display:none; }
  .faq summary::after{
    content:"+";
    font-size: 22px;
    color: var(--gold);
    font-weight:700;
    margin-left: 12px;
  }
  .faq details[open] summary::after{ content:"–"; }
  .faq details p{
    margin-top: 14px;
    color: var(--ink-soft);
    font-size: 15.5px;
  }
  .faq details p a{ color: var(--navy); font-weight:600; }

  /* ---------- FINAL CTA ---------- */
  .final-cta{
    background: var(--navy);
    color: var(--white);
    text-align:center;
    padding: 60px 0 56px;
  }
  .final-cta h2{ color: var(--white); font-size: clamp(24px, 2vw + 14px, 32px); max-width: 560px; margin: 0 auto 14px; }
  .final-cta p{ color: rgba(255,255,255,0.9); max-width: 520px; margin: 0 auto 28px; }

  footer{
    text-align:center;
    padding: 26px 0;
    color: var(--ink-soft);
    font-size: 13px;
  }
  footer a{ color: var(--ink-soft); }

  .placeholder-img{
    width:100%;
    background: repeating-linear-gradient(45deg, #eee, #eee 10px, #e2e2e2 10px, #e2e2e2 20px);
    border: 1px dashed #b9b9b9;
    color:#888; display:flex; align-items:center; justify-content:center;
    font-size: 13px; text-align:center; border-radius: var(--radius);
    height: 220px; margin-bottom: 24px;
  }

  /* ---------- PHOTO BREAK (scattered event/portrait photos) ---------- */
  .photo-break{
    margin: 32px 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.10);
  }
  .photo-break img{
    width: 100%;
    display:block;
    object-fit: cover;
    max-height: 480px;
  }
  .photo-break.caption{ margin-bottom: 8px; }
  .photo-break .cap-text{
    font-size: 13px;
    color: var(--ink-soft);
    text-align:center;
    margin: 8px 0 32px;
    font-style: italic;
  }

  /* ---------- SIDE PHOTO (floats beside text, per DVN's placement notes) ---------- */
  .side-photo{
    width: 44%;
    max-width: 300px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(0,0,0,0.12);
    margin: 6px 0 20px;
  }
  .side-photo img{
    width: 100%;
    display:block;
    object-fit: cover;
  }
  .side-photo.left{ float:left; margin-right: 22px; }
  .side-photo.right{ float:right; margin-left: 22px; }
  .clearfix::after{ content:""; display:table; clear:both; }

  @media (max-width: 640px){
    .side-photo,
    .side-photo.left,
    .side-photo.right{
      float:none !important;
      width: 100% !important;
      max-width: none !important;
      margin: 0 0 20px !important;
    }
  }

  .headshot-inline{
    display:flex;
    align-items:center;
    gap: 20px;
    margin: 22px 0;
  }
  .headshot-inline img{
    width: 110px; height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    flex-shrink: 0;
  }
  .headshot-inline .cap{
    font-size: 14px;
    color: var(--ink-soft);
    font-weight: 600;
  }
  .headshot-inline .cap span{
    display:block;
    font-weight: 400;
    color: var(--ink-soft);
    font-size: 13px;
    margin-top: 2px;
  }

  @media (max-width: 640px){
    .hero h1{ font-size: 26px; }
    .checklist{ grid-template-columns: 1fr; }
    section{ padding: 40px 0; }
    .field-story, .playbook-panel, .pricing-card{ padding: 26px 22px; }
  }/* End custom CSS */