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

    :root {
      --teal: #1F6B62;
      --teal-mid: #268278;
      --teal-light: #3DA898;
      --teal-pale: #EAF5F3;
      --teal-mist: #C8E8E4;
      --gold: #B8872A;
      --gold-light: #D4A445;
      --gold-pale: #FDF4E3;
      --gold-mist: #F0DEB0;
      --white: #FFFFFF;
      --ivory: #F9F8F5;
      --cream: #F2F0EA;
      --cream2: #E8E4DC;
      --ink: #1C1C1C;
      --ink2: #2D2D2D;
      --muted: #636363;
      --muted2: #909090;
      --border: #DDD9D0;
      --serif: 'Playfair Display', Georgia, serif;
      --sans: 'Nunito Sans', system-ui, sans-serif;
      --shadow-sm: 0 2px 12px rgba(0, 0, 0, .06);
      --shadow-md: 0 8px 32px rgba(0, 0, 0, .09);
      --shadow-lg: 0 20px 60px rgba(0, 0, 0, .12);
    }

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: var(--sans);
      background: var(--ivory);
      color: var(--ink);
      line-height: 1.7;
      overflow-x: hidden
    }

    ::-webkit-scrollbar {
      width: 5px
    }

    ::-webkit-scrollbar-track {
      background: var(--cream)
    }

    ::-webkit-scrollbar-thumb {
      background: var(--teal-mist);
      border-radius: 3px
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 200;
      background: rgba(249, 248, 245, .96);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      padding: 0 5vw;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-brand {
      display: flex;
      align-items: center;
      gap: 12px
    }

    .nav-logo-circle {
      width: 40px;
      height: 40px;
      background: var(--teal);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .nav-logo-circle svg {
      width: 20px;
      height: 20px;
      fill: none;
      stroke: #fff;
      stroke-width: 1.8
    }

    .nav-name {
      font-family: var(--serif);
      font-size: 1.05rem;
      font-weight: 500;
      color: var(--ink);
      line-height: 1.2
    }

    .nav-name small {
      display: block;
      font-family: var(--sans);
      font-size: .65rem;
      font-weight: 400;
      color: var(--muted);
      letter-spacing: .09em;
      text-transform: uppercase
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none
    }

    .nav-links a {
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .07em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--muted);
      transition: color .2s;
      position: relative
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--teal);
      border-radius: 1px;
      transition: width .25s
    }

    .nav-links a:hover {
      color: var(--teal)
    }

    .nav-links a:hover::after {
      width: 100%
    }

    .nav-book {
      background: var(--teal) !important;
      color: #fff !important;
      padding: .48rem 1.4rem;
      border-radius: 100px;
      letter-spacing: .05em !important;
      font-size: .73rem !important;
      font-weight: 600 !important;
      transition: background .2s, transform .15s !important
    }

    .nav-book::after {
      display: none !important
    }

    .nav-book:hover {
      background: var(--teal-light) !important;
      transform: translateY(-1px)
    }

    @media(max-width:860px) {
      .nav-links {
        display: none
      }
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding-top: 68px;
      position: relative;
      overflow: hidden
    }

    /* Dot-grid background */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(31, 107, 98, .12) 1px, transparent 1px);
      background-size: 28px 28px;
      mask-image: linear-gradient(135deg, rgba(0, 0, 0, .18) 0%, transparent 60%);
      pointer-events: none;
    }

    .hero-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 5vw 80px 8vw;
      position: relative;
      z-index: 2;
    }

    /* Accent pill */
    .eyebrow-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--teal-pale);
      border: 1px solid var(--teal-mist);
      border-radius: 100px;
      padding: 5px 14px 5px 8px;
      margin-bottom: 2rem;
      width: fit-content;
    }

    .eyebrow-pill-dot {
      width: 8px;
      height: 8px;
      background: var(--teal);
      border-radius: 50%;
      animation: blink 2.2s ease-in-out infinite
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: .5;
        transform: scale(.75)
      }
    }

    .eyebrow-pill span {
      font-size: .68rem;
      font-weight: 700;
      color: var(--teal);
      letter-spacing: .1em;
      text-transform: uppercase
    }

    .hero-name {
      font-family: var(--serif);
      font-size: clamp(2.8rem, 4.2vw, 4.6rem);
      font-weight: 700;
      line-height: 1.08;
      color: var(--ink);
      margin-bottom: .3rem
    }

    .hero-name em {
      font-style: italic;
      color: var(--teal);
      font-weight: 400
    }

    .hero-deg {
      font-family: var(--serif);
      font-size: 1.1rem;
      font-weight: 400;
      font-style: italic;
      color: var(--muted);
      margin-bottom: 1.5rem
    }

    .hero-rule {
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, var(--teal), var(--gold));
      border-radius: 2px;
      margin-bottom: 1.5rem
    }

    .hero-desc {
      font-size: .97rem;
      color: var(--muted);
      max-width: 440px;
      line-height: 1.9;
      margin-bottom: 2.5rem;
      font-weight: 400
    }

    .hero-stats {
      display: flex;
      gap: 0;
      margin-bottom: 2.5rem;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      max-width: 360px;
      box-shadow: var(--shadow-sm);
    }

    .hero-stat {
      flex: 1;
      padding: 1.2rem 1rem;
      text-align: center;
      border-right: 1px solid var(--border)
    }

    .hero-stat:last-child {
      border-right: none
    }

    .hero-stat-num {
      font-family: var(--serif);
      font-size: 2rem;
      font-weight: 700;
      color: var(--teal);
      line-height: 1;
      margin-bottom: 3px
    }

    .hero-stat-num span {
      font-size: 1.1rem
    }

    .hero-stat-label {
      font-size: .62rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--muted2);
      font-weight: 600
    }

    .hero-btns {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap
    }

    .btn-primary {
      background: var(--teal);
      color: #fff;
      padding: .85rem 2rem;
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 100px;
      border: none;
      cursor: pointer;
      transition: background .2s, transform .15s, box-shadow .2s;
      box-shadow: 0 4px 18px rgba(31, 107, 98, .35);
    }

    .btn-primary:hover {
      background: var(--teal-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(31, 107, 98, .42)
    }

    .btn-outline {
      background: transparent;
      color: var(--ink);
      padding: .85rem 2rem;
      font-size: .78rem;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 100px;
      border: 1.5px solid var(--border);
      transition: border-color .2s, color .2s, transform .15s;
      cursor: pointer;
    }

    .btn-outline:hover {
      border-color: var(--teal);
      color: var(--teal);
      transform: translateY(-2px)
    }

    /* Hero right visual panel */
    .hero-right {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(155deg, var(--teal-pale) 0%, var(--ivory) 50%, var(--gold-pale) 100%);
      overflow: hidden;
    }

    /* Large decorative watermark cross */
    .deco-cross {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 380px;
      height: 380px;
      opacity: .055;
      pointer-events: none;
    }

    /* Concentric rings */
    .ring {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      border: 1px dashed rgba(31, 107, 98, .2);
    }

    .ring-1 {
      width: 340px;
      height: 340px;
      animation: spin-ring 50s linear infinite
    }

    .ring-2 {
      width: 260px;
      height: 260px;
      border-color: rgba(184, 135, 42, .18);
      animation: spin-ring 35s linear infinite reverse
    }

    @keyframes spin-ring {
      to {
        transform: translate(-50%, -50%) rotate(360deg)
      }
    }

    /* Portrait */
    .portrait-frame {
      position: relative;
      z-index: 4;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: linear-gradient(145deg, var(--teal), #144f49);
      border: 5px solid var(--white);
      box-shadow: 0 24px 60px rgba(31, 107, 98, .28);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .portrait-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top
    }

    .portrait-initials {
      font-family: var(--serif);
      font-size: 5.5rem;
      font-weight: 500;
      color: rgba(255, 255, 255, .88);
      letter-spacing: -.02em
    }

    /* Floating info cards */
    .float-card {
      position: absolute;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 12px 16px;
      box-shadow: var(--shadow-md);
      z-index: 5;
    }

    .float-card.fc-tl {
      top: 18%;
      left: 5%
    }

    .float-card.fc-br {
      bottom: 16%;
      right: 5%
    }

    .float-card.fc-tr {
      top: 14%;
      right: 8%
    }

    .fc-icon {
      width: 30px;
      height: 30px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 5px
    }

    .fc-icon svg {
      width: 16px;
      height: 16px;
      fill: none;
      stroke-width: 1.8
    }

    .fc-title {
      font-size: .75rem;
      font-weight: 700;
      color: var(--ink);
      line-height: 1.2
    }

    .fc-sub {
      font-size: .65rem;
      color: var(--muted);
      margin-top: 2px
    }

    /* Google rating badge */
    .g-badge {
      position: absolute;
      bottom: 20%;
      left: 6%;
      z-index: 5;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 10px 14px;
      box-shadow: var(--shadow-md);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .g-score {
      font-family: var(--serif);
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--ink);
      line-height: 1
    }

    .g-stars {
      display: flex;
      gap: 2px
    }

    .g-stars svg {
      width: 12px;
      height: 12px;
      fill: #FBBC04
    }

    .g-label {
      font-size: .62rem;
      color: var(--muted);
      margin-top: 2px;
      letter-spacing: .03em
    }

    /* Hero animations */
    .hero-left>* {
      animation: slideUp .7s ease both
    }

    .hero-left>*:nth-child(1) {
      animation-delay: .08s
    }

    .hero-left>*:nth-child(2) {
      animation-delay: .2s
    }

    .hero-left>*:nth-child(3) {
      animation-delay: .3s
    }

    .hero-left>*:nth-child(4) {
      animation-delay: .38s
    }

    .hero-left>*:nth-child(5) {
      animation-delay: .46s
    }

    .hero-left>*:nth-child(6) {
      animation-delay: .54s
    }

    .hero-left>*:nth-child(7) {
      animation-delay: .62s
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(26px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    /* ── TRUST STRIP ── */
    .trust-strip {
      background: var(--teal);
      padding: 1rem 6vw;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      flex-wrap: wrap;
      position: relative;
      overflow: hidden;
    }

    .trust-strip::after {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(90deg, transparent, transparent 120px, rgba(255, 255, 255, .04) 120px, rgba(255, 255, 255, .04) 121px);
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      position: relative;
      z-index: 1
    }

    .trust-item svg {
      width: 16px;
      height: 16px;
      fill: none;
      stroke: rgba(255, 255, 255, .75);
      stroke-width: 2;
      flex-shrink: 0
    }

    .trust-item span {
      font-size: .78rem;
      color: rgba(255, 255, 255, .88);
      font-weight: 400
    }

    .trust-sep {
      width: 1px;
      height: 20px;
      background: rgba(255, 255, 255, .2);
      flex-shrink: 0
    }

    @media(max-width:700px) {
      .trust-sep {
        display: none
      }

      .trust-strip {
        gap: .8rem
      }
    }

    /* ── SECTION COMMON ── */
    section {
      padding: 96px 8vw
    }

    .sec-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: var(--teal-pale);
      border: 1px solid var(--teal-mist);
      border-radius: 100px;
      padding: 4px 14px;
      margin-bottom: 1.2rem;
    }

    .sec-eyebrow svg {
      width: 13px;
      height: 13px;
      fill: none;
      stroke: var(--teal);
      stroke-width: 2.2
    }

    .sec-eyebrow span {
      font-size: .65rem;
      font-weight: 700;
      color: var(--teal);
      letter-spacing: .12em;
      text-transform: uppercase
    }

    .sec-title {
      font-family: var(--serif);
      font-size: clamp(1.9rem, 3.2vw, 2.9rem);
      font-weight: 700;
      color: var(--ink);
      line-height: 1.18;
      margin-bottom: 1rem
    }

    .sec-title em {
      font-style: italic;
      color: var(--teal);
      font-weight: 400
    }

    .sec-sub {
      font-size: .97rem;
      color: var(--muted);
      max-width: 540px;
      line-height: 1.85;
      font-weight: 400
    }

    /* ── SCROLL REVEAL ── */
    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity .6s ease, transform .6s ease
    }

    .reveal.in {
      opacity: 1;
      transform: none
    }

    /* ── ABOUT ── */
    .about {
      background: var(--white);
      position: relative;
      overflow: hidden
    }

    /* Radial glow decorations */
    .about::before {
      content: '';
      position: absolute;
      top: -80px;
      right: -80px;
      width: 320px;
      height: 320px;
      border-radius: 50%;
      background: radial-gradient(circle, var(--teal-pale) 0%, transparent 70%);
      pointer-events: none;
    }

    .about::after {
      content: '';
      position: absolute;
      bottom: -100px;
      left: -60px;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: radial-gradient(circle, var(--gold-pale) 0%, transparent 70%);
      pointer-events: none;
    }

    /* Medical illustration in about — abstract lung/stethoscope */
    .about-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(145deg, var(--teal-pale), var(--ivory));
      border-radius: 24px;
      border: 1px solid var(--teal-mist);
      min-height: 340px;
      overflow: hidden;
    }

    .about-visual svg.med-art {
      width: 88%;
      max-width: 320px;
      opacity: .9
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 7vw;
      align-items: center;
      margin-top: 3rem;
      position: relative;
      z-index: 1
    }

    .about-body {
      font-size: .95rem;
      color: var(--muted);
      line-height: 1.9;
      margin-bottom: 1rem;
      font-weight: 400
    }

    .about-pull {
      background: linear-gradient(135deg, var(--teal-pale), var(--cream));
      border-left: 3px solid var(--teal);
      border-radius: 0 10px 10px 0;
      padding: .9rem 1.4rem;
      margin: 1.4rem 0;
      font-family: var(--serif);
      font-size: 1rem;
      color: var(--ink2);
      font-style: italic;
      line-height: 1.65;
    }

    .tags {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-top: 1.4rem
    }

    .tag {
      background: var(--teal-pale);
      color: var(--teal);
      font-size: .68rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 100px;
      font-weight: 700;
      border: 1px solid var(--teal-mist);
      transition: background .2s, color .2s, transform .15s;
    }

    .tag:hover {
      background: var(--teal);
      color: #fff;
      transform: translateY(-1px);
      cursor: default
    }

    /* About cards grid */
    .about-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.1rem
    }

    .about-card {
      background: var(--ivory);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 1.6rem 1.3rem;
      position: relative;
      overflow: hidden;
      transition: transform .25s, box-shadow .25s;
    }

    .about-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--teal-pale), transparent);
      opacity: 0;
      transition: opacity .3s;
    }

    .about-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 40px rgba(31, 107, 98, .11)
    }

    .about-card:hover::before {
      opacity: 1
    }

    .ac-icon {
      width: 42px;
      height: 42px;
      background: var(--teal-pale);
      border-radius: 11px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: .9rem;
      position: relative;
      z-index: 1
    }

    .ac-icon svg {
      width: 20px;
      height: 20px;
      fill: none;
      stroke: var(--teal);
      stroke-width: 1.8
    }

    .about-card h4 {
      font-family: var(--serif);
      font-size: 1.02rem;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 4px;
      position: relative;
      z-index: 1
    }

    .about-card p {
      font-size: .8rem;
      color: var(--muted);
      line-height: 1.65;
      position: relative;
      z-index: 1;
      font-weight: 400
    }

    /* ── SERVICES ── */
    .services {
      background: var(--ivory);
      position: relative;
      overflow: hidden
    }

    .services::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: 45%;
      background: linear-gradient(180deg, var(--teal-pale) 0%, transparent 100%);
      clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
      opacity: .45;
      pointer-events: none;
    }

    .svc-header {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: flex-end;
      margin-bottom: 3.5rem;
      gap: 2rem
    }

    .svc-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.4rem;
      position: relative;
      z-index: 1
    }

    .svc-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 2rem 1.7rem;
      position: relative;
      overflow: hidden;
      transition: transform .3s, box-shadow .3s;
      cursor: default;
    }

    .svc-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--teal), var(--teal-light));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .3s;
    }

    .svc-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg)
    }

    .svc-card:hover::after {
      transform: scaleX(1)
    }

    .svc-num {
      font-family: var(--serif);
      font-size: 2.8rem;
      font-weight: 700;
      color: rgba(31, 107, 98, .08);
      line-height: 1;
      margin-bottom: .8rem;
      transition: color .3s
    }

    .svc-card:hover .svc-num {
      color: rgba(31, 107, 98, .14)
    }

    .svc-icon {
      width: 46px;
      height: 46px;
      background: var(--teal-pale);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem
    }

    .svc-icon svg {
      width: 22px;
      height: 22px;
      fill: none;
      stroke: var(--teal);
      stroke-width: 1.7
    }

    .svc-card h3 {
      font-family: var(--serif);
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: .6rem;
      line-height: 1.3
    }

    .svc-card p {
      font-size: .83rem;
      color: var(--muted);
      line-height: 1.8;
      font-weight: 400
    }

    /* ── CREDENTIALS ── */
    .credentials {
      background: var(--cream)
    }

    .cred-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 7vw;
      margin-top: 3.5rem
    }

    .cred-section-head {
      font-size: .66rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--teal);
      font-weight: 700;
      margin-bottom: 1.8rem;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .cred-section-head::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border)
    }

    /* Timeline */
    .timeline {
      position: relative
    }

    .timeline-line {
      position: absolute;
      left: 14px;
      top: 4px;
      bottom: 0;
      width: 1px;
      background: linear-gradient(to bottom, var(--teal), var(--teal-mist), transparent);
    }

    .t-item {
      position: relative;
      padding-left: 3rem;
      margin-bottom: 2.4rem
    }

    .t-item:last-child {
      margin-bottom: 0
    }

    .t-dot {
      position: absolute;
      left: 7px;
      top: 5px;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: var(--white);
      border: 2.5px solid var(--teal);
      box-shadow: 0 0 0 4px rgba(31, 107, 98, .1);
    }

    .t-year {
      font-size: .66rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--teal);
      font-weight: 700;
      margin-bottom: 4px
    }

    .t-title {
      font-family: var(--serif);
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 3px;
      line-height: 1.3
    }

    .t-sub {
      font-size: .8rem;
      color: var(--muted);
      line-height: 1.6;
      font-weight: 400
    }

    /* Memberships */
    .memb-list {
      display: flex;
      flex-direction: column;
      gap: .9rem
    }

    .memb-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 1.1rem 1.3rem;
      display: flex;
      align-items: center;
      gap: .9rem;
      transition: border-color .2s, transform .2s;
    }

    .memb-card:hover {
      border-color: var(--teal-mist);
      transform: translateX(4px)
    }

    .memb-icon {
      width: 42px;
      height: 42px;
      background: var(--teal-pale);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0
    }

    .memb-icon svg {
      width: 19px;
      height: 19px;
      fill: none;
      stroke: var(--teal);
      stroke-width: 1.8
    }

    .memb-name {
      font-size: .88rem;
      font-weight: 700;
      color: var(--ink)
    }

    .memb-desc {
      font-size: .75rem;
      color: var(--muted);
      margin-top: 2px;
      font-weight: 400
    }

    .reg-block {
      background: linear-gradient(135deg, var(--teal), #124d46);
      border-radius: 14px;
      padding: 1.3rem 1.5rem;
      margin-top: 1rem;
      display: flex;
      align-items: center;
      gap: .9rem;
    }

    .reg-block svg {
      width: 20px;
      height: 20px;
      fill: none;
      stroke: rgba(255, 255, 255, .8);
      stroke-width: 1.8;
      flex-shrink: 0
    }

    .reg-label {
      font-size: .62rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .6);
      font-weight: 700
    }

    .reg-value {
      font-family: var(--serif);
      font-size: 1.02rem;
      font-weight: 600;
      color: #fff;
      margin-top: 3px
    }

    /* ── CLINIC ── */
    .clinic {
      background: var(--white);
      position: relative;
      overflow: hidden
    }

    .clinic::after {
      content: '';
      position: absolute;
      bottom: -120px;
      right: -80px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, var(--teal-pale) 0%, transparent 65%);
      pointer-events: none;
    }

    .clinic-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: 6vw;
      margin-top: 3.5rem;
      align-items: start;
      position: relative;
      z-index: 1
    }

    .live-notice {
      display: flex;
      align-items: center;
      gap: 10px;
      background: var(--teal-pale);
      border: 1px solid var(--teal-mist);
      border-radius: 12px;
      padding: .8rem 1.2rem;
      margin-bottom: 2.5rem;
      max-width: 500px;
    }

    .live-dot {
      width: 8px;
      height: 8px;
      background: #22c55e;
      border-radius: 50%;
      animation: blink 1.5s infinite;
      flex-shrink: 0
    }

    .live-notice span {
      font-size: .8rem;
      color: var(--teal);
      font-weight: 400
    }

    .live-chip {
      margin-left: auto;
      background: rgba(34, 197, 94, .15);
      color: #16a34a;
      font-size: .6rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 2px 10px;
      border-radius: 100px;
      font-weight: 700;
      white-space: nowrap;
    }

    .clinic-info {
      display: flex;
      flex-direction: column
    }

    .ci-item {
      display: flex;
      gap: 1rem;
      padding: 1.3rem 0;
      border-bottom: 1px solid var(--border);
      align-items: flex-start
    }

    .ci-item:first-child {
      padding-top: 0
    }

    .ci-item:last-child {
      border-bottom: none
    }

    .ci-icon {
      width: 38px;
      height: 38px;
      background: var(--teal-pale);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px
    }

    .ci-icon svg {
      width: 17px;
      height: 17px;
      fill: none;
      stroke: var(--teal);
      stroke-width: 1.8
    }

    .ci-label {
      font-size: .63rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--teal);
      font-weight: 700;
      margin-bottom: 3px
    }

    .ci-value {
      font-size: .9rem;
      color: var(--ink2);
      line-height: 1.6;
      font-weight: 400
    }

    .ci-value a {
      color: var(--teal);
      text-decoration: none;
      border-bottom: 1px dotted var(--teal-light)
    }

    .ci-value a:hover {
      border-bottom-style: solid
    }

    .also-at {
      margin-top: 2rem;
      padding-top: 2rem;
      border-top: 1px solid var(--border);
    }

    .also-at-label {
      font-size: .63rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--teal);
      font-weight: 700;
      margin-bottom: 1.1rem
    }

    .also-card {
      background: var(--ivory);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 1.3rem 1.4rem;
      display: flex;
      gap: .9rem;
      align-items: flex-start;
    }

    .also-card-icon {
      width: 38px;
      height: 38px;
      background: var(--teal-pale);
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0
    }

    .also-card-icon svg {
      width: 17px;
      height: 17px;
      fill: none;
      stroke: var(--teal);
      stroke-width: 1.8
    }

    .also-name {
      font-size: .9rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 3px
    }

    .also-addr {
      font-size: .78rem;
      color: var(--muted);
      line-height: 1.5
    }

    .also-stars {
      display: flex;
      align-items: center;
      gap: 5px;
      margin-top: 6px
    }

    .also-stars svg {
      width: 11px;
      height: 11px;
      fill: #FBBC04
    }

    .also-stars span {
      font-size: .72rem;
      color: var(--muted)
    }

    .clinic-panel {
      display: flex;
      flex-direction: column;
      gap: 1.4rem
    }

    .fee-card {
      background: linear-gradient(140deg, var(--teal), #124d46);
      border-radius: 20px;
      padding: 2.4rem 2rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .fee-card::before {
      content: '';
      position: absolute;
      top: -40px;
      right: -40px;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .05)
    }

    .fee-card::after {
      content: '';
      position: absolute;
      bottom: -50px;
      left: -30px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .04)
    }

    .fee-label {
      font-size: .66rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .6);
      margin-bottom: .7rem;
      font-weight: 700;
      position: relative;
      z-index: 1
    }

    .fee-amt {
      font-family: var(--serif);
      font-size: 4.5rem;
      font-weight: 700;
      color: #fff;
      line-height: 1;
      position: relative;
      z-index: 1
    }

    .fee-cur {
      font-size: 1.7rem;
      vertical-align: super;
      font-family: var(--sans);
      font-weight: 300
    }

    .fee-note {
      font-size: .75rem;
      color: rgba(255, 255, 255, .48);
      margin-top: .5rem;
      position: relative;
      z-index: 1
    }

    .hours-card {
      background: var(--ivory);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 1.7rem
    }

    .hours-title {
      font-size: .66rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--teal);
      font-weight: 700;
      margin-bottom: 1.1rem
    }

    .h-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 7px 0;
      border-bottom: 1px solid var(--border);
      font-size: .83rem
    }

    .h-row:last-child {
      border-bottom: none
    }

    .h-day {
      color: var(--muted);
      font-weight: 400
    }

    .h-time {
      color: var(--ink);
      font-weight: 600
    }

    .h-badge {
      background: rgba(31, 107, 98, .1);
      color: var(--teal);
      font-size: .6rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 2px 8px;
      border-radius: 100px;
      font-weight: 700
    }

    /* ── CONTACT ── */
    .contact {
      background: var(--cream)
    }

    .contact-inner {
      max-width: 760px;
      margin: 3.5rem auto 0;
      text-align: center
    }

    .contact-inner .sec-title {
      text-align: center
    }

    .contact-inner .sec-sub {
      text-align: center;
      margin: 0 auto 3rem;
      max-width: 100%
    }

    .contact-cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.1rem;
      margin-bottom: 2.5rem
    }

    .c-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 1.7rem 1rem;
      text-align: center;
      transition: transform .2s, box-shadow .2s, border-color .2s;
      text-decoration: none;
      display: block;
    }

    .c-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--teal-mist)
    }

    .c-card-icon {
      width: 46px;
      height: 46px;
      background: var(--teal-pale);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto .8rem
    }

    .c-card-icon svg {
      width: 21px;
      height: 21px;
      fill: none;
      stroke: var(--teal);
      stroke-width: 1.8
    }

    .c-label {
      font-size: .62rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--teal);
      font-weight: 700;
      margin-bottom: 5px
    }

    .c-value {
      font-size: .83rem;
      color: var(--ink2);
      line-height: 1.5;
      font-weight: 400
    }

    .c-value a {
      color: var(--ink2);
      text-decoration: none
    }

    /* ── REVIEWS ── */
    .reviews {
      background: var(--ivory);
      text-align: center
    }

    .reviews-summary {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5vw;
      margin: 3rem auto 4rem;
      max-width: 660px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 2.5rem 3rem;
      flex-wrap: wrap;
      box-shadow: var(--shadow-sm);
    }

    .r-big-num {
      font-family: var(--serif);
      font-size: 4.8rem;
      font-weight: 700;
      color: var(--teal);
      line-height: 1;
      margin-bottom: .4rem
    }

    .r-stars {
      display: flex;
      gap: 4px;
      justify-content: center;
      margin-bottom: 6px
    }

    .r-stars svg {
      width: 22px;
      height: 22px;
      fill: #FBBC04
    }

    .r-count {
      font-size: .75rem;
      color: var(--muted2);
      letter-spacing: .05em
    }

    .r-bars {
      flex: 1;
      min-width: 200px;
      max-width: 280px
    }

    .bar-row {
      display: flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 7px
    }

    .bar-lbl {
      font-size: .7rem;
      color: var(--muted);
      min-width: 28px;
      text-align: right
    }

    .bar-track {
      flex: 1;
      height: 8px;
      background: var(--cream);
      border-radius: 100px;
      overflow: hidden
    }

    .bar-fill {
      height: 100%;
      background: #FBBC04;
      border-radius: 100px
    }

    .bar-low {
      background: var(--border)
    }

    .bar-pct {
      font-size: .7rem;
      color: var(--muted);
      min-width: 30px
    }

    .r-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.4rem;
      max-width: 1100px;
      margin: 0 auto;
      text-align: left
    }

    .r-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 1.7rem;
      transition: transform .25s, box-shadow .25s;
      position: relative;
    }

    .r-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md)
    }

    .r-card::before {
      content: '"';
      position: absolute;
      top: 14px;
      right: 18px;
      font-family: var(--serif);
      font-size: 4rem;
      color: rgba(31, 107, 98, .07);
      line-height: 1;
      font-weight: 700;
    }

    .r-header {
      display: flex;
      align-items: center;
      gap: 11px;
      margin-bottom: .9rem
    }

    .r-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--serif);
      font-size: .95rem;
      font-weight: 600;
      color: rgba(255, 255, 255, .95);
      flex-shrink: 0
    }

    .r-name {
      font-size: .88rem;
      font-weight: 700;
      color: var(--ink)
    }

    .r-date {
      font-size: .7rem;
      color: var(--muted2);
      margin-top: 2px
    }

    .r-stars-sm {
      display: flex;
      gap: 3px;
      margin-bottom: .9rem
    }

    .r-stars-sm svg {
      width: 13px;
      height: 13px;
      fill: #FBBC04
    }

    .r-stars-sm .half-star {
      fill: url(#halfGradSm)
    }

    .r-text {
      font-size: .85rem;
      color: var(--muted);
      line-height: 1.8;
      font-style: italic;
      font-weight: 400
    }

    /* ── FOOTER ── */
    footer {
      background: var(--ink);
      padding: 3rem 8vw 2.5rem;
      position: relative;
      overflow: hidden;
    }

    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--teal), var(--teal-light), var(--gold))
    }

    .footer-body {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 3rem;
      flex-wrap: wrap;
      margin-bottom: 2rem
    }

    .footer-brand {
      font-family: var(--serif);
      font-size: 1.4rem;
      font-weight: 600;
      color: rgba(255, 255, 255, .9);
      margin-bottom: 5px
    }

    .footer-brand span {
      color: var(--teal-light)
    }

    .footer-deg {
      font-size: .78rem;
      color: rgba(255, 255, 255, .4);
      margin-bottom: 8px
    }

    .footer-tagline {
      font-size: .8rem;
      color: rgba(255, 255, 255, .35);
      max-width: 280px;
      line-height: 1.6;
      font-weight: 400
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 1.8rem
    }

    .footer-links a {
      font-size: .73rem;
      color: rgba(255, 255, 255, .42);
      text-decoration: none;
      letter-spacing: .06em;
      text-transform: uppercase;
      font-weight: 600;
      transition: color .2s
    }

    .footer-links a:hover {
      color: rgba(255, 255, 255, .78)
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .08);
      padding-top: 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem
    }

    .footer-copy {
      font-size: .72rem;
      color: rgba(255, 255, 255, .28);
      letter-spacing: .04em
    }

    .footer-reg {
      font-size: .68rem;
      color: rgba(255, 255, 255, .22)
    }

    /* ── RESPONSIVE ── */
    @media(max-width:900px) {
      .hero {
        grid-template-columns: 1fr
      }

      .hero-right {
        min-height: auto;
        padding: 48px 5vw 56px;
        flex-direction: column;
        display: flex;
        align-items: center;
      }

      /* Hide floating cards on tablet — they overlap the portrait */
      .float-card,
      .g-badge {
        display: none
      }

      /* Show a clean info strip below portrait on mobile instead */
      .hero-info-strip {
        display: flex !important
      }

      .about-grid,
      .svc-header,
      .cred-layout,
      .clinic-grid {
        grid-template-columns: 1fr
      }

      .svc-grid {
        grid-template-columns: 1fr 1fr
      }

      .contact-cards {
        grid-template-columns: repeat(2, 1fr)
      }

      .about-cards {
        grid-template-columns: 1fr 1fr
      }
    }

    /* Mobile info strip — hidden on desktop, shown on mobile */
    .hero-info-strip {
      display: none;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 20px;
      z-index: 6;
      position: relative;
    }

    .hero-info-chip {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 10px 14px;
      box-shadow: var(--shadow-sm);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .hero-info-chip .chip-icon {
      width: 28px;
      height: 28px;
      border-radius: 7px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .hero-info-chip .chip-icon svg {
      width: 14px;
      height: 14px;
      fill: none;
      stroke-width: 1.8;
    }

    .hero-info-chip .chip-title {
      font-size: .72rem;
      font-weight: 700;
      color: var(--ink);
      line-height: 1.2;
    }

    .hero-info-chip .chip-sub {
      font-size: .62rem;
      color: var(--muted);
      margin-top: 1px;
    }

    .hero-google-chip {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 10px 14px;
      box-shadow: var(--shadow-sm);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .hero-google-chip .g-score {
      font-family: var(--serif);
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--ink);
      line-height: 1;
    }

    .hero-google-chip .g-stars {
      display: flex;
      gap: 2px;
    }

    .hero-google-chip .g-stars svg {
      width: 11px;
      height: 11px;
      fill: #FBBC04;
    }

    .hero-google-chip .g-label {
      font-size: .6rem;
      color: var(--muted);
      margin-top: 2px;
    }

    @media(max-width:580px) {
      section {
        padding: 64px 5vw
      }

      .svc-grid {
        grid-template-columns: 1fr
      }

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

      .about-cards {
        grid-template-columns: 1fr
      }

      .hero-left {
        padding: 40px 5vw
      }

      .footer-links {
        gap: 1rem
      }

      .hero-right {
        padding: 36px 4vw 48px
      }

      .portrait-frame {
        width: 260px;
        height: 260px
      }

      .ring-1 {
        width: 290px;
        height: 290px
      }

      .ring-2 {
        width: 220px;
        height: 220px
      }
    }
