    /* ═══════════════════════════════════════════
       SERENO MEDICINE — DESIGN SYSTEM
       Navy: #1B2A4A | Gold: #C9A96E | Warm White: #F8F6F1
       Typography: Georgia (serif system)
    ═══════════════════════════════════════════ */

    :root {
      --navy: #1B2A4A;
      --gold: #C9A96E;
      --gold-light: rgba(201, 169, 110, 0.12);
      --gold-hover: #B8944F;
      --gold-text: #B08A45;
      --white: #F8F6F1;
      --white-pure: #FFFFFF;
      --text: #2C2C2C;
      --text-light: #444444;
      --border: rgba(27, 42, 74, 0.08);
    }

    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: Georgia, 'Times New Roman', serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* ═══ TYPOGRAPHY ═══ */

    h1, h2, h3, h4 {
      font-weight: normal;
      color: var(--navy);
    }

    .section-label {
      font-size: 0.95rem;
      letter-spacing: 3.5px;
      text-transform: uppercase;
      color: var(--gold-text);
      margin-bottom: 1.2rem;
      font-style: italic;
    }

    .section-heading {
      font-size: clamp(1.95rem, 3.8vw, 2.8rem);
      line-height: 1.3;
      margin-bottom: 1.8rem;
      color: var(--navy);
      letter-spacing: 0.5px;
    }

    p {
      font-size: 1.25rem;
      line-height: 1.85;
      color: var(--text);
      max-width: 640px;
    }

    /* ═══ NAVIGATION ═══ */

    /* Utility bar — slim top strip with Patient Portal + Schedule */
    .utility-bar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 9999;
      background: var(--navy);
      color: var(--white);
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding: 0 2rem;
      font-size: 0.68rem;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      isolation: isolate;
    }

    .utility-bar-inner {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 1.8rem;
    }

    .utility-bar a {
      color: var(--white);
      text-decoration: none;
      opacity: 0.9;
      transition: opacity 0.3s ease, color 0.3s ease;
      padding: 4px 0;
    }

    .utility-bar a:hover {
      opacity: 1;
      color: var(--gold);
    }

    .utility-bar a.utility-cta {
      color: var(--gold);
      opacity: 1;
      font-weight: normal;
      letter-spacing: 2px;
    }

    .utility-bar a.utility-cta:hover {
      color: #E0C28A;
    }

    .utility-bar .utility-sep {
      width: 1px;
      height: 14px;
      background: rgba(248, 246, 241, 0.25);
    }

    nav#navbar {
      position: fixed;
      top: 36px;
      left: 0;
      right: 0;
      z-index: 9998;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      transition: all 0.4s ease;
      isolation: isolate;
    }

    nav#navbar.scrolled {
      background: rgba(248, 246, 241, 0.97);
      box-shadow: 0 1px 30px rgba(27, 42, 74, 0.06);
    }

    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      height: 72px;
      width: 100%;
      min-width: 0;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .nav-logo svg {
      height: 40px;
      width: auto;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.4rem;
      list-style: none;
      flex-wrap: nowrap;
      min-width: 0;
    }

    .nav-links li {
      flex-shrink: 0;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--navy);
      font-size: 0.68rem;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      opacity: 0.85;
      transition: opacity 0.3s ease, box-shadow 0.3s ease;
      padding: 6px 8px;
      border-radius: 3px;
    }

    .nav-links a:hover {
      opacity: 1;
      box-shadow: 0 2px 12px rgba(27, 42, 74, 0.15);
    }

    .nav-links .nav-stacked {
      text-align: center;
      line-height: 1.5;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .nav-cta {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      line-height: 1.5;
      padding: 8px 18px;
      background: var(--gold);
      color: var(--navy) !important;
      font-size: 0.68rem !important;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      opacity: 1 !important;
      transition: background 0.3s ease, box-shadow 0.3s ease;
      border-radius: 3px;
    }

    .nav-cta:hover {
      background: var(--gold-hover);
      box-shadow: 0 3px 15px rgba(201, 169, 110, 0.35);
    }

    /* Mobile menu */
    .menu-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
    }

    .menu-toggle span {
      display: block;
      width: 22px;
      height: 1px;
      background: var(--navy);
      margin: 5px 0;
      transition: all 0.3s ease;
    }

    /* ═══ HERO ═══ */

    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 8rem 2rem 6rem;
      position: relative;
      background: var(--white);
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 10%;
      right: 10%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0.4;
    }

    .hero-content {
      max-width: 700px;
    }

    .hero-shield {
      width: 170px;
      height: auto;
      margin-bottom: 2.4rem;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.1s forwards;
    }

    /* Shield element draw-on animations */
    .hero-shield .shield-body {
      opacity: 0;
      animation: shieldFadeIn 0.6s ease 0.2s forwards;
    }

    .hero-shield .shield-rod {
      stroke-dasharray: 60;
      stroke-dashoffset: 60;
      animation: drawLine 0.6s ease 0.5s forwards;
    }

    .hero-shield .shield-finial {
      opacity: 0;
      transform-origin: 65px 17px;
      animation: finialAppear 0.3s ease 0.8s forwards;
    }

    .hero-shield .shield-serpent {
      stroke-dasharray: 120;
      stroke-dashoffset: 120;
      opacity: 0.85;
      animation: drawSerpent 1.0s ease 0.9s forwards;
    }

    .hero-shield .shield-sunrise {
      opacity: 0;
      animation: sunriseFade 0.8s ease 1.4s forwards;
    }

    .hero-shield .shield-horizon {
      stroke-dasharray: 74;
      stroke-dashoffset: 74;
      animation: drawLine 0.5s ease 1.6s forwards;
    }

    .hero-shield .shield-water-1 {
      stroke-dasharray: 60;
      stroke-dashoffset: 60;
      animation: drawLine 0.4s ease 1.8s forwards;
    }

    .hero-shield .shield-water-2 {
      stroke-dasharray: 46;
      stroke-dashoffset: 46;
      animation: drawLine 0.4s ease 2.0s forwards;
    }

    @keyframes shieldFadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes drawLine {
      to { stroke-dashoffset: 0; }
    }

    @keyframes drawSerpent {
      to { stroke-dashoffset: 0; }
    }

    @keyframes finialAppear {
      from { opacity: 0; transform: scale(0); }
      to { opacity: 1; transform: scale(1); }
    }

    @keyframes sunriseFade {
      from { opacity: 0; }
      to { opacity: 0.4; }
    }

    .hero h1 {
      font-size: clamp(2.07rem, 4.6vw, 3.22rem);
      letter-spacing: 6px;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 0.6rem;
      font-weight: normal;
      opacity: 0;
      animation: fadeUp 0.8s ease 1.2s forwards;
    }

    .hero-tagline {
      font-size: 1.15rem;
      letter-spacing: 2.5px;
      color: var(--gold);
      font-style: italic;
      margin-bottom: 1.8rem;
      opacity: 0;
      animation: fadeUp 0.8s ease 1.4s forwards;
    }

    .hero-line {
      width: 50px;
      height: 1px;
      background: var(--gold);
      margin: 0 auto 2.2rem;
      opacity: 0;
      animation: fadeUp 0.8s ease 1.6s forwards;
    }

    .hero-desc {
      font-size: 1.21rem;
      line-height: 1.9;
      color: var(--text-light);
      margin: 0 auto 3rem;
      max-width: 520px;
      opacity: 0;
      animation: fadeUp 0.8s ease 1.8s forwards;
    }

    .hero-ctas {
      display: flex;
      gap: 1.2rem;
      justify-content: center;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 0.8s ease 2.0s forwards;
    }

    /* ═══ BUTTONS ═══ */

    .btn-primary {
      display: inline-block;
      padding: 15px 38px;
      background: var(--navy);
      color: var(--white);
      font-family: Georgia, serif;
      font-size: 0.83rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.35s ease;
      border: 1px solid var(--navy);
    }

    .btn-primary:hover {
      background: #243656;
      transform: translateY(-1px);
    }

    .btn-secondary {
      display: inline-block;
      padding: 15px 38px;
      background: transparent;
      color: var(--navy);
      font-family: Georgia, serif;
      font-size: 0.83rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      text-decoration: none;
      border: 1px solid rgba(27, 42, 74, 0.25);
      transition: all 0.35s ease;
    }

    .btn-secondary:hover {
      border-color: var(--navy);
      transform: translateY(-1px);
    }

    /* ═══ SECTIONS ═══ */

    section {
      padding: 7rem 2rem;
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
    }

    /* ═══ PHILOSOPHY ═══ */

    .philosophy {
      background: var(--white);
    }

    .philosophy-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
      margin-top: 3rem;
    }

    .philosophy-left p {
      margin-bottom: 1.6rem;
      color: var(--text-light);
    }

    .philosophy-pillars {
      display: flex;
      flex-direction: column;
      gap: 2.2rem;
      padding-top: 0.5rem;
    }

    .pillar {
      padding-left: 1.8rem;
      border-left: 1px solid var(--gold);
    }

    .pillar h4 {
      font-size: 1.15rem;
      letter-spacing: 1.5px;
      margin-bottom: 0.5rem;
      color: var(--navy);
    }

    .pillar p {
      font-size: 1.1rem;
      line-height: 1.7;
      color: var(--text-light);
    }

    /* ═══ SERVICES ═══ */

    .services {
      background: var(--navy);
      color: var(--white);
      position: relative;
    }

    .services .section-label {
      color: var(--gold);
    }

    .services .section-heading {
      color: var(--white);
    }

    .services-intro {
      color: rgba(248, 246, 241, 0.85) !important;
      margin-bottom: 3.5rem;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .service-card {
      padding: 2.4rem 2rem;
      border: 1px solid rgba(201, 169, 110, 0.22);
      transition: border-color 0.4s ease;
    }

    .service-card:hover {
      border-color: rgba(201, 169, 110, 0.45);
    }

    .service-card h4 {
      font-size: 1.15rem;
      letter-spacing: 1.5px;
      color: var(--gold);
      margin-bottom: 1rem;
    }

    .service-card p {
      font-size: 1.08rem;
      line-height: 1.7;
      color: rgba(248, 246, 241, 0.75);
    }

    .services-note {
      margin-top: 3.5rem;
      padding-top: 2.5rem;
      border-top: 1px solid rgba(201, 169, 110, 0.22);
      text-align: center;
    }

    .services-note p {
      font-size: 1.1rem;
      color: rgba(248, 246, 241, 0.7);
      font-style: italic;
      margin: 0 auto;
    }

    /* ═══ PRICING ═══ */

    .pricing {
      background: var(--white);
    }

    .pricing-content {
      max-width: 1100px;
      margin: 0 auto;
    }

    .pricing-content .section-heading {
      margin-bottom: 1.2rem;
    }

    .pricing-lead {
      font-size: 1.25rem;
      color: var(--navy) !important;
      font-style: italic;
      margin-bottom: 2.2rem;
      line-height: 1.8;
      max-width: 780px;
    }

    .pricing-content > p {
      color: var(--text-light);
      margin-bottom: 1.4rem;
      max-width: 780px;
    }

    .pricing-tiers {
      margin-top: 3rem;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .pricing-tier {
      border: 1px solid var(--border);
      padding: 2rem 1.5rem;
      text-align: center;
      transition: border-color 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .pricing-tier:hover {
      border-color: var(--gold);
    }

    .pricing-tier-label {
      font-size: 0.69rem;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--gold-text);
      margin-bottom: 1rem;
      min-height: 1rem;
    }

    .pricing-tier-price {
      font-size: 2.4rem;
      color: var(--navy);
      line-height: 1;
      margin-bottom: 0.3rem;
      min-height: 3.6rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .pricing-tier-price.pricing-tier-price-text {
      font-size: 1.5rem;
      line-height: 1.15;
    }

    .pricing-tier-price span {
      font-size: 1rem;
      color: var(--text-light);
    }

    .pricing-tier-period {
      font-size: 0.95rem;
      color: var(--text-light);
      margin-bottom: 1.2rem;
      min-height: 1.4rem;
    }

    .pricing-tier-desc {
      font-size: 1.0rem;
      color: var(--text-light);
      line-height: 1.6;
      margin-top: auto;
    }

    .pricing-tier-cta {
      font-size: 0.69rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold-text);
      margin-top: 1.2rem;
    }

    .pricing-note {
      margin-top: 2.5rem;
      padding-top: 2rem;
      border-top: 1px solid var(--border);
      text-align: center;
    }

    .pricing-note p {
      font-size: 1.05rem;
      color: var(--text-light);
      margin: 0 auto 1rem;
      max-width: 640px;
    }

    .pricing-note em {
      color: var(--navy);
    }

    .pricing-tracker {
      margin-top: 2.5rem;
      padding: 2rem;
      background: rgba(27, 42, 74, 0.03);
      border: 1px solid var(--border);
    }

    .pricing-tracker-label {
      font-size: 0.69rem;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--gold-text);
      margin-bottom: 1rem;
    }

    .pricing-tracker-bar {
      width: 100%;
      height: 6px;
      background: rgba(27, 42, 74, 0.08);
      border-radius: 3px;
      overflow: hidden;
      margin-bottom: 0.8rem;
    }

    .pricing-tracker-fill {
      height: 100%;
      width: 0%;
      background: var(--gold);
      border-radius: 3px;
      transition: width 1.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    }

    .pricing-tracker-fill.animated {
      width: 75%;
    }

    .pricing-tracker-text {
      font-size: 1.0rem;
      color: var(--text-light);
      line-height: 1.6;
    }

    .pricing-tracker-text strong {
      color: var(--navy);
      font-weight: normal;
    }

    .pricing-cta {
      margin-top: 2.5rem;
      text-align: center;
    }

    @media (max-width: 768px) {
      .pricing-tiers {
        grid-template-columns: 1fr;
        gap: 1rem;
      }
    }

    /* ═══ PHYSICIAN ═══ */

    .physician {
      background: var(--white);
    }

    .physician-layout {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 3.5rem;
      align-items: start;
      margin-top: 2rem;
    }

    .physician-photo {
      width: 100%;
      aspect-ratio: 3 / 4;
      background: var(--navy);
      position: relative;
      overflow: hidden;
      margin-top: 0.5rem;
    }

    .physician-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
      filter: grayscale(0%);
    }

    .physician-bio h3 {
      font-size: 1.6rem;
      color: var(--navy);
      margin-bottom: 0.3rem;
      letter-spacing: 0.5px;
    }

    .physician-title {
      font-size: 0.82rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold-text);
      margin-bottom: 1.6rem;
    }

    .physician-bio p {
      color: var(--text-light);
      margin-bottom: 1.2rem;
      font-size: 1.05rem;
      line-height: 1.75;
    }

    .physician-credentials {
      margin-top: 2rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--border);
      display: flex;
      gap: 2.5rem;
    }

    .credential {
      display: flex;
      flex-direction: column;
    }

    .credential-label {
      font-size: 0.68rem;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--gold-text);
      margin-bottom: 0.4rem;
    }

    .credential-value {
      font-size: 0.92rem;
      color: var(--navy);
    }

    /* ═══ SCHOLARS ═══ */

    .scholars {
      background: linear-gradient(180deg, var(--white) 0%, #F3F0E9 100%);
      position: relative;
    }

    .scholars-content {
      max-width: 680px;
    }

    .scholars-content .section-heading {
      margin-bottom: 1.2rem;
    }

    .scholars-lead {
      font-size: 1.35rem;
      color: var(--navy) !important;
      font-style: italic;
      margin-bottom: 2rem;
      line-height: 1.8;
    }

    .scholars-content p {
      color: var(--text-light);
      margin-bottom: 1.4rem;
    }

    .scholars-stat {
      margin-top: 2.5rem;
      padding: 2rem 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: baseline;
      gap: 1.4rem;
    }

    .scholars-stat-number {
      font-size: 3.22rem;
      color: var(--gold);
      line-height: 1;
    }

    .scholars-stat-text {
      font-size: 1.1rem;
      color: var(--text-light);
      line-height: 1.6;
      max-width: 380px;
    }

    .scholars-cta {
      margin-top: 2.5rem;
    }

    /* ═══ PULL QUOTE DIVIDER ═══ */

    .pull-quote-divider {
      padding: 4rem 2rem;
      background: var(--navy);
      text-align: center;
    }

    .pull-quote-inner {
      max-width: 700px;
      margin: 0 auto;
    }

    .pull-quote-inner p {
      font-size: clamp(1.2rem, 2.5vw, 1.6rem);
      color: var(--gold);
      font-style: italic;
      line-height: 1.7;
      letter-spacing: 0.3px;
    }

    /* ═══ FAQ ═══ */

    .faq {
      background: var(--white);
    }

    .faq-layout {
      display: grid;
      grid-template-columns: 340px 1fr;
      gap: 3.5rem;
      align-items: start;
      margin-top: 2.5rem;
    }

    .faq-photo {
      position: sticky;
      top: 100px;
    }

    .faq-photo img {
      width: 100%;
      height: auto;
      display: block;
    }

    .faq-grid {
    }

    @media (max-width: 900px) {
      .faq-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .faq-photo {
        position: static;
        max-width: 400px;
      }
    }

    .faq-item {
      border-bottom: 1px solid var(--border);
    }

    .faq-question {
      width: 100%;
      background: none;
      border: none;
      text-align: left;
      padding: 1.5rem 0;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1.5rem;
      font-family: Georgia, serif;
      font-size: 1.1rem;
      color: var(--navy);
      line-height: 1.4;
      transition: color 0.3s ease;
    }

    .faq-question:hover {
      color: var(--gold-hover);
    }

    .faq-icon {
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 1.5;
      transition: transform 0.3s ease;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
    }

    .faq-item.open .faq-answer {
      max-height: 600px;
    }

    .faq-answer-inner {
      padding: 0 0 1.8rem 0;
    }

    .faq-answer-inner p {
      font-size: 1.05rem;
      color: var(--text-light);
      line-height: 1.8;
      margin-bottom: 1rem;
    }

    .faq-answer-inner p:last-child {
      margin-bottom: 0;
    }

    /* ═══ CONTACT ═══ */

    .contact {
      background: var(--navy);
      color: var(--white);
      padding: 6rem 2rem;
    }

    .contact-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .contact .section-label {
      color: var(--gold);
    }

    .contact .section-heading {
      color: var(--white);
      margin-bottom: 1.2rem;
    }

    .contact-desc {
      color: rgba(248, 246, 241, 0.75) !important;
      margin: 0 auto;
      text-align: center;
      max-width: 560px;
    }

    .contact-ctas {
      display: flex;
      gap: 1.2rem;
      justify-content: center;
      flex-wrap: wrap;
      margin: 3rem 0;
      text-align: center;
    }

    .contact .btn-primary {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--navy);
    }

    .contact .btn-primary:hover {
      background: var(--gold-hover);
      border-color: var(--gold-hover);
    }

    .contact .btn-secondary {
      color: var(--white);
      border-color: rgba(248, 246, 241, 0.45);
    }

    .contact .btn-secondary:hover {
      border-color: var(--white);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border-top: 1px solid rgba(201, 169, 110, 0.15);
      max-width: 900px;
      margin: 0 auto;
    }

    .contact-card {
      padding: 2.2rem 1.5rem;
      text-align: center;
      border-bottom: 1px solid rgba(201, 169, 110, 0.08);
    }

    .contact-card:nth-child(n+4) {
      border-bottom: none;
    }

    .contact-card:nth-child(2),
    .contact-card:nth-child(5) {
      border-left: 1px solid rgba(201, 169, 110, 0.08);
      border-right: 1px solid rgba(201, 169, 110, 0.08);
    }

    .contact-card-label {
      font-size: 0.69rem;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.7rem;
    }

    .contact-card-value {
      font-size: 0.95rem;
      color: rgba(248, 246, 241, 0.88);
      line-height: 1.6;
    }

    .contact-card-value a {
      color: rgba(248, 246, 241, 0.88);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .contact-card-value a:hover {
      color: var(--white);
    }

    @media (max-width: 768px) {
      .contact-grid {
        grid-template-columns: 1fr 1fr;
      }

      .contact-card:nth-child(2),
      .contact-card:nth-child(5) {
        border-left: none;
        border-right: none;
      }

      .contact-card:nth-child(odd) {
        border-right: 1px solid rgba(201, 169, 110, 0.08);
      }

      .contact-card {
        border-bottom: 1px solid rgba(201, 169, 110, 0.08);
      }
    }

    @media (max-width: 500px) {
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .contact-card:nth-child(odd) {
        border-right: none;
      }
    }

    /* ═══ FOOTER ═══ */

    footer {
      background: var(--navy);
      border-top: 1px solid rgba(201, 169, 110, 0.12);
      padding: 2.5rem 2rem 2rem;
    }

    .footer-legal {
      max-width: 700px;
      margin: 0 auto;
      text-align: center;
    }

    .footer-legal p {
      font-size: 0.65rem;
      letter-spacing: 0.8px;
      color: rgba(248, 246, 241, 0.3);
      margin: 0 auto 0.5rem;
      max-width: none;
      line-height: 1.7;
      text-align: center;
    }

    .footer-legal .footer-links {
      margin: 1rem auto;
      padding: 0.8rem 0;
      border-top: 1px solid rgba(201, 169, 110, 0.06);
      border-bottom: 1px solid rgba(201, 169, 110, 0.06);
    }

    .footer-legal a {
      color: rgba(248, 246, 241, 0.4);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-legal a:hover {
      color: var(--white);
    }

    .footer-legal .footer-disclaimer {
      font-size: 0.6rem;
      color: rgba(248, 246, 241, 0.22);
      margin-top: 1rem;
      line-height: 1.6;
      max-width: none;
    }

    /* ═══ BACK TO TOP ═══ */

    .back-to-top {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      width: 44px;
      height: 44px;
      background: var(--navy);
      border: 1px solid rgba(201, 169, 110, 0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease;
      z-index: 900;
    }

    .back-to-top.visible {
      opacity: 1;
      visibility: visible;
    }

    .back-to-top:hover {
      background: #243656;
      border-color: var(--gold);
    }

    .back-to-top svg {
      width: 16px;
      height: 16px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* ═══ PRACTICE PHOTOS ═══ */

    .photo-break {
      width: 100%;
      overflow: hidden;
      position: relative;
    }

    .photo-break img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      object-position: center center;
      display: block;
    }

    .photo-break-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(180deg, rgba(27, 42, 74, 0.08) 0%, rgba(27, 42, 74, 0.15) 100%);
    }

    .photo-duo {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
    }

    .photo-duo img {
      width: 100%;
      height: 380px;
      object-fit: cover;
      display: block;
    }

    @media (max-width: 768px) {
      .photo-break img {
        height: 260px;
      }

      .photo-duo {
        grid-template-columns: 1fr;
      }

      .photo-duo img {
        height: 260px;
      }
    }

    /* ═══ ANIMATIONS ═══ */

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

    /* Reveal animation — content visible by default; JS-enhanced fade on load.
       Only hide content if JS is present (via .js-enabled class on <html>). */
    html.js-enabled .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    html.js-enabled .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ═══ RESPONSIVE ═══ */

    @media (max-width: 900px) {
      .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      .physician-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .physician-photo {
        max-width: 260px;
      }

      .physician-credentials {
        flex-wrap: wrap;
        gap: 1.5rem;
      }
    }

    /* ═══ MOBILE MENU OVERLAY ═══ */

    .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #1B2A4A;
      z-index: 99999;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      padding: 80px 0 2rem;
    }

    .mobile-menu.open {
      display: block;
    }

    .mobile-menu-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .mobile-menu-links li {
      text-align: center;
      border-bottom: 1px solid rgba(201, 169, 110, 0.1);
    }

    .mobile-menu-links a {
      display: block;
      color: rgba(248, 246, 241, 0.9);
      font-family: Georgia, serif;
      font-size: 0.92rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      text-decoration: none;
      padding: 1.2rem 1.5rem;
    }

    .mobile-menu-links a:active {
      background: rgba(201, 169, 110, 0.08);
      color: #FFFFFF;
    }

    .mobile-menu-cta {
      margin-top: 1rem;
      border-bottom: none !important;
    }

    .mobile-menu-cta a {
      background: #C9A96E;
      color: #1B2A4A !important;
      margin: 0 1.5rem;
      padding: 1.2rem 2rem;
    }

    .mobile-menu-cta a:active {
      background: #B8944F;
    }

    @media (min-width: 901px) {
      .mobile-menu {
        display: none !important;
      }
      .menu-toggle {
        display: none !important;
      }
    }

    @media (max-width: 900px) {
      .utility-bar {
        display: none;
      }

      nav#navbar {
        top: 0;
      }

      .nav-inner {
        padding: 0 1.2rem;
        height: 64px;
      }

      .nav-logo svg {
        height: 32px;
      }

      .nav-desktop {
        display: none !important;
      }

      .menu-toggle {
        display: block;
        z-index: 100000;
        position: relative;
      }

      .menu-toggle.open span {
        background: #FFFFFF;
      }

      .menu-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
      }
      .menu-toggle.open span:nth-child(2) {
        opacity: 0;
      }
      .menu-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
      }

      /* ═══ MOBILE CONTENT FIXES ═══ */

      section {
        padding: 4rem 1.2rem;
      }

      .hero {
        padding: 6rem 1.2rem 4rem;
        min-height: 85vh;
      }

      .hero-shield {
        width: 120px;
      }

      .hero h1 {
        font-size: 1.6rem;
        letter-spacing: 4px;
      }

      .hero-desc {
        font-size: 1.05rem;
      }

      .section-heading {
        font-size: 1.6rem;
      }

      .pricing-tiers {
        grid-template-columns: 1fr;
      }

      .pricing-tier-price {
        font-size: 2rem;
      }

      .contact-grid {
        grid-template-columns: 1fr;
      }

      .contact-card:nth-child(odd) {
        border-right: none;
      }

      .contact-card:nth-child(2),
      .contact-card:nth-child(5) {
        border-left: none;
        border-right: none;
      }

      .pull-quote-divider {
        padding: 3rem 1.5rem;
      }

      .pull-quote-inner p {
        font-size: 1.1rem;
      }

      .btn-primary, .btn-secondary {
        padding: 14px 28px;
        font-size: 0.75rem;
      }
    }

    /* ═══════════════════════════════════════════
       ADDITIONS FOR MULTI-PAGE ARCHITECTURE
    ═══════════════════════════════════════════ */

    /* Active nav state */
    .nav-desktop a[aria-current="page"],
    .mobile-menu-links a[aria-current="page"] {
      color: var(--gold-text);
      border-bottom: 1px solid var(--gold);
    }
    .nav-desktop a.nav-cta[aria-current="page"],
    .mobile-menu-links a.nav-cta[aria-current="page"] {
      border-bottom: none;
    }

    /* Page hero for interior pages (smaller than homepage hero) */
    .page-hero {
      padding: 3rem 2rem 3rem;
      background: var(--white);
      text-align: left;
      border-bottom: 1px solid var(--border);
    }

    .page-hero-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .page-hero .section-label {
      margin-bottom: 1rem;
    }

    .page-hero h1 {
      font-size: clamp(1.75rem, 3.2vw, 2.4rem);
      line-height: 1.25;
      margin-bottom: 1.2rem;
      color: var(--navy);
      letter-spacing: 0.3px;
    }

    .page-hero p.page-hero-desc {
      font-size: 1.08rem;
      color: var(--text-light);
      max-width: 680px;
      margin: 0;
      line-height: 1.75;
    }

    @media (max-width: 900px) {
      .page-hero {
        padding: 2rem 1.2rem 2.5rem;
      }
    }

    /* Breadcrumbs */
    .breadcrumbs {
      padding: 1.3rem 2rem 0;
      max-width: 1100px;
      margin: 0 auto;
      font-size: 0.82rem;
      letter-spacing: 1px;
      color: var(--text-light);
      text-transform: uppercase;
    }
    .breadcrumbs a {
      color: var(--gold-text);
      text-decoration: none;
      transition: color 0.3s ease;
    }
    .breadcrumbs a:hover { color: var(--navy); }
    .breadcrumbs .sep {
      margin: 0 0.6rem;
      color: rgba(27,42,74,0.3);
    }
    .breadcrumbs .current { color: var(--navy); }

    @media (max-width: 900px) {
      .breadcrumbs {
        padding-top: 5.5rem !important;
        padding-left: 1.2rem;
        padding-right: 1.2rem;
      }
    }

    /* Summary section spacing on homepage — slight trim */
    .summary-section { padding: 5rem 2rem; }
    .summary-section .section-heading { margin-bottom: 1.4rem; }
    .summary-section .summary-lead {
      font-size: 1.15rem;
      color: var(--text-light);
      max-width: 640px;
      margin: 0 auto 2rem;
      text-align: center;
      line-height: 1.75;
    }

    .summary-cta-wrap {
      text-align: center;
      margin-top: 2.5rem;
    }

    /* Summary pillars (3-up grid for homepage teasers) */
    .summary-pillars {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 2.5rem;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
    }
    .summary-pillar {
      text-align: left;
      padding: 0.5rem 0;
    }
    .summary-pillar h4 {
      font-size: 1.1rem;
      letter-spacing: 1.5px;
      margin-bottom: 0.5rem;
      color: var(--navy);
      border-top: 1px solid var(--gold);
      padding-top: 1rem;
    }
    .summary-pillar p {
      font-size: 1rem;
      line-height: 1.7;
      color: var(--text-light);
    }
    @media (max-width: 768px) {
      .summary-pillars { grid-template-columns: 1fr; gap: 1.5rem; }
    }

    /* Next-page navigation at end of interior pages */
    .next-page-nav {
      padding: 4rem 2rem;
      background: var(--white);
      border-top: 1px solid var(--border);
      text-align: center;
    }
    .next-page-nav p {
      font-size: 0.82rem;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--gold-text);
      margin-bottom: 1rem;
    }
    .next-page-nav a {
      font-family: Georgia, serif;
      font-size: 1.5rem;
      color: var(--navy);
      text-decoration: none;
      border-bottom: 1px solid var(--gold);
      padding-bottom: 3px;
      transition: color 0.3s ease;
    }
    .next-page-nav a:hover { color: var(--gold-hover); }
