  :root {
      --ink: #0F1E1B;
      --ink-2: #16302B;
      --paper: #F6F2E9;
      --paper-2: #EDE7D8;
      --teal: #1F5C52;
      --teal-deep: #123B34;
      --ochre: #B87F3F;
      --slate: #33372F;
      --mist: #D9E1D8;
      --line: rgba(15, 30, 27, 0.14);
      --line-light: rgba(246, 242, 233, 0.18);
  }

  * {
      box-sizing: border-box;
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      margin: 0;
      background: var(--paper);
      color: var(--slate);
      font-family: 'IBM Plex Sans', sans-serif;
      font-weight: 400;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
  }

  h1,
  h2,
  h3 {
      font-family: 'Fraunces', serif;
      font-weight: 500;
      margin: 0;
      color: var(--ink);
      letter-spacing: -0.01em;
  }

  a {
      color: inherit;
      text-decoration: none;
  }

  .eyebrow {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 12px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--teal);
  }

  .wrap {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 40px;
  }

  section {
      position: relative;
  }

  /* ---------- NAV ---------- */
  nav {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(246, 242, 233, 0.92);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--line);
  }

  .navwrap {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
  }

  .brand {
      font-family: 'Fraunces', serif;
      font-size: 17px;
      font-weight: 600;
      color: var(--ink);
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .brand .ring {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      border: 1.5px solid var(--teal);
      position: relative;
      flex: none;
  }

  .brand .ring::after {
      content: "";
      position: absolute;
      inset: 5px;
      border-radius: 50%;
      background: var(--teal);
  }

  .navlinks {
     display: flex;
    gap: 30px;
    font-size: 15px;
    letter-spacing: 0.03em;
    font-weight: 500;
  }

  .navlinks a {
      color: #000;
      font-weight: 500;
      padding: 4px 0;
      border-bottom: 1px solid transparent;
  }

  .navlinks a:hover {
      opacity: 1;
      border-color: var(--teal);
  }

  .btn {
      display: inline-block;
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.03em;
      padding: 11px 22px;
      border-radius: 2px;
      cursor: pointer;
  }

  .btn-fill {
      background: var(--teal);
      color: var(--paper);
      border: 1px solid var(--teal);
  }

  .btn-fill:hover {
      background: var(--teal-deep);
  }

  .btn-line {
      border: 1px solid var(--ink);
      color: var(--ink);
  }

  .btn-line:hover {
      background: var(--ink);
      color: var(--paper);
  }

  .btn-line-light {
      border: 1px solid var(--line-light);
      color: var(--paper);
  }

  .btn-line-light:hover {
      background: var(--paper);
      color: var(--ink);
  }

  /* ---------- HERO ---------- */
  .hero {
      min-height: 92vh;
      display: flex;
      align-items: center;
      background:
          radial-gradient(circle at 82% 46%, rgba(31, 92, 82, 0.10), transparent 55%),
          var(--paper);
      padding-top: 40px;
  }

  .hero .wrap {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 60px;
      align-items: center;
  }

  .hero h1 {
      font-size: clamp(34px, 4.4vw, 54px);
      line-height: 1.08;
  }

  .hero .subhead {
      font-size: 17px;
      color: var(--teal-deep);
      margin-top: 22px;
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-weight: 400;
      max-width: 520px;
  }

  .hero p.body {
      margin-top: 22px;
      max-width: 520px;
      font-size: 16px;
      color: var(--slate);
  }

  .hero .cta-line {
      margin-top: 26px;
      font-size: 15px;
      font-weight: 500;
      color: var(--ink);
  }

  .hero .buttons {
      margin-top: 26px;
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
  }

  .portrait-frame {
      aspect-ratio: 4/5;
      background: var(--ink);
      position: relative;
      overflow: hidden;
      border-radius: 2px;
  }

  .portrait-frame svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
  }

  .portrait-monogram {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Fraunces', serif;
      font-weight: 400;
      font-size: min(9vw, 86px);
      color: var(--paper);
      letter-spacing: 0.02em;
  }

  .portrait-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 16px 20px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--mist);
      background: linear-gradient(to top, rgba(15, 30, 27, 0.85), transparent);
  }

  /* ---------- VISION/MISSION ---------- */
  .vm {
      background: var(--ink);
      color: var(--paper);
      padding: 110px 0;
  }

  .vm .eyebrow {
      color: #8FBDB2;
  }

  .vm-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      margin-top: 36px;
  }

  .vm-col {
      padding: 0 46px;
  }

  .vm-col:first-child {
      padding-left: 0;
      border-right: 1px solid var(--line-light);
  }

  .vm-col:last-child {
      padding-right: 0;
  }

  .vm-label {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 12px;
      letter-spacing: 0.14em;
      color: var(--ochre);
      margin-bottom: 22px;
  }

  .vm-col p {
      font-family: 'Fraunces', serif;
      font-weight: 300;
      font-size: clamp(20px, 2vw, 25px);
      line-height: 1.5;
      color: var(--paper);
      margin: 0 0 20px;
  }

  /* ---------- JOURNEY ---------- */
  .journey {
      padding: 120px 0;
      background: var(--paper);
  }

  .journey .wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
  }

  .journey h2 {
      font-size: clamp(28px, 3vw, 38px);
      line-height: 1.2;
      margin-bottom: 26px;
  }

  .journey p {
      font-size: 15.5px;
      margin: 0 0 18px;
      color: var(--slate);
  }

  .timeline {
      border-left: 1px solid var(--line);
      padding-left: 28px;
      position: relative;
  }

  .tl-item {
      position: relative;
      padding-bottom: 34px;
  }

  .tl-item:last-child {
      padding-bottom: 0;
  }

  .tl-item::before {
      content: "";
      position: absolute;
      left: -33px;
      top: 4px;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--paper);
      border: 2px solid var(--teal);
  }

  .tl-year {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 12px;
      color: var(--teal);
      letter-spacing: 0.05em;
      font-weight: 900;
  }

  .tl-text {
      font-size: 15px;
      color: var(--ink);
      margin-top: 4px;
      font-weight: 900;
  }

  /* ---------- PRACTICE ---------- */
  .practice {
      padding: 120px 0;
      background: var(--paper-2);
  }

  .practice-head {
      max-width: 640px;
      margin-bottom: 56px;
  }

  .practice-head h2 {
      font-size: clamp(28px, 3vw, 38px);
      line-height: 1.2;
  }

  .cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--line);
  }

  .card {
      background: var(--paper-2);
      padding: 42px;
      position: relative;
  }

  .card .num {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 12px;
      color: var(--ochre);
      letter-spacing: 0.1em;
  }

  .card h3 {
      font-size: 21px;
      margin-top: 14px;
      margin-bottom: 14px;
      line-height: 1.25;
  }

  .card p {
      font-size: 14.5px;
      color: var(--slate);
      margin: 0;
  }

  /* ---------- ECOSYSTEM ---------- */
  .eco {
      padding: 120px 0;
      background: var(--paper);
  }

  .eco-head {
      max-width: 680px;
      margin-bottom: 20px;
  }

  .eco-head h2 {
      font-size: clamp(28px, 3vw, 38px);
      line-height: 1.2;
  }

  .eco-head p {
      font-size: 15.5px;
      color: var(--slate);
      margin-top: 16px;
  }

  .tabbar {
      display: flex;
      gap: 0;
      margin-top: 44px;
      border-bottom: 1px solid var(--line);
      flex-wrap: wrap;
  }

  .tabbtn {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 12.5px;
      letter-spacing: 0.04em;
      padding: 14px 22px;
      cursor: pointer;
      color: var(--slate);
      opacity: 0.6;
      border-bottom: 2px solid transparent;
      background: none;
      border-top: none;
      border-left: none;
      border-right: none;
  }

  .tabbtn.active {
      opacity: 1;
      color: var(--teal-deep);
      border-color: var(--teal);
  }

  .panels {
      margin-top: 44px;
  }

  .panel {
      display: none;
      grid-template-columns: 220px 1fr;
      gap: 44px;
      align-items: start;
  }

  .panel.active {
      display: grid;
  }

  .panel-logo {
      width: 220px;
      height: 140px;
      background: var(--ink);
      border-radius: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Fraunces', serif;
      color: var(--paper);
      font-size: 15px;
      text-align: center;
      padding: 14px;
  }

  .panel-tag {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-size: 19px;
      color: var(--teal-deep);
      margin-bottom: 12px;
  }

  .panel p {
      font-size: 15px;
      color: var(--slate);
      max-width: 560px;
      margin: 0 0 16px;
  }

  .panel-link {
      font-size: 13.5px;
      font-weight: 500;
      color: var(--teal);
      border-bottom: 1px solid var(--teal);
      padding-bottom: 2px;
  }

  /* ---------- CONVICTION ---------- */
  .conviction {
      background: var(--ink);
      color: var(--mist);
      padding: 130px 0;
  }

  .conviction .wrap {
      max-width: 820px;
  }

  .conviction h2 {
      color: var(--paper);
      font-size: clamp(28px, 3.4vw, 42px);
      line-height: 1.2;
      margin-bottom: 40px;
  }

  .pullquote {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-weight: 400;
      font-size: clamp(24px, 2.6vw, 32px);
      color: var(--ochre);
      border-left: 2px solid var(--ochre);
      padding-left: 26px;
      margin: 0 0 40px;
  }

  .conviction p {
      font-size: 16px;
      color: #C9D3CD;
      margin: 0 0 22px;
  }

  .conviction .closing {
      font-family: 'Fraunces', serif;
      font-style: italic;
      color: var(--paper);
      font-size: 19px;
      margin-top: 44px;
  }

  .conviction .buttons {
      margin-top: 36px;
  }

  /* ---------- INDIA ---------- */
  .india {
      padding: 130px 0;
      background: var(--mist);
  }

  .india .wrap {
      max-width: 760px;
  }

  .india h2 {
      font-size: clamp(28px, 3.2vw, 40px);
      line-height: 1.2;
      margin-bottom: 30px;
  }

  .india p {
      font-size: 16px;
      color: var(--slate);
      margin: 0 0 20px;
  }

  .india .closing {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-size: 19px;
      color: var(--teal-deep);
      margin-top: 36px;
  }

  .india .buttons {
      margin-top: 32px;
  }

  /* ---------- RECORD ---------- */
  .record {
      padding: 120px 0;
      background: var(--paper);
  }

  .record h2 {
      font-size: clamp(28px, 3vw, 38px);
      margin-bottom: 50px;
  }

  .rec-item {
      display: grid;
      grid-template-columns: 200px 1fr;
      gap: 30px;
      padding: 26px 0;
      border-top: 1px solid var(--line);
  }

  .rec-item:last-child {
      border-bottom: 1px solid var(--line);
  }

  .rec-role {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 12px;
      color: var(--ochre);
      letter-spacing: 0.03em;
  }

  .rec-title {
      font-family: 'Fraunces', serif;
      font-size: 19px;
      color: var(--ink);
      margin: 6px 0 8px;
  }

  .rec-desc {
      font-size: 14.5px;
      color: var(--slate);
      max-width: 640px;
  }

  /* ---------- ASSOCIATE / FORM ---------- */
  .associate {
      padding: 130px 0;
      background: var(--paper-2);
  }

  .associate .wrap {
      display: grid;
      grid-template-columns: 1fr 1.05fr;
      gap: 70px;
  }

  .associate h2 {
      font-size: clamp(28px, 3.2vw, 40px);
      line-height: 1.2;
      margin-bottom: 22px;
  }

  .associate .intro {
      font-size: 15.5px;
      color: var(--slate);
      max-width: 440px;
  }

  .formcard {
      background: var(--paper);
      border: 1px solid var(--line);
      padding: 40px;
  }

  .formcard h3 {
      font-size: 20px;
      margin-bottom: 8px;
  }

  .formcard .fintro {
      font-size: 13.5px;
      color: var(--slate);
      margin-bottom: 26px;
  }

  .field {
      margin-bottom: 18px;
  }

  .field label {
      display: block;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--teal-deep);
      margin-bottom: 6px;
  }

  .field input,
  .field select,
  .field textarea {
      width: 100%;
      border: 1px solid var(--line);
      background: var(--paper);
      padding: 10px 12px;
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: 14px;
      color: var(--ink);
      border-radius: 1px;
  }

  .field textarea {
      resize: vertical;
      min-height: 70px;
  }

  .field-row {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 12.5px;
      color: var(--slate);
  }

  .field-row input {
      width: auto;
      margin-top: 3px;
  }

  .submitbtn {
      width: 100%;
      margin-top: 6px;
      padding: 13px;
      text-align: center;
  }

  /* ---------- FOOTER ---------- */
  footer {
      background: var(--ink);
      color: var(--mist);
      padding: 50px 0;
  }

  footer .wrap {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
  }

  footer .brand {
      color: var(--paper);
  }

  footer .contact {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 12px;
      color: #9AAFA8;
      display: flex;
      gap: 22px;
      flex-wrap: wrap;
  }

  @media (max-width:860px) {
      .wrap {
          padding: 0 22px;
      }

      .navlinks {
          display: none;
      }

      .hero .wrap {
          grid-template-columns: 1fr;
      }

      .portrait-frame {
          order: -1;
          max-width: 280px;
          margin: 0 auto;
      }

      .vm-grid {
          grid-template-columns: 1fr;
          gap: 36px;
      }

      .vm-col:first-child {
          border-right: none;
          border-bottom: 1px solid var(--line-light);
          padding-bottom: 36px;
      }

      .vm-col {
          padding: 0;
      }

      .journey .wrap {
          grid-template-columns: 1fr;
          gap: 40px;
      }

      .cards {
          grid-template-columns: 1fr;
      }

      .panel {
          grid-template-columns: 1fr;
      }

      .panel-logo {
          width: 140px;
      }

      .rec-item {
          grid-template-columns: 1fr;
          gap: 6px;
      }

      .associate .wrap {
          grid-template-columns: 1fr;
          gap: 44px;
      }

      footer .wrap {
          flex-direction: column;
          align-items: flex-start;
      }
  }

  /* ---------- DOCTORATE PORTFOLIO REFRESH ---------- */
  :root {
      --ink: #10243a;
      --ink-2: #193a57;
      --paper: #f7f9f8;
      --paper-2: #e9efee;
      --teal: #147d78;
      --teal-deep: #0d5d5b;
      --ochre: #c5e36d;
      --slate: #465665;
      --mist: #d6e5e2;
      --line: rgba(16, 36, 58, 0.15);
      --line-light: rgba(247, 249, 248, 0.2);
  }

  body,
  .btn,
  .field input,
  .field select,
  .field textarea {
      font-family: 'DM Sans', sans-serif;
  }

  h1,
  h2,
  h3,
  .brand,
  .hero .subhead,
  .vm-col p,
  .panel-tag,
  .portrait-monogram,
  .conviction .pullquote,
  .conviction .closing,
  .india .closing,
  .rec-title {
      font-family: 'DM Sans', sans-serif;
      letter-spacing: 0;
  }

  h1,
  h2,
  h3 {
      font-weight: 600;
  }

  .eyebrow,
  .vm-label,
  .tl-year,
  .rec-role,
  .field label,
  footer .contact,
  .tabbtn,
  .portrait-topline,
  .hero-kicker {
      font-family: 'DM Sans', sans-serif;
  }

  nav {
      background: rgba(247, 249, 248, 0.9);
  }

  .brand {
      font-weight: 700;
  }

  .brand {
      white-space: nowrap;
  }

  .brand .ring {
      border-color: var(--teal);
  }

  .brand .ring::after {
      background: var(--ochre);
  }

  .navlinks a:hover {
      border-color: var(--teal);
  }

  .btn {
      border-radius: 999px;
      padding: 11px 23px;
  }

  .btn-fill {
      box-shadow: 0 7px 18px rgba(20, 125, 120, .18);
      transition: transform .2s, background .2s;
  }

  .btn-fill:hover {
      transform: translateY(-2px);
  }

  .hero {
      min-height: 86vh;
      padding: 74px 0 92px;
      background-color: var(--paper);
      background-image: linear-gradient(rgba(16, 36, 58, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(16, 36, 58, .045) 1px, transparent 1px);
      background-size: 42px 42px;
  }

  .hero .wrap {
      gap: 86px;
  }

  .hero-kicker {
      color: var(--teal);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-bottom: 22px;
  }

  .hero h1 {
      font-size: clamp(38px, 5vw, 50px);
      line-height: 1.03;
      max-width: 680px;
  }

  .hero .subhead {
      font-size: 18px;
      font-weight: 500;
      font-style: normal;
      color: var(--ink-2);
  }

  .portrait-frame {
      background: var(--ink);
      border-radius: 4px;
      box-shadow: 18px 18px 0 var(--ochre);
  }

  .portrait-frame img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center bottom;
      z-index: 1;
  }

  .portrait-frame::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(145deg, rgba(20, 125, 120, .8), transparent 42%);
      z-index: 2;
  }

  .portrait-topline {
      position: absolute;
      z-index: 3;
      top: 20px;
      left: 22px;
      right: 22px;
      display: flex;
      justify-content: space-between;
      color: var(--paper);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
  }

  .portrait-caption {
      z-index: 3;
      background: linear-gradient(to top, rgba(16, 36, 58, .95), transparent);
      padding: 45px 22px 20px;
      font-family: 'DM Sans', sans-serif;
      letter-spacing: 0;
      text-transform: none;
      display: flex;
      flex-direction: column;
      gap: 3px;
  }

  .portrait-caption strong {
      color: white;
      font-size: 30px;
  }

  .portrait-caption span {
      color: var(--mist);
      font-size: 18px;
  }

  .portrait-stamp {
      position: absolute;
      z-index: 3;
      right: 18px;
      top: 52px;
      color: var(--ochre);
      font-size: 30px;
      font-weight: 700;
  }

  .vm {
      padding: 92px 0;
      background: var(--ink);
  }

  .vm-col p {
      font-size: clamp(19px, 2vw, 18px);
      font-weight: 500;
  }
  #vision .eyebrow{
        font-size: 40px;
    font-weight: 800;
    color: #fff;
  }
 #vision .vm-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 26px;
  }
  .vm-label {
      color: var(--ochre);
      font-weight: 700;
  }

  .journey,
  .eco,
  .record {
      background: var(--paper);
  }

  .journey-side {
      min-width: 0;
  }

  .research-image {
      margin-bottom: 42px;
      position: relative;
  }

  .research-image img {
      display: block;
      width: 100%;
      aspect-ratio: 16 / 8;
      object-fit: cover;
      filter: saturate(.72);
      border-radius: 4px;
  }

  .research-image span {
      position: absolute;
      left: 14px;
      bottom: 12px;
      padding: 5px 9px;
      background: var(--paper);
      color: var(--ink);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
  }

  .timeline {
      padding-left: 24px;
  }

 .tl-item::before {
    left: -31px;
    background: var(--paper);
    border-color: var(--teal);
}

  .practice {
      background: var(--paper-2);
  }

  .card {
      background: var(--paper-2);
      padding: 38px;
      transition: background .25s, transform .25s;
  }

  .card:hover {
      background: var(--paper);
      transform: translateY(-4px);
  }

  .card .num {
      color: var(--teal);
      font-weight: 700;
  }

  .eco {
      background: #f0f5f3;
  }

  .panel-logo {
      background: var(--ink);
      border-radius: 4px;
      font-family: 'DM Sans', sans-serif;
      font-weight: 700;
  }

  .panel-tag {
      font-weight: 600;
      font-style: normal;
  }

  .conviction {
      background: var(--ink);
  }

  .pullquote {
      color: var(--ochre);
      font-weight: 600;
  }

  .india {
      background: var(--teal);
  }

  .india .eyebrow,
  .india h2,
  .india p,
  .india .closing {
      color: var(--paper);
  }

  .record {
      background: var(--paper);
  }

  .rec-role {
      color: var(--teal);
      font-weight: 700;
  }

  .formcard {
      border-radius: 4px;
      box-shadow: 12px 12px 0 var(--ochre);
  }

  .field input:focus,
  .field select:focus,
  .field textarea:focus {
      outline: 2px solid var(--teal);
      outline-offset: 1px;
  }

  .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .7s ease, transform .7s ease;
  }

  .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
  }

  .reveal-delay {
      transition-delay: .12s;
  }

  @media (prefers-reduced-motion: reduce) {
      html {
          scroll-behavior: auto;
      }

      .reveal {
          opacity: 1;
          transform: none;
          transition: none;
      }

      .btn-fill,
      .card {
          transition: none;
      }
  }

  @media (max-width:860px) {
      .hero {
          padding-top: 48px;
      }

      .hero .wrap {
          gap: 52px;
      }

      .portrait-frame {
          width: 100%;
          box-shadow: 10px 10px 0 var(--ochre);
      }

      .research-image {
          margin-bottom: 34px;
      }

      .formcard {
          box-shadow: 7px 7px 0 var(--ochre);
      }
  }

  @media (min-width:861px) and (max-width:1120px) {
      .navlinks {
          gap: 18px;
      }

      .navwrap {
          padding-left: 24px;
          padding-right: 24px;
      }

      .navwrap>.btn {
          padding-left: 16px;
          padding-right: 16px;
      }
  }

  #journey .eyebrow,#practice .eyebrow{
    font-size: 18px;
    font-weight: 900;
    
  }