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

    :root {
      --clay:        #A0695F;
      --teal:        #4A7C74;
      --amber:       #C4933A;
      --denim:       #3D5E7A;
      --clay-tint:   #C4897A;
      --teal-tint:   #7AADA6;
      --gold-tint:   #E8C97A;
      --bg:          #F6F0ED;
      --text:        #2C2220;
      --text-sec:    #8C7B6B;
      --divider:     #E8DDD8;
      --white:       #FDFAF8;

      --ff-head: 'Poppins', Georgia, serif;
      --ff-body: 'DM Sans', system-ui, sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--ff-body);
      font-size: 17px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }

    /* ── Layout ── */
    .container {
      max-width: 720px;
      margin: 0 auto;
      padding: 0 24px;
    }

    section { padding: 40px 0; }
    section + section { border-top: 1px solid var(--divider); }

    /* ── Type ── */
    h1 {
      font-family: var(--ff-head);
      font-size: clamp(2.4rem, 6vw, 3.8rem);
      font-weight: 400;
      line-height: 1.12;
      letter-spacing: -0.01em;
      color: var(--text);
    }
    h1 em { font-style: italic; color: var(--clay); }

    h2 {
      font-family: var(--ff-head);
      font-size: clamp(1.5rem, 4vw, 2rem);
      font-weight: 400;
      line-height: 1.25;
      color: var(--text);
      margin-bottom: 8px;
    }

    h3 {
      font-family: var(--ff-body);
      font-size: 1rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-sec);
      margin-bottom: 32px;
    }

    p { max-width: 65ch; text-wrap: pretty; }
    p + p { margin-top: 16px; }

    a { color: var(--clay); text-underline-offset: 3px; }
    a:hover { color: var(--teal); }
    a:focus-visible { outline: 2px solid var(--clay); outline-offset: 3px; border-radius: 2px; }

    /* ── Header / hero ── */
    .hero {
      padding: 80px 0 72px;
      border-bottom: 1px solid var(--divider);
    }

    .hero-eyebrow {
      font-family: var(--ff-body);
      font-size: 0.875rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .hero-eyebrow::before {
      content: '';
      display: inline-block;
      width: 28px;
      height: 2px;
      background: var(--teal);
      flex-shrink: 0;
    }

    .hero-intro {
      margin-top: 32px;
      font-size: 1.125rem;
      color: var(--text);
      max-width: 58ch;
      text-wrap: pretty;
    }

    .hero-tags {
      margin-top: 28px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .tag {
      display: inline-block;
      padding: 5px 14px;
      border-radius: 100px;
      border: 1px solid var(--divider);
      font-size: 0.875rem;
      color: var(--text-sec);
      background: transparent;
    }
    .tag--clay   { border-color: var(--clay-tint);  color: var(--clay); }
    .tag--teal   { border-color: var(--teal-tint);  color: var(--teal); }
    .tag--amber  { border-color: var(--gold-tint);  color: #96700B; }

    /* ── Services ── */
    .services-grid {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .service-card {
      background: var(--white);
      border: 1px solid var(--divider);
      border-radius: 8px;
      overflow: hidden;
      transition: border-color 0.15s;
    }
    .service-card:focus-within { border-color: var(--clay); }

    .service-summary-btn {
      width: 100%;
      text-align: left;
      padding: 24px 28px;
      background: none;
      border: none;
      cursor: pointer;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 16px;
      align-items: start;
      color: inherit;
      font-family: var(--ff-body);
    }
    .service-summary-btn:focus-visible {
      outline: 2px solid var(--clay);
      outline-offset: -2px;
      border-radius: 8px;
    }

    .service-title {
      font-family: var(--ff-head);
      font-size: 1.15rem;
      font-weight: 400;
      color: var(--text);
      margin-bottom: 6px;
      line-height: 1.3;
    }

    .service-blurb {
      font-size: 0.9375rem;
      color: var(--text-sec);
      line-height: 1.6;
      max-width: 56ch;
      text-wrap: pretty;
    }

    .expand-icon {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1px solid var(--divider);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
      transition: background 0.15s, border-color 0.15s, transform 0.25s;
      color: var(--text-sec);
    }
    .service-card.open .expand-icon {
      background: var(--clay);
      border-color: var(--clay);
      color: white;
      transform: rotate(45deg);
    }

    .service-detail {
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s;
      opacity: 0;
    }
    .service-card.open .service-detail {
      opacity: 1;
    }

    .service-detail-inner {
      padding: 0 28px 24px;
      border-top: 1px solid var(--divider);
    }

    .detail-label {
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-sec);
      margin-bottom: 12px;
      margin-top: 20px;
    }

    .detail-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .detail-list li {
      font-size: 0.9375rem;
      color: var(--text);
      padding-left: 18px;
      position: relative;
      text-wrap: pretty;
    }
    .detail-list li::before {
      content: '–';
      position: absolute;
      left: 0;
      color: var(--clay-tint);
    }
     .service-detail-inner p {
       margin-top: 20px;
       font-size: 0.9375rem;
       color: var(--text);
       position: relative;
       text-wrap: pretty;
     }

    /* ── Approach section ── */
    .approach-body { font-size: 1.0625rem; }
    .approach-body p { max-width: 60ch; }

    /* ── Practical info ── */
    .info-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid var(--divider);
    }

    @media (max-width: 540px) {
      .info-grid { grid-template-columns: 1fr; }
    }

    .info-cell {
      background: var(--white);
      padding: 22px 24px;
    }
    .info-cell-label {
      font-size: 0.8125rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      color: var(--text-sec);
      margin-bottom: 6px;
    }
    .info-cell-value {
      font-size: 0.9375rem;
      color: var(--text);
      line-height: 1.5;
    }
    .info-cell-value strong {
      font-size: 1.125rem;
      font-weight: 500;
      color: var(--text);
    }

    /* ── What I don't do ── */
    .limits-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 4px;
    }
    .limits-list li {
      font-size: 1rem;
      color: var(--text);
      padding-left: 20px;
      position: relative;
    }
    .limits-list li::before {
      content: '×';
      position: absolute;
      left: 0;
      color: var(--text-sec);
      font-weight: 500;
    }

    /* ── Contact ── */
    .contact-block {
      background: var(--clay);
      border-radius: 12px;
      padding: 48px 40px;
      color: var(--white);
    }
    .contact-block h2 {
      color: var(--white);
      margin-bottom: 16px;
    }
    .contact-block p {
      color: rgba(253,250,248,0.85);
      font-size: 1.0625rem;
      max-width: 52ch;
    }
    .contact-link {
      display: inline-block;
      margin-top: 28px;
      background: var(--white);
      color: var(--clay);
      font-weight: 500;
      font-size: 1rem;
      padding: 14px 28px;
      border-radius: 6px;
      text-decoration: none;
      transition: background 0.15s, color 0.15s;
    }
    .contact-link:hover {
      background: var(--bg);
      color: var(--clay);
    }
    .contact-link:focus-visible {
      outline: 2px solid var(--white);
      outline-offset: 3px;
    }

    /* ── Footer ── */
    .site-footer {
      padding: 32px 0 48px;
      font-size: 0.875rem;
      color: var(--text-sec);
    }
    .site-footer a { color: var(--text-sec); }

    /* ── Skip link ── */
    .skip-link {
      position: absolute;
      top: -100px;
      left: 16px;
      background: var(--clay);
      color: white;
      padding: 8px 16px;
      border-radius: 4px;
      text-decoration: none;
      font-size: 0.875rem;
      z-index: 100;
      transition: top 0.15s;
    }
    .skip-link:focus { top: 16px; }

    /* ── Divider accent ── */
    .section-accent {
      width: 32px;
      height: 3px;
      background: var(--clay);
      border-radius: 2px;
      margin-bottom: 24px;
    }

    /* ── Nav ── */
    .site-nav {
      padding: 20px 0;
      border-bottom: 1px solid var(--divider);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .nav-name {
      font-family: var(--ff-head);
      font-size: 1.1rem;
      color: var(--text);
      text-decoration: none;
    }
    .nav-links {
      display: flex;
      gap: 24px;
      list-style: none;
    }
    .nav-links a {
      font-size: 0.875rem;
      color: var(--text-sec);
      text-decoration: none;
    }
    .nav-links a:hover { color: var(--clay); }

    /* ── Hamburger ── */
    .nav-hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      border-radius: 4px;
      color: var(--text);
      line-height: 0;
    }
    .nav-hamburger:focus-visible {
      outline: 2px solid var(--clay);
      outline-offset: 2px;
    }

    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 50;
      background: var(--bg);
      flex-direction: column;
      padding: 24px;
    }
    .mobile-menu.open { display: flex; }

    .mobile-menu-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 40px;
    }
    .mobile-menu-close {
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      color: var(--text);
      line-height: 0;
      border-radius: 4px;
    }
    .mobile-menu-close:focus-visible {
      outline: 2px solid var(--clay);
      outline-offset: 2px;
    }
    .mobile-menu-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .mobile-menu-links a {
      display: block;
      font-family: var(--ff-head);
      font-size: 1.75rem;
      font-weight: 400;
      color: var(--text);
      text-decoration: none;
      padding: 10px 0;
      border-bottom: 1px solid var(--divider);
    }
    .mobile-menu-links a:hover { color: var(--clay); }

    @media (max-width: 700px) {
      .nav-links { display: none; }
      .nav-hamburger { display: block; }
      .hero { padding: 56px 0 56px; }
      section { padding: 52px 0; }
      .contact-block { padding: 36px 24px; }
      .service-summary-btn { padding: 20px 20px; }
      .service-detail-inner { padding: 0 20px 20px; }
    }
