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

    :root {
      --navy: #0f1f2e;
      --navy-mid: #1a2f42;
      --cream: #f5f0e8;
      --cream-warm: #ede8df;
      --gold: #b8956a;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--cream);
    }

    /* ── NAV ── */
    nav {
      background: var(--cream);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 60px 0 0;
      height: 68px;
      border-bottom: 1px solid rgba(15, 31, 46, 0.1);
      position: sticky;
      top: 0;
      z-index: 200;
    }

    .nav-logo {
      cursor: pointer;
      user-select: none;
      line-height: 0;
      flex-shrink: 0;
    }

    .nav-logo-img {
      height: 56px;
      width: auto;
      display: block;
    }

    .nav-logo-sub {
      font-family: 'Montserrat', sans-serif;
      font-size: 7.5px;
      letter-spacing: 0.2em;
      color: rgba(15, 31, 46, 0.38);
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      gap: 28px;
      list-style: none;
    }

    .nav-dropdown-wrap {
      position: relative;
    }

    .nav-dropdown-panel {
      display: none;
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      background: white;
      border: 1px solid rgba(15, 31, 46, 0.09);
      box-shadow: 0 16px 48px rgba(15, 31, 46, 0.12);
      padding: 8px 0;
      min-width: 230px;
      z-index: 250;
    }

    .nav-dropdown-wrap:hover .nav-dropdown-panel {
      display: block;
    }

    .nav-dropdown-panel::before {
      content: '';
      position: absolute;
      top: -6px;
      left: 50%;
      transform: translateX(-50%);
      width: 10px;
      height: 10px;
      background: white;
      border-left: 1px solid rgba(15, 31, 46, 0.09);
      border-top: 1px solid rgba(15, 31, 46, 0.09);
      rotate: 45deg;
    }

    .nav-dropdown-item {
      padding: 10px 24px;
      font-family: 'Montserrat', sans-serif;
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 0.08em;
      color: rgba(15, 31, 46, 0.6);
      cursor: pointer;
      transition: color 0.15s, background 0.15s;
      white-space: nowrap;
    }

    .nav-dropdown-item:hover {
      color: var(--navy);
      background: rgba(15, 31, 46, 0.03);
    }

    .nav-links a {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(15, 31, 46, 0.5);
      text-decoration: none;
      cursor: pointer;
      transition: color 0.2s;
      padding-bottom: 2px;
      border-bottom: 1px solid transparent;
    }

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

    .nav-links a.active {
      color: var(--navy);
      border-bottom-color: var(--gold);
    }

    .nav-book {
      background: var(--navy);
      color: white;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 13px 28px;
      border: none;
      cursor: pointer;
      transition: background 0.2s;
    }

    .nav-book:hover {
      background: var(--navy-mid);
    }

    /* ── PAGES ── */
    .page {
      display: none;
      animation: fadeIn 0.15s ease;
    }

    .page.active {
      display: block;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(8px);
      }

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

    /* ══════════════════════════════════════
   HOME PAGE
══════════════════════════════════════ */
    .home-hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: calc(100vh - 68px);
      background: var(--navy);
    }

    .home-hero-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 72px 80px 60px;
    }

    .home-hero-right {
      position: relative;
      overflow: hidden;
    }

    .home-hero-right img.hero-photo {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      filter: brightness(0.97) saturate(0.82);
    }

    .home-hero-logo {
      position: absolute;
      bottom: 32px;
      right: 32px;
      width: 80px;
      mix-blend-mode: multiply;
      opacity: 0.55;
      pointer-events: none;
      user-select: none;
    }

    .home-hero-kicker {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 22px;
    }

    .home-hero-kicker::before {
      content: '';
      width: 28px;
      height: 1px;
      background: var(--gold);
      flex-shrink: 0;
    }

    .home-hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 64px;
      font-weight: 300;
      color: white;
      line-height: 1.02;
      margin-bottom: 20px;
      letter-spacing: -0.01em;
    }

    .home-hero-title em {
      font-style: italic;
      color: var(--gold);
    }

    .home-hero-body {
      font-size: 13px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.48);
      line-height: 1.75;
      max-width: 360px;
      margin-bottom: 24px;
    }

    .home-credentials {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 28px;
    }

    .home-credential {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      width: fit-content;
    }

    .home-credential-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
    }

    .home-credential span {
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.55);
    }

    .home-hero-btns {
      display: flex;
      gap: 12px;
    }

    .home-btn-primary {
      background: white;
      color: var(--navy);
      font-family: 'Montserrat', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 16px 32px;
      border: none;
      cursor: pointer;
      transition: background 0.2s;
    }

    .home-btn-primary:hover {
      background: var(--cream);
    }

    .home-btn-secondary {
      background: transparent;
      color: rgba(255, 255, 255, 0.6);
      font-family: 'Montserrat', sans-serif;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 16px 28px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      cursor: pointer;
      transition: all 0.2s;
    }

    .home-btn-secondary:hover {
      border-color: rgba(255, 255, 255, 0.45);
      color: white;
    }

    .home-hero-kicker {
      margin-bottom: 16px;
    }

    .home-trust {
      background: var(--cream);
      border-top: 1px solid rgba(15, 31, 46, 0.08);
      border-bottom: 1px solid rgba(15, 31, 46, 0.08);
      display: flex;
      justify-content: center;
      align-items: stretch;
    }

    .home-trust-item {
      padding: 22px 52px;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(15, 31, 46, 0.58);
      display: flex;
      align-items: center;
      gap: 14px;
      position: relative;
    }

    .home-trust-item::before {
      content: '';
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--gold);
      opacity: 0.7;
      flex-shrink: 0;
    }

    .home-trust-item + .home-trust-item {
      border-left: 1px solid rgba(15, 31, 46, 0.08);
    }

    /* ══════════════════════════════════════
   HOME — EDITORIAL GALLERY
══════════════════════════════════════ */
    .home-gallery {
      background: var(--cream);
      padding: 64px 56px 56px;
    }

    .home-gallery-label {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(15, 31, 46, 0.32);
      margin-bottom: 28px;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .home-gallery-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: rgba(15, 31, 46, 0.1);
    }

    .home-gallery-strip {
      display: flex;
      gap: 10px;
      align-items: flex-end;
      justify-content: center;
    }

    .home-gallery-item {
      flex-shrink: 0;
      border-radius: 6px;
      overflow: hidden;
      position: relative;
    }

    .home-gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
      filter: contrast(1.05) brightness(1.02) saturate(0.88);
      transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
    }

    .home-gallery-item:hover img {
      transform: scale(1.06);
      filter: contrast(1.08) brightness(1.04) saturate(0.95);
    }

    /* gallery1: face looking up — 290px height crops brand text (~bottom 28%) at this width */
    .home-gallery-item:nth-child(1) { width: 23%; height: 290px; flex-shrink: 0; }
    /* gallery3: face touching lips — tallest, crops Pinterest chip at bottom */
    .home-gallery-item:nth-child(2) { width: 30%; height: 460px; flex-shrink: 0; }
    /* gallery4: smiling woman — medium, crops Pinterest chip */
    .home-gallery-item:nth-child(3) { width: 30%; height: 400px; flex-shrink: 0; }
    /* gallery6: male profile — shorter, crops AI correction + Image search */
    .home-gallery-item:nth-child(4) { width: 17%; height: 330px; flex-shrink: 0; }

    /* ══════════════════════════════════════
   HOME — ABOUT RE:
══════════════════════════════════════ */
    .home-about {
      background: var(--cream-warm);
      padding: 0;
    }

    .home-about-inner {
      display: grid;
      grid-template-columns: 5fr 7fr;
      min-height: 580px;
    }

    .home-about-img {
      overflow: hidden;
      position: relative;
    }

    .home-about-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 20%;
      display: block;
      filter: brightness(1.02) saturate(0.88) contrast(1.02);
    }

    .home-about-content {
      padding: 80px 72px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 0;
    }

    .home-about-label {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.26em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px;
    }

    .home-about-heading {
      font-family: 'Cormorant Garamond', serif;
      font-size: 44px;
      font-weight: 400;
      color: var(--navy);
      line-height: 1.1;
      margin-bottom: 28px;
    }

    .home-about-body {
      font-size: 13px;
      font-weight: 300;
      color: rgba(15, 31, 46, 0.68);
      line-height: 1.85;
      margin-bottom: 36px;
      max-width: 420px;
    }

    .home-about-cta {
      margin-bottom: 36px;
    }

    .home-about-tags {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .home-about-tag {
      border: 1px solid rgba(15, 31, 46, 0.18);
      padding: 8px 16px;
      font-size: 9px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(15, 31, 46, 0.5);
    }

    /* ══════════════════════════════════════
   HOME — TREATMENTS GRID
══════════════════════════════════════ */
    .home-treatments {
      background: var(--cream);
      padding: 80px 60px;
    }

    .home-treatments-header {
      max-width: 1100px;
      margin: 0 auto 48px;
    }

    .home-treatments-label {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(15, 31, 46, 0.38);
      margin-bottom: 12px;
    }

    .home-treatments-heading {
      font-family: 'Cormorant Garamond', serif;
      font-size: 40px;
      font-weight: 400;
      color: var(--navy);
      margin-bottom: 12px;
    }

    .home-treatments-sub {
      font-size: 12px;
      font-weight: 300;
      color: rgba(15, 31, 46, 0.55);
      line-height: 1.75;
      max-width: 560px;
    }

    .home-treat-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .home-treat-card {
      background: white;
      border: 1px solid rgba(15, 31, 46, 0.07);
      padding: 36px 32px;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      min-height: 260px;
      display: flex;
      flex-direction: column;
      transition: box-shadow 0.3s ease;
    }

    .home-treat-card:hover {
      box-shadow: 0 16px 48px rgba(15, 31, 46, 0.14);
      z-index: 2;
    }

    .home-treat-card-inner {
      display: flex;
      flex-direction: column;
      flex: 1;
      transition: opacity 0.3s ease;
    }

    .home-treat-card:hover .home-treat-card-inner {
      opacity: 0;
    }

    .home-treat-tag {
      font-size: 8px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      background: rgba(184, 149, 106, 0.1);
      border: 1px solid rgba(184, 149, 106, 0.25);
      padding: 4px 12px;
      display: inline-block;
      margin-bottom: 20px;
      width: fit-content;
    }

    .home-treat-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px;
      font-weight: 400;
      color: var(--navy);
      margin-bottom: 8px;
      line-height: 1.15;
    }

    .home-treat-count {
      font-size: 10px;
      font-weight: 500;
      color: rgba(15, 31, 46, 0.35);
      letter-spacing: 0.06em;
      margin-bottom: 14px;
    }

    .home-treat-desc {
      font-size: 11px;
      font-weight: 300;
      color: rgba(15, 31, 46, 0.55);
      line-height: 1.65;
      flex: 1;
    }

    .home-treat-overlay {
      position: absolute;
      inset: 0;
      background: var(--navy);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 36px 32px;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .home-treat-card:hover .home-treat-overlay {
      opacity: 1;
    }

    .home-treat-overlay-tag {
      font-size: 8px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }

    .home-treat-overlay-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px;
      font-weight: 300;
      color: white;
      margin-bottom: 20px;
      line-height: 1.1;
    }

    .home-treat-cta {
      background: white;
      color: var(--navy);
      font-family: 'Montserrat', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 14px 28px;
      border: none;
      cursor: pointer;
      width: fit-content;
      transition: background 0.2s;
    }

    .home-treat-cta:hover {
      background: var(--cream);
    }

    .home-treatments-footer {
      max-width: 1100px;
      margin: 40px auto 0;
      text-align: center;
    }

    /* ══════════════════════════════════════
   HOME — DR KIM
══════════════════════════════════════ */
    .home-drkim {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 500px;
    }

    .home-drkim-photo {
      overflow: hidden;
      position: relative;
      background: #1a2a3a;
    }

    .home-drkim-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
    }

    .home-drkim-content {
      background: var(--navy);
      padding: 72px 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .home-drkim-label {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.3);
      margin-bottom: 12px;
    }

    .home-drkim-eyebrow {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }

    .home-drkim-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 48px;
      font-weight: 300;
      color: white;
      line-height: 1.0;
      margin-bottom: 8px;
    }

    .home-drkim-title {
      font-size: 11px;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.45);
      letter-spacing: 0.06em;
      margin-bottom: 28px;
    }

    .home-drkim-bio {
      font-size: 13px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.8;
      margin-bottom: 20px;
      max-width: 440px;
    }
    .home-drkim-statement {
      font-size: 13px;
      font-weight: 300;
      font-style: italic;
      color: rgba(255, 255, 255, 0.75);
      line-height: 1.9;
      margin-bottom: 32px;
      max-width: 440px;
      border-left: 2px solid var(--gold);
      padding-left: 16px;
    }

    .home-btn-outline {
      background: transparent;
      color: rgba(255, 255, 255, 0.7);
      font-family: 'Montserrat', sans-serif;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 14px 28px;
      border: 1px solid rgba(255, 255, 255, 0.25);
      cursor: pointer;
      width: fit-content;
      transition: all 0.2s;
    }

    .home-btn-outline:hover {
      border-color: rgba(255, 255, 255, 0.5);
      color: white;
    }

    /* ══════════════════════════════════════
   HOME — WHY RE:
══════════════════════════════════════ */
    .home-why {
      padding: 88px 60px;
      background: var(--cream-warm);
    }

    .home-why-inner {
      max-width: 980px;
      margin: 0 auto;
    }

    .home-why-label {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }

    .home-why-heading {
      font-family: 'Cormorant Garamond', serif;
      font-size: 44px;
      font-weight: 300;
      color: var(--navy);
      margin-bottom: 56px;
      line-height: 1.1;
    }

    .home-why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 52px;
    }

    .home-why-item-line {
      width: 24px;
      height: 1px;
      background: var(--gold);
      margin-bottom: 20px;
    }

    .home-why-item-heading {
      font-size: 13px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 10px;
      letter-spacing: 0.01em;
    }

    .home-why-item-body {
      font-size: 13px;
      font-weight: 300;
      color: rgba(15, 31, 46, 0.62);
      line-height: 1.85;
    }

    /* ══════════════════════════════════════
   HOME — FINAL CTA
══════════════════════════════════════ */
    .home-final-cta {
      background: var(--navy);
      padding: 100px 60px;
      text-align: center;
    }

    .home-final-cta-eyebrow {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(184, 149, 106, 0.65);
      margin-bottom: 18px;
    }

    .home-final-cta-heading {
      font-family: 'Cormorant Garamond', serif;
      font-size: 50px;
      font-weight: 300;
      color: white;
      margin-bottom: 20px;
      line-height: 1.08;
    }

    .home-final-cta-body {
      font-size: 13px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.5);
      max-width: 460px;
      margin: 0 auto 40px;
      line-height: 1.9;
    }

    /* ══════════════════════════════════════
   TREATMENT DETAIL — ABOUT SECTION
══════════════════════════════════════ */
    .detail-about {
      background: var(--cream-warm);
      padding: 56px 60px;
      border-bottom: 1px solid rgba(15, 31, 46, 0.08);
    }

    .detail-about-inner {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 60px;
      max-width: 1000px;
    }

    .detail-about-paragraphs p {
      font-size: 13px;
      font-weight: 300;
      color: rgba(15, 31, 46, 0.7);
      line-height: 1.85;
      margin-bottom: 16px;
    }

    .detail-about-paragraphs p:last-child {
      margin-bottom: 0;
    }

    .detail-highlights {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .detail-highlight-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(15, 31, 46, 0.08);
    }

    .detail-highlight-item:first-child {
      border-top: 1px solid rgba(15, 31, 46, 0.08);
    }

    .detail-highlight-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
      margin-top: 5px;
    }

    .detail-highlight-text {
      font-size: 11px;
      font-weight: 400;
      color: rgba(15, 31, 46, 0.65);
      line-height: 1.55;
    }

    .detail-about-cta {
      border-top: 1px solid rgba(15, 31, 46, 0.08);
      margin-top: 36px;
      padding-top: 28px;
      font-size: 12px;
      font-weight: 400;
      color: rgba(15, 31, 46, 0.55);
      font-style: italic;
      max-width: 620px;
      line-height: 1.75;
    }

    /* ══════════════════════════════════════
   MAIN TREATMENTS PAGE
══════════════════════════════════════ */
    .main-hero {
      background: var(--navy);
      padding: 72px 60px 56px;
    }

    .main-hero-eyebrow {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .main-hero-eyebrow::before {
      content: '';
      width: 28px;
      height: 1px;
      background: var(--gold);
    }

    .main-hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 56px;
      font-weight: 300;
      color: white;
      line-height: 1.04;
      margin-bottom: 18px;
    }

    .main-hero-title em {
      font-style: italic;
      color: rgba(255, 255, 255, 0.45);
    }

    .main-hero-sub {
      font-size: 12px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.45);
      max-width: 480px;
      line-height: 1.75;
    }

    /* Category grid */
    .cat-grid-wrap {
      padding: 64px 60px;
    }

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

    /* ── CATEGORY CARD ── */
    .cat-card {
      background: white;
      border: 1px solid rgba(15, 31, 46, 0.07);
      padding: 36px 32px;
      cursor: pointer;
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      display: flex;
      flex-direction: column;
      min-height: 220px;
    }

    @media (hover: hover) {
      .cat-card:hover {
        background: var(--navy);
        border-color: var(--navy);
        transform: translateY(-3px);
        box-shadow: 0 16px 48px rgba(15, 31, 46, 0.16);
        z-index: 2;
      }
    }

    .cat-card-tag {
      font-size: 8px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      background: rgba(184, 149, 106, 0.1);
      border: 1px solid rgba(184, 149, 106, 0.25);
      padding: 4px 12px;
      display: inline-block;
      margin-bottom: 20px;
      width: fit-content;
      transition: background 0.35s, border-color 0.35s;
    }

    @media (hover: hover) {
      .cat-card:hover .cat-card-tag {
        background: rgba(184, 149, 106, 0.15);
        border-color: rgba(184, 149, 106, 0.35);
      }
    }

    .cat-card-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px;
      font-weight: 400;
      color: var(--navy);
      margin-bottom: 12px;
      line-height: 1.15;
      transition: color 0.35s;
    }

    @media (hover: hover) {
      .cat-card:hover .cat-card-name {
        color: white;
      }
    }

    .cat-card-count {
      font-size: 9px;
      font-weight: 500;
      letter-spacing: 0.1em;
      color: rgba(15, 31, 46, 0.3);
      margin-bottom: 14px;
      transition: color 0.35s;
    }

    @media (hover: hover) {
      .cat-card:hover .cat-card-count {
        color: rgba(255, 255, 255, 0.3);
      }
    }

    .cat-card-desc {
      font-size: 11px;
      font-weight: 300;
      line-height: 1.7;
      color: rgba(15, 31, 46, 0.55);
      flex: 1;
      transition: color 0.35s;
    }

    @media (hover: hover) {
      .cat-card:hover .cat-card-desc {
        color: rgba(255, 255, 255, 0.5);
      }
    }

    /* Learn more — appears on hover */
    .cat-card-cta {
      margin-top: 24px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: transparent;
      padding-top: 16px;
      border-top: 1px solid transparent;
      transition: all 0.35s;
    }

    @media (hover: hover) {
      .cat-card:hover .cat-card-cta {
        color: white;
        border-top-color: rgba(255, 255, 255, 0.1);
      }
    }

    .cta-line {
      width: 20px;
      height: 1px;
      background: currentColor;
      position: relative;
      transition: width 0.3s;
      flex-shrink: 0;
    }

    .cta-line::after {
      content: '';
      position: absolute;
      right: -1px;
      top: -3px;
      width: 6px;
      height: 6px;
      border-right: 1px solid currentColor;
      border-top: 1px solid currentColor;
      transform: rotate(45deg);
    }

    @media (hover: hover) {
      .cat-card:hover .cta-line {
        width: 32px;
      }
    }

    /* Treatments page bottom CTA */
    .main-cta-strip {
      background: white;
      border-top: 1px solid rgba(15, 31, 46, 0.06);
      padding: 32px 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .main-cta-text {
      font-size: 13px;
      font-weight: 300;
      color: rgba(15, 31, 46, 0.55);
    }

    .main-cta-text strong {
      font-weight: 600;
      color: var(--navy);
    }

    .main-cta-btns {
      display: flex;
      gap: 12px;
    }

    .btn-navy {
      background: var(--navy);
      color: white;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 14px 28px;
      border: none;
      cursor: pointer;
      transition: background 0.2s;
    }

    .btn-navy:hover {
      background: var(--navy-mid);
    }

    .btn-outline {
      background: transparent;
      color: var(--navy);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 14px 28px;
      border: 1px solid rgba(15, 31, 46, 0.25);
      cursor: pointer;
      transition: all 0.2s;
    }

    .btn-outline:hover {
      border-color: var(--navy);
      background: rgba(15, 31, 46, 0.03);
    }


    /* ══════════════════════════════════════
   TREATMENT DETAIL PAGE
══════════════════════════════════════ */
    .detail-top {
      background: var(--navy);
      padding: 36px 60px 48px;
    }

    .back-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.35);
      cursor: pointer;
      border: none;
      background: none;
      margin-bottom: 32px;
      padding: 0;
      transition: color 0.2s;
    }

    .back-btn:hover {
      color: rgba(255, 255, 255, 0.7);
    }

    .back-arrow {
      width: 18px;
      height: 1px;
      background: currentColor;
      position: relative;
    }

    .back-arrow::before {
      content: '';
      position: absolute;
      left: -1px;
      top: -3px;
      width: 6px;
      height: 6px;
      border-left: 1px solid currentColor;
      border-top: 1px solid currentColor;
      transform: rotate(-45deg);
    }

    .detail-top-tag {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }

    .detail-top-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 46px;
      font-weight: 300;
      color: white;
      line-height: 1.04;
      margin-bottom: 12px;
    }

    .det-title-concept {
      color: rgba(184, 149, 106, 0.7);
      font-weight: 300;
      font-style: italic;
    }

    .detail-top-sub {
      font-size: 12px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.42);
      max-width: 560px;
      line-height: 1.75;
    }

    /* Sub-treatment cards */
    .sub-section {
      padding: 56px 60px;
    }

    .sub-section:nth-child(even) {
      background: white;
    }

    .sub-intro {
      max-width: 640px;
      margin-bottom: 40px;
    }

    .sub-intro p {
      font-size: 12px;
      font-weight: 300;
      color: rgba(15, 31, 46, 0.6);
      line-height: 1.8;
    }

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

    .sub-grid.cols-2 {
      grid-template-columns: repeat(2, 1fr);
    }

    .sub-grid.cols-4 {
      grid-template-columns: repeat(4, 1fr);
    }

    /* Sub treatment card */
    .sub-card {
      background: var(--cream);
      border: 1px solid rgba(15, 31, 46, 0.07);
      padding: 28px 26px;
    }

    .sub-section:nth-child(even) .sub-card {
      background: var(--cream-warm);
    }

    .sub-card-meta {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }

    .sub-card-time {
      font-size: 9px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(15, 31, 46, 0.38);
    }

    .sub-card-dot {
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: rgba(15, 31, 46, 0.18);
    }

    .sub-card-price {
      font-size: 10px;
      font-weight: 600;
      color: var(--gold);
    }

    .sub-card-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 500;
      color: var(--navy);
      margin-bottom: 10px;
      line-height: 1.2;
    }

    .sub-card-desc {
      font-size: 12px;
      font-weight: 300;
      color: rgba(15, 31, 46, 0.62);
      line-height: 1.85;
    }

    .sub-card-course {
      font-size: 9px;
      font-weight: 500;
      color: rgba(184, 149, 106, 0.8);
      margin-top: 10px;
      padding-top: 10px;
      border-top: 1px solid rgba(15, 31, 46, 0.07);
    }

    .sub-card-badge {
      display: inline-block;
      font-size: 8px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 3px 9px;
      background: rgba(184, 149, 106, 0.1);
      border: 1px solid rgba(184, 149, 106, 0.25);
      color: var(--gold);
    }

    /* Sub-treatment group label */
    .sub-group-label {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin: 40px 0 16px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .sub-group-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: rgba(15, 31, 46, 0.1);
    }

    .sub-group-label:first-child {
      margin-top: 0;
    }

    /* Detail page book strip */
    .detail-book-strip {
      background: var(--navy);
      padding: 36px 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .detail-book-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      font-weight: 300;
      color: white;
    }

    .detail-book-text span {
      color: rgba(255, 255, 255, 0.4);
      font-style: italic;
    }


    /* ══════════════════════════════════════
   PRICE LIST PAGE
══════════════════════════════════════ */
    .pl-hero {
      background: var(--navy);
      padding: 72px 60px 56px;
    }

    .pl-hero-eyebrow {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .pl-hero-eyebrow::before {
      content: '';
      width: 28px;
      height: 1px;
      background: var(--gold);
    }

    .pl-hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 56px;
      font-weight: 300;
      color: white;
      margin-bottom: 14px;
    }

    .pl-hero-sub {
      font-size: 12px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.42);
      line-height: 1.75;
      max-width: 520px;
    }

    .pl-body {
      max-width: 860px;
      margin: 0 auto;
      padding: 64px 60px;
    }

    .pl-cat {
      margin-bottom: 52px;
    }

    .pl-cat-head {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 14px;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(15, 31, 46, 0.1);
      margin-bottom: 0;
    }

    .pl-cat-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 36px;
      font-weight: 400;
      color: var(--navy);
    }

    .pl-cat-tag {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      background: rgba(184, 149, 106, 0.12);
      border: 1px solid rgba(184, 149, 106, 0.3);
      padding: 6px 16px;
    }

    .pl-cat-from {
      margin-left: auto;
    }

    .pl-cat-from-label {
      font-size: 8px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(15, 31, 46, 0.35);
    }

    /* Price rows */
    .pl-row {
      display: grid;
      grid-template-columns: 1fr 120px;
      align-items: center;
      padding: 13px 0;
      border-bottom: 1px solid rgba(15, 31, 46, 0.05);
      transition: background 0.15s, padding 0.15s, margin 0.15s;
      gap: 16px;
    }

    .pl-row:hover {
      background: rgba(15, 31, 46, 0.05);
      padding-left: 10px;
      padding-right: 10px;
      margin: 0 -10px;
    }

    .pl-row-name {
      font-size: 13px;
      font-weight: 400;
      color: var(--navy);
    }

    .pl-row-duration {
      display: none;
    }

    .pl-row-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 400;
      color: var(--navy);
      text-align: right;
      white-space: nowrap;
    }

    .pl-row-comp {
      font-family: 'Cormorant Garamond', serif;
      font-size: 16px;
      color: rgba(15, 31, 46, 0.3);
      text-align: right;
    }

    /* Course sub-row */
    .pl-course {
      display: grid;
      grid-template-columns: 1fr 80px 100px;
      align-items: center;
      padding: 7px 0 12px;
      border-bottom: 1px solid rgba(15, 31, 46, 0.05);
      gap: 16px;
      background: rgba(184, 149, 106, 0.025);
      transition: background 0.15s, padding 0.15s, margin 0.15s;
    }

    .pl-course:hover {
      background: rgba(184, 149, 106, 0.06);
      padding-left: 10px;
      padding-right: 10px;
      margin: 0 -10px;
    }

    .pl-course-label {
      font-size: 12px;
      font-weight: 500;
      color: rgba(15, 31, 46, 0.55);
      padding-left: 16px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .pl-course-label::before {
      content: '↳';
      color: var(--gold);
      font-size: 12px;
    }

    .pl-course-saving {
      font-size: 10px;
      font-weight: 700;
      color: var(--gold);
      text-align: right;
      white-space: nowrap;
    }

    .pl-course-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 400;
      color: var(--gold);
      text-align: right;
      white-space: nowrap;
    }

    /* Price list note */
    .pl-note {
      margin-top: 48px;
      padding: 22px 26px;
      background: white;
      border-left: 3px solid var(--gold);
    }

    .pl-note p {
      font-size: 11px;
      font-weight: 300;
      color: rgba(15, 31, 46, 0.55);
      line-height: 1.8;
    }

    .pl-note p+p {
      margin-top: 6px;
    }

    .pl-note strong {
      font-weight: 600;
      color: var(--navy);
    }

    /* Price list CTA */
    .pl-cta {
      background: var(--navy);
      padding: 52px 60px;
      text-align: center;
    }

    .pl-cta-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 38px;
      font-weight: 300;
      color: white;
      margin-bottom: 8px;
    }

    .pl-cta-sub {
      font-size: 11px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.38);
      margin-bottom: 28px;
    }

    /* Demo label */
    .demo-bar {
      background: var(--navy-mid);
      padding: 8px 60px;
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .demo-pill {
      padding: 3px 10px;
      font-size: 8px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      background: rgba(184, 149, 106, 0.2);
      border: 1px solid rgba(184, 149, 106, 0.35);
      color: var(--gold);
    }

    .demo-bar span {
      font-size: 10px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.35);
    }

    /* ══════════════════════════════════════
   ABOUT DR KIM PAGE
══════════════════════════════════════ */
    .drkim-hero {
      background: var(--navy);
      padding: 56px 60px 48px;
    }

    .drkim-hero-eyebrow {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .drkim-hero-eyebrow::before {
      content: '';
      width: 28px;
      height: 1px;
      background: var(--gold);
    }

    .drkim-hero-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 52px;
      font-weight: 300;
      color: white;
      line-height: 1.04;
      margin-bottom: 8px;
    }

    .drkim-hero-title {
      font-size: 11px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.42);
      letter-spacing: 0.08em;
    }

    .drkim-body {
      display: grid;
      grid-template-columns: 380px 1fr;
      gap: 80px;
      max-width: 1100px;
      margin: 0 auto;
      padding: 72px 60px 80px;
      align-items: start;
    }

    .drkim-body-photo {
      position: sticky;
      top: 88px;
    }

    .drkim-body-photo img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 2px;
    }

    .drkim-body-content {
      /* text content */
    }

    .drkim-content {
      margin-bottom: 12px;
    }

    .drkim-content .drkim-bio p {
      font-size: 13px;
      font-weight: 300;
      color: rgba(15, 31, 46, 0.7);
      line-height: 1.9;
      margin-bottom: 14px;
    }

    .drkim-placeholder {
      font-size: 12px;
      font-weight: 300;
      color: rgba(15, 31, 46, 0.3);
      font-style: italic;
    }

    @media (max-width: 768px) {
      .drkim-hero {
        padding: 40px 20px 36px;
      }

      .drkim-hero-name {
        font-size: 36px;
      }

      .drkim-body {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px 60px;
      }

      .drkim-body-photo {
        position: static;
        max-width: 300px;
      }
    }

    .about-re-block {
      margin-bottom: 44px;
    }

    .about-re-heading {
      font-family: 'Cormorant Garamond', serif;
      font-size: 34px;
      font-weight: 300;
      color: var(--navy);
      margin-bottom: 14px;
    }

    .about-re-block p {
      font-size: 13px;
      font-weight: 300;
      line-height: 1.9;
      color: rgba(15, 31, 46, 0.65);
      max-width: 520px;
    }

    @media (max-width: 768px) {
      .about-re-heading {
        font-size: 28px;
      }
    }

    /* ══════════════════════════════════════
   VISIT PAGE
══════════════════════════════════════ */
    .visit-hero {
      background: var(--navy);
      padding: 72px 60px 56px;
    }

    .visit-hero-eyebrow {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .visit-hero-eyebrow::before {
      content: '';
      width: 28px;
      height: 1px;
      background: var(--gold);
    }

    .visit-hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 56px;
      font-weight: 300;
      color: white;
      line-height: 1.04;
      margin-bottom: 10px;
    }

    .visit-hero-sub {
      font-size: 12px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.42);
      line-height: 1.75;
    }

    .visit-map {
      width: 100%;
      height: 420px;
      display: block;
      border: none;
      filter: grayscale(0.18) contrast(1.02);
    }

    .visit-body {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      background: var(--cream);
      border-top: 1px solid rgba(15, 31, 46, 0.07);
    }

    .visit-section {
      padding: 56px 52px;
      background: var(--cream);
      border-right: 1px solid rgba(15, 31, 46, 0.07);
    }

    .visit-section:last-child {
      border-right: none;
    }

    .visit-section-label {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 28px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .visit-section-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: rgba(15, 31, 46, 0.08);
    }

    .visit-address-line {
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px;
      font-weight: 400;
      color: var(--navy);
      line-height: 1.3;
      margin-bottom: 24px;
    }

    .visit-meta {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 32px;
    }

    .visit-meta-row {
      display: flex;
      align-items: baseline;
      gap: 12px;
      font-size: 11px;
      font-weight: 300;
      color: rgba(15, 31, 46, 0.6);
    }

    .visit-meta-label {
      font-size: 8px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      min-width: 52px;
    }

    .visit-hours-grid {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 32px;
    }

    .visit-hours-row {
      display: flex;
      justify-content: space-between;
      font-size: 11px;
      font-weight: 300;
      color: rgba(15, 31, 46, 0.65);
      padding-bottom: 8px;
      border-bottom: 1px solid rgba(15, 31, 46, 0.05);
    }

    .visit-hours-day {
      font-weight: 500;
      color: var(--navy);
    }

    .visit-placeholder {
      font-size: 12px;
      font-weight: 300;
      color: rgba(15, 31, 46, 0.3);
      font-style: italic;
    }

    /* Contact form */
    .visit-form {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .form-field {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .form-label {
      font-size: 8px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(15, 31, 46, 0.5);
    }

    .form-input,
    .form-textarea {
      background: var(--cream-warm);
      border: 1px solid rgba(15, 31, 46, 0.12);
      border-bottom: 2px solid rgba(15, 31, 46, 0.15);
      padding: 12px 14px;
      font-family: 'Montserrat', sans-serif;
      font-size: 12px;
      font-weight: 300;
      color: var(--navy);
      outline: none;
      transition: border-color 0.2s;
      width: 100%;
    }

    .form-input:focus,
    .form-textarea:focus {
      border-color: rgba(15, 31, 46, 0.25);
      border-bottom-color: var(--gold);
      background: white;
    }

    .form-textarea {
      resize: vertical;
      min-height: 130px;
      line-height: 1.7;
    }

    .form-submit {
      align-self: flex-start;
    }

    .form-note {
      font-size: 10px;
      font-weight: 300;
      color: rgba(15, 31, 46, 0.35);
      margin-top: 4px;
    }

    @media (max-width: 768px) {
      .visit-hero {
        padding: 40px 20px 36px;
      }

      .visit-hero-title {
        font-size: 36px;
      }

      .visit-map {
        height: 280px;
      }

      .visit-body {
        grid-template-columns: 1fr;
      }

      .visit-section {
        padding: 40px 24px;
        border-right: none;
        border-bottom: 1px solid rgba(15, 31, 46, 0.07);
      }

      .visit-section:last-child {
        border-bottom: none;
      }
    }

    /* ── HAMBURGER / MOBILE MENU ── */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }

    .nav-hamburger span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--navy);
      transition: opacity 0.2s;
    }

    .nav-mobile-menu {
      display: none;
      position: absolute;
      top: 68px;
      left: 0;
      right: 0;
      background: var(--navy);
      z-index: 199;
      padding: 0 20px 20px;
      flex-direction: column;
    }

    nav.nav-mobile-open .nav-mobile-menu {
      display: flex;
    }

    .nav-mobile-menu a {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.55);
      text-decoration: none;
      padding: 15px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
      cursor: pointer;
      transition: color 0.2s;
    }

    .nav-mobile-menu a:last-of-type {
      border-bottom: none;
    }

    .nav-mobile-menu a:hover {
      color: white;
    }

    .nav-mobile-book-wrap {
      margin-top: 16px;
    }

    .nav-mobile-menu .nav-mobile-book {
      display: block;
      text-align: center;
      background: white;
      color: var(--navy);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 14px 28px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s;
      width: 100%;
    }

    .nav-mobile-menu .nav-mobile-book:hover {
      background: var(--cream);
    }

    /* ══════════════════════════════════════
   MOBILE RESPONSIVE
══════════════════════════════════════ */
    @media (max-width: 768px) {
      /* Nav */
      nav {
        padding: 0 16px 0 0;
      }

      .nav-links {
        display: none;
      }

      .nav-book {
        display: none;
      }

      .nav-hamburger {
        display: flex;
      }

      /* Mobile CTA always visible */
      .cat-card-cta {
        color: var(--gold);
        border-top-color: rgba(15, 31, 46, 0.08);
      }

      /* Home hero mobile */
      .home-hero {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        min-height: unset;
      }

      .home-hero-left {
        padding: 48px 24px 44px;
        order: 2;
      }

      .home-hero-right {
        order: 1;
        height: auto;
      }

      .home-hero-right img.hero-photo {
        width: 100%;
        height: auto;
        object-fit: initial;
        filter: brightness(0.92) saturate(0.82);
      }

      .home-hero-logo {
        display: none;
      }

      .home-hero-title {
        font-size: 38px;
      }

      .home-hero-btns {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
      }

      .home-btn-primary,
      .home-btn-secondary {
        text-align: center;
        padding: 16px 24px;
      }

      .home-trust {
        flex-direction: column;
      }

      .home-trust-item {
        width: 100%;
        padding: 16px 24px;
        justify-content: flex-start;
        border-left: none;
        border-bottom: 1px solid rgba(15, 31, 46, 0.08);
      }

      .home-trust-item + .home-trust-item {
        border-left: none;
        border-top: none;
      }

      .home-trust-item:last-child {
        border-bottom: none;
      }

      .home-gallery {
        padding: 40px 20px 32px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
      }

      .home-gallery-strip {
        width: max-content;
        gap: 6px;
      }

      .home-gallery-item:nth-child(1),
      .home-gallery-item:nth-child(2),
      .home-gallery-item:nth-child(3),
      .home-gallery-item:nth-child(4) {
        width: 150px;
        height: 230px;
      }

      .home-about-inner {
        grid-template-columns: 1fr;
      }

      .home-about-img {
        height: 52vw;
        min-height: 280px;
      }

      .home-about-content {
        padding: 48px 24px;
      }

      .home-about-heading {
        font-size: 30px;
      }

      .home-treatments {
        padding: 48px 20px;
      }

      .home-treatments-heading {
        font-size: 30px;
      }

      .home-treat-grid {
        grid-template-columns: 1fr;
      }

      .home-treat-card {
        padding: 28px 22px;
        min-height: 200px;
      }

      .home-drkim {
        grid-template-columns: 1fr;
      }

      .home-drkim-photo {
        height: 50vh;
      }

      .home-drkim-content {
        padding: 48px 24px;
      }

      .home-drkim-name {
        font-size: 36px;
      }

      .home-why {
        padding: 60px 24px;
      }

      .home-why-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .home-why-heading {
        font-size: 32px;
        margin-bottom: 40px;
      }

      .home-final-cta {
        padding: 72px 24px;
      }

      .home-final-cta-heading {
        font-size: 36px;
      }

      .detail-about {
        padding: 40px 20px;
      }

      .detail-about-inner {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      /* Hero */
      .main-hero {
        padding: 40px 20px 36px;
      }

      .main-hero-title {
        font-size: 36px;
      }

      /* Category grid */
      .cat-grid-wrap {
        padding: 40px 20px;
      }

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

      /* Main CTA strip */
      .main-cta-strip {
        padding: 24px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
      }

      /* Detail top */
      .detail-top {
        padding: 28px 20px 36px;
      }

      .detail-top-title {
        font-size: 32px;
      }

      /* Sub sections */
      .sub-section {
        padding: 40px 20px;
      }

      .sub-grid,
      .sub-grid.cols-4 {
        grid-template-columns: 1fr;
      }

      /* Price list hero */
      .pl-hero {
        padding: 40px 20px 36px;
      }

      .pl-hero-title {
        font-size: 36px;
      }

      /* Price list body */
      .pl-body {
        padding: 40px 20px;
      }

      /* Price list CTA */
      .pl-cta {
        padding: 40px 20px;
      }

      /* Demo bar */
      .demo-bar {
        padding: 8px 16px;
      }
    }

    @media (max-width: 600px) {
      /* Price list rows */
      .pl-row {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
      }

      .pl-row-name {
        grid-column: 1 / 2;
        grid-row: 1;
      }

      .pl-row-price {
        grid-column: 2 / 3;
        grid-row: 1;
        text-align: right;
      }

      /* Course sub-row */
      .pl-course {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
      }

      .pl-course-label {
        grid-column: 1 / 2;
        grid-row: 1;
      }

      .pl-course-price {
        grid-column: 2 / 3;
        grid-row: 1;
        text-align: right;
      }

      .pl-course-saving {
        grid-column: 1 / 2;
        grid-row: 2;
        text-align: left;
      }

      /* Sub-grid 2-col stays 2-col at 600+ but stacks below */
      .sub-grid.cols-2 {
        grid-template-columns: 1fr;
      }

      /* Bottom CTA */
      .main-cta-btns {
        flex-direction: column;
        align-items: flex-start;
      }

      /* Detail book strip */
      .detail-book-strip {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 20px;
        gap: 20px;
      }
    }

    @media (min-width: 601px) and (max-width: 768px) {
      .sub-grid.cols-2 {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* ══════════════════════════════════════
   WHAT TO EXPECT SECTION
══════════════════════════════════════ */
    .detail-expect {
      background: var(--navy);
      padding: 64px 60px;
    }

    .detail-expect-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 80px;
      align-items: start;
    }

    .detail-expect-label {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .detail-expect-label::before {
      content: '';
      width: 28px;
      height: 1px;
      background: var(--gold);
      flex-shrink: 0;
    }

    .detail-expect-left p {
      font-size: 13px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.85;
      margin-bottom: 16px;
    }

    .detail-expect-left p:last-child {
      margin-bottom: 0;
    }

    .detail-expect-right {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .detail-stat {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      padding: 24px 28px;
    }

    .detail-stat-label {
      font-size: 8.5px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }

    .detail-stat-value {
      font-size: 12px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.75);
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .detail-expect {
        padding: 48px 20px;
      }

      .detail-expect-inner {
        grid-template-columns: 1fr;
        gap: 36px;
      }
    }

    /* ══════════════════════════════════════
   WHO IS THIS FOR
══════════════════════════════════════ */
    .detail-who {
      background: var(--cream);
      padding: 64px 60px;
      border-top: 1px solid rgba(15, 31, 46, 0.08);
    }

    .detail-who-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 260px 1fr;
      gap: 80px;
    }

    .detail-who-label {
      font-size: 8.5px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .detail-who-label::before {
      content: '';
      width: 24px;
      height: 1px;
      background: var(--gold);
      display: block;
      flex-shrink: 0;
    }

    .detail-who-heading {
      font-family: 'Cormorant Garamond', serif;
      font-size: 30px;
      font-weight: 300;
      color: var(--navy);
      line-height: 1.25;
    }

    .detail-who-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .detail-who-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 14px 0;
      border-bottom: 1px solid rgba(15, 31, 46, 0.07);
    }

    .detail-who-item:first-child {
      border-top: 1px solid rgba(15, 31, 46, 0.07);
    }

    .detail-who-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--gold);
      margin-top: 7px;
      flex-shrink: 0;
    }

    .detail-who-text {
      font-size: 12.5px;
      font-weight: 300;
      color: rgba(15, 31, 46, 0.75);
      line-height: 1.6;
    }

    .detail-not-treated {
      margin-top: 36px;
      padding: 24px 28px;
      background: rgba(15, 31, 46, 0.04);
      border-left: 2px solid var(--gold);
    }

    .detail-not-treated-label {
      font-size: 8px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 12px;
    }

    .detail-not-treated-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 12px;
    }

    .detail-not-treated-tag {
      font-size: 10px;
      font-weight: 500;
      color: var(--navy);
      background: rgba(15, 31, 46, 0.08);
      padding: 5px 12px;
    }

    .detail-not-treated-note {
      font-size: 11px;
      font-weight: 300;
      color: rgba(15, 31, 46, 0.6);
      line-height: 1.65;
    }

    @media (max-width: 768px) {
      .detail-who {
        padding: 48px 20px;
      }

      .detail-who-inner {
        grid-template-columns: 1fr;
        gap: 32px;
      }
    }

    /* ══════════════════════════════════════
   TREATMENT FAQs
══════════════════════════════════════ */
    .detail-faqs {
      background: var(--navy);
      padding: 64px 60px;
    }

    .detail-faqs-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .detail-faqs-header {
      display: grid;
      grid-template-columns: 260px 1fr;
      gap: 80px;
      margin-bottom: 40px;
    }

    .detail-faqs-label {
      font-size: 8.5px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .detail-faqs-label::before {
      content: '';
      width: 24px;
      height: 1px;
      background: var(--gold);
      display: block;
      flex-shrink: 0;
    }

    .detail-faqs-heading {
      font-family: 'Cormorant Garamond', serif;
      font-size: 30px;
      font-weight: 300;
      color: white;
      line-height: 1.25;
    }

    .detail-faqs-list {
      max-width: 760px;
      margin-left: auto;
    }

    .detail-faq-item {
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .detail-faq-item:first-child {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .detail-faq-q {
      padding: 20px 0;
      cursor: pointer;
      font-size: 12.5px;
      font-weight: 400;
      color: white;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      user-select: none;
    }

    .detail-faq-q:hover {
      color: rgba(255, 255, 255, 0.8);
    }

    .detail-faq-icon {
      color: var(--gold);
      font-size: 20px;
      font-weight: 300;
      line-height: 1;
      flex-shrink: 0;
      transition: transform 0.25s ease;
    }

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

    .detail-faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      font-size: 12px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.75;
    }

    .detail-faq-item.open .detail-faq-a {
      max-height: 300px;
      padding-bottom: 20px;
    }

    @media (max-width: 768px) {
      .detail-faqs {
        padding: 48px 20px;
      }

      .detail-faqs-header {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .detail-faqs-list {
        margin-left: 0;
      }
    }

    /* ══════════════════════════════════════
   CONCERN DETAIL PAGE
══════════════════════════════════════ */
    .cdet-top {
      background: var(--navy);
      padding: 40px 60px 64px;
    }

    .cdet-num {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }

    .cdet-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 52px;
      font-weight: 300;
      color: white;
      line-height: 1.1;
      margin-bottom: 16px;
    }

    .cdet-sub {
      font-size: 12.5px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.55);
      max-width: 540px;
      line-height: 1.6;
    }

    .cdet-familiar {
      background: var(--cream);
      padding: 72px 60px;
      border-bottom: 1px solid rgba(15, 31, 46, 0.07);
    }

    .cdet-familiar-inner {
      max-width: 720px;
      margin: 0 auto;
      text-align: center;
    }

    .cdet-section-label {
      font-size: 8.5px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }

    .cdet-section-label::before,
    .cdet-section-label::after {
      content: '';
      width: 24px;
      height: 1px;
      background: var(--gold);
      display: block;
    }

    .cdet-familiar-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 300;
      color: var(--navy);
      line-height: 1.75;
    }

    .cdet-science {
      background: var(--navy);
      padding: 64px 60px;
    }

    .cdet-science-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
    }

    .cdet-science-label {
      font-size: 8.5px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .cdet-science-label::before {
      content: '';
      width: 24px;
      height: 1px;
      background: var(--gold);
      display: block;
      flex-shrink: 0;
    }

    .cdet-science-text {
      font-size: 13px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.68);
      line-height: 1.8;
    }

    .cdet-approaches {
      background: var(--cream);
      padding: 72px 60px;
    }

    .cdet-approaches-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .cdet-section-eyebrow {
      font-size: 8.5px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .cdet-section-eyebrow::before {
      content: '';
      width: 24px;
      height: 1px;
      background: var(--gold);
      display: block;
      flex-shrink: 0;
    }

    .cdet-approaches-heading {
      font-family: 'Cormorant Garamond', serif;
      font-size: 38px;
      font-weight: 300;
      color: var(--navy);
      margin-bottom: 14px;
      line-height: 1.2;
    }

    .cdet-approaches-note {
      font-size: 12.5px;
      font-weight: 300;
      color: rgba(15, 31, 46, 0.5);
      margin-bottom: 52px;
      max-width: 560px;
      line-height: 1.65;
    }

    .cdet-approaches-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }

    .cdet-approach-card {
      background: white;
      padding: 28px 28px 24px;
    }

    .cdet-approach-tag {
      font-size: 7.5px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--navy);
      background: rgba(15, 31, 46, 0.08);
      padding: 4px 10px;
      display: inline-block;
      margin-bottom: 16px;
    }


    .cdet-approach-name {
      font-size: 14px;
      font-weight: 500;
      color: var(--navy);
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .cdet-approach-desc {
      font-size: 12px;
      font-weight: 300;
      color: rgba(15, 31, 46, 0.62);
      line-height: 1.7;
      margin-bottom: 18px;
    }

    .cdet-approach-link {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      cursor: pointer;
    }

    .cdet-approach-link:hover {
      color: var(--navy);
    }

    .cdet-book-strip {
      background: var(--navy);
      padding: 40px 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }

    .cdet-book-text {
      font-size: 13px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.5;
    }

    .cdet-book-text span {
      display: block;
      color: white;
      font-weight: 400;
      font-size: 15px;
      font-family: 'Cormorant Garamond', serif;
      margin-top: 4px;
    }

    @media (max-width: 768px) {
      .cdet-top { padding: 32px 20px 48px; }
      .cdet-name { font-size: 34px; }
      .cdet-familiar { padding: 48px 20px; }
      .cdet-familiar-text { font-size: 18px; }
      .cdet-science { padding: 48px 20px; }
      .cdet-science-inner { grid-template-columns: 1fr; gap: 40px; }
      .cdet-approaches { padding: 48px 20px; }
      .cdet-approaches-grid { grid-template-columns: 1fr; }
      .cdet-book-strip { padding: 32px 20px; flex-direction: column; align-items: flex-start; }
    }

    /* ══════════════════════════════════════
   CLINICAL SKINCARE PAGE
══════════════════════════════════════ */
    .skincare-hero {
      background: var(--navy);
      padding: 72px 60px 56px;
    }

    .skincare-hero-eyebrow {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .skincare-hero-eyebrow::before {
      content: '';
      width: 28px;
      height: 1px;
      background: var(--gold);
    }

    .skincare-hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 56px;
      font-weight: 300;
      color: white;
      line-height: 1.04;
      margin-bottom: 20px;
    }

    .skincare-hero-sub {
      font-size: 13px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.8;
      max-width: 540px;
    }

    .skincare-philosophy {
      background: var(--cream);
      padding: 56px 60px;
      border-bottom: 1px solid rgba(15, 31, 46, 0.08);
    }

    .skincare-philosophy-inner {
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
    }

    .skincare-philosophy-label {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }

    .skincare-philosophy-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 300;
      color: var(--navy);
      line-height: 1.7;
    }

    .skincare-body {
      background: white;
    }

    .skincare-group {
      padding: 60px 60px;
      border-bottom: 1px solid rgba(15, 31, 46, 0.07);
      max-width: 100%;
    }

    .skincare-group-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 220px 1fr;
      gap: 72px;
      align-items: start;
    }

    .skincare-group-label {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(15, 31, 46, 0.35);
      padding-top: 4px;
      position: sticky;
      top: 88px;
    }

    .skincare-group-heading {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      font-weight: 400;
      color: var(--navy);
      margin-top: 10px;
      margin-bottom: 6px;
      line-height: 1.2;
    }

    .skincare-concern-body {
      padding-top: 6px;
    }
    .skincare-concern-body p {
      font-size: 13px;
      font-weight: 300;
      color: rgba(15, 31, 46, 0.65);
      line-height: 1.85;
      max-width: 600px;
      margin-bottom: 16px;
    }
    .skincare-concern-body p:last-child {
      margin-bottom: 0;
      color: rgba(15, 31, 46, 0.45);
      font-size: 12px;
    }

    .skincare-rx-note {
      background: var(--cream);
      padding: 32px 60px;
      border-top: 1px solid rgba(15, 31, 46, 0.08);
    }
    .skincare-rx-note-text {
      font-size: 12px;
      font-weight: 300;
      color: rgba(15, 31, 46, 0.55);
      line-height: 1.8;
      max-width: 680px;
      margin: 0 auto;
      text-align: center;
      font-style: italic;
    }
    .skincare-cta {
      background: var(--navy);
      padding: 72px 60px;
      text-align: center;
    }

    .skincare-cta-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 32px;
      font-weight: 300;
      color: white;
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .skincare-cta-sub {
      font-size: 12px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.45);
      margin-bottom: 32px;
      line-height: 1.7;
    }

    @media (max-width: 768px) {
      .skincare-hero { padding: 40px 20px 36px; }
      .skincare-hero-title { font-size: 36px; }
      .skincare-philosophy { padding: 40px 20px; }
      .skincare-philosophy-text { font-size: 18px; }
      .skincare-group { padding: 40px 20px; }
      .skincare-group-inner { grid-template-columns: 1fr; gap: 8px; }
      .skincare-group-label { position: static; }
      .skincare-cta { padding: 56px 20px; }
      .skincare-cta-text { font-size: 26px; }
    }

    /* ══════════════════════════════════════
   SKIN CONCERNS PAGE
══════════════════════════════════════ */
    .concerns-hero {
      background: var(--navy);
      padding: 72px 60px 56px;
    }

    .concerns-hero-eyebrow {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .concerns-hero-eyebrow::before {
      content: '';
      width: 28px;
      height: 1px;
      background: var(--gold);
    }

    .concerns-hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 56px;
      font-weight: 300;
      color: white;
      line-height: 1.04;
      margin-bottom: 20px;
    }

    .concerns-hero-sub {
      font-size: 13px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.8;
      max-width: 520px;
    }

    .concerns-body {
      background: var(--cream);
      padding: 64px 60px 80px;
    }

    .concerns-note {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(15, 31, 46, 0.38);
      max-width: 1100px;
      margin: 0 auto 40px;
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(15, 31, 46, 0.1);
    }

    .concerns-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .concern-card {
      background: white;
      padding: 36px 32px;
      border: 1px solid rgba(15, 31, 46, 0.06);
      cursor: pointer;
      transition: box-shadow 0.2s ease, transform 0.2s ease;
    }

    .concern-card:hover {
      box-shadow: 0 8px 32px rgba(15, 31, 46, 0.1);
      transform: translateY(-2px);
    }

    .concern-card-cta {
      margin-top: 20px;
      font-size: 9.5px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .concern-num {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }

    .concern-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 400;
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 10px;
    }

    .concern-desc {
      font-size: 11px;
      font-weight: 300;
      color: rgba(15, 31, 46, 0.55);
      line-height: 1.7;
      margin-bottom: 22px;
    }

    .concern-divider {
      height: 1px;
      background: rgba(15, 31, 46, 0.08);
      margin-bottom: 18px;
    }

    .concern-options-label {
      font-size: 8.5px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(15, 31, 46, 0.3);
      margin-bottom: 12px;
    }

    .concern-option {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 9px 0;
      border-bottom: 1px solid rgba(15, 31, 46, 0.05);
      cursor: pointer;
      transition: all 0.2s;
    }

    .concern-option:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .concern-option:hover .concern-option-name {
      color: var(--gold);
    }

    .concern-option:hover .concern-option-arrow {
      transform: translateX(4px);
      color: var(--gold);
    }

    .concern-option-tag {
      font-size: 7px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      background: rgba(184, 149, 106, 0.1);
      border: 1px solid rgba(184, 149, 106, 0.25);
      padding: 3px 7px;
      white-space: nowrap;
      flex-shrink: 0;
      width: 76px;
      text-align: center;
    }

    .concern-option-tag.skincare {
      color: rgba(15, 31, 46, 0.45);
      background: rgba(15, 31, 46, 0.04);
      border-color: rgba(15, 31, 46, 0.15);
    }

    .concern-option-name {
      font-size: 11px;
      font-weight: 500;
      color: var(--navy);
      letter-spacing: 0.01em;
      flex: 1;
      transition: color 0.2s;
    }

    .concern-option-arrow {
      font-size: 12px;
      color: rgba(15, 31, 46, 0.2);
      transition: all 0.2s;
      flex-shrink: 0;
    }

    .concerns-footer {
      max-width: 1100px;
      margin: 48px auto 0;
      padding-top: 36px;
      border-top: 1px solid rgba(15, 31, 46, 0.08);
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .concerns-footer-text {
      font-size: 12px;
      font-weight: 300;
      color: rgba(15, 31, 46, 0.5);
      font-style: italic;
    }

    @media (max-width: 768px) {
      .concerns-hero {
        padding: 40px 20px 36px;
      }

      .concerns-hero-title {
        font-size: 36px;
      }

      .concerns-body {
        padding: 48px 20px 60px;
      }

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

      .concern-card {
        padding: 28px 22px;
      }

      .concerns-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
      }
    }

    @media (max-width: 390px) {
      .home-hero-title {
        font-size: 34px;
      }

      .home-hero-left {
        padding: 40px 20px 36px;
      }

      .home-about-heading {
        font-size: 26px;
      }

      .home-drkim-name {
        font-size: 30px;
      }

      .home-why-heading {
        font-size: 28px;
      }

      .home-final-cta-heading {
        font-size: 30px;
      }

      .nav-logo-mark {
        font-size: 26px;
      }
    }

a.nav-dropdown-item { text-decoration: none; display: block; }
