    :root {
      --ink: #39261d;
      --muted: #5f5148;
      --accent: #a34f39;
      --cream: #f7f1e8;
      --peach: #eed8c7;
      --deep: #3d2920;
      --card: #fff9f2;
    }
    * { box-sizing: border-box; }
    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--ink);
      background: var(--cream);
      line-height: 1.55;
    }
    main {
      max-width: 1080px;
      margin: 0 auto;
      background: var(--cream);
    }
    section {
      padding: 72px 48px;
      text-align: center;
    }
    .logo {
      width: 104px;
      height: 104px;
      padding: 14px;
      margin: 0 auto 28px;
      background: #fff;
      border: 1px solid #e7d5c2;
      border-radius: 50%;
    }
    .logo img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
    }
    .eyebrow {
      margin: 0 0 14px;
      color: var(--accent);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.12em;
    }
    h1, h2, h3, p { margin-top: 0; }
    h1, h2 {
      font-family: Georgia, "Times New Roman", serif;
      line-height: 1.08;
    }
    h1 {
      max-width: 760px;
      margin: 0 auto 24px;
      font-size: clamp(2.35rem, 6vw, 4.25rem);
    }
    h2 {
      max-width: 760px;
      margin: 0 auto 20px;
      font-size: clamp(2rem, 4vw, 3.2rem);
    }
    .lead {
      max-width: 690px;
      margin: 0 auto;
      color: var(--muted);
      font-size: 1.16rem;
    }
    .address {
      display: inline-block;
      margin-top: 30px;
      padding: 14px 22px;
      background: var(--peach);
      border: 1px solid #d9b49d;
      border-radius: 16px;
      font-weight: 700;
      color: #53352a;
    }
    .services {
      background: #fff;
    }
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 14px;
      margin-top: 32px;
      text-align: left;
    }
    .service {
      min-height: 142px;
      padding: 20px;
      border: 1px solid #ebdccc;
      border-radius: 14px;
      background: #f9f4ed;
    }
    .service h3 {
      margin-bottom: 7px;
      font-size: 1.05rem;
    }
    .service p {
      margin-bottom: 0;
      color: #6a5a50;
      font-size: 0.96rem;
    }
    .contact {
      color: #fff9f2;
      background: var(--deep);
    }
    .contact .eyebrow { color: #e9bfa6; }
    .contact .lead { color: #ebddd2; }
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
      margin-top: 34px;
      text-align: left;
    }
    .contact-card {
      padding: 24px;
      border: 1px solid #725243;
      border-radius: 16px;
      background: #51372c;
    }
    .contact-card h3 {
      margin-bottom: 8px;
      font-size: 1.35rem;
    }
    .contact-card p {
      margin-bottom: 10px;
      color: #ebddd2;
    }
    .contact-card a {
      display: block;
      margin: 10px 0;
      color: #f2c8b0;
      font-weight: 700;
      text-decoration: none;
    }
    .contact-card a:hover {
      color: #fff9f2;
      text-decoration: underline;
    }
    .closing {
      background: var(--peach);
    }
    .closing .address {
      margin: 4px 0 24px;
      background: var(--card);
    }
    .signoff {
      margin-bottom: 0;
      color: #6c3b2c;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 1.4rem;
      font-style: italic;
      font-weight: 700;
    }
    @media (max-width: 680px) {
      section {
        padding: 56px 24px;
      }
      .contact-grid {
        grid-template-columns: 1fr;
      }
    }
