    :root {
      --bg: #f2eee7;
      --surface: #f6f1ea;
      --text: #2b2723;
      --muted: #756d64;
      --border: #d7cec1;
      --accent: #707867;
      --accent-soft: #909889;
      --wood: #9b7757;
      --warm-light: #ebe3d8;
      --max-width: 1180px;
      --section-space: 9rem;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Inter', sans-serif;
      line-height: 1.75;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

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

    .container {
      width: min(92%, var(--max-width));
      margin: 0 auto;
    }

    header {
      position: sticky;
      top: 0;
      background: rgba(244, 241, 235, 0.88);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(221, 214, 202, 0.6);
      z-index: 50;
    }

    .nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.6rem 0;
    }

    .brand {
      font-family: 'EB Garamond', serif;
      font-size: 2rem;
      letter-spacing: -0.03em;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 2.4rem;
    }

    nav a {
      color: var(--muted);
      font-size: 0.96rem;
      transition: color 0.2s ease;
    }

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

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 1rem 1.5rem;
      background: rgba(112, 120, 103, 0.12);
      color: var(--text);
      border: 1px solid rgba(112, 120, 103, 0.22);
      font-size: 0.9rem;
      letter-spacing: 0.03em;
      transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    }

    .button:hover {
      background: rgba(112, 120, 103, 0.18);
      border-color: rgba(112, 120, 103, 0.34);
      transform: translateY(-1px);
    }

    .hero {
      padding: 3rem 0 4rem;
    }

    .hero-inner {
      max-width: 58rem;
    }

    .eyebrow {
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: 0.82rem;
      margin-bottom: 2rem;
    }

    h1 {
      font-family: 'EB Garamond', serif;
      font-size: clamp(4.5rem, 8vw, 7.5rem);
      font-weight: 500;
      line-height: 0.92;
      letter-spacing: -0.05em;
      margin-bottom: 2.5rem;
      max-width: 10ch;
    }

    .hero-copy {
      font-size: 1.15rem;
      color: var(--muted);
      max-width: 42rem;
      margin-bottom: 3rem;
    }

    .section {
      padding: var(--section-space) 0;
      border-top: 1px solid rgba(215, 206, 193, 0.7);
    }

    .grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 5rem;
      align-items: start;
    }

    h2 {
      font-family: 'EB Garamond', serif;
      font-size: clamp(2.6rem, 4vw, 4rem);
      line-height: 1;
      font-weight: 500;
      letter-spacing: -0.04em;
    }

    .content {
      max-width: 42rem;
    }

    .content p {
      font-size: 1.08rem;
      color: var(--muted);
      margin-bottom: 1.8rem;
    }

    .subtle-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--text);
      font-size: 0.95rem;
      margin-top: 1rem;
    }

    .subtle-link::after {
      content: '→';
      transition: transform 0.2s ease;
    }

    .subtle-link:hover::after {
      transform: translateX(3px);
    }

    .practical-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3rem;
      margin-top: 4rem;
    }

    .practical-item {
      padding-top: 1.8rem;
      border-top: 1px solid var(--border);
    }

    .practical-item h3 {
      font-family: 'EB Garamond', serif;
      font-size: 1.8rem;
      font-weight: 500;
      margin-bottom: 0.75rem;
    }

    .practical-item p {
      color: var(--muted);
      font-size: 0.98rem;
    }

    .cta {
      padding: 10rem 0;
      text-align: center;
    }

    .cta h2 {
      margin-bottom: 2rem;
    }

    .cta p {
      max-width: 34rem;
      margin: 0 auto 2.5rem;
      color: var(--muted);
      font-size: 1.05rem;
    }

    .contact-form {
      max-width: 52rem;
      margin: 1rem auto 0;
      text-align: left;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .form-field {
      display: flex;
      flex-direction: column;
    }

    .full-width {
      grid-column: 1 / -1;
    }

    label {
      font-size: 0.9rem;
      color: var(--muted);
      margin-bottom: 0.75rem;
    }

    input,
    textarea {
      width: 100%;
      border: 1px solid var(--border);
      background: rgba(255,255,255,0.28);
      padding: 1rem 1rem;
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      color: var(--text);
      resize: vertical;
      transition: border-color 0.2s ease, background 0.2s ease;
    }

    input:focus,
    textarea:focus {
      outline: none;
      border-color: rgba(112, 120, 103, 0.45);
      background: rgba(255,255,255,0.42);
    }

    textarea {
      min-height: 180px;
      margin-bottom: 2rem;
    }

    footer {
      border-top: 1px solid var(--border);
      padding: 2.5rem 0;
      background: rgba(255,255,255,0.18);
    }

    .footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 2rem;
      color: var(--muted);
      font-size: 0.92rem;
    }

    @media (max-width: 980px) {
      .grid,
      .practical-grid {
        grid-template-columns: 1fr;
      }

      nav {
        display: none;
      }

      :root {
        --section-space: 6rem;
      }
    }

    @media (max-width: 720px) {
      h1 {
        font-size: 4.2rem;
      }

      .hero {
        padding: 7rem 0;
      }

      .button {
        width: 100%;
      }
    }