:root {
      --forest: #21418f;
      --forest-deep: #122a69;
      --aqua: #7bafd4;
      --aqua-soft: #cfe5f4;
      --sun: #3567ad;
      --cream: #f2f4f7;
      --paper: #fff;
      --ink: #172b4d;
      --muted: #68758a;
      --white: #fff;
      --line: rgba(33, 65, 143, .17);
      --serif: "Libre Caslon Display", "Times New Roman", Times, serif;
      --sans: "DM Sans", system-ui, sans-serif;
      --container: min(1240px, calc(100% - 48px));
      --shadow: 0 30px 80px rgba(18, 42, 105, .14);
    }

    * { box-sizing: border-box; }
    html {
      scroll-behavior: smooth;
      scroll-padding-top: 90px;
      overflow-x: hidden;
      max-width: 100%;
    }
    body {
      margin: 0;
      overflow-x: hidden;
      max-width: 100%;
      width: 100%;
      color: var(--ink);
      background: var(--paper);
      font-family: var(--sans);
      line-height: 1.6;
    }
    body.menu-open { overflow: hidden; }
    img { width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button, summary { color: inherit; font: inherit; }
    button { cursor: pointer; }
    h1, h2, h3, p { margin-top: 0; }
    h1, h2, h3 {
      font-family: var(--serif);
      font-weight: 400;
      font-optical-sizing: auto;
      line-height: .98;
      letter-spacing: -.025em;
    }
    h2 { font-size: clamp(3rem, 6.3vw, 6.4rem); }
    .container { width: var(--container); max-width: 100%; min-width: 0; margin-inline: auto; }
    .skip-link { position: fixed; z-index: 999; top: 12px; left: 12px; padding: 12px 18px; border-radius: 100px; background: #fff; transform: translateY(-150%); }
    .skip-link:focus { transform: none; }
    :focus-visible { outline: 3px solid #7bafd4; outline-offset: 4px; }
    .label { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 22px; color: var(--forest); font-size: .71rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
    .label::before { width: 33px; height: 1px; background: currentColor; content: ""; }
    .label--light { color: var(--aqua-soft); }
    .button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; padding: 14px 22px; border: 1px solid transparent; border-radius: 4px; background: var(--sun); color: #fff; font-size: .86rem; font-weight: 700; letter-spacing: .02em; transition: transform .25s, background .25s, color .25s; }
    .button:hover { transform: translateY(-2px); background: #4f82c3; }
    .button--light { background: #fff; color: var(--forest); }
    .button--outline { border-color: currentColor; background: transparent; color: var(--forest); }
    .button--outline-light { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.06); color: #fff; }
    .text-link { display: inline-flex; align-items: center; gap: 13px; padding-bottom: 5px; border-bottom: 1px solid currentColor; color: var(--forest); font-size: .85rem; font-weight: 700; }
    .text-link span { transition: transform .2s; }
    .text-link:hover span { transform: translateX(4px); }

    .topline { position: relative; z-index: 30; background: var(--forest-deep); color: rgba(255,255,255,.78); font-size: .72rem; letter-spacing: .02em; }
    .topline__inner { min-height: 35px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
    .topline__links { display: flex; gap: 22px; }
    .topline strong { color: #fff; }

    .header { position: absolute; z-index: 25; top: 35px; left: 0; width: 100%; color: #fff; transition: background .3s, color .3s, box-shadow .3s, top .3s; }
    .header.is-fixed { position: fixed; top: 0; background: rgba(255,255,255,.96); color: var(--forest); box-shadow: 0 12px 35px rgba(18,42,105,.12); backdrop-filter: blur(18px); }
    .nav { min-height: 92px; display: grid; grid-template-columns: minmax(0, 285px) 1fr auto; align-items: center; gap: 32px; }
    .brand {
      display: inline-flex;
      align-items: center;
      min-width: 0;
      max-width: 100%;
      width: auto;
    }
    .brand img {
      width: auto;
      max-width: min(245px, 100%);
      height: auto;
      /* Primary nav uses foot_logo (black plate + blue type for dark grounds).
         Do not invert — that turns the black plate into a solid white block. */
      filter: none;
    }
    .brand__logo--sticky { display: none; }
    .header.is-fixed .brand__logo--default { display: none; }
    .header.is-fixed .brand__logo--sticky { display: block; }
    .desktop-nav { display: flex; justify-content: flex-end; align-items: center; gap: 2px; }
    .desktop-nav > a, .desktop-nav > details > summary { min-height: 44px; display: flex; align-items: center; padding: 10px 11px; border-radius: 3px; font-size: .78rem; font-weight: 700; cursor: pointer; list-style: none; transition: background .2s, color .2s; }
    .desktop-nav > details > summary::-webkit-details-marker { display: none; }
    .desktop-nav > details > summary::after { margin-left: 7px; content: "+"; font-size: 1rem; font-weight: 400; }
    .desktop-nav > details[open] > summary::after { content: "-"; }
    .desktop-nav > a:hover, .desktop-nav > details > summary:hover, .desktop-nav > details[open] > summary { background: rgba(255,255,255,.12); }
    .is-fixed .desktop-nav > a:hover, .is-fixed .desktop-nav > details > summary:hover, .is-fixed .desktop-nav > details[open] > summary { background: rgba(33,65,143,.08); }
    /* Current page in primary nav */
    .desktop-nav > a.is-active,
    .desktop-nav > details.is-active > summary {
      background: rgba(255,255,255,.2);
      box-shadow: inset 0 -2px 0 currentColor;
    }
    .is-fixed .desktop-nav > a.is-active,
    .is-fixed .desktop-nav > details.is-active > summary {
      background: rgba(33,65,143,.12);
      color: var(--forest);
      box-shadow: inset 0 -2px 0 var(--forest);
    }
    .topline__links a.is-active {
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .nav-group { position: relative; --nav-dropdown-link: var(--forest); }
    .nav-popover { position: absolute; top: calc(100% + 13px); right: 0; width: 290px; padding: 18px; border: 1px solid var(--line); border-radius: 6px; background: var(--paper); color: var(--nav-dropdown-link); box-shadow: var(--shadow); }
    .nav-popover::before, .nav-mega::before { position: absolute; inset: -14px 0 auto; height: 14px; content: ""; }
    .nav-popover a {
      min-height: 43px;
      display: flex;
      align-items: center;
      padding: 8px 10px;
      border-radius: 3px;
      color: var(--nav-dropdown-link);
      font-family: var(--sans);
      font-size: .84rem;
      font-weight: 600;
      line-height: 1.35;
      transition: background .2s ease, color .2s ease, box-shadow .2s ease;
    }
    .nav-popover a:hover { background: var(--aqua-soft); color: var(--forest-deep); }
    .nav-mega { position: fixed; z-index: 50; top: 127px; left: 50%; width: min(1140px, calc(100vw - 48px)); max-height: calc(100vh - 150px); overflow-y: auto; padding: 30px; border: 1px solid var(--line); border-radius: 0 0 8px 8px; background: var(--paper); color: var(--nav-dropdown-link); box-shadow: var(--shadow); transform: translateX(-50%); }
    .is-fixed .nav-mega { top: 92px; max-height: calc(100vh - 110px); }
    .nav-mega__grid { display: grid; grid-template-columns: 1.25fr 1.25fr .9fr .9fr; gap: 30px; }
    .nav-mega h3 { margin-bottom: 12px; color: var(--sun); font-family: var(--sans); font-size: .67rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
    /* Same navy + type stack for mega links as simple dropdowns */
    .nav-mega a {
      min-height: 43px;
      display: flex;
      align-items: center;
      padding: 8px 10px;
      border-radius: 3px;
      color: var(--nav-dropdown-link);
      font-family: var(--sans);
      font-size: .84rem;
      font-weight: 600;
      line-height: 1.35;
      transition: background .2s ease, color .2s ease, box-shadow .2s ease;
    }
    .nav-mega a:hover {
      background: var(--aqua-soft);
      color: var(--forest-deep);
    }
    .nav-mega .nav-primary {
      margin-bottom: 0;
      color: var(--nav-dropdown-link);
      font-family: var(--sans);
      font-size: .84rem;
      font-weight: 700;
    }
    /* Current page in mega / popover — stronger than default so it always reads as “you are here” */
    .nav-mega a.is-active,
    .nav-popover a.is-active {
      background: rgba(123, 175, 212, .28);
      color: var(--forest-deep);
      font-weight: 700;
      box-shadow: inset 3px 0 0 var(--forest);
    }
    .nav-mega a.is-active:hover,
    .nav-popover a.is-active:hover {
      background: rgba(123, 175, 212, .36);
      color: var(--forest-deep);
    }
    .nav-cta { min-height: 47px; background: rgba(255,255,255,.96); color: var(--forest); }
    .is-fixed .nav-cta { background: var(--forest); color: #fff; }
    .menu-toggle { width: 49px; height: 49px; display: none; place-items: center; border: 1px solid currentColor; border-radius: 50%; background: transparent; }
    .menu-toggle span, .menu-toggle span::before, .menu-toggle span::after { width: 20px; height: 1px; display: block; background: currentColor; content: ""; }
    .menu-toggle span::before { transform: translateY(-6px); }
    .menu-toggle span::after { transform: translateY(5px); }

    .hero { position: relative; min-height: 890px; display: flex; align-items: end; overflow: hidden; background: var(--forest-deep); color: #fff; }
    .hero__image, .hero__wash { position: absolute; inset: 0; }
    .hero__image img { height: 100%; object-fit: cover; object-position: 55% 42%; filter: saturate(.7) contrast(1.03); transform: scale(1.02); animation: breathe 16s ease-in-out infinite alternate; }
    .hero__wash { background: linear-gradient(90deg, rgba(11,36,99,.94) 0%, rgba(11,36,99,.74) 37%, rgba(11,36,99,.13) 73%), linear-gradient(0deg, rgba(11,36,99,.74), transparent 55%); }
    /* Approved hero: photo + wash only — no decorative ring texture */
    .hero__texture { display: none !important; }
    @keyframes breathe { to { transform: scale(1.07); } }
    .hero__inner { position: relative; z-index: 2; width: var(--container); display: grid; grid-template-columns: minmax(0, 790px) 1fr; gap: 70px; align-items: end; padding: 225px 0 96px; }
    .hero__eyebrow {
      margin-bottom: 24px;
      color: rgba(255,255,255,.88);
      font-family: var(--sans);
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
    }
    .hero h1 {
      max-width: 640px;
      margin-bottom: 22px;
      padding-bottom: .02em;
      color: #fff;
      font-family: var(--serif);
      font-size: clamp(2.9rem, 5.4vw, 5rem);
      font-weight: 400;
      font-style: normal;
      font-optical-sizing: auto;
      font-variation-settings: "opsz" 48;
      letter-spacing: -.02em;
      line-height: 1.06;
      overflow: visible;
    }
    .hero h1 em {
      display: inline;
      color: #fff;
      font-style: normal;
      font-weight: 400;
      font-optical-sizing: auto;
      font-variation-settings: "opsz" 48;
      letter-spacing: inherit;
    }
    .hero__copy > p {
      max-width: 560px;
      margin-bottom: 34px;
      color: rgba(255,255,255,.84);
      font-family: var(--sans);
      font-size: 1.06rem;
      font-weight: 400;
      line-height: 1.65;
    }
    .hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
    .hero__aside { justify-self: end; width: 255px; padding: 30px 0 0 28px; border-top: 1px solid rgba(255,255,255,.45); }
    .hero__aside strong {
      display: block;
      margin-bottom: 7px;
      color: #fff;
      font-family: var(--serif);
      font-size: 2.5rem;
      font-weight: 400;
      font-optical-sizing: auto;
      font-variation-settings: "opsz" 48;
      letter-spacing: -.03em;
      line-height: 1;
    }
    .hero__aside p {
      margin: 0;
      color: rgba(255,255,255,.72);
      font-family: var(--sans);
      font-size: .82rem;
      font-weight: 400;
      line-height: 1.45;
    }
    .hero__scroll {
      position: absolute;
      z-index: 3;
      right: 32px;
      bottom: 34px;
      display: flex;
      align-items: center;
      gap: 12px;
      color: rgba(255,255,255,.78);
      font-family: var(--sans);
      font-size: .64rem;
      font-weight: 600;
      letter-spacing: .16em;
      text-transform: uppercase;
    }
    .hero__scroll::after { width: 55px; height: 1px; background: currentColor; content: ""; }

    .trust { position: relative; z-index: 4; margin-top: -1px; background: var(--cream); }
    .trust__inner { display: grid; grid-template-columns: 1.25fr repeat(3, 1fr); min-height: 150px; }
    .trust__intro, .trust__item { display: flex; flex-direction: column; justify-content: center; padding: 28px 34px; border-right: 1px solid var(--line); }
    .trust__intro { padding-left: 0; }
    .trust__intro span { color: var(--forest); font-size: .69rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
    .trust__intro p { max-width: 270px; margin: 10px 0 0; color: var(--muted); font-size: .84rem; }
    .trust__item:last-child { border-right: 0; }
    .trust__item strong { color: var(--forest); font-family: var(--serif); font-size: 2rem; font-weight: 400; line-height: 1; }
    .trust__item span { margin-top: 8px; color: var(--muted); font-size: .73rem; }

    .manifesto { position: relative; overflow: hidden; padding: 155px 0 145px; background: var(--paper); }
    .manifesto::before { position: absolute; top: -210px; right: -110px; width: 620px; height: 620px; border: 1px solid rgba(33,65,143,.11); border-radius: 50%; box-shadow: 0 0 0 82px rgba(33,65,143,.025), 0 0 0 164px rgba(33,65,143,.018); content: ""; }
    .manifesto__grid { position: relative; display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; align-items: start; }
    .manifesto__visual { min-width: 0; }
    .manifesto__visual .label {
      margin-bottom: 25px;
      color: var(--sun);
    }
    .manifesto__visual .label::before { background: var(--sun); }
    .manifesto__image { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--forest); }
    .manifesto__image::after { position: absolute; inset: 17px; border: 1px solid rgba(255,255,255,.34); pointer-events: none; content: ""; }
    .manifesto__image img { height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.02); }
    .manifesto__content { min-width: 0; }
    .manifesto h2 {
      max-width: 11.5em;
      margin-bottom: 35px;
      color: var(--ink);
      font-family: var(--serif);
      font-size: clamp(2.85rem, 5.6vw, 5.25rem);
      font-weight: 400;
      font-optical-sizing: auto;
      letter-spacing: -.03em;
      line-height: 1.06;
    }
    .manifesto h2 em {
      color: var(--sun);
      font-style: normal;
      font-weight: 400;
    }
    .manifesto__copy {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }
    .manifesto__copy p {
      margin: 0 0 1.1em;
      color: var(--muted);
      font-family: var(--sans);
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.7;
    }
    .manifesto__copy p:last-child { margin-bottom: 0; }
    .manifesto__copy .text-link {
      margin-top: 8px;
      color: var(--sun);
      font-family: var(--sans);
      font-size: .9rem;
      font-weight: 700;
    }
    .manifesto__copy .text-link:hover { color: var(--forest); }

    .services { padding: 0 0 150px; background: var(--paper); }
    .services__head { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 44px; }
    .services__head h2 { max-width: 800px; margin: 0; font-size: clamp(3.2rem, 5.8vw, 6rem); }
    .services__head p { max-width: 370px; margin: 0 0 8px; color: var(--muted); }
    .service-grid { display: grid; grid-template-columns: 1.16fr .84fr; grid-template-rows: repeat(2, 360px); gap: 18px; }
    .service-card { position: relative; min-width: 0; overflow: hidden; padding: 34px; background: var(--forest); color: #fff; }
    .service-card:first-child { grid-row: span 2; }
    .service-card__image { position: absolute; inset: 0; }
    .service-card__image img { height: 100%; object-fit: cover; filter: saturate(.68); transition: transform .7s, filter .4s; }
    .service-card:hover .service-card__image img { transform: scale(1.045); filter: saturate(.95); }
    .service-card__shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(9,33,87,.9), rgba(9,33,87,.08) 70%); }
    .service-card__content { position: absolute; z-index: 2; right: 34px; bottom: 32px; left: 34px; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
    .service-card small { display: block; margin-bottom: 9px; color: var(--aqua-soft); font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
    .service-card h3 { margin: 0; font-size: clamp(2.3rem, 4vw, 4.3rem); }
    .service-card:not(:first-child) h3 { font-size: clamp(2rem, 3vw, 3.2rem); }
    .service-card__arrow { width: 48px; height: 48px; flex: 0 0 48px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; transition: background .25s, color .25s; }
    .service-card:hover .service-card__arrow { background: #fff; color: var(--forest); }
    .service-list { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-top: 0; background: #fff; }
    .service-list a { min-height: 105px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 24px 26px; border-right: 1px solid var(--line); font-family: var(--serif); font-size: 1.55rem; line-height: 1.05; transition: background .25s; }
    .service-list a:last-child { border-right: 0; }
    .service-list a:hover { background: var(--aqua-soft); }

    .doctors { position: relative; overflow: hidden; max-width: 100%; padding: 145px 0; background: var(--forest); color: #fff; }
    .doctors::before { position: absolute; top: -280px; left: -230px; width: 710px; height: 710px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; box-shadow: 0 0 0 90px rgba(255,255,255,.025), 0 0 0 180px rgba(255,255,255,.018); content: ""; }
    .doctors__head { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: end; margin-bottom: 58px; }
    .doctors h2 { max-width: 760px; margin: 0; }
    .doctors__head p { max-width: 480px; margin: 0 0 10px; color: rgba(255,255,255,.66); }
    .doctors-slider { position: relative; }
    .doctors-slider__viewport { position: relative; }
    .doctor-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .doctor-card { overflow: hidden; background: var(--paper); color: var(--ink); }
    .doctor-card__image { height: 440px; overflow: hidden; background: #e9edf2; }
    .doctor-card__image img { height: 100%; object-fit: cover; object-position: 50% 40%; transform: scale(1.18); transition: transform .5s; }
    .doctor-card:hover .doctor-card__image img { transform: scale(1.23); }
    .doctor-card__body { padding: 28px 30px 32px; }
    .doctor-card small { color: var(--muted); font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
    .doctor-card h3 { margin: 10px 0 15px; font-size: 2.3rem; }
    .doctor-card p { margin-bottom: 20px; color: var(--muted); font-size: .84rem; }
    /* Controls only on mobile slider */
    .doctors-slider__controls {
      display: none;
      align-items: center;
      justify-content: center;
      gap: 14px;
      margin-top: 22px;
    }
    .doctors-slider__btn {
      width: 46px;
      height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255, 255, 255, .35);
      border-radius: 50%;
      background: rgba(255, 255, 255, .08);
      color: #fff;
      font-size: 1.05rem;
      line-height: 1;
      transition: background .2s ease, border-color .2s ease, opacity .2s ease;
    }
    .doctors-slider__btn:hover:not(:disabled) {
      background: rgba(255, 255, 255, .16);
      border-color: rgba(255, 255, 255, .55);
    }
    .doctors-slider__btn:disabled {
      opacity: .35;
      cursor: not-allowed;
    }
    .doctors-slider__dots {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 8px;
      max-width: min(220px, 48vw);
    }
    .doctors-slider__dot {
      width: 8px;
      height: 8px;
      padding: 0;
      border: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, .35);
      cursor: pointer;
      transition: transform .2s ease, background .2s ease;
    }
    .doctors-slider__dot.is-active {
      background: #fff;
      transform: scale(1.25);
    }
    .doctors-slider__dot:focus-visible,
    .doctors-slider__btn:focus-visible {
      outline: 2px solid #fff;
      outline-offset: 2px;
    }

    .care { padding: 145px 0; background: var(--cream); }
    .care__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 90px; align-items: center; }
    .care__visual { position: relative; min-height: 720px; }
    .care__main { position: absolute; inset: 0 65px 45px 0; overflow: hidden; border-radius: 260px 260px 0 0; }
    .care__main img { height: 100%; object-fit: cover; filter: saturate(.72); }
    .care__detail { position: absolute; right: 0; bottom: 0; width: 270px; height: 245px; padding: 31px; display: flex; flex-direction: column; justify-content: end; background: var(--sun); color: #fff; }
    .care__detail strong { font-family: var(--serif); font-size: 3rem; font-weight: 400; line-height: .9; }
    .care__detail span { margin-top: 14px; font-size: .74rem; }
    .care__copy h2 { margin-bottom: 30px; }
    .care__copy > p { max-width: 560px; color: var(--muted); font-size: 1.03rem; }
    .care__copy .button { margin-top: 36px; }

    .story {
      position: relative;
      /* Fixed band so long testimonials do not stretch the section */
      height: 560px;
      min-height: 560px;
      max-height: 560px;
      display: grid;
      align-items: center;
      overflow: hidden;
      color: #fff;
      background: var(--forest-deep);
    }
    .story__image { position: absolute; inset: 0; }
    .story__image img {
      height: 100%;
      object-fit: cover;
      object-position: 35% 40%;
      filter: saturate(.8) contrast(1.02);
      opacity: 1;
      transition: opacity .45s ease;
    }
    .story blockquote,
    .story__person {
      opacity: 1;
      transition: opacity .4s ease;
    }
    .story.is-changing .story__image img,
    .story.is-changing blockquote,
    .story.is-changing .story__person {
      opacity: 0;
    }
    @media (prefers-reduced-motion: reduce) {
      .story__image img,
      .story blockquote,
      .story__person {
        transition: none;
      }
      .story.is-changing .story__image img,
      .story.is-changing blockquote,
      .story.is-changing .story__person {
        opacity: 1;
      }
    }
    .story__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,33,87,.08), rgba(9,33,87,.3) 45%, rgba(9,33,87,.97) 72%); }
    .story__inner {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      height: 100%;
      align-items: center;
    }
    .story__card {
      grid-column: 2;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 0;
      max-height: calc(560px - 24px);
      padding: 40px 0 40px 70px;
    }
    .story__quote {
      flex: 0 0 auto;
      margin-bottom: 12px;
      color: var(--aqua-soft);
      font-family: var(--serif);
      font-size: 2.75rem;
      line-height: .5;
    }
    .story blockquote {
      flex: 0 1 auto;
      margin: 0 0 18px;
      max-height: 11.5em;
      overflow-x: hidden;
      overflow-y: auto;
      font-family: var(--serif);
      font-size: clamp(1.05rem, 1.55vw, 1.4rem);
      font-weight: 400;
      line-height: 1.48;
      letter-spacing: -.01em;
      padding-right: 8px;
      scrollbar-width: thin;
      scrollbar-color: rgba(255,255,255,.35) transparent;
    }
    .story blockquote::-webkit-scrollbar { width: 4px; }
    .story blockquote::-webkit-scrollbar-thumb {
      border-radius: 4px;
      background: rgba(255,255,255,.35);
    }
    .story__person {
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      gap: 16px;
      color: rgba(255,255,255,.67);
      font-size: .78rem;
    }
    .story__person::before { width: 42px; height: 1px; background: var(--aqua); content: ""; }
    .story__controls { flex: 0 0 auto; display: flex; gap: 10px; margin-top: 20px; }
    .round { width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; background: transparent; color: #fff; }
    .round:hover { background: #fff; color: var(--forest); }

    .faq { padding: 145px 0; background: var(--paper); }
    .faq__grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }
    .faq h2 { margin-bottom: 28px; }
    .faq__intro p { max-width: 390px; color: var(--muted); }
    .faq__list { border-top: 1px solid var(--line); }
    .faq details { border-bottom: 1px solid var(--line); }
    .faq summary { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 25px; cursor: pointer; list-style: none; font-family: var(--serif); font-size: clamp(1.4rem, 2.3vw, 2rem); }
    .faq summary::-webkit-details-marker { display: none; }
    .faq summary::after { content: "+"; color: var(--sun); font-family: var(--sans); font-weight: 400; }
    .faq details[open] summary::after { content: "-"; }
    .faq__answer { padding: 0 55px 28px 0; color: var(--muted); font-size: .9rem; }
    .faq__answer p {
      margin: 0 0 0.75rem;
      line-height: 1.65;
    }
    .faq__answer p:last-child { margin-bottom: 0; }
    .faq__answer ul,
    .faq__answer ol {
      margin: 0.35rem 0 0.85rem;
      padding-left: 1.2rem;
      line-height: 1.6;
    }
    .faq__answer li {
      margin: 0 0 0.55rem;
      padding-left: 0.15rem;
    }
    .faq__answer li:last-child { margin-bottom: 0; }
    .faq__answer li strong {
      color: var(--forest, #21418f);
      font-weight: 700;
    }
    .faq__answer a.faq__answer-cta {
      display: inline-block;
      margin-top: 0.85rem;
      padding: 0.7rem 1.15rem;
      border-radius: 4px;
      background: var(--forest, #21418f);
      color: #fff !important;
      font-family: var(--sans);
      font-size: .88rem;
      font-weight: 700;
      line-height: 1.25;
      text-decoration: none;
      box-shadow: 0 8px 20px rgba(18, 42, 105, .16);
      transition: background .2s ease, transform .2s ease;
    }
    .faq__answer a.faq__answer-cta:hover {
      background: var(--sun, #3567ad);
      color: #fff !important;
      transform: translateY(-1px);
    }
    .faq__answer .faq__answer-highlight {
      display: inline-block;
      margin-top: 0.65rem;
      padding: 0.65rem 0.95rem;
      border-radius: 4px;
      background: var(--forest, #21418f);
      color: #fff;
      font-weight: 700;
      line-height: 1.4;
    }

    /* Peeled from FAQ copy: full-width solid promo after Q&A (Clear Lensectomy). */
    .faq-promo {
      padding: 0 0 3.5rem;
      background: var(--paper);
    }
    .faq-promo .cms-promo-banner {
      margin: 0;
      padding: clamp(1.15rem, 2.4vw, 1.5rem) clamp(1.25rem, 3vw, 1.85rem);
      border-radius: 4px;
      background: var(--forest, #3567ad);
      box-shadow: 0 12px 28px rgba(18, 42, 105, .18);
    }
    .faq-promo .cms-promo-banner p {
      margin: 0;
      color: #fff;
      font-size: clamp(1.02rem, 1.35vw, 1.12rem);
      font-weight: 500;
      line-height: 1.65;
      text-align: left;
    }
    .faq-promo .cms-promo-banner--notice p {
      text-align: center;
    }
    .interior--modern .page-body > .faq-promo {
      padding-bottom: 2.25rem;
    }
    .interior--modern .page-body > .faq + .faq-promo {
      margin-top: -1.5rem;
    }

    .finance { padding: 125px 0; background: var(--cream); overflow-x: clip; }
    .finance__head { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: end; margin-bottom: 45px; min-width: 0; }
    .finance h2 { max-width: 760px; margin: 0; }
    .finance__head p { max-width: 470px; margin: 0 0 8px; color: var(--muted); }
    /* minmax(0,1fr) prevents card min-content width from blowing past the viewport */
    .finance__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; width: 100%; max-width: 100%; }
    .finance-card {
      min-width: 0;
      max-width: 100%;
      width: 100%;
      min-height: 325px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 38px;
      border: 1px solid var(--line);
      background: var(--paper);
      overflow: hidden;
    }
    .finance-card > div { min-width: 0; max-width: 100%; }
    .finance-card--care { background: var(--forest); color: #fff; }
    .finance-card__logo {
      width: fit-content;
      max-width: 100%;
      min-height: 62px;
      margin-bottom: 28px;
      padding: 14px 20px;
      display: flex;
      align-items: center;
      border: 1px solid var(--line);
      border-radius: 4px;
      background: #fff;
      box-sizing: border-box;
    }
    .finance-card__logo img {
      width: auto;
      max-width: min(215px, 100%);
      max-height: 34px;
      height: auto;
      object-fit: contain;
    }
    .finance-card__logo--cherry img { max-width: min(178px, 100%); max-height: 40px; }
    .finance-card small { display: block; margin-bottom: 24px; color: var(--sun); font-size: .66rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
    .finance-card h3 {
      margin-bottom: 16px;
      font-size: clamp(1.85rem, 4.2vw, 2.8rem);
      line-height: 1.1;
      overflow-wrap: anywhere;
      word-break: break-word;
    }
    .finance-card p { max-width: 100%; color: var(--muted); font-size: .9rem; overflow-wrap: anywhere; }
    .finance-card--care small { color: var(--aqua-soft); }
    .finance-card--care p { color: rgba(255,255,255,.68); }
    .finance-card .button {
      align-self: flex-start;
      max-width: 100%;
      margin-top: 18px;
      white-space: normal;
      text-align: center;
      box-sizing: border-box;
    }
    .finance__note { margin: 25px 0 0; color: var(--muted); font-size: .82rem; max-width: 100%; overflow-wrap: anywhere; }

    .contact { position: relative; overflow: hidden; padding: 130px 0; background: var(--sun); color: #fff; }
    .contact::after { position: absolute; top: 50%; right: -180px; width: 580px; height: 580px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.08), 0 0 0 140px rgba(255,255,255,.04); transform: translateY(-50%); content: ""; }
    .contact__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.3fr .7fr; gap: 80px; align-items: end; }
    .contact h2 { max-width: 820px; margin: 0; font-size: clamp(4rem, 7.5vw, 7.8rem); line-height: 1.02; }
    .contact h2 em,
    .contact h2 .contact__line { font-style: normal; }
    .contact__card { padding: 34px; border-top: 1px solid rgba(255,255,255,.55); }
    .contact__card p { margin-bottom: 24px; }
    .contact__actions { display: flex; flex-wrap: wrap; gap: 10px; }
    .contact .button { background: var(--forest); color: #fff; }
    .contact .button--outline { border-color: rgba(255,255,255,.7); background: transparent; color: #fff; }

    .footer { padding: 80px 0 25px; background: var(--forest-deep); color: rgba(255,255,255,.65); }
    .footer__grid { display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(auto-fit, minmax(9.5rem, 1fr)); gap: 55px; padding-bottom: 60px; }
    .footer__brand img { width: 250px; margin-bottom: 23px; filter: none; }
    .footer__brand .footer__logo {
      display: inline-block;
      max-width: 100%;
      line-height: 0;
    }
    .footer__brand .footer__logo img { margin-bottom: 23px; }
    .footer__brand p { max-width: 330px; font-size: .83rem; }
    .footer h3 { margin-bottom: 21px; color: #fff; font-family: var(--sans); font-size: .69rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
    .footer ul { margin: 0; padding: 0; list-style: none; }
    .footer li { margin: 9px 0; }
    .footer a:hover { color: #fff; }
    .footer__bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.13); font-size: .7rem; }
    .footer__credit { color: inherit; }
    .footer__credit-prefix {
      color: inherit;
      cursor: default;
      text-decoration: none;
    }
    .footer__credit-link {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease;
    }
    .footer__credit-link:hover {
      color: #fff;
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    /* Only the credit name is linked — do not inherit broad footer link hovers onto prefix text */
    .footer__bottom a:not(.footer__credit-link) {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease;
    }
    .footer__bottom a:not(.footer__credit-link):hover { color: #fff; }

    /* Closed panel stays off-canvas without expanding document scroll width */
    .mobile-panel {
      position: fixed;
      z-index: 100;
      inset: 0;
      width: 100%;
      max-width: 100vw;
      padding: 28px;
      display: flex;
      flex-direction: column;
      background: var(--paper);
      color: var(--forest);
      transform: translate3d(100%, 0, 0);
      transition: transform .35s ease, visibility .35s;
      visibility: hidden;
      pointer-events: none;
      overscroll-behavior: contain;
      /* Keep off-screen fixed UI out of the root scrollable overflow */
      contain: layout paint;
    }
    .mobile-panel.is-open {
      transform: none;
      visibility: visible;
      pointer-events: auto;
      contain: none;
    }
    .mobile-panel__top { display: flex; align-items: center; justify-content: space-between; }
    .mobile-panel .brand { background: transparent; }
    .mobile-close { width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; background: transparent; font-size: 1.6rem; }
    .mobile-panel nav { min-height: 0; display: block; flex: 1; overflow-y: auto; padding: 38px 4px 28px 0; }
    .mobile-panel nav > a, .mobile-panel nav > details > summary { min-height: 58px; display: flex; align-items: center; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: clamp(1.7rem, 8vw, 2.6rem); cursor: pointer; list-style: none; }
    .mobile-panel nav > a.is-active,
    .mobile-panel nav > details.is-active > summary,
    .mobile-panel .mobile-submenu a.is-active {
      color: var(--aqua);
    }
    .mobile-panel .mobile-submenu a.is-active {
      font-weight: 700;
      color: var(--forest);
      padding-left: 8px;
      border-left: 3px solid var(--forest);
      margin-left: -3px;
    }
    .mobile-panel summary::-webkit-details-marker { display: none; }
    .mobile-panel nav > details > summary::after { content: "+"; color: var(--sun); font-family: var(--sans); font-size: 1.2rem; }
    .mobile-panel nav > details[open] > summary::after { content: "-"; }
    .mobile-submenu { margin: 4px 0 12px 10px; padding: 7px 0 7px 18px; border-left: 1px solid var(--line); }
    .mobile-submenu a, .mobile-submenu summary { min-height: 38px; display: flex; align-items: center; justify-content: space-between; padding: 7px 0; border: 0; color: var(--forest); font-family: var(--sans); font-size: .84rem; font-weight: 600; line-height: 1.25; cursor: pointer; list-style: none; }
    .mobile-submenu details > summary::after { content: "+"; color: var(--sun); }
    .mobile-submenu details[open] > summary::after { content: "-"; }
    .mobile-submenu a.is-active {
      color: var(--forest-deep);
      font-weight: 700;
    }
    .mobile-submenu .mobile-submenu { margin: 0 0 7px 2px; }
    .mobile-panel__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .mobile-actions { display: none; }

    .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.is-visible { opacity: 1; transform: none; }

    @media (max-width: 1050px) {
      .desktop-nav, .nav-cta { display: none; }
      .nav { grid-template-columns: minmax(0, 1fr) auto; gap: 16px; }
      .menu-toggle { display: grid; }
      .hero__inner { grid-template-columns: 1fr; }
      .hero__aside { display: none; }
      .trust__inner { grid-template-columns: repeat(3, 1fr); }
      .trust__intro { grid-column: 1 / -1; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
      .manifesto__grid, .care__grid, .faq__grid { grid-template-columns: 1fr; gap: 55px; }
      .manifesto__visual { width: min(520px, 100%); }
      .finance__head { grid-template-columns: 1fr; gap: 30px; }
      .manifesto__copy { max-width: 760px; }
      .doctor-card__image { height: 360px; }
      .story__inner { grid-template-columns: .65fr 1.35fr; }
      .story__card { padding-left: 50px; }
      /* Brand full-width; keep all link columns (Practice / Eye Care / Plan Your Visit) */
      .footer__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 36px 22px;
      }
      .footer__brand { grid-column: 1 / -1; }
    }

    @media (max-width: 760px) {
      :root { --container: min(100% - 32px, 1240px); }
      .topline__inner { min-height: 32px; justify-content: center; padding-inline: 2px; }
      .topline__inner > span { text-align: center; max-width: 100%; }
      .topline__links { display: none; }
      .header { top: 32px; }
      .nav { min-height: 76px; gap: 12px; min-width: 0; }
      .brand { min-width: 0; max-width: 100%; }
      .brand img { max-width: min(200px, 100%); width: auto; }
      /* Hero: shorter stack + tighter top pad so content sits under the fixed header
         without a large empty blue band on short mobile viewports. */
      .hero {
        min-height: min(100svh, 620px);
        align-items: flex-end;
      }
      .hero__image img { object-position: 62% 45%; }
      .hero__wash { background: linear-gradient(90deg, rgba(11,36,99,.92), rgba(11,36,99,.42)), linear-gradient(0deg, rgba(11,36,99,.92), transparent 60%); }
      .hero__inner {
        padding: 118px 0 48px;
        min-width: 0;
        max-width: 100%;
      }
      .hero__copy { min-width: 0; max-width: 100%; }
      .hero h1 {
        font-size: clamp(2.5rem, 9vw, 3.85rem);
        max-width: 100%;
        line-height: 1.08;
        overflow-wrap: anywhere;
      }
      .hero__copy > p { max-width: 100%; font-size: .92rem; }
      .hero__actions { align-items: stretch; }
      .hero__actions .button { flex: 1 1 200px; }
      .hero__scroll { display: none; }
      .trust__inner { grid-template-columns: 1fr; }
      .trust__item { min-height: 105px; padding: 23px 0; border-right: 0; border-bottom: 1px solid var(--line); }
      .trust__item strong { font-size: 1.8rem; }
      .manifesto, .doctors, .care, .faq { padding: 100px 0; }
      .finance { padding: 100px 0; }
      .manifesto__grid { gap: 35px; }
      .manifesto__copy { grid-template-columns: 1fr; gap: 16px; }
      .services { padding-bottom: 100px; }
      .services__head { display: block; }
      .services__head p { margin-top: 25px; }
      .service-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: 500px repeat(2, 300px); }
      .service-card:first-child { grid-row: auto; }
      .service-card__content { right: 24px; bottom: 24px; left: 24px; }
      .service-list { grid-template-columns: 1fr; }
      .service-list a { min-height: 85px; border-right: 0; border-bottom: 1px solid var(--line); }
      .doctors__head { grid-template-columns: 1fr; gap: 25px; }
      .doctors .container { max-width: 100%; min-width: 0; }
      /* Mobile doctors: single-card slider (arrows + dots), not free-form page scroll */
      .doctors-slider { min-width: 0; }
      .doctors-slider__viewport {
        overflow: hidden;
        max-width: 100%;
        min-width: 0;
        touch-action: pan-y;
      }
      .doctor-grid {
        display: flex;
        gap: 14px;
        max-width: none;
        min-width: 0;
        transform: translate3d(0, 0, 0);
        transition: transform .35s cubic-bezier(.22, 1, .36, 1);
        will-change: transform;
      }
      .doctor-card {
        flex: 0 0 min(100%, 320px);
        width: min(100%, 320px);
        min-width: 0;
        max-width: min(100%, 320px);
      }
      .doctors-slider__controls {
        display: flex;
      }
      .doctors-slider__controls[hidden] {
        display: none !important;
      }
      .care {
        overflow-x: hidden;
      }
      .care__grid {
        min-width: 0;
      }
      /* Mobile: full-width photo + callout band (desktop keeps inset overlay composition) */
      .care__visual {
        position: relative;
        min-height: 0;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
      }
      .care__main {
        position: relative;
        inset: auto;
        width: 100%;
        max-width: 100%;
        aspect-ratio: 4 / 5;
        max-height: 440px;
        border-radius: 22px 22px 0 0;
        overflow: hidden;
      }
      .care__main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 35%;
      }
      .care__detail {
        position: relative;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 0;
        padding: 20px 18px 22px;
        box-sizing: border-box;
      }
      .care__detail strong {
        font-size: clamp(1.45rem, 7vw, 2.05rem);
        line-height: 1.08;
        overflow-wrap: anywhere;
        word-break: break-word;
      }
      .care__detail span {
        margin-top: 10px;
        font-size: .78rem;
        line-height: 1.45;
      }
      .care__copy {
        min-width: 0;
        max-width: 100%;
      }
      .care__copy h2 {
        overflow-wrap: anywhere;
      }
      .story {
        height: 520px;
        min-height: 520px;
        max-height: 520px;
        align-items: end;
      }
      .story__image img { object-position: 35% center; }
      /* Stronger top fade so quote can sit higher without losing contrast */
      .story__shade {
        background:
          linear-gradient(0deg, rgba(9,33,87,.98) 0%, rgba(9,33,87,.72) 42%, rgba(9,33,87,.22) 70%, rgba(9,33,87,.08) 100%);
      }
      .story__inner { display: block; height: 100%; }
      .story__card {
        padding: 56px 0 36px;
        max-width: 100%;
        max-height: 100%;
      }
      .story blockquote {
        font-size: clamp(1rem, 3.8vw, 1.25rem);
        line-height: 1.45;
        max-height: 12em;
      }
      .story__quote {
        font-size: 2.4rem;
        margin-bottom: 10px;
      }
      .faq__grid { gap: 35px; }
      .finance__grid { grid-template-columns: minmax(0, 1fr); gap: 14px; }
      .finance-card {
        min-height: 0;
        padding: 24px 18px;
      }
      .finance-card__logo {
        min-height: 52px;
        margin-bottom: 18px;
        padding: 10px 14px;
      }
      .finance-card__logo img,
      .finance-card__logo--cherry img {
        max-width: min(148px, 100%);
        max-height: 32px;
      }
      .finance-card small { margin-bottom: 14px; letter-spacing: .1em; }
      .finance-card h3 { font-size: clamp(1.7rem, 9vw, 2.2rem); margin-bottom: 12px; }
      .finance-card p { font-size: .86rem; }
      .finance-card .button {
        min-height: 48px;
        padding: 12px 16px;
        gap: 10px;
      }
      .contact { padding: 95px 0; }
      .contact__inner { grid-template-columns: 1fr; gap: 45px; }
      .contact__card { padding: 26px 0 0; }
      .footer { padding-bottom: 40px; }
      .footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 16px;
      }
      .footer__brand { grid-column: 1 / -1; }
      .footer__grid > :not(.footer__brand) { min-width: 0; }
      .footer__bottom { flex-direction: column; }
      .footer__brand img { width: min(220px, 100%); max-width: 100%; }
      .contact h2 { font-size: clamp(2.6rem, 12vw, 7.8rem); max-width: 100%; }
    }

    /* Extra-narrow phones (e.g. 320px): prevent logo + menu from pushing past the viewport */
    @media (max-width: 380px) {
      :root { --container: min(100% - 24px, 1240px); }
      .brand img { max-width: min(150px, 100%); }
      .nav { gap: 8px; }
      .hero {
        min-height: min(100svh, 560px);
      }
      .hero__inner {
        padding: 108px 0 40px;
      }
      .hero h1 { font-size: clamp(2.3rem, 10vw, 3.35rem); }
      .doctor-card {
        flex-basis: min(100%, 300px);
        width: min(100%, 300px);
        max-width: min(100%, 300px);
      }
      .story {
        height: 480px;
        min-height: 480px;
        max-height: 480px;
      }
      .story__card {
        padding: 48px 0 32px;
      }
      .story blockquote {
        max-height: 11em;
        font-size: clamp(.95rem, 3.6vw, 1.15rem);
      }
      /* Finance partner cards — stay inside 320px viewport (no border bleed) */
      .finance { padding: 72px 0; }
      .finance .container { max-width: 100%; min-width: 0; }
      .finance-card { padding: 18px 14px; }
      .finance-card__logo { padding: 8px 12px; margin-bottom: 14px; }
      .finance-card__logo img,
      .finance-card__logo--cherry img {
        max-width: min(132px, 100%);
        max-height: 28px;
      }
      .finance-card h3 { font-size: clamp(1.55rem, 8.5vw, 1.95rem); }
      .finance-card .button {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding-inline: 12px;
        font-size: .8rem;
      }
      /* Keep all three link columns readable; stack lists if needed on 320px */
      .footer__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
      }
      .footer h3 { margin-bottom: 14px; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
    }

/* ==========================================================================
   Interior pages — same palette as homepage (forest / aqua / cream / paper)
   Homepage sections above this block are unchanged.
   ========================================================================== */
.interior {
  background: var(--paper);
}

.page-hero {
  position: relative;
  min-height: clamp(340px, 42vh, 480px);
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: 170px 0 72px;
  background: var(--forest-deep);
  color: #fff;
}
.page-hero__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(11, 36, 99, .96) 0%, rgba(18, 42, 105, .82) 42%, rgba(33, 65, 143, .42) 78%, rgba(123, 175, 212, .22) 100%),
    linear-gradient(0deg, rgba(11, 36, 99, .55), transparent 52%);
  pointer-events: none;
}
.page-hero__texture {
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image:
    radial-gradient(circle at 18% 70%, transparent 0 180px, rgba(123, 175, 212, .55) 181px 182px, transparent 183px 236px, rgba(123, 175, 212, .32) 237px 238px, transparent 239px),
    radial-gradient(circle at 88% 18%, rgba(123, 175, 212, .18), transparent 36%);
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin-inline: auto;
  max-width: 920px;
}
.page-hero .label { margin-bottom: 18px; }
.page-hero h1 {
  max-width: 18ch;
  margin: 0 0 18px;
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  line-height: .96;
}
.page-hero__lede {
  max-width: 38rem;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1.02rem, 1.5vw, 1.12rem);
  line-height: 1.65;
}
.page-hero__scroll {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - min(1240px, 100% - 48px)) / 2));
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .72);
  font-size: .64rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.page-hero__scroll span {
  width: 48px;
  height: 1px;
  background: currentColor;
  display: block;
}
.page-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: center;
  max-width: 100%;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, .62);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.45;
  box-sizing: border-box;
}
.page-breadcrumbs a:hover { color: #fff; }
.page-breadcrumbs__sep,
.page-breadcrumbs span[aria-hidden="true"] { opacity: .45; flex-shrink: 0; }
.page-breadcrumbs__node {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.page-breadcrumbs__current { color: rgba(255, 255, 255, .88); }
/* Ellipsis only used when middle hubs collapse (narrow screens) */
.page-breadcrumbs__ellipsis { display: none; }

.page-body {
  position: relative;
  padding: 0 0 0;
  background: var(--cream);
}
.page-body::before {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: transparent;
  content: "";
}
.page-body > .container {
  position: relative;
  z-index: 2;
}
/* Pull only the first panel up under the hero — later containers (e.g. after FAQ)
   must not inherit the negative margin or they overlap the section above. */
.page-body > .container:first-child {
  margin-top: -36px;
  padding-bottom: 110px;
}
.page-panel {
  position: relative;
  padding: clamp(36px, 5vw, 64px) clamp(24px, 4vw, 72px);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(18, 42, 105, .08);
  overflow: hidden;
}
/* Tall article panels must stay readable even if an old template still adds .reveal */
.page-panel.reveal {
  opacity: 1;
  transform: none;
}
.page-panel::before {
  position: absolute;
  top: -160px;
  right: -120px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(33, 65, 143, .08);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(33, 65, 143, .02);
  pointer-events: none;
  content: "";
}

/* Full content column like live site — was 42rem and left a large empty right gutter */
.interior:not(.interior--team):not(.interior--forms) .cms-rich-content {
  max-width: none;
  width: 100%;
}
.interior--team .page-panel,
.interior--forms .page-panel {
  padding-inline: clamp(20px, 3vw, 48px);
}
.interior--team .cms-rich-content,
.interior--forms .cms-rich-content {
  max-width: none;
}

/* ---- Rich content: editorial typesetting ---- */
.cms-rich-content {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: none;
}
.cms-rich-content > *:first-child { margin-top: 0; }
.cms-rich-content h2,
.cms-rich-content h3,
.cms-rich-content h4,
.cms-rich-content h5,
.cms-rich-content h6 {
  margin: 2em 0 .65em;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.08;
}
.cms-rich-content h2 { font-size: clamp(2.2rem, 3.8vw, 3.2rem); }
.cms-rich-content h3 {
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  padding-top: .35em;
  border-top: 1px solid var(--line);
}
.cms-rich-content > h3:first-child,
.cms-rich-content > h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.cms-rich-content h4 {
  font-size: 1.05rem;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--forest);
  border: 0;
  padding: 0;
}
.cms-rich-content h5,
.cms-rich-content h6 {
  font-size: 1.05rem;
  font-family: var(--sans);
  font-weight: 700;
  color: var(--forest);
}
.cms-rich-content p { margin: 0 0 1.15em; }
.cms-rich-content p:last-child { margin-bottom: 0; }
.cms-rich-content p strong,
.cms-rich-content p b,
.cms-rich-content li strong,
.cms-rich-content li b {
  display: inline;
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  line-height: inherit;
}
/* Inline emphasis must never inherit heading/display sizing from page-specific CSS. */
.cms-rich-content :is(p, li, td, th, blockquote, dd, dt, figcaption) :is(strong, b) {
  display: inline !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: 700;
  line-height: inherit !important;
  letter-spacing: inherit !important;
  text-transform: inherit !important;
}
.cms-rich-content [class*="ql-size-"],
.cms-rich-content [class*="ql-font-"] {
  font-family: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
}
.cms-rich-content span[style*="248, 250, 252"],
.cms-rich-content span[style*="248,250,252"],
.cms-rich-content span[style*="#f8fafc" i],
.cms-rich-content span[style*="#ffffff" i],
.cms-rich-content span[style*="#fff;" i],
.cms-rich-content span[style*="#fff " i] {
  color: inherit !important;
}
.cms-rich-content ul,
.cms-rich-content ol {
  margin: 0 0 1.4em;
  padding: 0;
  list-style: none;
}
.cms-rich-content li {
  position: relative;
  margin: 0;
  padding: .55em 0 .55em 1.35em;
  border-bottom: 1px solid rgba(33, 65, 143, .08);
  color: var(--ink);
}
.cms-rich-content li:last-child { border-bottom: 0; }
.cms-rich-content ul > li::before {
  position: absolute;
  left: 0;
  top: 1.05em;
  width: 8px;
  height: 1px;
  background: var(--sun);
  content: "";
}
.cms-rich-content ol {
  counter-reset: interior-item;
}
.cms-rich-content ol > li {
  counter-increment: interior-item;
  padding-left: 2.2em;
}
.cms-rich-content ol > li::before {
  position: absolute;
  left: 0;
  top: .55em;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.4;
  content: counter(interior-item, decimal-leading-zero);
}
.cms-rich-content a {
  color: var(--forest);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.cms-rich-content a:hover { color: var(--sun); }
.cms-rich-content a.button {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  text-underline-offset: unset;
  text-decoration-thickness: unset;
}
.cms-rich-content a.button:hover {
  color: #fff;
}
.cms-rich-content a.button.button--outline {
  color: var(--forest);
}
.cms-rich-content a.button.button--outline:hover {
  color: var(--forest);
}
.cms-rich-content .cms-button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px 14px;
  margin: 1.15em 0 0.35em;
}
.cms-rich-content .cms-button-row a,
.cms-rich-content .cms-button-row a.button,
.cms-rich-content .cms-button-row a.button.button--outline {
  min-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin: 0;
  padding: 13px 24px;
  border: 1px solid rgba(33, 65, 143, .2);
  border-radius: 999px;
  background: #fff;
  color: var(--forest);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
  text-decoration: none;
  text-underline-offset: unset;
  text-decoration-thickness: unset;
  box-shadow: none;
  transform: none;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.cms-rich-content .cms-button-row a::after,
.cms-rich-content .cms-button-row a.button::after {
  color: var(--forest);
  font-size: .95rem;
  line-height: 1;
  transition: color .25s ease, transform .25s ease;
  content: "→";
}
.cms-rich-content .cms-button-row a:hover,
.cms-rich-content .cms-button-row a.button:hover,
.cms-rich-content .cms-button-row a.button.button--outline:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(18, 42, 105, .22);
}
.cms-rich-content .cms-button-row a:hover::after,
.cms-rich-content .cms-button-row a.button:hover::after {
  color: #fff;
  transform: translateX(3px);
}
.cms-rich-content strong { color: var(--ink); font-weight: 700; }
.cms-rich-content br + br { display: none; }

/* Content images — natural live size (don't fill full modern panel width) */
.cms-rich-content img {
  display: inline-block;
  width: auto;
  max-width: min(100%, 34rem); /* ~live body-column width for diagrams/banners */
  height: auto;
  margin: 0.85em 0 1.15em;
  border-radius: 0;
  vertical-align: middle;
  object-fit: contain;
  box-shadow: none;
}
/* Do not stretch first/lone images to hero ratio */
.cms-rich-content p > img:only-child,
.cms-rich-content > img:first-child {
  width: auto;
  max-width: min(100%, 34rem);
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  margin-top: 0;
}
.cms-rich-content img + br { display: none; }

/* Live parity footer strip — two open columns (no cards), full content width
   Matches arkansaslasik.com “Eye Condition Information | Question & Answer”. */
.cms-resource-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(1.5rem, 4vw, 2.75rem);
  row-gap: 1.35rem;
  align-items: stretch; /* equal-height cards */
  width: 100%;
  max-width: none;
  margin: 1.75rem 0 0.5rem;
  padding: 1.25rem 0 0.15rem;
  border-top: 1px solid rgba(23, 43, 77, .12);
  background: transparent;
}
.cms-resource-row__col {
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.cms-resource-row h4 {
  width: 100%;
  margin: 0 0 .85rem;
  padding: 0;
  border: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.25;
  text-transform: uppercase;
}
.cms-resource-row a {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
  background: transparent;
  flex: 0 0 auto;
}
.cms-resource-row img {
  display: block;
  width: auto !important;
  max-width: 100%;
  height: auto !important;
  margin: 0;
  object-fit: contain;
  object-position: left center;
  box-shadow: none;
  border-radius: 0;
}
/* eyeSmart + myeyes always sit in one horizontal row */
.cms-resource-row__logos {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: .9rem 1.4rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.cms-resource-row__logos a {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
  background: transparent;
  flex: 0 1 auto;
  min-width: 0;
  max-width: 48%;
}
.cms-resource-row__logos img {
  display: block;
  max-height: 6.15rem;
  max-width: 100%;
  width: auto !important;
  height: auto !important;
  margin: 0;
  flex-shrink: 1;
  object-fit: contain;
  object-position: left center;
}
.cms-resource-row__col--qa {
  justify-content: flex-start;
}
.cms-resource-row__col--qa a {
  display: block;
  width: fit-content;
  max-width: 100%;
  min-width: 0;
}
/* Ask Dr: readable size, balanced with logo-row */
.cms-resource-row__col--qa img {
  display: block;
  width: auto !important;
  max-width: min(100%, 22rem) !important;
  max-height: 7.5rem !important;
  height: auto !important;
  border: 1px solid rgba(23, 43, 77, .14);
  object-fit: contain;
  object-position: left center;
}
@media (max-width: 760px) {
  .cms-resource-row {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 1.15rem;
  }
  .cms-resource-row__col {
    overflow: hidden;
    max-width: 100%;
  }
  .cms-resource-row__logos {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: .7rem 1rem;
  }
  .cms-resource-row__logos a {
    flex: 0 1 auto;
    max-width: 48%;
    min-width: 0;
  }
  .cms-resource-row__logos img {
    max-height: 4.75rem;
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    object-position: left center;
  }
  .cms-resource-row__col--qa a {
    width: fit-content;
    max-width: 100%;
  }
  .cms-resource-row__col--qa img {
    max-width: min(100%, 18rem) !important;
    max-height: 6.25rem !important;
  }
}
@media (max-width: 380px) {
  .cms-resource-row__logos {
    flex-wrap: nowrap;
    gap: .55rem .7rem;
  }
  .cms-resource-row__logos a {
    max-width: 48%;
  }
  .cms-resource-row__logos img {
    max-width: 100% !important;
    width: auto !important;
    max-height: 3.5rem;
  }
  .cms-resource-row__col--qa img {
    max-height: 5.25rem !important;
  }
}

/* Ask-question (live) eye-info strip: centered logos under form */
.cms-eye-info-strip {
  margin: 2.25rem 0 0.5rem;
  padding: 1.85rem 1.25rem 1.65rem;
  border-radius: 1rem;
  background: #f3f5f7;
  text-align: center;
}
.cms-eye-info-strip h4 {
  margin: 0 0 1.25rem;
  padding: 0;
  border: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.2;
  text-transform: uppercase;
}
.cms-eye-info-strip__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2rem;
}
.cms-eye-info-strip__logos a {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
}
.cms-eye-info-strip__logos img {
  display: block;
  width: auto !important;
  max-width: min(42vw, 220px);
  max-height: 120px;
  height: auto !important;
  margin: 0;
  object-fit: contain;
  box-shadow: none;
  border-radius: 0;
}
@media (max-width: 560px) {
  .cms-eye-info-strip__logos img {
    max-width: min(44vw, 180px);
    max-height: 100px;
  }
}

/* Team / people pages — homepage doctor aesthetic on cream/paper */
.cms-rich-content .people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 8px 0 0;
}
.cms-rich-content .person-card {
  margin: 0;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  transition: transform .25s, box-shadow .25s;
}
.cms-rich-content .person-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(18, 42, 105, .1);
}
.cms-rich-content .person-card img {
  width: 100%;
  max-width: none;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 20%;
  margin: 0;
  box-shadow: none;
  filter: saturate(.88) contrast(1.02);
  transition: transform .5s;
}
.cms-rich-content .person-card:hover img { transform: scale(1.04); }
.cms-rich-content .person-card h3 {
  margin: 0;
  padding: 22px 22px 6px;
  border: 0;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
}
.cms-rich-content .person-card p {
  margin: 0;
  padding: 0 22px 12px;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.55;
}
.cms-rich-content .person-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 22px 24px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--forest);
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
}
.cms-rich-content .person-card p.person-card__meta,
.people-module .person-card p.person-card__meta {
  margin: 0;
  padding: 0 22px 8px;
  color: var(--forest);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.people-module .people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 8px 0 0;
}
.people-module .person-card {
  margin: 0;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  transition: transform .25s, box-shadow .25s;
}
.people-module .person-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(18, 42, 105, .1);
}
.people-module .person-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 20%;
  margin: 0;
  display: block;
  filter: saturate(.88) contrast(1.02);
  transition: transform .5s;
}
.people-module .person-card:hover img { transform: scale(1.04); }
.people-module .person-card h3 {
  margin: 0;
  padding: 22px 22px 6px;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
}
.people-module .person-card p {
  margin: 0;
  padding: 0 22px 12px;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.55;
}
.people-module .person-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 22px 24px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--forest);
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
}
.people-module .person-card a:hover { color: var(--sun); }
@media (max-width: 1050px) {
  .people-module .people-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .people-module .people-grid { grid-template-columns: 1fr; }
}

.cms-rich-content .vision-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  justify-content: start;
  gap: 18px;
  margin: 1.15em 0 1.4em;
}
.cms-rich-content .vision-pair img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0;
  aspect-ratio: auto;
  object-fit: contain;
}

/* YouTube embeds (restored from live imports) */
.cms-rich-content .cms-video {
  position: relative;
  width: 100%;
  max-width: min(100%, 52rem);
  margin: 1.35em 0 1.9em;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 1.1rem;
  background: linear-gradient(145deg, #0b1f44 0%, #14356b 55%, #0d244d 100%);
  box-shadow: 0 18px 40px rgba(10, 28, 58, .18);
}
.cms-rich-content .cms-video iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Live-parity Basic / Advanced option cards with hover lift */
.cms-rich-content .cms-option-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  margin: 1.6em 0 1.8em;
}
.cms-rich-content .cms-option-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.45rem 1.4rem 1.35rem;
  border: 1px solid rgba(33, 65, 143, .14);
  border-radius: 1.15rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .92) 0%, rgba(245, 248, 252, .94) 100%);
  box-shadow: 0 10px 28px rgba(16, 40, 80, .06);
  transition:
    transform .28s cubic-bezier(.22, 1, .36, 1),
    box-shadow .28s ease,
    border-color .28s ease,
    background .28s ease;
}
.cms-rich-content .cms-option-card::after {
  position: absolute;
  inset: auto 1.4rem 1.15rem 1.4rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(232, 168, 56, .55), transparent);
  opacity: 0;
  content: "";
  transition: opacity .28s ease;
}
.cms-rich-content .cms-option-card:hover {
  transform: translateY(-7px);
  border-color: rgba(33, 65, 143, .28);
  box-shadow: 0 22px 48px rgba(16, 40, 80, .14);
  background:
    linear-gradient(180deg, #ffffff 0%, #f3f7fc 100%);
}
.cms-rich-content .cms-option-card:hover::after { opacity: 1; }
.cms-rich-content .cms-option-card--featured {
  border-color: rgba(232, 168, 56, .42);
  background:
    linear-gradient(165deg, rgba(255, 250, 238, .98) 0%, rgba(255, 255, 255, .96) 48%, rgba(241, 247, 255, .95) 100%);
}
.cms-rich-content .cms-option-card--featured:hover {
  border-color: rgba(232, 168, 56, .7);
  box-shadow: 0 24px 52px rgba(33, 65, 143, .16);
}
.cms-rich-content .cms-option-card__eyebrow {
  margin: 0 0 .55em;
  color: var(--forest);
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.cms-rich-content .cms-option-card h3 {
  margin: 0 0 .85em;
  padding: 0;
  border: 0;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  color: var(--ink);
}
.cms-rich-content .cms-option-card ul {
  margin: 0;
  flex: 1;
}
.cms-rich-content .cms-option-card li {
  padding: .48em 0 .48em 1.25em;
  border-bottom-color: rgba(33, 65, 143, .07);
  font-size: .96rem;
  line-height: 1.45;
}
.cms-rich-content .cms-option-card li:last-child { border-bottom: 0; }

.cms-rich-content .cms-financing {
  display: grid;
  justify-items: center;
  gap: .9rem;
  margin: 1.5em 0 1.25em;
  padding: 1.55rem 1.4rem 1.4rem;
  border: 1px solid rgba(33, 65, 143, .1);
  border-radius: 1.1rem;
  background:
    linear-gradient(180deg, rgba(244, 247, 251, .9) 0%, rgba(255, 255, 255, .95) 100%);
  text-align: center;
}
.cms-rich-content .cms-financing h5 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.cms-rich-content .cms-financing img {
  display: block;
  width: auto;
  max-width: min(100%, 13.5rem);
  margin: 0 auto;
  height: auto;
}
.cms-rich-content .cms-financing a {
  text-decoration: none;
}

/* Advanced cataract / simple financing logos — no nested card borders */
.cms-rich-content .cms-financing-partners {
  display: grid;
  justify-items: center;
  gap: 1.05rem;
  margin: 1.75em 0 1.5em;
  padding: 1.45rem 1.35rem 1.35rem;
  border: 0;
  border-radius: 0;
  background: rgba(241, 245, 249, .85);
  text-align: center;
}
.cms-rich-content .cms-financing-partners h5 {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cms-rich-content .cms-financing-partners__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.4rem 2.5rem;
  width: 100%;
}
.cms-rich-content .cms-financing-partners__logos a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  text-decoration: none;
  transition: opacity .25s ease, transform .25s ease;
}
.cms-rich-content .cms-financing-partners__logos a:hover {
  opacity: .88;
  transform: translateY(-2px);
}
.cms-rich-content .cms-financing-partners__logos img {
  display: block;
  width: auto;
  max-width: min(48vw, 13rem);
  max-height: 3.5rem;
  height: auto;
  margin: 0;
  object-fit: contain;
}
/* Common Questions: financing is its own se_rich_text block, so it opened a white
   page-panel around the grey strip (double box). Flatten the shell so only the
   Advanced Cataract-style strip remains. */
.interior--modern .page-panel:has(> .cms-rich-content.se-block-rich-text:only-child > .cms-financing-partners:only-child),
.interior--modern .page-panel:has(> .se-block-rich-text:only-child > .cms-financing-partners:only-child) {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  animation: none;
}
.interior--modern .page-panel:has(> .cms-rich-content.se-block-rich-text:only-child > .cms-financing-partners:only-child)::before,
.interior--modern .page-panel:has(> .se-block-rich-text:only-child > .cms-financing-partners:only-child)::before {
  display: none;
  content: none;
}
.interior--modern .page-panel:has(> .cms-rich-content.se-block-rich-text:only-child > .cms-financing-partners:only-child) .cms-financing-partners,
.interior--modern .page-panel:has(> .se-block-rich-text:only-child > .cms-financing-partners:only-child) .cms-financing-partners {
  margin: 0 0 1.5em;
}
/* Resource strip alone after FAQ (macular / diabetic etc.): no outer white panel shell.
   Cards themselves keep their existing .cms-resource-row styling. */
.interior--modern .cms-resource-after-faq .cms-resource-row {
  margin-top: 0;
  margin-bottom: 0;
}
/* Short NEI blurb + single diagram panels: one surface only (no framed image-in-panel).
   Matches dense What Is Cataract / Overview flow; leaves multi-section articles untouched. */
.interior--article .page-panel:has(> .cms-rich-content:only-child > p:first-child + img:last-of-type) .cms-rich-content > img {
  margin: 1.25rem auto 0;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
@media (max-width: 820px) {
  .cms-rich-content .cms-option-cards { grid-template-columns: 1fr; }
  .cms-rich-content .cms-financing-partners__logos {
    gap: 1rem 1.5rem;
  }
}

/* Affordability payment plan widgets (external linkouts) */
.cms-rich-content .cms-payment-widgets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  margin: 1.35em 0 1.75em;
}
.cms-rich-content .cms-payment-widget {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  min-height: 100%;
  padding: 1.35rem 1.3rem 1.2rem;
  border: 1px solid rgba(33, 65, 143, .14);
  border-radius: 1.1rem;
  background: linear-gradient(180deg, #fff 0%, #f5f8fc 100%);
  box-shadow: 0 10px 28px rgba(16, 40, 80, .06);
  color: inherit;
  text-decoration: none;
  transition:
    transform .28s cubic-bezier(.22, 1, .36, 1),
    box-shadow .28s ease,
    border-color .28s ease;
}
.cms-rich-content .cms-payment-widget:hover {
  transform: translateY(-6px);
  border-color: rgba(33, 65, 143, .28);
  box-shadow: 0 20px 44px rgba(16, 40, 80, .12);
  color: inherit;
}
.cms-rich-content .cms-payment-widget--accent {
  border-color: rgba(232, 168, 56, .38);
  background: linear-gradient(165deg, #fffaf0 0%, #fff 52%, #f3f7fc 100%);
}
.cms-rich-content .cms-payment-widget img {
  display: block;
  width: auto;
  max-width: 11rem;
  max-height: 2.6rem;
  margin: 0 0 .35rem;
  object-fit: contain;
}
.cms-rich-content .cms-payment-widget__eyebrow {
  color: var(--forest);
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.cms-rich-content .cms-payment-widget strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.1;
}
.cms-rich-content .cms-payment-widget p {
  margin: 0;
  flex: 1;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.5;
}
.cms-rich-content .cms-payment-widget__cta {
  margin-top: .35rem;
  color: var(--forest);
  font-size: .88rem;
  font-weight: 700;
}
.cms-rich-content .cms-payment-widget:hover .cms-payment-widget__cta {
  color: var(--sun);
}
@media (max-width: 820px) {
  .cms-rich-content .cms-payment-widgets { grid-template-columns: 1fr; }
}

/* Forms page */
.page-forms {
  position: relative;
  z-index: 1;
  margin-top: 8px;
}
.page-forms__head {
  display: grid;
  grid-template-columns: 1fr minmax(0, 28rem);
  gap: 24px 48px;
  align-items: end;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.page-forms__head .label { margin-bottom: 0; }
.page-forms__head p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}
.page-forms-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-forms-list li { margin: 0; border-bottom: 0; }
.page-forms-list a,
.page-forms-list__card {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 20px 4px;
  color: var(--ink);
  transition: background .2s, padding .2s;
}
.page-forms-list a:hover {
  background: linear-gradient(90deg, var(--aqua-soft), transparent 70%);
  padding-left: 12px;
  padding-right: 12px;
}
.page-forms-list__index {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1;
}
.page-forms-list__label {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  line-height: 1.2;
}
.page-forms-list__action {
  color: var(--forest);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ---- Premium forms / download center (presentation only; CMS-driven loop) ---- */
.interior--forms.interior--modern .page-body {
  position: relative;
  background:
    radial-gradient(ellipse 70% 42% at 8% 16%, rgba(123, 175, 212, .14), transparent 60%),
    radial-gradient(ellipse 55% 38% at 96% 52%, rgba(53, 103, 173, .08), transparent 55%),
    #fff;
}
.interior--forms.interior--modern .cms-rich-content {
  max-width: none;
  width: 100%;
  margin-bottom: 1.75rem;
}
.interior--forms.interior--modern .cms-rich-content p {
  max-width: 46rem;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.35vw, 1.12rem);
  line-height: 1.8;
}
.interior--forms.interior--modern .page-forms__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px 28px;
  margin: 0 0 1.5rem;
  padding: 0 0 1.25rem;
  border-bottom: 1px solid rgba(33, 65, 143, .12);
}
.interior--forms.interior--modern .page-forms__head .label {
  color: var(--forest);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.interior--forms.interior--modern .page-forms__head p {
  max-width: 34rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.08rem);
  line-height: 1.7;
}
.interior--forms.interior--modern .page-forms-list {
  gap: 14px;
}
.interior--forms.interior--modern .page-forms-list__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 24px;
  min-height: 0;
  padding: clamp(1.1rem, 2vw, 1.45rem) clamp(1.15rem, 2.2vw, 1.6rem);
  border: 1px solid rgba(33, 65, 143, .12);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff 0%, #f6f9fc 100%);
  box-shadow: 0 10px 28px rgba(18, 42, 105, .06);
  color: var(--ink);
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.interior--forms.interior--modern .page-forms-list__card:hover {
  transform: translateY(-3px);
  border-color: rgba(33, 65, 143, .24);
  box-shadow: 0 18px 40px rgba(18, 42, 105, .12);
  background: linear-gradient(180deg, #fff 0%, #f3f7fc 100%);
  padding: clamp(1.1rem, 2vw, 1.45rem) clamp(1.15rem, 2.2vw, 1.6rem);
}
.interior--forms.interior--modern .page-forms-list__card:focus-visible {
  outline: 2px solid var(--sun);
  outline-offset: 2px;
}
.interior--forms.interior--modern .page-forms-list__main {
  display: flex;
  align-items: center;
  gap: 16px 18px;
  min-width: 0;
  flex: 1 1 auto;
}
.interior--forms.interior--modern .page-forms-list__index {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(53, 103, 173, .12);
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1;
}
.interior--forms.interior--modern .page-forms-list__label {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.45rem); /* ~22–24px */
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.25;
}
.interior--forms.interior--modern .page-forms-list__action {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 20px;
  border: 1px solid rgba(33, 65, 143, .22);
  border-radius: 999px;
  background: #fff;
  color: var(--forest);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.interior--forms.interior--modern .page-forms-list__action-icon {
  display: inline-flex;
  line-height: 0;
}
.interior--forms.interior--modern .page-forms-list__card:hover .page-forms-list__action {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
  box-shadow: 0 10px 22px rgba(18, 42, 105, .18);
  transform: translateY(-1px);
}
@media (max-width: 760px) {
  .interior--forms.interior--modern .page-forms-list__card {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .interior--forms.interior--modern .page-forms-list__action {
    width: 100%;
  }
  .interior--forms.interior--modern .page-forms__head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Contact form */
.page-contact-form {
  position: relative;
  z-index: 1;
  margin-top: 12px;
}
.page-contact-form__head {
  max-width: 36rem;
  margin-bottom: 28px;
}
.page-contact-form__head h2 {
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.05;
}
.page-contact-form__head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}
.page-contact-form__success {
  margin: 0 0 22px;
  padding: 0;
  background: #e8f5ee;
  color: #14532d;
  border: 1px solid #86efac;
  border-radius: 12px;
  overflow: hidden;
}
.page-contact-form__error {
  margin: 0 0 22px;
  padding: 0;
  background: #fef2f2;
  color: #7f1d1d;
  border: 1px solid #fecaca;
  border-radius: 12px;
  overflow: hidden;
}
.page-contact-form__success-inner {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 14px 16px;
}
.page-contact-form__success-title {
  margin: 0 0 4px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.page-contact-form__success-text {
  margin: 0;
  font-size: .98rem;
  line-height: 1.45;
}
.page-contact-form__success-close {
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  opacity: .7;
}
.page-contact-form__success-close:hover { opacity: 1; }
.page-contact-form__success[data-state='closing'],
.page-contact-form__error[data-state='closing'] {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease;
}

/* Floating form toast (shared enhancer) — secondary feedback on interior forms */
.form-toast-stack {
  position: fixed;
  z-index: 80;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: .65rem;
  width: min(22rem, calc(100vw - 2rem));
  pointer-events: none;
}
.form-toast-stack [data-form-toast] {
  pointer-events: auto;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(10, 28, 58, .16);
  background: #fff;
  border: 1px solid rgba(33, 65, 143, .12);
  overflow: hidden;
}
.form-toast-stack .form-success { border-color: #86efac; }
.form-toast-stack .form-errors { border-color: #fecaca; }
.form-toast-body {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 14px 16px;
}
.form-toast-title {
  margin: 0 0 4px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.form-toast-message { margin: 0; font-size: .95rem; color: var(--muted); }
.form-toast-close {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--ink);
  opacity: .65;
}
.form-toast-close:hover { opacity: 1; }
[data-form-toast][data-state='closing'] {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease;
}
.page-contact-form__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  max-width: 44rem;
}
.page-field__error {
  margin: 6px 0 0;
  color: #b91c1c;
  font-size: .86rem;
}
.page-recaptcha-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .86rem;
}
.page-field--full { grid-column: 1 / -1; }
.page-field label {
  display: block;
  margin: 12px 0 7px;
  color: var(--forest);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.page-field input,
.page-field textarea,
.page-field select {
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--cream);
  color: var(--ink);
  font: inherit;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.page-field input:focus,
.page-field textarea:focus,
.page-field select:focus {
  outline: none;
  border-color: var(--aqua);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(123, 175, 212, .28);
}
.page-field textarea { min-height: 140px; resize: vertical; }
.page-field .button { margin-top: 10px; }
.page-field__error {
  margin: 6px 0 0;
  color: #b91c1c;
  font-size: .86rem;
}

/* ---- Contact Us: premium info + form cards (UI only; form fields unchanged) ---- */
.interior--contact.interior--modern .page-body {
  position: relative;
  background:
    radial-gradient(ellipse 70% 42% at 8% 16%, rgba(123, 175, 212, .14), transparent 60%),
    radial-gradient(ellipse 55% 38% at 96% 52%, rgba(53, 103, 173, .08), transparent 55%),
    #fff;
}
.interior--contact.interior--modern .page-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.15fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: start;
}
.interior--contact.interior--modern .page-panel > .cms-rich-content {
  margin: 0;
}
.interior--contact.interior--modern .cms-contact-info {
  height: 100%;
  padding: clamp(1.5rem, 2.8vw, 2.15rem) clamp(1.35rem, 2.4vw, 1.9rem);
  border: 1px solid rgba(33, 65, 143, .12);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff 0%, #f6f9fc 100%);
  box-shadow: 0 12px 32px rgba(18, 42, 105, .06);
}
.interior--contact.interior--modern .cms-contact-info p {
  margin: 0 0 1.15em;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.3vw, 1.12rem);
  line-height: 1.8;
}
.interior--contact.interior--modern .cms-contact-info p:last-child {
  margin-bottom: 0;
}
.interior--contact.interior--modern .cms-contact-info__heading,
.interior--contact.interior--modern .cms-contact-info__heading strong {
  display: block;
  margin-bottom: .35em;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.25;
}
.interior--contact.interior--modern .cms-contact-info p strong,
.interior--contact.interior--modern .cms-contact-info p b,
.cms-rich-content .cms-contact-info p strong,
.cms-rich-content .cms-contact-info p b {
  display: inline;
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  line-height: inherit;
}
.interior--contact.interior--modern .cms-contact-info a[href^="tel:"] {
  display: inline-flex;
  align-items: center;
  margin: 4px 0;
  padding: 8px 14px;
  border: 1px solid rgba(33, 65, 143, .18);
  border-radius: 999px;
  background: #fff;
  color: var(--forest);
  font-weight: 700;
  text-decoration: none;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.interior--contact.interior--modern .cms-contact-info a[href^="tel:"]:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
  transform: translateY(-1px);
}
.interior--contact.interior--modern .page-contact-form {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding: clamp(1.65rem, 3vw, 2.35rem) clamp(1.4rem, 2.6vw, 2.1rem) clamp(1.75rem, 3vw, 2.4rem);
  border: 1px solid rgba(33, 65, 143, .14);
  border-radius: 20px;
  background:
    radial-gradient(ellipse 90% 55% at 100% 0%, rgba(123, 175, 212, .22), transparent 55%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(53, 103, 173, .1), transparent 50%),
    linear-gradient(165deg, #ffffff 0%, #f4f8fc 48%, #eef4fa 100%);
  box-shadow:
    0 4px 6px rgba(18, 42, 105, .03),
    0 22px 50px rgba(18, 42, 105, .1);
  isolation: isolate;
}
/* Forest accent rail + soft depth */
.interior--contact.interior--modern .page-contact-form::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  border-radius: 20px 0 0 20px;
  background: linear-gradient(180deg, var(--forest) 0%, var(--sun) 55%, var(--aqua) 100%);
  content: "";
  z-index: 0;
}
.interior--contact.interior--modern .page-contact-form::after {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(33, 65, 143, .08);
  box-shadow: 0 0 0 36px rgba(123, 175, 212, .06);
  pointer-events: none;
  content: "";
  z-index: 0;
}
.interior--contact.interior--modern .page-contact-form > * {
  position: relative;
  z-index: 1;
}
.interior--contact.interior--modern .page-contact-form__head {
  max-width: none;
  margin-bottom: 1.55rem;
  padding: 0 0 1.35rem 4px;
  border-bottom: 0;
  background: none;
}
.interior--contact.interior--modern .page-contact-form__head .label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(53, 103, 173, .1);
  color: var(--forest);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
}
.interior--contact.interior--modern .page-contact-form__head .label::before {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--sun), var(--aqua));
  content: "";
}
.interior--contact.interior--modern .page-contact-form__head h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.95rem, 3.2vw, 2.55rem);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.1;
}
.interior--contact.interior--modern .page-contact-form__head p {
  max-width: 34rem;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.3vw, 1.1rem);
  line-height: 1.75;
}
.interior--contact.interior--modern .page-contact-form__fields {
  max-width: none;
  gap: 4px 16px;
}
.interior--contact.interior--modern .page-field {
  padding: 4px 2px 10px;
  border-radius: 14px;
  transition: background .25s ease;
}
.interior--contact.interior--modern .page-field:focus-within {
  background: rgba(255, 255, 255, .55);
}
.interior--contact.interior--modern .page-field label {
  margin: 10px 0 9px;
  color: var(--forest);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
}
.interior--contact.interior--modern .page-field input,
.interior--contact.interior--modern .page-field textarea,
.interior--contact.interior--modern .page-field select {
  min-height: 56px;
  padding: 15px 18px;
  border: 1.5px solid rgba(33, 65, 143, .14);
  border-radius: 14px;
  background: rgba(255, 255, 255, .92);
  box-shadow:
    0 1px 2px rgba(18, 42, 105, .04),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  transition:
    border-color .25s ease,
    box-shadow .3s ease,
    background .25s ease,
    transform .25s ease;
}
.interior--contact.interior--modern .page-field input::placeholder,
.interior--contact.interior--modern .page-field textarea::placeholder {
  color: rgba(23, 43, 77, .4);
  font-weight: 400;
}
.interior--contact.interior--modern .page-field input:hover,
.interior--contact.interior--modern .page-field textarea:hover,
.interior--contact.interior--modern .page-field select:hover {
  border-color: rgba(53, 103, 173, .32);
  background: #fff;
}
.interior--contact.interior--modern .page-field input:focus,
.interior--contact.interior--modern .page-field textarea:focus,
.interior--contact.interior--modern .page-field select:focus {
  outline: none;
  border-color: var(--sun);
  background: #fff;
  box-shadow:
    0 0 0 4px rgba(53, 103, 173, .16),
    0 10px 24px rgba(18, 42, 105, .08);
  transform: translateY(-1px);
}
.interior--contact.interior--modern .page-field textarea {
  min-height: 180px;
  line-height: 1.65;
}
.interior--contact.interior--modern .page-field.page-field--full:has(.button),
.interior--contact.interior--modern .page-field:has(> .button) {
  margin-top: 8px;
  padding-top: 12px;
  background: transparent;
}
.interior--contact.interior--modern .page-field .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: auto;
  min-width: min(100%, 240px);
  min-height: 56px;
  margin-top: 12px;
  padding: 16px 32px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--forest) 0%, var(--sun) 58%, #4a7ec4 100%);
  color: #fff;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .03em;
  box-shadow:
    0 12px 28px rgba(33, 65, 143, .28),
    inset 0 1px 0 rgba(255, 255, 255, .18);
  transition:
    transform .3s cubic-bezier(.22, .68, .35, 1),
    box-shadow .3s ease,
    filter .25s ease;
}
.interior--contact.interior--modern .page-field .button span {
  display: inline-flex;
  transition: transform .3s ease;
}
.interior--contact.interior--modern .page-field .button:hover {
  transform: translateY(-3px);
  filter: brightness(1.04);
  box-shadow:
    0 18px 36px rgba(33, 65, 143, .34),
    inset 0 1px 0 rgba(255, 255, 255, .22);
}
.interior--contact.interior--modern .page-field .button:hover span {
  transform: translateX(3px);
}
.interior--contact.interior--modern .page-field .button:active {
  transform: translateY(-1px);
}
.interior--contact.interior--modern .page-field .button:focus-visible {
  outline: 2px solid var(--aqua);
  outline-offset: 3px;
}
.page-field input.is-invalid,
.page-field textarea.is-invalid,
.page-field select.is-invalid,
.interior--contact.interior--modern .page-field input.is-invalid,
.interior--contact.interior--modern .page-field textarea.is-invalid,
.interior--contact.interior--modern .page-field select.is-invalid,
.interior--contact.interior--modern .page-field.is-invalid input,
.interior--contact.interior--modern .page-field.is-invalid textarea,
.interior--contact.interior--modern .page-field.is-invalid select,
.interior--contact.interior--modern .page-field[data-invalid] input,
.interior--contact.interior--modern .page-field[data-invalid] textarea {
  border-color: #dc2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, .12);
}
.interior--contact.interior--modern .page-contact-form__success,
.interior--contact.interior--modern .page-contact-form__error {
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(18, 42, 105, .06);
}
@media (max-width: 960px) {
  .interior--contact.interior--modern .page-panel {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .interior--contact.interior--modern .page-contact-form__fields {
    grid-template-columns: 1fr;
  }
  .interior--contact.interior--modern .page-field .button {
    width: 100%;
  }
}

/* ---- Ask Dr. Margolis: premium single-column form (UI only; form fields unchanged) ---- */
.interior--ask.interior--modern .page-body {
  position: relative;
  background:
    radial-gradient(ellipse 70% 42% at 12% 12%, rgba(123, 175, 212, .16), transparent 58%),
    radial-gradient(ellipse 50% 36% at 92% 48%, rgba(53, 103, 173, .09), transparent 55%),
    #fff;
}
.interior--ask.interior--modern .page-panel {
  display: flex;
  flex-direction: column;
  gap: clamp(1.35rem, 2.6vw, 2rem);
  max-width: 46rem;
  margin-inline: auto;
  align-items: stretch;
}
.interior--ask.interior--modern .page-panel > .cms-rich-content {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.3vw, 1.12rem);
  line-height: 1.8;
}
/* Prefer contact-form card styles already defined; ensure ask inherits when both classes present */
.interior--ask.interior--contact.interior--modern .page-contact-form {
  width: 100%;
}
.interior--ask.interior--modern .page-contact-form__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 18px;
  max-width: none;
}
.interior--ask.interior--modern .page-field--full,
.interior--ask.interior--modern .page-field:has(textarea),
.interior--ask.interior--modern .page-field--submit,
.interior--ask.interior--modern .page-field--recaptcha {
  grid-column: 1 / -1;
}
/* Name + Email on one row when present; appointment/message span full width as --full or by name */
.interior--ask.interior--modern .page-field:has([name="appointment_reason"]),
.interior--ask.interior--modern .page-field:has([name="message"]) {
  grid-column: 1 / -1;
}
.interior--ask.interior--modern .page-field--submit {
  margin-top: 4px;
  padding-top: 8px;
}
.interior--ask.interior--modern .page-field--submit .button {
  text-transform: none;
  letter-spacing: .04em;
}
.interior--ask.interior--modern .cms-eye-info-strip {
  margin: 0;
  padding: clamp(1.65rem, 3vw, 2.25rem) clamp(1.35rem, 2.5vw, 2rem);
  border: 1px solid rgba(33, 65, 143, .12);
  border-radius: 18px;
  background:
    radial-gradient(ellipse 80% 70% at 50% 0%, rgba(123, 175, 212, .14), transparent 60%),
    linear-gradient(180deg, #fff 0%, #f4f8fc 100%);
  box-shadow: 0 12px 32px rgba(18, 42, 105, .06);
  text-align: center;
}
.interior--ask.interior--modern .cms-eye-info-strip h4 {
  margin: 0 0 1.15rem;
  color: var(--forest);
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.interior--ask.interior--modern .cms-eye-info-strip__logos {
  gap: 1.5rem 2.5rem;
}
.interior--ask.interior--modern .cms-eye-info-strip__logos a {
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(33, 65, 143, .08);
  box-shadow: 0 6px 16px rgba(18, 42, 105, .05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.interior--ask.interior--modern .cms-eye-info-strip__logos a:hover {
  transform: translateY(-2px);
  border-color: rgba(53, 103, 173, .22);
  box-shadow: 0 12px 24px rgba(18, 42, 105, .1);
}
.interior--ask.interior--modern .cms-eye-info-strip__logos img {
  max-width: min(40vw, 200px);
  max-height: 96px;
}
@media (max-width: 640px) {
  .interior--ask.interior--modern .page-contact-form__fields {
    grid-template-columns: 1fr;
  }
  .interior--ask.interior--modern .page-field .button {
    width: 100%;
  }
  .interior--ask.interior--modern .cms-eye-info-strip__logos {
    flex-direction: column;
  }
  .interior--ask.interior--modern .cms-eye-info-strip__logos img {
    max-width: min(70vw, 220px);
  }
}


/* Related topics */
.page-related {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.page-related__head {
  display: block;
  margin-bottom: 14px;
}
.page-related__head .label {
  margin-bottom: 8px;
}
.page-related__head h2 {
  margin: 0;
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--forest);
}
/* Horizontal link row (live-site density) with theme colors */
.page-related__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 28px;
  background: transparent;
  border: 0;
}
.page-related__item {
  min-height: 0;
  display: inline-flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: flex-start;
  gap: 8px;
  padding: 0;
  background: transparent;
  transition: color .2s;
}
.page-related__item:hover { background: transparent; }
.page-related__item strong {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.35;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.page-related__item:hover strong { color: var(--sun); }
.page-related__item span {
  display: none;
}

@media (max-width: 1050px) {
  .cms-rich-content .people-grid { grid-template-columns: repeat(2, 1fr); }
  .page-forms__head { grid-template-columns: 1fr; gap: 12px; }
}
@media (max-width: 760px) {
  .page-hero {
    min-height: 300px;
    padding: 132px 0 52px;
  }
  .page-hero__scroll { display: none; }
  .page-body > .container:first-child {
    margin-top: -24px;
    padding-bottom: 80px;
  }
  .page-panel {
    padding: 28px 18px 40px;
  }
  .cms-rich-content .people-grid { grid-template-columns: 1fr; }
  .cms-rich-content .vision-pair { grid-template-columns: 1fr; }
  .page-related__grid { gap: 10px 18px; }
  .page-related__head {
    gap: 8px;
  }
  .page-contact-form__fields { grid-template-columns: 1fr; }
  .page-forms-list a:not(.page-forms-list__card) {
    grid-template-columns: auto 1fr;
    gap: 14px 16px;
  }
  .page-forms-list a:not(.page-forms-list__card) .page-forms-list__action { grid-column: 2; }
}

/* ==========================================================================
   Interior modernization — presentation only.
   `.interior--modern` = shared premium hero/panel/pills/CTA (about + team pages).
   `.interior--about`  = About Us content-specific (feature split, video, info cards).
   `.interior--team`   = Our Doctors / Our Staff profile cards.
   Same content, same order; premium spacing / typography / cards / motion.
   ========================================================================== */

/* ---- Hero ---- */
.interior--modern .page-hero {
  min-height: clamp(380px, 48vh, 540px);
  padding: 185px 0 92px;
}
.interior--modern .page-hero::after {
  position: absolute;
  top: -34%;
  right: -12%;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 175, 212, .26) 0%, rgba(53, 103, 173, .12) 45%, transparent 68%);
  pointer-events: none;
  content: "";
}
.interior--modern .page-hero__texture { opacity: .2; }
.interior--modern .page-hero__inner { max-width: 980px; }
.interior--modern .page-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 9px 18px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
  font-size: .68rem;
  letter-spacing: .15em;
  box-sizing: border-box;
}
.interior--modern .page-breadcrumbs a { transition: color .2s ease; }
.interior--modern .page-hero .label {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, .82);
}
.interior--modern .page-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(2.9rem, 5.4vw, 4rem);   /* ~56–64px desktop */
  letter-spacing: -.02em;
  line-height: 1.02;
}
.interior--modern .page-hero__lede {
  max-width: 44rem;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(1.06rem, 1.6vw, 1.18rem);
  line-height: 1.75;
}

/* ---- Body panel ---- */
.interior--modern .page-body > .container:first-child {
  margin-top: -44px;
  padding-bottom: clamp(90px, 12vw, 130px);
}
/* When a full-bleed FAQ follows the lead panel, drop the oversized bottom pad
   (homepage FAQ band + panel pad stacks into a huge blank gap). */
.interior--modern .page-body:has(> .faq) > .container:first-child {
  padding-bottom: clamp(18px, 3vw, 32px);
}
/* Homepage uses .faq under the main shell with large band padding; interior
   page-body FAQs need a compact band so gaps stay article-like. */
.interior--modern .page-body > .faq {
  padding: clamp(40px, 5.5vw, 72px) 0;
}
/* Resource strip after FAQ: sit cleanly below the accordion (no hero pull-up). */
.interior--modern .page-body > .cms-resource-after-faq {
  margin-top: 0;
  padding-top: clamp(8px, 1.5vw, 16px);
  padding-bottom: clamp(64px, 8vw, 100px);
}
/* Further Reading strip after mid-page FAQ (What Is Cataract / common questions): no second page-panel. */
.interior--modern .page-body > .cms-after-faq {
  margin-top: 0;
  padding-top: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(64px, 8vw, 100px);
}
.interior--modern .page-body > .cms-after-faq .cms-rich-content {
  max-width: none;
}
.interior--modern .page-panel {
  padding: clamp(44px, 6vw, 84px) clamp(26px, 5vw, 88px);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(18, 42, 105, .1);
}
@media (prefers-reduced-motion: no-preference) {
  .interior--modern .page-panel {
    animation: about-rise .65s cubic-bezier(.22, .68, .35, 1) both;
  }
  @keyframes about-rise {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: none; }
  }
}

/* ---- Section heading (Why Choose Us?) ---- */
.interior--about .cms-rich-content > h3,
.interior--about .cms-rich-content h3 {
  margin: 0 0 .9em;
  padding-top: 0;
  border-top: 0;
  font-size: clamp(2.1rem, 3.6vw, 2.5rem);  /* 34–40px */
  letter-spacing: -.02em;
  line-height: 1.1;
}
.interior--about .cms-rich-content > h3::after {
  display: block;
  width: 58px;
  height: 3px;
  margin-top: .45em;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--forest), rgba(123, 175, 212, .6));
  content: "";
}

/* ---- Why Choose Us: two-column feature split ---- */
.interior--about .cms-feature-split {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: clamp(28px, 4.5vw, 60px);
  align-items: start;
  margin: 1.6rem 0 2.4rem;
}
.interior--about .cms-feature-split__media {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 22px 52px rgba(18, 42, 105, .16);
}
.interior--about .cms-feature-split__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  border-radius: 18px;
  transition: transform .5s ease;
}
.interior--about .cms-feature-split__media:hover img { transform: scale(1.025); }
.interior--about .cms-feature-split__body p {
  margin: 0 0 1.35em;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.4vw, 1.11rem);  /* ~17–18px */
  line-height: 1.85;
}
.interior--about .cms-feature-split__body p:last-child { margin-bottom: 0; }

/* ---- YouTube video ---- */
.interior--modern .cms-rich-content .cms-video {
  max-width: min(100%, 58rem);
  margin: clamp(2.2rem, 4vw, 3rem) auto;
  border-radius: 20px;
  box-shadow: 0 26px 64px rgba(18, 42, 105, .22);
}

/* ---- Information cards (Eye Condition Information / Question & Answer) ---- */
.interior--modern .cms-resource-row {
  margin: clamp(1.75rem, 3.2vw, 2.5rem) 0 1rem;
  padding: 0;
  border-top: 0;
  column-gap: clamp(1.1rem, 2.2vw, 1.6rem);
  row-gap: 1.15rem;
  align-items: stretch;
}
.interior--modern .cms-resource-row__col {
  height: 100%;
  min-height: 0;
  padding: 1.15rem 1.25rem 1.25rem;
  justify-content: flex-start;
  border: 1px solid rgba(33, 65, 143, .12);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, #f6f9fc 100%);
  box-shadow: 0 8px 22px rgba(18, 42, 105, .06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.interior--modern .cms-resource-row__col:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(18, 42, 105, .1);
}
.interior--modern .cms-resource-row h4 {
  margin: 0 0 .75rem;
  color: var(--forest);
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  letter-spacing: .06em;
}
.interior--modern .cms-resource-row h4::after {
  display: block;
  width: 36px;
  height: 2px;
  margin-top: .4rem;
  background: rgba(123, 175, 212, .75);
  content: "";
}
.interior--modern .cms-resource-row__logos {
  gap: .85rem 1.2rem;
  max-width: 100%;
  min-width: 0;
  flex-wrap: nowrap;
  margin-top: .15rem;
}
.interior--modern .cms-resource-row__logos a {
  max-width: 48%;
  min-width: 0;
}
.interior--modern .cms-resource-row__logos img {
  max-height: 6.15rem;
  max-width: 100% !important;
  height: auto !important;
}
.interior--modern .cms-resource-row__col--qa a {
  max-width: 100%;
  margin-top: .1rem;
}
.interior--modern .cms-resource-row__col--qa img {
  max-width: min(100%, 22rem) !important;
  max-height: 7.5rem !important;
  width: auto !important;
  height: auto !important;
  border-radius: 8px;
  border-color: rgba(33, 65, 143, .16);
  transition: transform .3s ease;
}
.interior--modern .cms-resource-row__col--qa a:hover img { transform: scale(1.015); }

/* ---- Further reading: pill links ---- */
.interior--modern .page-related {
  margin-top: clamp(44px, 6vw, 64px);
  padding-top: clamp(30px, 4vw, 42px);
}
.interior--modern .page-related__head { margin-bottom: 20px; }
.interior--modern .page-related__head h2 {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 1.8rem);
  font-weight: 400;
  letter-spacing: -.01em;
  text-transform: none;
  color: var(--ink);
}
.interior--modern .page-related__grid { gap: 12px 14px; align-items: stretch; }
.interior--modern .page-related__item {
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid rgba(33, 65, 143, .2);
  border-radius: 999px;
  background: #fff;
  transition: background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.interior--modern .page-related__item strong {
  text-decoration: none;
  transition: color .25s ease;
}
.interior--modern .page-related__item::after {
  color: var(--forest);
  font-size: .95rem;
  line-height: 1;
  transition: color .25s ease, transform .25s ease;
  content: "→";
}
.interior--modern .page-related__item:hover {
  background: var(--forest);
  border-color: var(--forest);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(18, 42, 105, .22);
}
.interior--modern .page-related__item:hover strong { color: #fff; }
.interior--modern .page-related__item:hover::after {
  color: #fff;
  transform: translateX(3px);
}

/* ---- CTA ---- */
.interior--modern .contact { padding: clamp(100px, 13vw, 150px) 0; }
.interior--modern .contact__inner { align-items: center; gap: clamp(44px, 6vw, 90px); }
.interior--modern .contact h2 {
  font-size: clamp(3.2rem, 6.4vw, 6.2rem);
  letter-spacing: -.015em;
  line-height: 1.02;
}
.interior--modern .contact__card {
  padding: clamp(28px, 3.5vw, 40px);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 20px;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(8px);
}
.interior--modern .contact__card p {
  margin-bottom: 26px;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ---- Buttons (scoped) ---- */
.interior--modern .button {
  border-radius: 12px;
  padding: 15px 26px;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}
.interior--modern .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(11, 31, 68, .25);
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .interior--about .cms-feature-split {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .interior--about .cms-feature-split__media { max-width: 480px; }
}
@media (max-width: 760px) {
  .interior--modern .page-hero {
    min-height: 330px;
    padding: 142px 0 60px;
  }
  .interior--modern .page-hero h1 { font-size: clamp(2.4rem, 9vw, 2.9rem); }
  .interior--modern .page-panel { border-radius: 18px; }
  .interior--modern .cms-resource-row { row-gap: 1.1rem; }
  .interior--modern .page-related__item { padding: 11px 18px; }

  /* Multi-segment trails: drop the giant pill — rounded box works when wrapping */
  .interior--modern .page-breadcrumbs {
    width: 100%;
    max-width: 100%;
    padding: 10px 12px;
    margin-bottom: 22px;
    border-radius: 12px;
    gap: 4px 7px;
    font-size: .6rem;
    letter-spacing: .08em;
    line-height: 1.4;
  }
  .page-breadcrumbs {
    gap: 4px 7px;
    letter-spacing: .08em;
    font-size: .62rem;
  }
  /* Deep trails: Home / … / Parent / Current (hide intermediate hubs) */
  .page-breadcrumbs--deep .page-breadcrumbs__collapse {
    display: none;
  }
  .page-breadcrumbs--deep .page-breadcrumbs__ellipsis {
    display: inline;
    opacity: .45;
    flex-shrink: 0;
  }
}
@media (max-width: 380px) {
  .interior--modern .page-breadcrumbs {
    padding: 9px 10px;
    font-size: .58rem;
    letter-spacing: .06em;
    gap: 3px 6px;
  }
}

/* ---- Team pages (Our Doctors / Our Staff): premium profile cards ----
   Image display size is unchanged: same grid columns, same 4:5 crop. */
.interior--team.interior--modern .people-module { position: relative; z-index: 1; }
.interior--team.interior--modern .people-grid {
  gap: clamp(20px, 2.5vw, 30px);
  margin-top: 4px;
}
.interior--team.interior--modern .person-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(33, 65, 143, .12);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff 0%, #f6f9fc 100%);
  box-shadow: 0 12px 32px rgba(18, 42, 105, .06);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.interior--team.interior--modern .person-card:hover {
  transform: translateY(-5px);
  border-color: rgba(33, 65, 143, .22);
  box-shadow: 0 24px 52px rgba(18, 42, 105, .13);
}
.interior--team.interior--modern .person-card img {
  border-radius: 16px 16px 0 0;
  transition: transform .55s ease, filter .55s ease;
}
.interior--team.interior--modern .person-card:hover img {
  transform: scale(1.03);
  filter: saturate(1) contrast(1.02);
}
.interior--team.interior--modern .person-card h3 {
  padding: 26px 26px 8px;
  font-size: clamp(1.5rem, 2.2vw, 1.85rem);  /* ~28–32px */
  letter-spacing: -.015em;
  line-height: 1.12;
}
.interior--team.interior--modern .person-card p.person-card__meta {
  padding: 0 26px 12px;
  font-size: .75rem;
  letter-spacing: .1em;
}
.interior--team.interior--modern .person-card p {
  padding: 0 26px 16px;
  font-size: .96rem;
  line-height: 1.72;
}
.interior--team.interior--modern .person-card a {
  margin: auto 26px 26px;   /* pins the link to the card base for aligned rows */
  padding: 10px 20px;
  border: 1px solid rgba(33, 65, 143, .25);
  border-radius: 999px;
  font-size: .78rem;
  letter-spacing: .02em;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.interior--team.interior--modern .person-card a::after {
  font-size: .9rem;
  line-height: 1;
  transition: transform .25s ease;
  content: "→";
}
.interior--team.interior--modern .person-card a:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
}
.interior--team.interior--modern .person-card a:hover::after { transform: translateX(3px); }
@media (prefers-reduced-motion: no-preference) {
  .interior--team.interior--modern .person-card {
    animation: about-rise .55s cubic-bezier(.22, .68, .35, 1) both;
  }
  .interior--team.interior--modern .person-card:nth-child(2) { animation-delay: .07s; }
  .interior--team.interior--modern .person-card:nth-child(3) { animation-delay: .14s; }
  .interior--team.interior--modern .person-card:nth-child(4) { animation-delay: .21s; }
  .interior--team.interior--modern .person-card:nth-child(5) { animation-delay: .28s; }
  .interior--team.interior--modern .person-card:nth-child(n+6) { animation-delay: .34s; }
}
@media (max-width: 760px) {
  .interior--team.interior--modern .people-grid { gap: 18px; }
  .interior--team.interior--modern .person-card h3 { padding: 22px 20px 6px; }
  .interior--team.interior--modern .person-card p.person-card__meta,
  .interior--team.interior--modern .person-card p { padding-inline: 20px; }
  .interior--team.interior--modern .person-card a { margin: auto 20px 22px; }
}

/* ---- Affordability: document flow → premium financing layout ---- */
.interior--afford .page-panel::after,
.interior--article .page-panel::after {
  position: absolute;
  bottom: -190px;
  left: -150px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 175, 212, .14) 0%, transparent 65%);
  pointer-events: none;
  content: "";
}
.interior--afford .cms-rich-content > p:first-child {
  max-width: 64rem;
  margin-bottom: 1.6rem;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.5vw, 1.16rem);
  line-height: 1.85;
}
/* Section headings ("Payment Options", "4. Flexible Payment Plans By") */
.interior--afford .cms-rich-content > h4 {
  margin: 1.9em 0 .85em;
  padding: 0;
  border: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.2vw, 2.4rem);   /* ~34–40px */
  font-weight: 400;
  letter-spacing: -.015em;
  line-height: 1.12;
  text-transform: none;
}
.interior--afford .cms-rich-content > h4::after {
  display: block;
  width: 52px;
  height: 3px;
  margin-top: .4em;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--forest), rgba(123, 175, 212, .6));
  content: "";
}

/* Payment option cards */
.interior--afford .cms-pay-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin: 1.5rem 0 .8rem;
}
.interior--afford .cms-pay-option {
  padding: clamp(1.4rem, 2.2vw, 1.9rem);
  border: 1px solid rgba(33, 65, 143, .12);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff 0%, #f6f9fc 100%);
  box-shadow: 0 12px 32px rgba(18, 42, 105, .06);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.interior--afford .cms-pay-option:hover {
  transform: translateY(-4px);
  border-color: rgba(33, 65, 143, .22);
  box-shadow: 0 20px 44px rgba(18, 42, 105, .12);
}
.interior--afford .cms-pay-option h4 {
  margin: 0 0 .6em;
  padding: 0;
  border: 0;
  color: var(--forest);
  font-family: var(--sans);
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1.3;
  text-transform: uppercase;
}
.interior--afford .cms-pay-option p {
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.7;
}

/* Financing partner widgets (Cherry / CareCredit) — polish existing cards */
.interior--afford .cms-rich-content .cms-payment-widgets {
  gap: clamp(16px, 2vw, 24px);
  margin: 1.4em 0 1.2em;
}
.interior--afford .cms-rich-content .cms-payment-widget {
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(18, 42, 105, .06);
}

/* CareCredit feature: promo image left, description + benefits + apply right.
   DOM order (intro, media, actions) is unchanged; grid areas place columns. */
.interior--afford .cms-credit-feature {
  display: grid;
  grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
  grid-template-areas:
    "media intro"
    "media actions";
  column-gap: clamp(28px, 4vw, 56px);
  row-gap: 10px;
  align-items: start;
  margin: 2.2rem 0 1rem;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  border: 1px solid rgba(33, 65, 143, .12);
  border-radius: 20px;
  background: linear-gradient(135deg, #fff 0%, #f3f7fc 100%);
  box-shadow: 0 16px 44px rgba(18, 42, 105, .08);
}
.interior--afford .cms-credit-feature__intro { grid-area: intro; min-width: 0; }
.interior--afford .cms-credit-feature__media {
  grid-area: media;
  margin: 0;
  min-width: 0;
}
.interior--afford .cms-credit-feature__actions { grid-area: actions; min-width: 0; }
.interior--afford .cms-credit-feature__media img {
  display: block;
  width: auto;
  max-width: 100%;   /* never upscaled beyond natural size */
  height: auto;
  margin: 0;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(18, 42, 105, .14);
  transition: transform .35s ease;
}
.interior--afford .cms-credit-feature__media a { display: block; line-height: 0; }
.interior--afford .cms-credit-feature__media a:hover img { transform: scale(1.015); }
.interior--afford .cms-credit-feature__intro img {
  display: block;
  width: auto;
  max-width: min(100%, 260px);
  height: auto;
  margin: 0 0 .9em;
}
.interior--afford .cms-credit-feature__intro p {
  margin: 0 0 .6em;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  font-weight: 600;
  line-height: 1.6;
}

/* Benefits list with check styling */
.interior--afford .cms-credit-feature__actions ul {
  margin: .3em 0 1.5em;
}
.interior--afford .cms-credit-feature__actions ul > li {
  padding: .55em 0 .55em 2.1em;
  border-bottom: 1px solid rgba(33, 65, 143, .08);
  color: var(--ink);
  font-size: .98rem;
  line-height: 1.65;
}
.interior--afford .cms-credit-feature__actions ul > li::before {
  top: .62em;
  left: 0;
  width: 1.35em;
  height: 1.35em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(53, 103, 173, .12);
  color: var(--forest);
  font-size: .78em;
  font-weight: 700;
  content: "✓";
}
/* Apply link (image button) */
.interior--afford .cms-credit-feature__actions > a {
  display: inline-block;
  border-radius: 10px;
  overflow: hidden;
  line-height: 0;
  box-shadow: 0 10px 24px rgba(18, 42, 105, .12);
  transition: transform .25s ease, box-shadow .25s ease;
}
.interior--afford .cms-credit-feature__actions > a:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(18, 42, 105, .2);
}
.interior--afford .cms-credit-feature__actions > a img {
  display: block;
  margin: 0;
  border-radius: 10px;
}

@media (max-width: 1050px) {
  .interior--afford .cms-pay-options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .interior--afford .cms-credit-feature {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "media"
      "actions";
    row-gap: 18px;
  }
}
@media (max-width: 640px) {
  .interior--afford .cms-pay-options { grid-template-columns: 1fr; }
}

/* ---- Procedure article pages (e.g. Cataract Surgery): editorial → premium ---- */
.interior--article .cms-rich-content {
  font-size: 1.05rem;
  line-height: 1.8;
}
.interior--article .cms-rich-content > p:first-child {
  max-width: none;
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.4vw, 1.12rem);
  line-height: 1.8;
}
.interior--article .cms-rich-content p { margin-bottom: 1.25em; }

/* Major heading (h3) */
.interior--article .cms-rich-content h3 {
  margin: 1.7em 0 .75em;
  padding-top: 0;
  border-top: 0;
  font-size: clamp(2rem, 3.4vw, 2.5rem);   /* ~34–40px */
  letter-spacing: -.02em;
  line-height: 1.1;
}
.interior--article .cms-rich-content h3::after {
  display: block;
  width: 54px;
  height: 3px;
  margin-top: .42em;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--forest), rgba(123, 175, 212, .6));
  content: "";
}
/* Section heading (h4, direct children only — card h4s unaffected) */
.interior--article .cms-rich-content > h4 {
  margin: 2em 0 .85em;
  padding: 0;
  border: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.8vw, 2.1rem);
  font-weight: 400;
  letter-spacing: -.015em;
  line-height: 1.12;
  text-transform: none;
}
.interior--article .cms-rich-content > h4::after {
  display: block;
  width: 46px;
  height: 3px;
  margin-top: .4em;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--forest), rgba(123, 175, 212, .6));
  content: "";
}
/* Question sub-headings (h6) */
.interior--article .cms-rich-content h6 {
  margin: 2em 0 .55em;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.32rem, 2vw, 1.6rem);  /* ~24–28px */
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.22;
}
.interior--article .cms-rich-content h6::before {
  display: inline-block;
  width: 18px;
  height: 3px;
  margin-right: 12px;
  border-radius: 2px;
  vertical-align: middle;
  background: var(--sun);
  content: "";
}

/* Checkmark bullet lists */
.interior--article .cms-rich-content ul { margin: .4em 0 1.6em; }
.interior--article .cms-rich-content ul > li {
  padding: .6em 0 .6em 2.1em;
  border-bottom: 1px solid rgba(33, 65, 143, .08);
  font-size: 1rem;
  line-height: 1.7;
}
.interior--article .cms-rich-content ul > li::before {
  top: .68em;
  left: 0;
  width: 1.35em;
  height: 1.35em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(53, 103, 173, .12);
  color: var(--forest);
  font-size: .75em;
  font-weight: 700;
  content: "✓";
}

/* Standalone medical illustration → centered card container (natural size kept) */
.interior--article .cms-rich-content > img {
  display: block;
  margin: 1.9rem auto 2.1rem;
  padding: clamp(14px, 2vw, 22px);
  background: linear-gradient(180deg, #fff 0%, #f6f9fc 100%);
  border: 1px solid rgba(33, 65, 143, .12);
  border-radius: 16px;
  box-shadow: 0 14px 36px rgba(18, 42, 105, .08);
}

/* YAG & SLT: clearer two-section rhythm without cards */
.interior--yag-slt .cms-rich-content > h3 {
  margin-top: clamp(2.4rem, 4.5vw, 3.4rem);
  margin-bottom: 0.85rem;
}
.interior--yag-slt .cms-rich-content > h3:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.interior--yag-slt .cms-rich-content > h3:not(:first-child) {
  margin-top: clamp(2.6rem, 4.5vw, 3.5rem);
  padding-top: clamp(1.75rem, 3.2vw, 2.35rem);
  border-top: 0;
}
/* Soft full-width hairline between YAG and SLT (in the gap above the 2nd title) */
.interior--yag-slt .cms-rich-content > h3:not(:first-child)::before {
  display: block;
  width: 100%;
  height: 1px;
  margin: 0 0 clamp(1.5rem, 2.8vw, 2.1rem);
  background: rgba(33, 65, 143, .16);
  content: "";
}
/* YAG & SLT: show CMS images at intrinsic pixel size (no 34rem downsize / upsize).
   Only constrain to the viewport so they don’t overflow on small screens. */
.interior--yag-slt .cms-rich-content > img,
.interior--yag-slt .cms-rich-content p > img:only-child,
.interior--yag-slt .cms-rich-content > img:first-child {
  width: auto;
  max-width: 100%;
  height: auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: unset;
}

/* Clear Lensectomy Option A: clinical plate under title/intro (before FAQ), not mid-stream */
.interior--article .cms-rich-content--article-lead {
  margin: 0;
  padding: 0 0 0.15rem;
}
.interior--article .cms-article-lead {
  display: block;
  width: 100%;
  max-width: min(860px, 100%);
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
/* Open flow (Clear Lensectomy hub / what-is): no white card shell around lead image.
   Beat .page-body > .container:first-child pull-up so the image doesn’t sit under the hero. */
.interior--modern .page-body > .container.cms-early-lead:first-child,
.interior--modern .page-body > .cms-early-lead {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding-top: clamp(20px, 2.8vw, 32px);
  padding-bottom: clamp(8px, 1.5vw, 18px);
}
.interior--modern .page-body > .cms-early-lead .cms-article-lead > img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 12px;
  box-shadow: none;
  object-fit: cover;
}
/* Lead image still used inside a panel elsewhere — keep subtle frame only there */
.interior--article .page-panel .cms-article-lead > img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: clamp(12px, 1.8vw, 18px);
  background: linear-gradient(180deg, #fff 0%, #f6f9fc 100%);
  border: 1px solid rgba(33, 65, 143, .12);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(18, 42, 105, .07);
}
.interior--article .cms-compare--lead {
  max-width: min(920px, 100%);
  margin: 0 auto;
  gap: clamp(10px, 1.6vw, 16px);
}
.interior--article .cms-compare--lead .cms-compare__item {
  padding: clamp(8px, 1.2vw, 12px);
}
.interior--article .cms-compare--lead figcaption {
  display: none;
}
/* After open early lead, pull FAQ up so it doesn’t read as a second boxed section */
.interior--modern .page-body > .cms-early-lead + .faq {
  padding-top: clamp(20px, 3.5vw, 40px);
  background: transparent;
}
.interior--modern .page-body > .cms-early-lead + .faq .faq__grid {
  background: transparent;
}
/* Same open plate for financing promo after that FAQ (no paper band re-boxing) */
.interior--modern .page-body > .cms-early-lead + .faq + .faq-promo {
  background: transparent;
}
/* Lead-only first panel: less empty slab under the plate before full-bleed FAQ */
.interior--modern.interior--article .page-panel:has(> .cms-rich-content--article-lead:only-child) {
  padding-bottom: clamp(1rem, 2.2vw, 1.5rem);
  margin-bottom: 0;
}

/* Educational prose section (e.g. Monovision LASIK) — text/image unchanged */
.interior--article .cms-edu-section {
  max-width: none;
  width: 100%;
  margin: 0 0 clamp(1.4rem, 2.4vw, 2rem);
  padding: clamp(1.5rem, 2.8vw, 2.25rem) clamp(1.35rem, 2.4vw, 2rem);
  border: 1px solid rgba(33, 65, 143, .12);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff 0%, #f6f9fc 100%);
  box-shadow: 0 12px 32px rgba(18, 42, 105, .06);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.interior--article .cms-edu-section:hover {
  border-color: rgba(33, 65, 143, .2);
  box-shadow: 0 18px 40px rgba(18, 42, 105, .1);
}
.interior--article .cms-edu-section h4 {
  margin: 0 0 1em;
  padding: 0;
  border: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.2;
  text-transform: none;
}
.interior--article .cms-edu-section h4::after {
  display: block;
  width: 46px;
  height: 3px;
  margin-top: .4em;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--forest), rgba(123, 175, 212, .6));
  content: "";
}
.interior--article .cms-edu-section > img {
  display: block;
  width: auto;
  max-width: min(100%, 34rem);
  height: auto;
  margin: 0 auto 1.5rem;
  padding: clamp(12px, 1.8vw, 18px);
  border: 1px solid rgba(33, 65, 143, .12);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(18, 42, 105, .07);
  object-fit: contain;
  transition: transform .3s ease, box-shadow .3s ease;
}
.interior--article .cms-edu-section > img:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(18, 42, 105, .12);
}
.interior--article .cms-edu-section p {
  margin: 0 0 1.15em;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.35vw, 1.12rem);
  line-height: 1.8;
}
.interior--article .cms-edu-section p:last-child {
  margin-bottom: 0;
}
/* Image/diagram caption stacks (live uses soft line breaks) */
.interior--article .cms-edu-section .cms-caption-stack,
.cms-rich-content .cms-caption-stack {
  margin: 0 0 1.15em;
}
.interior--article .cms-edu-section .cms-caption-stack p,
.cms-rich-content .cms-caption-stack p {
  margin: 0;
  line-height: 1.55;
}
/* Nested medical lists inside educational cards */
.interior--article .cms-edu-section ul {
  margin: .35em 0 1.1em;
}
.interior--article .cms-edu-section ul > li {
  font-size: clamp(1.02rem, 1.25vw, 1.1rem);
  line-height: 1.75;
}
/* Vision comparison cards inside edu sections use full width */
.interior--article .cms-edu-section .cms-compare {
  margin: 1.25rem 0 1.5rem;
}
/* CustomVue brand block — logo emphasis (natural size preserved) */
.interior--article .cms-edu-section--brand {
  padding-top: clamp(1.65rem, 3vw, 2.5rem);
  padding-bottom: clamp(1.65rem, 3vw, 2.5rem);
}
.interior--article .cms-edu-section--brand > img {
  max-width: min(100%, 28rem);
  margin-bottom: 1.75rem;
  padding: clamp(16px, 2.2vw, 24px);
}

/* Before/after comparison cards */
.interior--article .cms-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  max-width: none;
  width: 100%;
  margin: 1.4rem 0 1.9rem;
}
.interior--article .cms-compare__item {
  margin: 0;
  padding: 12px 12px 14px;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, #f6f9fc 100%);
  border: 1px solid rgba(33, 65, 143, .12);
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(18, 42, 105, .06);
}
.interior--article .cms-compare__item img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: none;
}
.interior--article .cms-compare__item figcaption {
  margin-top: 10px;
  color: var(--forest);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

/* Cataract vision composites (stacked collages; labels = left/right under pair) */
.interior--article .cms-vision-examples {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 1.5rem);
  width: 100%;
  max-width: none;
  margin: 1.35rem 0 1.85rem;
}
.interior--article .cms-vision-examples__shot {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0;
}
.interior--article .cms-vision-examples__shot > img {
  display: block;
  width: auto;
  max-width: min(100%, 600px); /* live uses ~600px centered collages */
  height: auto;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: none;
  object-fit: contain;
}
.interior--article .cms-vision-examples__labels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem 1rem;
  width: min(100%, 600px);
  margin-top: -.25rem;
  text-align: center;
}
.interior--article .cms-vision-examples__labels p {
  margin: 0 !important;
  max-width: none;
  color: var(--ink);
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.35;
}
/* Always Normal | Cataractous side-by-side (never stack — matches collage columns). */
.interior--article .cms-vision-examples__labels p:first-child {
  text-align: center;
}
.interior--article .cms-vision-examples__labels p:last-child {
  text-align: center;
}

/* Procedure step cards (image + caption) */
.interior--article .cms-step-cards {
  display: grid;
  /* Fill equal columns for 1–3 cards so a leftover 2+1 wrap never reappears. */
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: clamp(14px, 2vw, 22px);
  align-items: stretch;
  margin: 1.6rem 0 2rem;
}
/* Prefer a true 3-up row when room allows three equal columns. */
@media (min-width: 900px) {
  .interior--article .cms-step-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .interior--article .cms-step-cards:has(> :nth-child(2):last-child) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 48rem;
  }
  .interior--article .cms-step-cards:has(> :only-child) {
    grid-template-columns: minmax(0, 18rem);
  }
}
.interior--article .cms-step-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  min-width: 0;
  /* Open article flow (What Is / Overview) — no nested card chrome */
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: none;
}
.interior--article .cms-step-card:hover {
  transform: none;
  box-shadow: none;
}
.interior--article .cms-step-card img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  border-radius: 8px;
  box-shadow: none;
  object-fit: contain;
  object-position: center;
  background: #fff;
}
.interior--article .cms-step-card figcaption {
  margin-top: auto;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
  text-align: center;
}

/* Pill links: further-reading run + standalone inline links */
.interior--article .cms-link-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  margin: .4rem 0 1.4rem;
}
.interior--article .cms-link-pills a,
.interior--article .cms-rich-content > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 22px;
  border: 1px solid rgba(33, 65, 143, .2);
  border-radius: 999px;
  background: #fff;
  color: var(--forest);
  font-size: .93rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.interior--article .cms-rich-content > a { margin: .1rem 0 1.4rem; }
.interior--article .cms-link-pills a::after,
.interior--article .cms-rich-content > a::after {
  font-size: .95rem;
  line-height: 1;
  transition: transform .25s ease;
  content: "→";
}
.interior--article .cms-link-pills a:hover,
.interior--article .cms-rich-content > a:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(18, 42, 105, .22);
}
.interior--article .cms-link-pills a:hover::after,
.interior--article .cms-rich-content > a:hover::after { transform: translateX(3px); }

/* Comparison cards (Basic / Advanced) — premium polish; base styles stay */
.interior--article .cms-rich-content .cms-option-cards {
  gap: clamp(16px, 2.2vw, 28px);
  margin: 2em 0;
}
.interior--article .cms-rich-content .cms-option-card {
  padding: clamp(1.6rem, 2.6vw, 2.2rem) clamp(1.5rem, 2.4vw, 2rem);
  border-radius: 16px;
}
/* Card titles keep the card scale — not the big article h3 with accent bar */
.interior--article .cms-rich-content .cms-option-card h3 {
  margin: 0 0 .75em;
  font-size: clamp(1.4rem, 2.1vw, 1.7rem);  /* ~24–28px */
  letter-spacing: -.01em;
}
.interior--article .cms-rich-content .cms-option-card h3::after { display: none; }
.interior--article .cms-rich-content .cms-option-card__eyebrow {
  margin-bottom: .8em;
  font-size: .7rem;
  letter-spacing: .16em;
}
.interior--article .cms-rich-content .cms-option-card ul { margin: 0; }
.interior--article .cms-rich-content .cms-option-card ul > li {
  padding: .55em 0 .55em 1.9em;
  font-size: .96rem;
  line-height: 1.6;
}

/* Financing strip → highlighted premium card */
.interior--article .cms-rich-content .cms-financing {
  gap: 1rem;
  margin: 1.8em 0 2em;
  padding: clamp(1.6rem, 2.6vw, 2.2rem);
  border: 1px solid rgba(33, 65, 143, .16);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(53, 103, 173, .07) 0%, rgba(123, 175, 212, .12) 100%);
  box-shadow: 0 12px 32px rgba(18, 42, 105, .06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.interior--article .cms-rich-content .cms-financing:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(18, 42, 105, .1);
}
.interior--article .cms-rich-content .cms-financing h5 {
  color: var(--forest);
  font-size: 1rem;
  letter-spacing: .1em;
}
.interior--article .cms-rich-content .cms-financing img {
  max-width: min(100%, 13rem);
  transition: transform .3s ease;
}
.interior--article .cms-rich-content .cms-financing a:hover img { transform: scale(1.03); }

@media (max-width: 860px) {
  .interior--article .cms-step-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
}
@media (max-width: 640px) {
  .interior--article .cms-compare { grid-template-columns: 1fr; max-width: 380px; }
}

/* ---- FAQ pages (native details accordion) ---- */
.interior--faq .page-body {
  position: relative;
  background:
    radial-gradient(ellipse 70% 42% at 8% 16%, rgba(123, 175, 212, .14), transparent 60%),
    radial-gradient(ellipse 55% 38% at 96% 52%, rgba(53, 103, 173, .08), transparent 55%),
    #fff;
}
.interior--faq .cms-faq {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: none;
  width: 100%;
  margin: .4rem 0 2rem;
}
.interior--faq .cms-faq-item {
  margin: 0;
  border: 1px solid rgba(33, 65, 143, .14);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff 0%, #f6f9fc 100%);
  box-shadow: 0 10px 28px rgba(18, 42, 105, .06);
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.interior--faq .cms-faq-item:hover {
  border-color: rgba(33, 65, 143, .24);
  box-shadow: 0 16px 36px rgba(18, 42, 105, .1);
}
.interior--faq .cms-faq-item[open] {
  border-color: rgba(33, 65, 143, .28);
  box-shadow: 0 18px 40px rgba(18, 42, 105, .12);
}
.interior--faq .cms-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  transition: background .2s ease;
}
.interior--faq .cms-faq-item summary::-webkit-details-marker { display: none; }
.interior--faq .cms-faq-item summary:hover { background: rgba(53, 103, 173, .04); }
.interior--faq .cms-faq-item summary:focus-visible {
  outline: 2px solid var(--sun);
  outline-offset: -2px;
}
.interior--faq .cms-faq-item__q {
  flex: 1;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);  /* ~22–26px */
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.3;
}
.interior--faq .cms-faq-item__icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(53, 103, 173, .1);
  color: var(--forest);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
  transition: transform .28s ease, background .25s ease, color .25s ease;
}
.interior--faq .cms-faq-item__icon::before { content: "+"; }
.interior--faq .cms-faq-item[open] .cms-faq-item__icon {
  background: var(--forest);
  color: #fff;
  transform: rotate(45deg);
}
.interior--faq .cms-faq-item__a {
  padding: 0 24px 22px;
}
.interior--faq .cms-faq-item__a p {
  margin: 0 0 1em;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.8;
}
.interior--faq .cms-faq-item__a p:first-child {
  padding-top: 4px;
  border-top: 1px solid rgba(33, 65, 143, .1);
}
.interior--faq .cms-faq-item__a p:last-child {
  margin-bottom: 0;
}
@media (max-width: 640px) {
  .interior--faq .cms-faq-item summary { padding: 16px 18px; min-height: 64px; }
  .interior--faq .cms-faq-item__a { padding: 0 18px 18px; }
}

/* Live parity: solid blue financing / promo banner after FAQs (Clear Lensectomy) */
.cms-rich-content .cms-promo-banner,
.interior--faq .cms-promo-banner {
  margin: 0.25rem 0 1.75rem;
  padding: clamp(1.15rem, 2.4vw, 1.5rem) clamp(1.25rem, 3vw, 1.85rem);
  border-radius: 4px;
  background: var(--forest, #3567ad);
  box-shadow: 0 12px 28px rgba(18, 42, 105, .18);
}
.cms-rich-content .cms-promo-banner p,
.interior--faq .cms-promo-banner p {
  margin: 0;
  color: #fff;
  font-size: clamp(1.02rem, 1.35vw, 1.12rem);
  font-weight: 500;
  line-height: 1.65;
  text-align: left;
}
/* Cataract / medical: “adapted from National Eye Institute” — full-width centered notice */
.cms-rich-content .cms-promo-banner--notice {
  margin: 0 0 1.5rem;
}
.cms-rich-content .cms-promo-banner--notice p {
  text-align: center;
  font-size: clamp(.95rem, 1.2vw, 1.05rem);
  line-height: 1.55;
}

/* Soft instructional intro (not solid promo fill) */
.cms-rich-content .cms-soft-note {
  margin: 0 0 1.25rem;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(33, 65, 143, .12);
  background: rgba(53, 103, 173, .08);
}
.cms-rich-content .cms-soft-note p {
  margin: 0;
  color: var(--forest, #21418f);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.5;
}

/* ---- Pre-op / instruction cards (also used on LASIK hub & similar educational pages) ---- */
.interior--instructions .page-body {
  position: relative;
  background:
    radial-gradient(ellipse 70% 42% at 8% 16%, rgba(123, 175, 212, .14), transparent 60%),
    radial-gradient(ellipse 55% 38% at 96% 52%, rgba(53, 103, 173, .08), transparent 55%),
    #fff;
}
.interior--instructions .cms-instruct-card,
.interior--instructions .cms-callout,
.interior--instructions .cms-link-pills,
.interior--article .cms-instruct-card {
  max-width: none;
  width: 100%;
}
.interior--instructions .cms-instruct-card,
.interior--article .cms-instruct-card {
  margin: 0 0 clamp(1.15rem, 2vw, 1.6rem);
  padding: clamp(1.5rem, 2.6vw, 2.1rem) clamp(1.4rem, 2.4vw, 2rem);
  border: 1px solid rgba(33, 65, 143, .12);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff 0%, #f6f9fc 100%);
  box-shadow: 0 12px 32px rgba(18, 42, 105, .06);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.interior--instructions .cms-instruct-card:hover,
.interior--article .cms-instruct-card:hover {
  transform: translateY(-3px);
  border-color: rgba(33, 65, 143, .22);
  box-shadow: 0 18px 42px rgba(18, 42, 105, .11);
}
.interior--instructions .cms-instruct-card h4,
.interior--article .cms-instruct-card h4 {
  margin: 0 0 .85em;
  padding: 0;
  border: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.1vw, 1.55rem);  /* ~22–26px */
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.2;
  text-transform: none;
}
.interior--instructions .cms-instruct-card h4::after,
.interior--article .cms-instruct-card h4::after {
  display: block;
  width: 42px;
  height: 3px;
  margin-top: .4em;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--forest), rgba(123, 175, 212, .6));
  content: "";
}
/* Instruction card with featured illustration (natural image size preserved) */
.interior--instructions .cms-instruct-card--media > img {
  display: block;
  width: auto;
  max-width: min(100%, 34rem);
  height: auto;
  margin: .35rem auto 0;
  padding: clamp(12px, 1.8vw, 18px);
  border: 1px solid rgba(33, 65, 143, .12);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(18, 42, 105, .07);
  object-fit: contain;
}
.interior--instructions .cms-instruct-card > p,
.interior--article .cms-instruct-card > p {
  margin: 0 0 .9em;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(53, 103, 173, .08);
  color: var(--forest);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.45;
}
.interior--instructions .cms-instruct-card ul,
.interior--article .cms-instruct-card ul {
  margin: 0;
  list-style: none;
  padding: 0;
}
/* Consecutive CMS lists inside one card read as a single instruction list */
.interior--instructions .cms-instruct-card ul + ul,
.interior--article .cms-instruct-card ul + ul {
  margin-top: 0;
}
.interior--instructions .cms-instruct-card ul > li,
.interior--article .cms-instruct-card ul > li {
  padding: .7em 0 .7em 2.15em;
  border-bottom: 1px solid rgba(33, 65, 143, .08);
  font-size: clamp(1.04rem, 1.3vw, 1.12rem);
  line-height: 1.75;
  color: var(--muted);
}
.interior--instructions .cms-instruct-card ul > li:last-child,
.interior--article .cms-instruct-card ul > li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
/* Hide divider between split CMS <ul>s so one continuous list is shown */
.interior--instructions .cms-instruct-card ul:not(:last-of-type) > li:last-child,
.interior--article .cms-instruct-card ul:not(:last-of-type) > li:last-child {
  border-bottom: 1px solid rgba(33, 65, 143, .08);
  padding-bottom: .7em;
}

/* Phone / “please call with any questions” strip (pre-op & similar) */
.cms-rich-content .cms-callout,
.interior--instructions .cms-callout {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  margin: 1.6rem 0 2rem;
  padding: clamp(1rem, 3.5vw, 1.75rem) clamp(0.85rem, 3.2vw, 2rem);
  border-radius: 4px;
  background: var(--forest, #21418f);
  box-shadow: 0 12px 28px rgba(18, 42, 105, .18);
  text-align: center;
  overflow-wrap: anywhere;
  word-wrap: break-word;
}
.cms-rich-content .cms-callout p,
.interior--instructions .cms-callout p {
  margin: 0;
  max-width: 100%;
  color: #fff;
  font-size: clamp(.88rem, 2.8vw, 1.12rem);
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.55;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}
.cms-rich-content .cms-callout a,
.interior--instructions .cms-callout a,
.cms-rich-content .cms-callout a[href^="tel:"],
.interior--instructions .cms-callout a[href^="tel:"] {
  display: inline;
  margin: 0 2px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  color: #fff !important;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  /* Allow wrapping on narrow screens — nowrap caused mobile overflow */
  white-space: normal;
  overflow-wrap: anywhere;
  transition: color .2s ease, opacity .2s ease;
}
.cms-rich-content .cms-callout a *,
.interior--instructions .cms-callout a * {
  color: inherit !important;
  background: transparent !important;
}
.cms-rich-content .cms-callout a:hover,
.interior--instructions .cms-callout a:hover,
.cms-rich-content .cms-callout a[href^="tel:"]:hover,
.interior--instructions .cms-callout a[href^="tel:"]:hover {
  color: var(--aqua-soft, #cfe5f4) !important;
  background: transparent !important;
  transform: none;
  box-shadow: none;
}
/* Hide empty duplicate tel anchors from CMS HTML */
.cms-rich-content .cms-callout a[href^="tel:"]:empty,
.interior--instructions .cms-callout a[href^="tel:"]:empty {
  display: none;
}
@media (max-width: 400px) {
  .cms-rich-content .cms-callout,
  .interior--instructions .cms-callout {
    padding: 1rem 0.75rem;
  }
  .cms-rich-content .cms-callout p,
  .interior--instructions .cms-callout p {
    font-size: .86rem;
    letter-spacing: .01em;
    line-height: 1.5;
  }
}

/* ---- Cataract lens options: sticky pill nav + section cards ---- */
/* Offset is measured/set by theme.js (--lens-scroll-offset) so hash jumps
   land flush under the sticky header + pill nav (no large empty band). */
html:has(.interior--lens) {
  scroll-behavior: smooth;
  scroll-padding-top: var(--lens-scroll-offset, 168px);
  /* overflow-x: hidden on roots breaks position:sticky in Chromium */
  overflow-x: clip;
}
body:has(.interior--lens) {
  overflow-x: clip;
}
/* Sticky fails if any ancestor has overflow clipping, transform, or animation. */
.interior--lens .page-body > .container,
.interior--lens .page-panel,
.interior--lens.interior--modern .page-panel,
.interior--lens .cms-rich-content {
  overflow: visible !important;
  transform: none !important;
  animation: none !important;
  filter: none !important;
  contain: none !important;
}
.interior--lens .cms-lens-nav {
  position: sticky;
  top: var(--lens-nav-sticky-top, 96px);
  z-index: 24;
  margin: 0 0 0.75rem;
  padding: 12px 14px;
  border: 1px solid rgba(33, 65, 143, .14);
  border-radius: 16px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 12px 32px rgba(18, 42, 105, .1);
  backdrop-filter: blur(12px);
}
.interior--lens .cms-lens-nav ul,
.interior--lens .cms-rich-content .cms-lens-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.interior--lens .cms-lens-nav li,
.interior--lens .cms-rich-content .cms-lens-nav li {
  margin: 0;
  padding: 0;
  border: 0;
}
/* Kill article checkmark bullets on the pill nav (higher-specificity override) */
.interior--lens .cms-rich-content .cms-lens-nav ul > li::before,
.interior--lens .cms-lens-nav li::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
  background: none !important;
}
.interior--lens .cms-lens-nav a,
.interior--lens .cms-rich-content .cms-lens-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 11px 18px;
  border: 1px solid rgba(33, 65, 143, .2);
  border-radius: 999px;
  background: #fff;
  color: var(--forest);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.2;
  text-decoration: none;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.interior--lens .cms-lens-nav a:hover,
.interior--lens .cms-lens-nav a:focus-visible,
.interior--lens .cms-rich-content .cms-lens-nav a:hover,
.interior--lens .cms-rich-content .cms-lens-nav a:focus-visible {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(18, 42, 105, .18);
  outline: none;
}
/* Active pill — scroll-spy / hash (.is-active set by theme.js) */
.interior--lens .cms-lens-nav a.is-active,
.interior--lens .cms-rich-content .cms-lens-nav a.is-active,
body:has(#mono:target) .interior--lens .cms-lens-nav a[href="#mono"]:not(.is-active),
body:has(#toric:target) .interior--lens .cms-lens-nav a[href="#toric"]:not(.is-active),
body:has(#multi:target) .interior--lens .cms-lens-nav a[href="#multi"]:not(.is-active),
body:has(#ext:target) .interior--lens .cms-lens-nav a[href="#ext"]:not(.is-active) {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
}
/* When .is-active is present, prefer JS spy over :target so scroll-spy wins */
body:has(.interior--lens .cms-lens-nav a.is-active) .interior--lens .cms-lens-nav a[href]:not(.is-active) {
  background: #fff;
  border-color: rgba(33, 65, 143, .2);
  color: var(--forest);
  box-shadow: none;
  transform: none;
}
body:has(.interior--lens .cms-lens-nav a.is-active) .interior--lens .cms-lens-nav a.is-active {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
}

.interior--lens .cms-lens-section {
  scroll-margin-top: var(--lens-scroll-offset, 168px);
  margin: 0 0 clamp(1.65rem, 3vw, 2.35rem);
  padding: 0 0 clamp(1.35rem, 2.4vw, 1.85rem);
  border: 0;
  border-bottom: 1px solid rgba(33, 65, 143, .1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: none;
}
.interior--lens .cms-lens-nav + .cms-lens-section {
  margin-top: 0;
}
.interior--lens .cms-lens-section:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}
.interior--lens .cms-lens-section:hover {
  border-color: rgba(33, 65, 143, .1);
  box-shadow: none;
  transform: none;
}
/* Beat `.interior--article .cms-rich-content h3` (large top margin) so
   titles sit cleanly without a huge empty band. */
.interior--lens.interior--article .cms-rich-content .cms-lens-section > h3.cms-lens-section__title,
.interior--lens .cms-rich-content .cms-lens-section > h3.cms-lens-section__title {
  margin: 0 0 .55em !important;
  padding: 0 !important;
  border: 0 !important;
  border-top: 0 !important;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.5vw, 1.95rem);
  font-weight: 400;
  letter-spacing: -.015em;
  line-height: 1.15;
  text-transform: none;
}
.interior--lens.interior--article .cms-rich-content .cms-lens-section > h3.cms-lens-section__title::after,
.interior--lens .cms-rich-content .cms-lens-section > h3.cms-lens-section__title::after {
  display: block;
  width: 44px;
  height: 3px;
  margin-top: .35em;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--forest), rgba(123, 175, 212, .6));
  content: "";
}
.interior--lens .cms-lens-section p {
  margin: 0 0 1.15em;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.35vw, 1.1rem);
  line-height: 1.8;
}
.interior--lens .cms-lens-section p:last-child { margin-bottom: 0; }
.interior--lens .cms-lens-section p strong {
  color: var(--ink);
  font-weight: 700;
}
.interior--lens .cms-lens-section > img {
  display: block;
  width: auto;
  max-width: min(100%, 34rem);
  height: auto;
  margin: 1.25rem 0 1.4rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

/* Vivity extended vision points — open list, not a nested card */
.interior--lens .cms-feature-points {
  margin: 1.25rem 0 1rem;
  padding: .15rem 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.interior--lens .cms-feature-points h4 {
  margin: 0 0 .75em;
  padding: 0;
  border: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.2;
  text-transform: none;
}
.interior--lens .cms-feature-points h4::after {
  display: block;
  width: 44px;
  height: 3px;
  margin-top: .4em;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--forest), rgba(123, 175, 212, .6));
  content: "";
}
.interior--lens .cms-feature-points ul { margin: 0; }
.interior--lens .cms-feature-points ul > li {
  padding: .45em 0 .45em 2.1em;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.55;
  border-bottom: 0;
}
.interior--lens .cms-feature-points ul > li:last-child { border-bottom: 0; }

@media (max-width: 760px) {
  html:has(.interior--lens) { scroll-padding-top: var(--lens-scroll-offset, 148px); }
  .interior--lens .cms-lens-nav { top: var(--lens-nav-sticky-top, 72px); }
  .interior--lens .cms-lens-section { scroll-margin-top: var(--lens-scroll-offset, 148px); }
  .interior--lens .cms-lens-nav a { width: 100%; justify-content: center; }
  .interior--lens .cms-lens-nav ul { flex-direction: column; }
}

/* ---- LASIK vs PRK comparison panels (text unchanged) ---- */
.interior--compare .page-body {
  position: relative;
  background:
    radial-gradient(ellipse 70% 42% at 8% 18%, rgba(123, 175, 212, .14), transparent 60%),
    radial-gradient(ellipse 55% 38% at 96% 48%, rgba(53, 103, 173, .08), transparent 55%),
    #fff;
}
.interior--compare .cms-compare-panel,
.interior--compare .cms-note,
.interior--compare .cms-link-pills {
  max-width: none;
  width: 100%;
}
.interior--compare .cms-rich-content > p {
  font-size: clamp(1.04rem, 1.35vw, 1.12rem);
  line-height: 1.8;
  margin-bottom: 1.15em;
}
.interior--compare .cms-rich-content > img {
  transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
}
.interior--compare .cms-rich-content > img:hover {
  transform: translateY(-3px);
  border-color: rgba(33, 65, 143, .22);
  box-shadow: 0 18px 40px rgba(18, 42, 105, .12);
}
.interior--compare .cms-compare-panel {
  margin: 1.35rem 0 1.55rem;
  padding: clamp(1.35rem, 2.4vw, 1.9rem);
  border: 1px solid rgba(33, 65, 143, .12);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff 0%, #f6f9fc 100%);
  box-shadow: 0 12px 32px rgba(18, 42, 105, .06);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.interior--compare .cms-compare-panel:hover {
  transform: translateY(-3px);
  border-color: rgba(33, 65, 143, .22);
  box-shadow: 0 18px 40px rgba(18, 42, 105, .1);
}
.interior--compare .cms-compare-panel p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.35vw, 1.1rem);
  line-height: 1.8;
}
.interior--compare .cms-compare-panel--lasik {
  border-left: 4px solid var(--forest);
}
.interior--compare .cms-compare-panel--prk {
  border-left: 4px solid var(--sun);
  background: linear-gradient(180deg, #fff 0%, #f3f7fc 100%);
}
.interior--compare .cms-compare-panel--summary {
  border: 1px solid rgba(33, 65, 143, .16);
  background: linear-gradient(135deg, rgba(53, 103, 173, .07) 0%, rgba(123, 175, 212, .12) 100%);
}
.interior--compare .cms-note {
  margin: 1.25rem 0 1.65rem;
  padding: clamp(1.2rem, 2.2vw, 1.65rem);
  border: 1px solid rgba(33, 65, 143, .14);
  border-left: 4px solid var(--forest);
  border-radius: 14px;
  background: rgba(53, 103, 173, .07);
  box-shadow: 0 8px 24px rgba(18, 42, 105, .05);
}
.interior--compare .cms-note p {
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.75;
}

/* ---- Footer polish (typography / spacing / hover only) ---- */
.footer__grid { padding-bottom: 64px; }
.footer li { margin: 11px 0; }
.footer li a,
.footer__brand a {
  transition: color .2s ease;
}
.footer li a {
  display: inline-block;
  font-size: .84rem;
  line-height: 1.5;
  transition: color .2s ease, transform .2s ease;
}
.footer li a:hover {
  color: #fff;
  transform: translateX(3px);
}
.footer h3 { letter-spacing: .16em; }
.footer__brand p { line-height: 1.7; }
.footer__bottom {
  padding-top: 26px;
  letter-spacing: .03em;
  color: rgba(255, 255, 255, .5);
}

/* ---- Meet the Team profiles (posts/*): doctors + staff share card language ---- */
.interior--profile .page-body {
  position: relative;
  background:
    radial-gradient(ellipse 70% 42% at 8% 16%, rgba(123, 175, 212, .14), transparent 60%),
    radial-gradient(ellipse 55% 38% at 96% 52%, rgba(53, 103, 173, .08), transparent 55%),
    #fff;
}
.interior--profile .page-body::before {
  position: absolute;
  top: 6%;
  left: -8%;
  width: min(42vw, 380px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 175, 212, .12) 0%, transparent 70%);
  pointer-events: none;
  content: "";
}
.interior--profile .cms-rich-content {
  max-width: none;
  width: 100%;
}
/* Safety if CMS HTML misses the profile wrap: avoid inline-flow / float beside portrait */
.interior--profile .cms-rich-content > img,
.interior--profile .cms-rich-content > p > img:only-child {
  display: block;
  float: none;
  width: auto;
  max-width: min(100%, 300px);
  height: auto;
  margin: 0 0 1.25rem;
}
.interior--profile .cms-team-profile,
.interior--profile .cms-doctor-profile {
  position: relative;
  /* Flex (not grid auto): staff JPEGs are ~1300px intrinsic; grid min-content
     was sizing the photo column to full natural width and crushing the bio. */
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: clamp(1.5rem, 2.8vw, 2.25rem) clamp(1.35rem, 2.5vw, 2rem);
  border: 1px solid rgba(33, 65, 143, .12);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff 0%, #f6f9fc 100%);
  box-shadow: 0 14px 40px rgba(18, 42, 105, .07);
  transition: box-shadow .3s ease, border-color .3s ease;
  overflow: hidden;
}
@media (prefers-reduced-motion: no-preference) {
  .interior--profile .cms-team-profile,
  .interior--profile .cms-doctor-profile {
    animation: team-profile-rise .55s cubic-bezier(.22, .68, .35, 1) both;
  }
  @keyframes team-profile-rise {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: none; }
  }
}
.interior--profile .cms-team-profile:hover,
.interior--profile .cms-doctor-profile:hover {
  border-color: rgba(33, 65, 143, .2);
  box-shadow: 0 20px 48px rgba(18, 42, 105, .1);
}
.interior--profile .cms-team-profile__media,
.interior--profile .cms-doctor-profile__media {
  /* Intrinsic staff photos are often ~1300px wide; without min-width:0 the
     flex item still reserves that full width (empty gap + crushed bio). */
  flex: 0 0 auto;
  box-sizing: border-box;
  width: 300px;
  max-width: min(100%, 300px);
  min-width: 0;
  margin: 0;
  overflow: hidden;
}
.interior--profile .cms-team-profile__media img,
.interior--profile .cms-doctor-profile__media img {
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0; /* override default min-width:auto = intrinsic image width */
  height: auto;
  margin: 0;
  padding: clamp(10px, 1.5vw, 14px);
  border: 1px solid rgba(33, 65, 143, .12);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(18, 42, 105, .08);
  object-fit: contain;
  transition: transform .3s ease, box-shadow .3s ease;
}
.interior--profile .cms-team-profile:hover .cms-team-profile__media img,
.interior--profile .cms-doctor-profile:hover .cms-doctor-profile__media img {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(18, 42, 105, .12);
}
.interior--profile .cms-team-profile__body,
.interior--profile .cms-doctor-profile__body {
  flex: 1 1 16rem;
  min-width: 0; /* allow bio column to use remaining width next to photo */
  max-width: 100%;
  padding-top: .15rem;
  overflow-wrap: break-word;
}
.interior--profile .cms-team-profile__name,
.interior--profile .cms-doctor-profile__name {
  margin: 0 0 .85em;
  padding: 0 0 .65em;
  border-bottom: 1px solid rgba(33, 65, 143, .1);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.8vw, 3.2rem); /* ~48–56px */
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.12;
}
.interior--profile .cms-team-profile__name::after,
.interior--profile .cms-doctor-profile__name::after {
  display: block;
  width: 48px;
  height: 3px;
  margin-top: .5em;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--forest), rgba(123, 175, 212, .65));
  content: "";
}
.interior--profile .cms-team-profile__body p,
.interior--profile .cms-doctor-profile__body p {
  margin: 0 0 1.2em;
  max-width: 48rem;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.35vw, 1.12rem); /* ~17–18px */
  line-height: 1.85;
}
.interior--profile .cms-team-profile__body p:last-child,
.interior--profile .cms-doctor-profile__body p:last-child {
  margin-bottom: 0;
}

/* Existing CMS email lines (mailto preserved) */
.interior--profile .cms-team-profile__contact,
.interior--profile p.cms-team-profile__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem .55rem;
  max-width: 48rem;
  margin-top: 1.35em !important;
  margin-bottom: 0 !important;
  padding: .9rem 1.1rem;
  border: 1px solid rgba(33, 65, 143, .12);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(123, 175, 212, .12), rgba(53, 103, 173, .06));
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.5;
}
.interior--profile .cms-team-profile__contact a[href^="mailto:"],
.interior--profile p.cms-team-profile__contact a[href^="mailto:"] {
  color: var(--forest);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s ease;
}
.interior--profile .cms-team-profile__contact a[href^="mailto:"]:hover,
.interior--profile p.cms-team-profile__contact a[href^="mailto:"]:hover {
  color: var(--sun);
}
.interior--profile .cms-team-profile__contact a[href^="mailto:"]:focus-visible,
.interior--profile p.cms-team-profile__contact a[href^="mailto:"]:focus-visible {
  outline: 2px solid var(--aqua);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (max-width: 820px) {
  .interior--profile .cms-team-profile,
  .interior--profile .cms-doctor-profile {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }
  .interior--profile .cms-team-profile__media,
  .interior--profile .cms-doctor-profile__media {
    width: min(100%, 280px);
    max-width: 280px;
  }
  .interior--profile .cms-team-profile__media img,
  .interior--profile .cms-doctor-profile__media img {
    margin: 0 auto;
  }
  .interior--profile .cms-team-profile__body,
  .interior--profile .cms-doctor-profile__body {
    width: 100%;
    flex-basis: auto;
    min-width: 0;
  }
  .interior--profile .cms-team-profile__name,
  .interior--profile .cms-doctor-profile__name {
    font-size: clamp(1.85rem, 6vw, 2.5rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .interior--profile .cms-team-profile,
  .interior--profile .cms-doctor-profile,
  .interior--profile .cms-team-profile__media img,
  .interior--profile .cms-doctor-profile__media img {
    animation: none !important;
    transition: none !important;
  }
  .interior--profile .cms-team-profile:hover .cms-team-profile__media img,
  .interior--profile .cms-doctor-profile:hover .cms-doctor-profile__media img {
    transform: none;
  }
}

/* What Is LASIK: video replaces former top photo — full-width lead embed (not a side float) */
.interior--what-is-lasik .cms-rich-content {
  overflow: visible;
}
.interior--what-is-lasik .cms-rich-content > .cms-video:first-child {
  float: none;
  display: block;
  width: 100% !important;
  max-width: min(100%, 52rem) !important;
  margin: 0 auto 2rem !important;
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(18, 42, 105, .16);
}
@media (max-width: 820px) {
  .interior--what-is-lasik .cms-rich-content > .cms-video:first-child {
    margin: 0 0 1.35rem !important;
    border-radius: 12px;
  }
}

