  :root {
    --ink: #0f1c14;
    --pine: #1a3c28;
    --forest: #2d5a3f;
    --sage: #6b8f71;
    --mist: #b8c9b5;
    --snow: #f4f7f3;
    --stone: #e8ece7;
    --warm: #f9f7f4;
    --accent: #c5a55a;
    --text: #3a4a3e;
    --text-light: #6a7a6e;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--warm);
    overflow-x: hidden;
  }

  body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 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.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
  }

  /* ── Top Nav ── */
  .top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(249, 247, 244, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--stone);
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
  }

  .top-nav-logo {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pine);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
  }

  .top-nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  .top-nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s;
  }

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

  .top-nav-links a.active {
    color: var(--pine);
    border-bottom: 2px solid var(--pine);
    padding-bottom: 2px;
  }


  .hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
  }

  .hamburger svg {
    width: 24px;
    height: 24px;
    stroke: var(--pine);
    stroke-width: 2;
    stroke-linecap: round;
  }

  @media (max-width: 768px) {
    .hamburger {
      display: block;
    }

    .top-nav-links {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: rgba(249, 247, 244, 0.98);
      backdrop-filter: blur(10px);
      flex-direction: column;
      padding: 1rem 2rem 1.5rem;
      gap: 0.8rem;
      border-bottom: 1px solid var(--stone);
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }

    .top-nav-links.open {
      display: flex;
    }

    .top-nav-links a {
      font-size: 0.85rem;
      padding: 0.4rem 0;
    }
  }

  /* ── Hero ── */
  .hero {
    min-height: 82vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5rem 2rem 3rem;
    position: relative;
    background: linear-gradient(180deg, var(--snow) 0%, var(--warm) 100%);
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--mist), transparent);
  }

  .logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1.2s ease-out 0.2s forwards;
  }

  .hero-logo {
    width: clamp(220px, 32vw, 380px);
    height: auto;
    display: block;
  }

  .hero-intro {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 900px;
    text-align: left;
    opacity: 0;
    animation: fadeUp 1.2s ease-out 0.5s forwards;
  }

  .hero-headshot {
    flex-shrink: 0;
  }

  .hero-headshot img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    box-shadow: 0 8px 30px rgba(15, 28, 20, 0.15);
    border: 3px solid var(--mist);
  }

  .hero-text {
    flex: 1;
  }

  .hero-tagline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    font-weight: 400;
    color: var(--forest);
    line-height: 1.5;
    letter-spacing: 0.02em;
    margin-bottom: 0.8rem;
  }

  .hero-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--pine);
    margin-bottom: 0.3rem;
  }

  .hero-title {
    font-size: 0.85rem;
    color: var(--text-light);
    letter-spacing: 0.05em;
  }

  .hero-sub {
    margin-top: 2rem;
    font-size: 0.95rem;
    color: var(--text-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0;
    animation: fadeUp 1.2s ease-out 0.9s forwards;
    text-align: center;
  }

  .cta-row {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 1.2s ease-out 1.2s forwards;
  }

  .cta-btn {
    display: inline-block;
    padding: 0.9rem 2.4rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--pine);
    color: var(--pine);
    background: transparent;
    transition: all 0.4s ease;
    cursor: pointer;
  }

  .cta-btn:hover {
    background: var(--pine);
    color: var(--snow);
  }

  .cta-btn.primary {
    background: var(--pine);
    color: var(--snow);
  }

  .cta-btn.primary:hover {
    background: var(--forest);
    border-color: var(--forest);
  }

  /* ── Sections ── */
  section {
    padding: 5rem 2rem;
    max-width: 900px;
    margin: 0 auto;
  }

  .section-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
    font-weight: 600;
    margin-bottom: 1rem;
  }

  .section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 500;
    color: var(--pine);
    margin-bottom: 2rem;
    line-height: 1.25;
  }

  .section-body {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text);
    max-width: 720px;
  }

  .section-body p + p {
    margin-top: 1.2rem;
  }


  /* ── Problems section ── */
  .problems-section {
    background: var(--pine);
    max-width: 100%;
    padding: 5rem 2rem;
  }

  .problems-inner {
    max-width: 900px;
    margin: 0 auto;
  }

  .problems-section .section-label {
    color: var(--mist);
  }

  .problems-section .section-title {
    color: var(--snow);
  }

  .problems-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .problem-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--mist);
  }

  .problem-item::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: var(--accent);
    border-radius: 50%;
    margin-top: 0.5rem;
  }

  @media (max-width: 680px) {
    .problems-list {
      grid-template-columns: 1fr;
    }
  }



  .blog-post-images {
    display: flex;
    gap: 0.8rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
  }

  .blog-post-images img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(15, 28, 20, 0.1);
  }

  .blog-post-images.single img {
    max-width: 100%;
  }

  .blog-post-images.multi img {
    flex: 1;
    min-width: 150px;
    max-width: 48%;
    object-fit: cover;
  }

  .blog-card-thumb {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
  }

  /* ── Blog section ── */
  .blog-section {
    background: var(--snow);
    max-width: 100%;
    padding: 5rem 2rem;
  }

  .blog-inner {
    max-width: 900px;
    margin: 0 auto;
  }

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

  .blog-card {
    background: var(--warm);
    border: 1px solid var(--stone);
    border-radius: 6px;
    padding: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .blog-card:hover {
    box-shadow: 0 4px 20px rgba(15, 28, 20, 0.08);
    border-color: var(--mist);
  }

  .blog-card-date {
    font-size: 0.75rem;
    color: var(--sage);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.6rem;
  }

  .blog-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--pine);
    margin-bottom: 0.6rem;
    line-height: 1.3;
  }

  .blog-card-excerpt {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1rem;
  }

  .blog-card-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--forest);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  /* Blog post overlay */
  .blog-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 28, 20, 0.7);
    z-index: 2000;
    overflow-y: auto;
    padding: 3rem 2rem;
  }

  .blog-overlay.active {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }

  .blog-post {
    background: var(--warm);
    max-width: 700px;
    width: 100%;
    border-radius: 8px;
    padding: 3rem;
    position: relative;
    margin: 2rem auto;
  }

  .blog-post-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-family: inherit;
    line-height: 1;
  }

  .blog-post-close:hover {
    color: var(--pine);
  }

  .blog-post-date {
    font-size: 0.75rem;
    color: var(--sage);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.8rem;
  }

  .blog-post h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--pine);
    margin-bottom: 1.5rem;
    line-height: 1.3;
  }

  .blog-post-body {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text);
    white-space: pre-line;
  }

  @media (max-width: 680px) {
    .blog-grid {
      grid-template-columns: 1fr;
    }
    .blog-post {
      padding: 2rem 1.5rem;
    }
  }

  /* ── Beyond section ── */
  .beyond-content {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 3rem;
    align-items: center;
  }

  .beyond-photo img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(15, 28, 20, 0.12);
  }

  /* ── Track Record ── */
  .track-section {
    background: var(--snow);
    max-width: 100%;
    padding: 5rem 2rem;
  }

  .track-inner {
    max-width: 900px;
    margin: 0 auto;
  }

  .track-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
  }

  .track-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }

  .track-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--pine);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
  }

  .track-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--snow);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .track-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text);
  }

  /* ── Services ── */
  .services-section {
    max-width: 100%;
    padding: 5rem 2rem;
  }

  .services-inner {
    max-width: 900px;
    margin: 0 auto;
  }

  .service-group {
    margin-top: 3rem;
  }

  .service-group + .service-group {
    margin-top: 3.5rem;
  }

  .service-group-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--pine);
    margin-bottom: 1.2rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--mist);
    display: flex;
    align-items: center;
    gap: 0.7rem;
  }

  .service-group-title svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    stroke: var(--forest);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--mist);
    border: 1px solid var(--mist);
  }

  .service-card {
    background: var(--warm);
    padding: 2rem;
    transition: background 0.3s ease;
  }

  .services-section .service-card {
    background: var(--warm);
  }

  .service-card:hover {
    background: var(--snow);
  }

  .service-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--pine);
    margin-bottom: 0.6rem;
  }

  .service-card p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-light);
  }

  /* ── Divider ── */
  .divider {
    text-align: center;
    padding: 2.5rem 0;
  }

  .divider span {
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--mist);
  }

  /* ── Contact ── */
  .contact-section {
    text-align: center;
    padding: 5rem 2rem 7rem;
    max-width: 700px;
    margin: 0 auto;
  }

  .contact-details {
    margin-top: 2rem;
    font-size: 1rem;
    line-height: 2;
    color: var(--text);
  }

  .contact-details a {
    color: var(--forest);
    text-decoration: none;
    border-bottom: 1px solid var(--mist);
    transition: border-color 0.3s;
  }

  .contact-details a:hover {
    border-color: var(--forest);
  }


  .social-icons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1.5rem;
  }

  .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--forest);
    border: 1.5px solid var(--mist);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .social-icons a:hover {
    color: var(--snow);
    background: var(--pine);
    border-color: var(--pine);
  }

  .social-icons svg {
    width: 18px;
    height: 18px;
  }

  /* ── Footer ── */
  footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 0.05em;
    border-top: 1px solid var(--stone);
  }

  /* ── Animations ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── Responsive ── */
  @media (max-width: 680px) {
    .services-grid {
      grid-template-columns: 1fr;
    }
    .track-grid {
      grid-template-columns: 1fr;
    }
    .hero-intro {
      flex-direction: column;
      text-align: center;
      gap: 1.5rem;
    }
    .hero-headshot img {
      width: 140px;
      height: 140px;
    }
    .beyond-content {
      grid-template-columns: 1fr;
    }
    .beyond-photo {
      max-width: 220px;
      margin: 0 auto;
      order: -1;
    }
    section {
      padding: 4rem 1.5rem;
    }
  }