﻿:root {
      --teal-950: #062e2c;
      --teal-900: #0a4541;
      --teal-800: #0d5c57;
      --teal-700: #12756f;
      --teal-100: #d8efec;
      --teal-50: #eef7f6;
      --sand: #f3efe6;
      --sand-deep: #e8e1d2;
      --ink: #14201f;
      --ink-muted: #4a5c5a;
      --white: #ffffff;
      --accent: #c45c26;
      --accent-hover: #a84b1c;
      --line: rgba(20, 32, 31, 0.12);
      --shadow: 0 18px 50px rgba(6, 46, 44, 0.12);
      --radius: 12px;
      --nav-h: 72px;
      --ease: cubic-bezier(0.22, 1, 0.36, 1);
      --font-display: "Fraunces", Georgia, serif;
      --font-body: "Outfit", system-ui, sans-serif;
    }

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

    html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }

    body {
      font-family: var(--font-body);
      color: var(--ink);
      background: var(--sand);
      line-height: 1.65;
      font-size: 1.05rem;
      -webkit-font-smoothing: antialiased;
    }

    img { max-width: 100%; height: auto; display: block; }
    a { color: var(--teal-800); text-decoration-thickness: 1px; text-underline-offset: 3px; }
    a:hover { color: var(--teal-950); }
    ul { padding-left: 1.15rem; }
    li { margin-bottom: 0.4rem; }

    .wrap {
      width: min(1120px, calc(100% - 2.5rem));
      margin-inline: auto;
    }

    .wrap-narrow { width: min(760px, calc(100% - 2.5rem)); margin-inline: auto; }

    /* â€”â€” Nav â€”â€” */
    .nav {
      position: fixed;
      inset: 0 0 auto;
      z-index: 1000;
      height: var(--nav-h);
      display: flex;
      align-items: center;
      background: rgba(243, 239, 230, 0.82);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid transparent;
      transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
    }

    .nav.scrolled {
      background: rgba(255, 255, 255, 0.94);
      border-bottom-color: var(--line);
      box-shadow: 0 8px 30px rgba(6, 46, 44, 0.06);
    }

    .nav-inner {
      width: min(1120px, calc(100% - 2rem));
      margin-inline: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
      color: var(--ink);
    }

    .brand img {
      width: 48px;
      height: 48px;
      object-fit: cover;
      border-radius: 10px;
    }

    .brand-text {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 1.15rem;
      letter-spacing: -0.02em;
      line-height: 1.15;
    }

    .brand-text span {
      display: block;
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 0.72rem;
      letter-spacing: 0.04em;
      color: var(--ink-muted);
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 0.15rem;
      list-style: none;
      padding: 0;
    }

    .nav-links a {
      display: block;
      padding: 0.55rem 0.85rem;
      color: var(--ink);
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      border-radius: 999px;
      transition: background 0.2s ease, color 0.2s ease;
    }

    .nav-links a:hover,
    .nav-links a.active {
      background: var(--teal-50);
      color: var(--teal-900);
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      margin-left: 0.35rem;
      padding: 0.55rem 1.1rem !important;
      background: var(--teal-800) !important;
      color: var(--white) !important;
    }

    .nav-cta:hover {
      background: var(--teal-950) !important;
      color: var(--white) !important;
    }

    .nav-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      border-radius: 10px;
      background: var(--white);
      cursor: pointer;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
    }

    .nav-toggle span {
      display: block;
      width: 18px;
      height: 2px;
      background: var(--ink);
      transition: transform 0.25s var(--ease), opacity 0.2s ease;
    }

    .nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
    .nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* â€”â€” Hero â€”â€” */
    .hero {
      position: relative;
      min-height: 100vh;
      min-height: 100dvh;
      display: grid;
      align-items: end;
      color: var(--white);
      overflow: hidden;
      background: var(--teal-950);
    }

    .hero-media {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(6, 46, 44, 0.35) 0%, rgba(6, 46, 44, 0.55) 45%, rgba(6, 46, 44, 0.92) 100%),
        url("../images/shutterstock-1687255636___13135204721.webp") center / cover no-repeat;
      transform: scale(1.04);
      animation: heroZoom 18s var(--ease) forwards;
    }

    @keyframes heroZoom {
      to { transform: scale(1); }
    }

    .hero-content {
      position: relative;
      z-index: 1;
      width: min(1120px, calc(100% - 2.5rem));
      margin: 0 auto;
      padding: calc(var(--nav-h) + 4rem) 0 4.5rem;
      animation: riseIn 0.9s var(--ease) both;
    }

    @keyframes riseIn {
      from { opacity: 0; transform: translateY(28px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .hero-brand {
      font-family: var(--font-display);
      font-size: clamp(2.6rem, 7vw, 4.6rem);
      font-weight: 600;
      letter-spacing: -0.03em;
      line-height: 1.05;
      margin-bottom: 1rem;
      max-width: 12ch;
    }

    .hero h1 {
      font-family: var(--font-body);
      font-size: clamp(1.15rem, 2.4vw, 1.45rem);
      font-weight: 400;
      line-height: 1.45;
      max-width: 34ch;
      color: rgba(255, 255, 255, 0.92);
      margin-bottom: 0.75rem;
    }

    .hero-lead {
      max-width: 42ch;
      color: rgba(255, 255, 255, 0.78);
      font-weight: 300;
      margin-bottom: 2rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.85rem;
      align-items: center;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.9rem 1.35rem;
      border-radius: 999px;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.98rem;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: transform 0.2s var(--ease), background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    }

    .btn:hover { transform: translateY(-1px); }

    .btn-primary {
      background: var(--accent);
      color: var(--white);
      box-shadow: 0 10px 28px rgba(196, 92, 38, 0.35);
    }

    .btn-primary:hover {
      background: var(--accent-hover);
      color: var(--white);
    }

    .btn-ghost {
      background: rgba(255, 255, 255, 0.12);
      color: var(--white);
      border: 1px solid rgba(255, 255, 255, 0.28);
      backdrop-filter: blur(8px);
    }

    .btn-ghost:hover {
      background: rgba(255, 255, 255, 0.2);
      color: var(--white);
    }

    .btn-solid {
      background: var(--teal-800);
      color: var(--white);
    }

    .btn-solid:hover {
      background: var(--teal-950);
      color: var(--white);
    }

    /* â€”â€” Sections â€”â€” */
    section {
      padding: clamp(3.5rem, 7vw, 5.5rem) 0;
    }

    .section-kicker {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--teal-700);
      margin-bottom: 0.75rem;
    }

    h2 {
      font-family: var(--font-display);
      font-size: clamp(1.85rem, 3.5vw, 2.55rem);
      font-weight: 600;
      letter-spacing: -0.02em;
      line-height: 1.15;
      color: var(--teal-950);
      margin-bottom: 1.25rem;
    }

    h3 {
      font-family: var(--font-display);
      font-size: 1.35rem;
      font-weight: 600;
      color: var(--teal-900);
      margin: 2rem 0 0.65rem;
    }

    h4 {
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--teal-900);
      margin: 1.75rem 0 0.85rem;
    }

    p + p { margin-top: 1rem; }

    .muted { color: var(--ink-muted); }

    #start {
      background:
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(19, 117, 111, 0.08), transparent 55%),
        var(--white);
    }

    .intro-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: clamp(2rem, 5vw, 3.5rem);
      align-items: start;
    }

    .intro-aside {
      position: sticky;
      top: calc(var(--nav-h) + 1.5rem);
      padding: 1.5rem;
      background: var(--teal-50);
      border-radius: var(--radius);
      border: 1px solid rgba(13, 92, 87, 0.12);
    }

    .intro-aside h3 {
      margin-top: 0;
      font-size: 1.15rem;
    }

    .contact-lines {
      list-style: none;
      padding: 0;
      margin: 1rem 0 1.35rem;
      font-size: 0.98rem;
    }

    .contact-lines li {
      margin-bottom: 0.65rem;
      padding-bottom: 0.65rem;
      border-bottom: 1px solid rgba(13, 92, 87, 0.12);
    }

    .contact-lines li:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .contact-lines strong {
      display: block;
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--ink-muted);
      font-weight: 600;
      margin-bottom: 0.15rem;
    }

    .book-link img {
      width: 180px;
      height: auto;
      border-radius: 8px;
    }

    .note-pill {
      display: inline-block;
      margin-top: 1.25rem;
      padding: 0.55rem 0.9rem;
      background: var(--sand);
      border-radius: 8px;
      font-size: 0.9rem;
      color: var(--ink-muted);
    }

    #about {
      background:
        linear-gradient(135deg, var(--teal-900), var(--teal-950));
      color: rgba(255, 255, 255, 0.88);
    }

    #about h2 { color: var(--white); }
    #about .section-kicker { color: rgba(255, 255, 255, 0.65); }

    .mission {
      font-size: 1.15rem;
      font-weight: 300;
      max-width: 58ch;
      line-height: 1.75;
    }

    #team {
      background: var(--sand);
      position: relative;
      overflow: hidden;
    }

    #team::before {
      content: "";
      position: absolute;
      inset: auto -10% -30% auto;
      width: 55%;
      height: 70%;
      background: url("../images/our_team.jpg") center / cover no-repeat;
      opacity: 0.12;
      filter: grayscale(1);
      pointer-events: none;
      mask-image: linear-gradient(to left, black, transparent);
    }

    .team-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
      position: relative;
    }

    .person {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 0.85rem 1rem;
      padding: 0.85rem 0;
      border-bottom: 1px solid var(--line);
      align-items: baseline;
    }

    .person:last-child { border-bottom: none; }

    .person-role {
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--ink-muted);
      min-width: 9rem;
    }

    .person-name {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--teal-950);
    }

    #services {
      background: var(--white);
    }

    .services-list {
      columns: 2;
      column-gap: 2.5rem;
      list-style: none;
      padding: 0;
      margin-top: 0.5rem;
    }

    .services-list li {
      break-inside: avoid;
      padding: 0.7rem 0;
      border-bottom: 1px solid var(--line);
      padding-left: 1.35rem;
      position: relative;
      margin: 0;
    }

    .services-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 1.15rem;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--teal-700);
    }

    #fees, #fees-explanation {
      background: var(--teal-50);
    }

    #fees-explanation { padding-top: 0; }

    .fees-table-wrap {
      overflow-x: auto;
      border-radius: var(--radius);
      border: 1px solid rgba(13, 92, 87, 0.15);
      background: var(--white);
      box-shadow: var(--shadow);
    }

    table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.98rem;
      min-width: 520px;
    }

    thead th {
      text-align: left;
      background: var(--teal-900);
      color: var(--white);
      padding: 1rem 1.15rem;
      font-weight: 600;
      font-size: 0.85rem;
      letter-spacing: 0.03em;
      text-transform: uppercase;
    }

    tbody td {
      padding: 0.95rem 1.15rem;
      border-bottom: 1px solid var(--line);
    }

    tbody tr:last-child td { border-bottom: none; }
    tbody tr:nth-child(even) { background: rgba(238, 247, 246, 0.65); }

    .table-note {
      font-size: 0.85rem;
      color: var(--ink-muted);
      font-style: italic;
    }

    .policy-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem 2.5rem;
      margin-top: 0.5rem;
    }

    .policy-block h3 { margin-top: 0; }

    .bulk-list {
      list-style: none;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 0.55rem;
      margin: 0.75rem 0 1rem;
    }

    .bulk-list li {
      margin: 0;
      padding: 0.45rem 0.85rem;
      background: var(--white);
      border: 1px solid rgba(13, 92, 87, 0.15);
      border-radius: 999px;
      font-size: 0.92rem;
      font-weight: 500;
    }

    #contact {
      background:
        linear-gradient(180deg, var(--white) 0%, var(--sand) 100%);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: clamp(2rem, 5vw, 3.5rem);
      align-items: start;
    }

    .contact-panel {
      padding: 1.75rem;
      background: var(--teal-950);
      color: rgba(255, 255, 255, 0.88);
      border-radius: var(--radius);
    }

    .contact-panel h3 {
      color: var(--white);
      margin-top: 0;
    }

    .contact-panel a { color: #9fe0d8; }
    .contact-panel a:hover { color: var(--white); }

    .contact-panel .btn-primary {
      margin-top: 1.25rem;
      width: 100%;
    }

    .map-wrap {
      height: 380px;
      background: var(--teal-100);
    }

    .map-wrap iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
      filter: grayscale(0.15) contrast(1.02);
    }

    /* â€”â€” Footer â€”â€” */
    footer {
      background: var(--teal-950);
      color: rgba(255, 255, 255, 0.75);
      padding: 3.5rem 0 2rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap: 2.5rem;
      margin-bottom: 2.5rem;
    }

    .footer-brand {
      font-family: var(--font-display);
      font-size: 1.6rem;
      color: var(--white);
      font-weight: 600;
      margin-bottom: 0.65rem;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem 1.15rem;
      list-style: none;
      padding: 0;
      margin: 1.25rem 0 0;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      font-size: 0.95rem;
    }

    .footer-links a:hover { color: var(--white); }

    footer h4 {
      color: var(--white);
      font-size: 0.85rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin: 0 0 1rem;
      font-family: var(--font-body);
      font-weight: 600;
    }

    footer p { margin-bottom: 0.55rem; font-size: 0.95rem; }
    footer a { color: #9fe0d8; text-decoration: none; }
    footer a:hover { color: var(--white); }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      padding-top: 1.35rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.5);
    }

    .built-by a {
      color: rgba(255, 255, 255, 0.72);
      text-decoration: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.25);
      transition: color 0.2s ease, border-color 0.2s ease;
    }

    .built-by a:hover {
      color: var(--white);
      border-bottom-color: rgba(255, 255, 255, 0.7);
    }

    /* â€”â€” Cookie â€”â€” */
    .cookie {
      position: fixed;
      left: 1rem;
      right: 1rem;
      bottom: 1rem;
      z-index: 2000;
      max-width: 420px;
      margin-left: auto;
      padding: 1.15rem 1.25rem;
      background: var(--ink);
      color: rgba(255, 255, 255, 0.9);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      display: none;
      animation: riseIn 0.45s var(--ease) both;
    }

    .cookie.show { display: block; }
    .cookie p { font-size: 0.9rem; margin-bottom: 0.9rem; }
    .cookie a { color: #9fe0d8; }
    .cookie .btn { width: 100%; }

    /* â€”â€” Reveal â€”â€” */
    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    }

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

    /* â€”â€” Mobile â€”â€” */
    @media (max-width: 900px) {
      .intro-grid,
      .team-grid,
      .contact-grid,
      .policy-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .intro-aside { position: static; }

      .services-list { columns: 1; }

      .nav-toggle { display: flex; }

      .nav-links {
        position: fixed;
        inset: var(--nav-h) 0 auto;
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 16px 40px rgba(6, 46, 44, 0.1);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.35s var(--ease), opacity 0.25s ease;
      }

      .nav.open .nav-links {
        transform: none;
        opacity: 1;
        pointer-events: auto;
      }

      .nav-links a { padding: 0.85rem 1rem; }
      .nav-cta { margin-left: 0; justify-content: center; }

      .hero { min-height: 92vh; }
      .hero-brand { max-width: none; }
      #team::before { opacity: 0.06; width: 100%; mask-image: linear-gradient(to top, black, transparent); }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .hero-media { animation: none; transform: none; }
      .reveal { opacity: 1; transform: none; transition: none; }
      .hero-content { animation: none; }
    }

/* —— App downloads —— */
.app-downloads {
  margin-top: 1.25rem;
  padding: 1.15rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  max-width: 520px;
  backdrop-filter: blur(8px);
}

.app-downloads.light {
  background: var(--white);
  border-color: rgba(13, 92, 87, 0.15);
  box-shadow: var(--shadow);
  color: var(--ink);
  max-width: none;
}

.app-downloads h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: inherit;
}

.hero .app-downloads h3 { color: var(--white); }

.app-downloads p {
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0 0 0.85rem;
  opacity: 0.92;
}

.app-downloads.light p { color: var(--ink-muted); opacity: 1; }

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-bottom: 0.85rem;
}

.store-badges a {
  display: block;
  line-height: 0;
  text-decoration: none;
  transition: transform 0.2s var(--ease), opacity 0.2s ease;
}

.store-badges a:hover { transform: translateY(-2px); opacity: 0.9; }

.store-badges img {
  height: 44px;
  width: auto;
}

.clinic-code {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.clinic-code strong {
  font-family: var(--font-body);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.7rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.app-downloads.light .clinic-code strong {
  background: var(--teal-50);
  color: var(--teal-950);
  border: 1px solid rgba(13, 92, 87, 0.15);
}

.hero-actions { margin-bottom: 0.25rem; }

/* —— Bulk billed —— */
.bulk-banner {
  text-align: center;
  padding: clamp(3rem, 6vw, 4.5rem) 1.5rem;
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(19, 117, 111, 0.12), transparent 60%),
    var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(13, 92, 87, 0.12);
}

.bulk-banner .bulk-label {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--teal-900);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.bulk-banner p {
  max-width: 46ch;
  margin-inline: auto;
  color: var(--ink-muted);
}

#fees { background: var(--teal-50); }
#fees-explanation { background: var(--teal-50); padding-top: 0; }

/* —— Inner pages —— */
.page-hero {
  padding: calc(var(--nav-h) + 3.5rem) 0 3rem;
  background:
    linear-gradient(135deg, var(--teal-900), var(--teal-950));
  color: rgba(255, 255, 255, 0.88);
}

.page-hero .section-kicker { color: rgba(255, 255, 255, 0.65); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.page-hero .lead {
  max-width: 52ch;
  font-size: 1.1rem;
  font-weight: 300;
}

.page-content { background: var(--white); }

.profile-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.profile-photo {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, var(--teal-100), var(--sand-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  color: var(--ink-muted);
  font-size: 0.92rem;
  border: 1px solid var(--line);
  overflow: hidden;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
}

.tag {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background: var(--teal-50);
  border: 1px solid rgba(13, 92, 87, 0.12);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--teal-900);
}

.person-name a {
  color: inherit;
  text-decoration: none;
}

.person-name a:hover {
  color: var(--teal-700);
  text-decoration: underline;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.85rem;
  margin: 1.5rem 0 2.5rem;
  list-style: none;
  padding: 0;
}

.areas-grid li {
  margin: 0;
  padding: 1.1rem 1rem;
  background: var(--teal-50);
  border: 1px solid rgba(13, 92, 87, 0.12);
  border-radius: var(--radius);
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--teal-950);
}

.breadcrumb {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.88rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.65);
}

.breadcrumb a { color: #9fe0d8; text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.35rem;
  opacity: 0.5;
}

@media (max-width: 900px) {
  .profile-layout { grid-template-columns: 1fr; }
  .profile-photo { max-width: 280px; }
  .store-badges img { height: 40px; }
}
