:root {
    --green: #0e5a3b;
    --green-dark: #06402a;
    --beige: #d7c79b;
    --beige-light: #efe4c7;
    --text-main: #152321;
    --text-muted: #4c5b59;
    --white: #ffffff;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
  }
  
  /* RESET-ish */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-main);
    background-color: #f7f5f0;
    line-height: 1.6;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  a {
    color: var(--green-dark);
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* LAYOUT HELPERS */
  .container {
    width: 100%;
    max-width: 1100px;
    padding: 0 1.5rem;
    margin: 0 auto;
  }
  
  .narrow {
    max-width: 800px;
  }
  
  .center {
    text-align: center;
  }
  
  .mt-lg {
    margin-top: 2rem;
  }
  
  /* HEADER */
  .site-header {
    background: linear-gradient(90deg, var(--green-dark), var(--green));
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 10;
  }
  
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.5rem;
  }
  
  .logo-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--white);
  }
  
  .logo-group:hover {
    text-decoration: none;
  }
  
  .logo-img {
    width: 46px;
    height: 46px;
    object-fit: contain;
  }
  
  .logo-text {
    display: flex;
    flex-direction: column;
  }
  
  .logo-main {
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: 0.03em;
  }
  
  .logo-sub {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }
  
  /* NAV */
  .main-nav {
    display: flex;
    gap: 1rem;
  }
  
  .nav-link {
    font-size: 0.95rem;
    color: #f3efe4;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease;
  }
  
  .nav-link:hover {
    background: rgba(255, 255, 255, 0.18);
  }
  
  .nav-link.active {
    background: var(--beige);
    color: var(--green-dark);
  }
  
  /* HERO */
  .hero {
    background: radial-gradient(circle at top left, #1c7a54, var(--green-dark));
    color: var(--white);
    padding: 3.5rem 0 3rem;
  }
  
  .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
    gap: 2.5rem;
    align-items: center;
  }
  
  .hero-text h1 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin: 0.2rem 0 0.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    max-width: 34rem;
  }
  
  .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    opacity: 0.9;
  }
  
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1.5rem 0 1rem;
  }
  
  .hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.8rem;
  }
  
  .hero-tags span {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0.3rem 0.7rem;
  }
  
  /* HERO CARD */
  .hero-card {
    background: var(--beige-light);
    color: var(--text-main);
    padding: 1.5rem 1.6rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
  }
  
  .hero-card h2 {
    margin-top: 0;
    margin-bottom: 0.6rem;
    font-size: 1.2rem;
  }
  
  .hero-card p {
    font-size: 0.9rem;
    margin: 0.4rem 0;
  }
  
  .clinic-name {
    font-weight: 600;
  }
  
  /* SECTIONS */
  .section {
    padding: 3rem 0;
    background: #f7f5f0;
  }
  
  .section.muted {
    background: #f0ebdf;
  }
  
  .section-title {
    text-align: center;
    margin: 0 0 2rem;
    font-size: 1.6rem;
  }
  
  /* GRID & CARDS */
  .grid {
    display: grid;
    gap: 1.5rem;
  }
  
  .grid.three {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  
  .card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.3rem;
    box-shadow: var(--shadow-soft);
    font-size: 0.95rem;
  }
  
  /* CREDENTIAL SECTION */
  .credentials {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
  }
  
  .big-text {
    font-weight: 500;
    margin-bottom: 0.5rem;
  }
  
  .credential-list {
    list-style: none;
    padding-left: 1.2rem;
    margin: 0;
  }
  
  .credential-list li::marker {
    content: "• ";
  }
  
  /* PAGE HERO */
  .page-hero {
    padding: 2.5rem 0 1.5rem;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
  }
  
  .page-hero h1 {
    margin-bottom: 0.6rem;
  }
  
  .page-hero p {
    margin-top: 0;
  }
  
  /* ABOUT LAYOUT */
  .two-col {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
    gap: 2rem;
  }
  
  .bullet-list {
    margin-top: 0.7rem;
    padding-left: 1.1rem;
  }
  
  .bullet-list li {
    margin-bottom: 0.35rem;
  }
  
  /* CONTACT LAYOUT */
  .contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr);
    gap: 2rem;
    align-items: flex-start;
  }
  
  .contact-info {
    font-size: 0.96rem;
  }
  
  .contact-form-wrapper {
    background: var(--white);
    padding: 1.6rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
  }
  
  .contact-form-wrapper h2 {
    margin-top: 0;
  }
  
  /* FORM */
  .contact-form {
    margin-top: 1rem;
  }
  
  .form-row {
    margin-bottom: 0.9rem;
    display: flex;
    flex-direction: column;
  }
  
  label {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
  }
  
  input,
  textarea {
    border-radius: var(--radius-sm);
    border: 1px solid #cbbfa3;
    padding: 0.5rem 0.55rem;
    font: inherit;
    outline: none;
    background-color: #fbf8f1;
  }
  
  input:focus,
  textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 2px rgba(14, 90, 59, 0.14);
    background-color: #fff;
  }
  
  textarea {
    resize: vertical;
  }
  
  .form-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0.4rem 0 1rem;
  }
  
  /* BUTTONS */
  .btn {
    display: inline-block;
    border-radius: 999px;
    border: none;
    padding: 0.55rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.2s ease, color 0.2s ease;
  }
  
  .btn.primary {
    background: var(--beige);
    color: var(--green-dark);
    box-shadow: var(--shadow-soft);
  }
  
  .btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  }
  
  .btn.ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: inherit;
  }
  
  .section .btn.ghost {
    border-color: var(--green-dark);
    color: var(--green-dark);
  }
  
  .btn.ghost.small {
    padding: 0.35rem 0.9rem;
    font-size: 0.85rem;
  }
  
  .btn.fullwidth {
    width: 100%;
    margin-top: 0.8rem;
  }
  
  /* FOOTER */
  .site-footer {
    background: #1f2925;
    color: #e8e2d4;
    padding: 1.5rem 0 1.8rem;
    font-size: 0.85rem;
  }
  
  .footer-inner {
    text-align: center;
  }
  
  .footer-small {
    max-width: 650px;
    margin: 0.4rem auto 0;
    color: #a19a8d;
  }
  
  /* RESPONSIVE */
  @media (max-width: 800px) {
    .hero-inner,
    .two-col,
    .contact-layout {
      grid-template-columns: 1fr;
    }
  
    .hero {
      padding-top: 2.3rem;
    }
  
    .header-inner {
      flex-direction: column;
      gap: 0.6rem;
      align-items: flex-start;
    }
  
    .main-nav {
      width: 100%;
      justify-content: flex-start;
    }
  }
  
  @media (max-width: 500px) {
    .header-inner {
      padding-inline: 1rem;
    }
  
    .hero {
      padding-inline: 0;
    }
  
    .hero-inner {
      padding-inline: 1.5rem;
    }
  }
  