 :root {
      --bone: #e3dac9;
      --dark: #1b1b1b;
      --muted: #5f5f5f;
      --navy: #080b2c;
      --rust: #8c4a2f;
      --light-bone: #ede6d6;
    }

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

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background-color: var(--light-bone);
      color: var(--dark);
      line-height: 1.6;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    /* ---------- NAV ---------- */
    header {
      position: sticky;
      top: 0;
      background: var(--light-bone);
      border-bottom: 1px solid rgba(0,0,0,0.1);
      z-index: 100;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.75rem 1rem;
      max-width: 1100px;
      margin: auto;
    }

    .logo {
      display: flex;
      flex-direction: column;
      font-weight: 700;
      letter-spacing: 0.08em;
    }

    .logo span:first-child {
      font-size: 1.1rem;
    }

    .logo span:last-child {
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      transform: translateX(2px);
    }

    nav a {
      margin-left: 1rem;
      font-size: 1.6rem;
      color: var(--rust);
    }

    nav a:hover {
      color: var(--dark);
    }

    /* ---------- HERO ---------- */
    .hero {
      background: var(--navy);
      color: var(--light-bone);
      padding: 3rem 1.5rem;
    }

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

    .hero h1 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .hero p {
      max-width: 500px;
      margin-bottom: 1.5rem;
    }

    .cta {
      display: inline-block;
      background: var(--light-bone);
      color: var(--navy);
      padding: 0.75rem 1.25rem;
      font-weight: 600;
      border-radius: 4px;
    }

    /* ---------- SECTIONS ---------- */
    section {
      padding: 2.5rem 1.5rem;
      max-width: 900px;
      margin: auto;
    }

    section h2 {
      margin-bottom: 1rem;
      font-size: 1.4rem;
    }

    .services ul {
      list-style: none;
    }

    .services li {
      padding: 0.5rem 0;
      border-bottom: 1px solid rgba(0,0,0,0.08);
    }

    .contact {
      background: rgba(0,0,0,0.04);
      border-radius: 6px;
    }

    /* ---------- FOOTER ---------- */
    footer {
      text-align: center;
      font-size: 0.8rem;
      color: var(--muted);
      padding: 1.5rem;
    }

    /* ---------- DESKTOP ---------- */
    @media (min-width: 768px) {
      .hero h1 {
        font-size: 2.6rem;
      }

      nav a {
        font-size: 1rem;
      }
    }