  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --ink:       #08140f;
      --deep:      #0b1f17;
      --forest:    #104730;
      --jade:      #1a7a52;
      --mint:      #2dcc8a;
      --cream:     #f7f2e8;
      --parchment: #ede8da;
      --gold:      #c9a84c;
      --gold-lt:   #e3c77a;
      --coral:     #e05c3a;
      --white:     #fdfbf7;
      --glass:     rgba(247,242,232,0.06);
      --glass-b:   rgba(247,242,232,0.14);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--white);
      color: var(--ink);
      overflow-x: hidden;
      cursor: none;
    }

    /* ── CUSTOM CURSOR ── */
     body {
        cursor: none;
      }
      #cursor-dot, #cursor-ring {
        position: fixed;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        will-change: transform;
      }
      #cursor-dot {
        width: 6px;
        height: 6px;
        background: var(--gold);
        border-radius: 50%;
        transition: transform 0.08s linear;
      }
      #cursor-ring {
        width: 38px;
        height: 38px;
        border: 1.5px solid var(--jade);
        border-radius: 50%;
        transition: width 0.2s ease, height 0.2s ease, opacity 0.2s;
        opacity: 0.65;
      }
      a, button, .gal-item, .btn-primary, .btn-ghost, .snav, .carousel-btn, .clinic-card, .pub-item {
        cursor: none;
      }
    }
    /* ── GRAIN OVERLAY ── */
    body::before {
      content: '';
      position: fixed; inset: 0; z-index: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
      pointer-events: none; opacity: 0.6;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 900;
      padding: 22px 0 18px;
      transition: all 0.4s ease;
    }
    nav.scrolled {
      background: rgba(8,20,15,0.92);
      backdrop-filter: blur(24px);
      padding: 14px 0;
      border-bottom: 1px solid rgba(201,168,76,0.2);
    }
    .nav-inner {
      max-width: 1400px; margin: 0 auto;
      padding: 0 48px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .logo-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.55rem; font-weight: 600;
      color: var(--cream);
      letter-spacing: 0.02em;
      text-decoration: none;
    }
    .logo-text em { font-style: italic; color: var(--gold); }
    .logo-sub {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.62rem; font-weight: 300;
      color: rgba(247,242,232,0.5);
      letter-spacing: 0.22em; text-transform: uppercase;
      display: block; margin-top: 2px;
    }
    .nav-links { display: flex; gap: 0; list-style: none; }
    .nav-links a {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.78rem; font-weight: 500;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: rgba(247,242,232,0.6);
      text-decoration: none; padding: 8px 16px;
      position: relative; transition: color 0.25s;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: 4px; left: 16px; right: 16px;
      height: 1px; background: var(--gold);
      transform: scaleX(0); transition: transform 0.3s cubic-bezier(.4,0,.2,1);
    }
    .nav-links a:hover { color: var(--gold-lt); }
    .nav-links a:hover::after { transform: scaleX(1); }

    /* ── HERO ── */
    #home {
      min-height: 100vh;
      background: var(--deep);
      position: relative;
      display: flex; flex-direction: column;
      overflow: hidden;
    }
    .hero-bg-lines {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
      background-size: 80px 80px;
      animation: gridShift 20s linear infinite;
    }
    @keyframes gridShift {
      0% { transform: translate(0,0); }
      100% { transform: translate(80px,80px); }
    }
    .hero-glow {
      position: absolute;
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(26,122,82,0.18) 0%, transparent 70%);
      top: -100px; right: -100px; pointer-events: none;
    }
    .hero-glow-2 {
      position: absolute;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(201,168,76,0.09) 0%, transparent 70%);
      bottom: 0; left: 100px; pointer-events: none;
    }
    .hero-content {
      position: relative; z-index: 2;
      max-width: 1400px; margin: 0 auto;
      padding: 0 48px;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 60px; align-items: center;
      min-height: 100vh;
    }
    .hero-left { padding-top: 80px; }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.7rem; font-weight: 500;
      letter-spacing: 0.3em; text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 28px;
    }
    .eyebrow-line {
      width: 40px; height: 1px; background: var(--gold); display: inline-block;
    }
    .hero-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3.2rem, 5.5vw, 5.8rem);
      font-weight: 300;
      line-height: 1.08;
      color: var(--cream);
      letter-spacing: -0.01em;
    }
    .hero-name strong {
      font-weight: 700;
      background: linear-gradient(135deg, var(--gold-lt), var(--gold));
      -webkit-background-clip: text; background-clip: text; color: transparent;
      display: block;
    }
    .hero-title {
      font-family: 'DM Sans', sans-serif;
      font-size: 1.05rem; font-weight: 300;
      color: rgba(247,242,232,0.55);
      margin: 20px 0 36px;
      line-height: 1.7;
      max-width: 430px;
    }
    .hero-stats {
      display: flex; gap: 40px; margin-bottom: 40px;
    }
    .stat-item { text-align: left; }
    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.8rem; font-weight: 600;
      color: var(--gold);
      line-height: 1;
      display: block;
    }
    .stat-lbl {
      font-size: 0.7rem; font-weight: 500;
      letter-spacing: 0.15em; text-transform: uppercase;
      color: rgba(247,242,232,0.4);
      margin-top: 4px; display: block;
    }
    .hero-cta {
      display: flex; gap: 16px; flex-wrap: wrap;
    }
    .btn-primary {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.82rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      background: linear-gradient(135deg, var(--jade), var(--forest));
      color: var(--cream); border: none;
      padding: 16px 36px; border-radius: 4px;
      text-decoration: none;
      position: relative; overflow: hidden;
      transition: all 0.3s;
      cursor: none;
    }
    .btn-primary::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, var(--gold), var(--coral));
      opacity: 0; transition: opacity 0.3s;
    }
    .btn-primary:hover::before { opacity: 1; }
    .btn-primary span { position: relative; z-index: 1; }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(0,0,0,0.3); }
    .btn-ghost {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.82rem; font-weight: 500;
      letter-spacing: 0.1em; text-transform: uppercase;
      background: transparent;
      border: 1px solid rgba(201,168,76,0.4);
      color: rgba(247,242,232,0.7);
      padding: 16px 36px; border-radius: 4px;
      text-decoration: none; transition: all 0.3s;
      cursor: none;
    }
    .btn-ghost:hover {
      border-color: var(--gold); color: var(--gold);
      background: rgba(201,168,76,0.06);
    }

    /* HERO RIGHT - image carousel */
    .hero-right {
      position: relative; padding-top: 80px;
      display: flex; align-items: center; justify-content: center;
    }
    .hero-image-frame {
      position: relative;
      width: 100%; max-width: 520px;
    }
    .hero-image-border {
      position: absolute;
      top: -16px; right: -16px;
      width: 100%; height: 100%;
      border: 1px solid rgba(201,168,76,0.3);
      border-radius: 2px;
      pointer-events: none; z-index: 0;
    }
    .hero-img-wrap {
      position: relative; z-index: 1;
      aspect-ratio: 4/5;
      overflow: hidden; border-radius: 2px;
    }
    .hero-slide-track {
      display: flex; height: 100%;
      transition: transform 0.8s cubic-bezier(0.76,0,0.24,1);
    }
    .hero-slide {
      flex: 0 0 100%; height: 100%;
    }
    .hero-slide img {
      width: 100%; height: 100%; object-fit: cover;
      filter: brightness(0.88) saturate(0.9);
    }
    .slide-dots {
      position: absolute; bottom: -36px; left: 0;
      display: flex; gap: 8px;
    }
    .sdot {
      width: 24px; height: 2px;
      background: rgba(247,242,232,0.2);
      border-radius: 2px; cursor: none;
      transition: all 0.3s;
    }
    .sdot.active { width: 48px; background: var(--gold); }
    .slide-nav {
      position: absolute; top: 50%; right: -56px;
      transform: translateY(-50%);
      display: flex; flex-direction: column; gap: 8px;
    }
    .snav {
      width: 44px; height: 44px;
      background: var(--glass-b);
      border: 1px solid rgba(201,168,76,0.2);
      color: var(--cream); font-size: 0.9rem;
      display: flex; align-items: center; justify-content: center;
      border-radius: 2px; cursor: none;
      transition: all 0.2s; backdrop-filter: blur(12px);
    }
    .snav:hover { background: var(--gold); border-color: var(--gold); color: var(--deep); }

    /* floating credential badge */
    .cred-badge {
      position: absolute; bottom: 60px; left: -60px; z-index: 10;
      background: rgba(8,20,15,0.9);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(201,168,76,0.3);
      border-radius: 2px;
      padding: 18px 24px;
      min-width: 210px;
    }
    .cred-badge .badge-val {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem; font-weight: 600;
      color: var(--gold); line-height: 1;
    }
    .cred-badge .badge-label {
      font-size: 0.68rem; font-weight: 400;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: rgba(247,242,232,0.5);
      margin-top: 6px; display: block;
    }

    /* ── SHARED SECTION STYLES ── */
    section { position: relative; }
    .section-wrap {
      max-width: 1400px; margin: 0 auto;
      padding: 100px 48px;
    }
    .section-label {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.68rem; font-weight: 500;
      letter-spacing: 0.35em; text-transform: uppercase;
      color: var(--jade);
      display: flex; align-items: center; gap: 12px;
      margin-bottom: 20px;
    }
    .section-label::before {
      content: ''; display: inline-block;
      width: 32px; height: 1px; background: var(--jade);
    }
    h2.section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.4rem, 4vw, 3.8rem);
      font-weight: 300; line-height: 1.1;
      color: var(--ink); letter-spacing: -0.01em;
      margin-bottom: 52px;
    }
    h2.section-title em { font-style: italic; color: var(--jade); }
    h2.section-title strong { font-weight: 700; }

    /* ── ABOUT ── */
    #about { background: var(--cream); }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 80px; align-items: start;
    }
    .about-image-col { position: relative; }
    .about-img-main {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover; border-radius: 2px;
      display: block;
      box-shadow: 0 40px 80px -20px rgba(0,0,0,0.2);
    }
    .about-img-accent {
      position: absolute;
      bottom: -36px; right: -36px;
      width: 52%; aspect-ratio: 1;
      object-fit: cover; border-radius: 2px;
      border: 6px solid var(--cream);
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }
    .about-text-col { padding-top: 20px; }
    .about-lead {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.55rem; font-weight: 300;
      line-height: 1.65; color: var(--forest);
      margin-bottom: 28px;
    }
    .about-body {
      font-size: 0.95rem; font-weight: 300;
      line-height: 1.85; color: rgba(8,20,15,0.65);
      margin-bottom: 36px;
    }
    .detail-table { width: 100%; border-collapse: collapse; }
    .detail-table tr { border-bottom: 1px solid rgba(8,20,15,0.08); }
    .detail-table td {
      padding: 12px 0;
      font-size: 0.875rem;
    }
    .detail-table td:first-child {
      font-weight: 600; color: var(--jade);
      width: 140px; font-size: 0.75rem;
      letter-spacing: 0.05em; text-transform: uppercase;
    }
    .detail-table td:last-child {
      color: var(--ink); font-weight: 400;
    }

    /* ── EDUCATION ── */
    #education { background: var(--white); }
    .edu-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: start;
    }
    .edu-cards { display: flex; flex-direction: column; gap: 2px; }
    .edu-card {
      display: flex; align-items: flex-start; gap: 20px;
      padding: 24px 0; border-bottom: 1px solid rgba(8,20,15,0.07);
      position: relative; overflow: hidden;
      transition: all 0.3s;
    }
    .edu-card::before {
      content: ''; position: absolute; left: 0; bottom: 0;
      height: 1px; width: 0; background: var(--jade);
      transition: width 0.5s cubic-bezier(.4,0,.2,1);
    }
    .edu-card:hover::before { width: 100%; }
    .edu-year {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem; font-weight: 600;
      color: var(--gold); min-width: 52px;
      padding-top: 3px;
    }
    .edu-info h4 {
      font-family: 'Syne', sans-serif;
      font-size: 0.9rem; font-weight: 600;
      color: var(--ink); margin-bottom: 4px;
    }
    .edu-info p {
      font-size: 0.82rem; font-weight: 300;
      color: rgba(8,20,15,0.55); line-height: 1.5;
    }
    .edu-medal {
      margin-left: auto;
      font-size: 1.2rem;
    }
    .edu-image-col {
      position: relative;
    }
    .edu-img-stack {
      position: relative;
      height: 520px;
    }
    .edu-img-stack img {
      position: absolute;
      border-radius: 2px;
      object-fit: cover;
      box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    }
    .edu-img-stack .img1 {
      width: 72%; height: 360px;
      top: 0; left: 0; z-index: 1;
    }
    .edu-img-stack .img2 {
      width: 55%; height: 250px;
      bottom: 0; right: 0; z-index: 2;
      border: 5px solid var(--white);
    }
    .gold-medal-badge {
      position: absolute; top: 24px; right: 24px; z-index: 3;
      width: 88px; height: 88px;
      background: var(--deep);
      border: 2px solid var(--gold);
      border-radius: 50%;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center;
    }
    .gold-medal-badge span:first-child { font-size: 1.6rem; line-height: 1; }
    .gold-medal-badge span:last-child {
      font-size: 0.5rem; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--gold);
      font-weight: 600; margin-top: 2px;
    }

    /* ── EXPERTISE ── */
    #expertise { background: var(--deep); }
    #expertise h2.section-title { color: var(--cream); }
    #expertise h2.section-title em { color: var(--gold-lt); }
    .expertise-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(201,168,76,0.12);
      border: 1px solid rgba(201,168,76,0.12);
      border-radius: 2px;
      overflow: hidden;
    }
    .exp-card {
      background: var(--deep);
      padding: 40px 32px;
      position: relative; overflow: hidden;
      transition: all 0.4s;
    }
    .exp-card::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(26,122,82,0.12), rgba(201,168,76,0.06));
      opacity: 0; transition: opacity 0.4s;
    }
    .exp-card:hover::before { opacity: 1; }
    .exp-card:hover { transform: translateY(-4px); }
    .exp-icon {
      font-size: 2rem; color: var(--jade);
      margin-bottom: 20px; display: block;
    }
    .exp-card h4 {
      font-family: 'Syne', sans-serif;
      font-size: 1.05rem; font-weight: 700;
      color: var(--cream); margin-bottom: 12px;
    }
    .exp-card p {
      font-size: 0.85rem; font-weight: 300;
      color: rgba(247,242,232,0.5); line-height: 1.7;
    }
    .exp-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 5rem; font-weight: 300;
      color: rgba(201,168,76,0.06);
      position: absolute; bottom: -12px; right: 16px;
      line-height: 1;
    }

    /* ── EXPERIENCE ── */
    #experience { background: var(--parchment); }
    .timeline {
      position: relative;
      padding-left: 60px;
    }
    .timeline::before {
      content: ''; position: absolute;
      left: 20px; top: 0; bottom: 0;
      width: 1px; background: rgba(8,20,15,0.12);
    }
    .tl-item {
      position: relative; margin-bottom: 40px;
    }
    .tl-dot {
      position: absolute;
      left: -49px; top: 6px;
      width: 10px; height: 10px;
      background: var(--jade); border-radius: 50%;
      border: 3px solid var(--parchment);
      box-shadow: 0 0 0 1px var(--jade);
    }
    .tl-item.current .tl-dot {
      background: var(--gold);
      box-shadow: 0 0 0 1px var(--gold), 0 0 12px rgba(201,168,76,0.4);
    }
    .tl-year {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.7rem; font-weight: 600;
      letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--jade); margin-bottom: 4px;
    }
    .tl-item.current .tl-year { color: var(--gold); }
    .tl-title {
      font-family: 'Syne', sans-serif;
      font-size: 0.95rem; font-weight: 600;
      color: var(--ink); margin-bottom: 4px;
    }
    .tl-place {
      font-size: 0.82rem; font-weight: 300;
      color: rgba(8,20,15,0.5);
    }
    .exp-img {
      width: 100%; border-radius: 2px;
      object-fit: cover; height: 240px;
      margin-bottom: 20px;
      box-shadow: 0 16px 32px rgba(0,0,0,0.1);
    }

    /* ── RESEARCH ── */
    #research { background: var(--white); }
    .research-list { display: flex; flex-direction: column; gap: 0; }
    .pub-item {
      display: grid;
      grid-template-columns: 60px 1fr auto;
      gap: 24px; align-items: center;
      padding: 28px 0;
      border-bottom: 1px solid rgba(8,20,15,0.08);
      transition: all 0.25s;
      cursor: default;
    }
    .pub-item:hover { padding-left: 12px; }
    .pub-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem; font-weight: 300;
      color: rgba(8,20,15,0.12);
      text-align: right; line-height: 1;
    }
    .pub-item:hover .pub-num { color: var(--jade); }
    .pub-title {
      font-family: 'Syne', sans-serif;
      font-size: 0.9rem; font-weight: 600;
      color: var(--ink); margin-bottom: 4px;
    }
    .pub-meta {
      font-size: 0.78rem; color: rgba(8,20,15,0.45); font-weight: 300;
    }
    .pub-tag {
      font-size: 0.65rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      background: rgba(26,122,82,0.1);
      color: var(--jade); padding: 4px 12px;
      border-radius: 2px; white-space: nowrap;
    }

    /* ── AWARDS ── */
    #awards { background: var(--deep); overflow: hidden; position: relative; }
    .awards-marquee-wrap {
      width: 100%; overflow: hidden;
      margin-bottom: 60px;
      position: relative;
    }
    .awards-marquee-wrap::before,
    .awards-marquee-wrap::after {
      content: ''; position: absolute;
      top: 0; bottom: 0; width: 120px; z-index: 2;
    }
    .awards-marquee-wrap::before {
      left: 0;
      background: linear-gradient(90deg, var(--deep), transparent);
    }
    .awards-marquee-wrap::after {
      right: 0;
      background: linear-gradient(-90deg, var(--deep), transparent);
    }
    .awards-track {
      display: flex; gap: 32px;
      animation: marquee 28s linear infinite;
      width: max-content;
    }
    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .award-chip {
      display: flex; align-items: center; gap: 12px;
      background: rgba(247,242,232,0.04);
      border: 1px solid rgba(201,168,76,0.2);
      padding: 14px 24px; border-radius: 2px;
      white-space: nowrap;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.82rem; font-weight: 500;
      color: rgba(247,242,232,0.6);
    }
    .award-chip span { color: var(--gold); font-size: 1.1rem; }
    .conf-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: rgba(201,168,76,0.1);
    }
    .conf-item {
      background: rgba(8,20,15,0.5);
      padding: 28px 24px; text-align: center;
    }
    .conf-city {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem; font-weight: 600;
      color: var(--gold-lt); display: block; margin-bottom: 4px;
    }
    .conf-name {
      font-size: 0.72rem; font-weight: 500;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: rgba(247,242,232,0.4);
    }

    /* ── AVAILABILITY ── */
    #availability { background: var(--cream); }
    .clinic-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
      gap: 28px;
    }
    .clinic-card {
      background: var(--white);
      border-radius: 2px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(0,0,0,0.06);
      transition: all 0.3s;
      border: 1px solid rgba(8,20,15,0.06);
    }
    .clinic-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 48px rgba(0,0,0,0.1);
      border-color: rgba(26,122,82,0.3);
    }
    .clinic-top {
      padding: 28px 28px 20px;
      border-bottom: 1px solid rgba(8,20,15,0.06);
    }
    .clinic-name-new {
      font-family: 'Syne', sans-serif;
      font-size: 1rem; font-weight: 700;
      color: var(--forest); margin-bottom: 6px;
    }
    .clinic-addr {
      font-size: 0.78rem; color: rgba(8,20,15,0.45); font-weight: 300;
    }
    .clinic-bottom {
      padding: 16px 28px;
      display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
    }
    .time-pill {
      background: var(--forest);
      color: var(--cream);
      font-size: 0.68rem; font-weight: 600;
      letter-spacing: 0.08em; text-transform: uppercase;
      padding: 5px 14px; border-radius: 2px;
    }
    .phone-pill {
      font-size: 0.76rem; color: var(--jade);
      font-weight: 500; margin-left: auto;
    }

    /* ── GALLERY ── */
    #gallery { background: var(--ink); }
    #gallery h2.section-title { color: var(--cream); }
    #gallery .section-label { color: var(--gold); }
    #gallery .section-label::before { background: var(--gold); }
    .gallery-masonry {
      columns: 4; gap: 16px;
      column-fill: balance;
    }
    .gal-item {
      break-inside: avoid;
      margin-bottom: 16px;
      position: relative; overflow: hidden;
      border-radius: 2px;
      cursor: none;
    }
    .gal-item img {
      width: 100%; display: block;
      filter: saturate(0.7) brightness(0.8);
      transition: all 0.5s cubic-bezier(.4,0,.2,1);
    }
    .gal-item:hover img {
      filter: saturate(1) brightness(1);
      transform: scale(1.04);
    }
    .gal-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(8,20,15,0.7) 0%, transparent 50%);
      opacity: 0; transition: opacity 0.3s;
      display: flex; align-items: flex-end;
      padding: 18px;
    }
    .gal-item:hover .gal-overlay { opacity: 1; }
    .gal-cap {
      font-size: 0.78rem; font-weight: 500;
      color: var(--cream); letter-spacing: 0.05em;
    }

    /* ── CONTACT ── */
    #contact { background: var(--white); }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: start;
    }
    .contact-heading {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem; font-weight: 300;
      color: rgba(8,20,15,0.5);
      line-height: 1.7; margin-bottom: 48px;
    }
    .contact-item {
      display: flex; align-items: flex-start; gap: 16px;
      margin-bottom: 28px;
    }
    .contact-icon {
      width: 44px; height: 44px; flex-shrink: 0;
      background: var(--forest);
      display: flex; align-items: center; justify-content: center;
      border-radius: 2px; color: var(--gold);
      font-size: 0.9rem;
    }
    .contact-text-label {
      font-size: 0.68rem; font-weight: 600;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--jade); margin-bottom: 4px;
    }
    .contact-text-val {
      font-size: 0.9rem; color: var(--ink); font-weight: 400;
    }
    .contact-map-col {
      border-radius: 2px; overflow: hidden;
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
      position: relative;
    }
    .contact-map-col img {
      width: 100%; display: block;
      height: 420px; object-fit: cover;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--ink);
      padding: 48px;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 20px;
    }
    .footer-brand {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem; font-weight: 300;
      color: rgba(247,242,232,0.5);
    }
    .footer-brand em { color: var(--gold); font-style: italic; }
    .footer-copy {
      font-size: 0.75rem; font-weight: 300;
      color: rgba(247,242,232,0.25);
      letter-spacing: 0.08em;
    }

    /* ── LIGHTBOX ── */
    .lightbox {
      display: none; position: fixed; inset: 0;
      background: rgba(5,10,8,0.95);
      z-index: 2000;
      justify-content: center; align-items: center;
      backdrop-filter: blur(20px);
    }
    .lightbox.active { display: flex; }
    .lb-inner { position: relative; max-width: 88vw; }
    .lb-inner img {
      max-width: 88vw; max-height: 82vh;
      border-radius: 2px; display: block;
      box-shadow: 0 40px 80px rgba(0,0,0,0.6);
    }
    .lb-close {
      position: absolute; top: -52px; right: 0;
      background: rgba(247,242,232,0.1);
      border: 1px solid rgba(247,242,232,0.2);
      color: var(--cream); width: 40px; height: 40px;
      border-radius: 2px; font-size: 1.2rem;
      cursor: none; display: flex; align-items: center; justify-content: center;
      transition: all 0.2s;
    }
    .lb-close:hover { background: var(--coral); border-color: var(--coral); }
    .lb-cap {
      text-align: center; margin-top: 16px;
      font-size: 0.78rem; font-weight: 300;
      letter-spacing: 0.15em; text-transform: uppercase;
      color: rgba(247,242,232,0.4);
    }

    /* ── SCROLL ANIMATIONS ── */
    .reveal {
      opacity: 0; transform: translateY(36px);
      transition: opacity 0.75s cubic-bezier(.4,0,.2,1), transform 0.75s cubic-bezier(.4,0,.2,1);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1100px) {
      .hero-content { grid-template-columns: 1fr; min-height: auto; padding-top: 120px; }
      .hero-right { display: none; }
      .about-grid, .edu-layout, .contact-grid { grid-template-columns: 1fr; }
      .expertise-grid { grid-template-columns: 1fr; }
      .gallery-masonry { columns: 2; }
      .conf-grid { grid-template-columns: repeat(2,1fr); }
      .cred-badge { display: none; }
    }
    @media (max-width: 700px) {
      .nav-inner { padding: 0 20px; }
      .nav-links { display: none; }
      .section-wrap { padding: 70px 20px; }
      .gallery-masonry { columns: 2; }
      .hero-content { padding: 0 20px; }
      .hero-stats { gap: 24px; }
      footer { padding: 32px 20px; }
    }