    :root {
      --bg: #f6f4ee;
      --surface: #fffdf8;
      --ink: #212a26;
      --muted: #53615a;
      --line: #d9dfd6;
      --brand: #2e5a49;
      --brand-soft: #dde8e1;
      --accent: #d98f4e;
      --shadow: 0 10px 30px rgba(22, 35, 29, 0.08);
      --radius: 18px;
      --radius-sm: 12px;
      --max: 1140px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "Manrope", "Segoe UI", sans-serif;
      color: var(--ink);
      background:
        radial-gradient(1300px 700px at 96% -10%, #cfe1d8 0%, transparent 45%),
        radial-gradient(1100px 500px at -15% 35%, #efe5cf 0%, transparent 50%),
        var(--bg);
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: var(--brand);
      text-decoration-thickness: 1.5px;
      text-underline-offset: 2px;
    }

    .shell {
      width: min(100% - 2rem, var(--max));
      margin-inline: auto;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(10px);
      background: color-mix(in srgb, var(--surface) 80%, white 20%);
      border-bottom: 1px solid color-mix(in srgb, var(--line) 80%, white 20%);
    }

    .topbar-inner {
      min-height: 72px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
    }

    .brand {
      text-decoration: none;
      color: inherit;
      display: flex;
      align-items: center;
      gap: .55rem;
      font-weight: 700;
    }

    .brand-logo {
      width: clamp(170px, 24vw, 250px);
      height: auto;
      border-radius: 6px;
      border: 1px solid var(--line);
      object-fit: contain;
      background: #fff;
      padding: .22rem .35rem;
      flex-shrink: 0;
    }

    .menu {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: .5rem;
    }

    .menu a {
      text-decoration: none;
      color: var(--ink);
      font-weight: 600;
      font-size: .92rem;
      padding: .45rem .8rem;
      border-radius: 999px;
      transition: background .2s ease, color .2s ease;
    }

    .menu a:hover,
    .menu a:focus-visible {
      background: var(--brand-soft);
      color: var(--brand);
      outline: none;
    }

    .hero {
      padding: clamp(2.2rem, 4vw, 3.8rem) 0 1.5rem;
      display: grid;
      gap: 1.25rem;
      align-items: stretch;
    }

    .hero-card {
      background: linear-gradient(140deg, #f8f6f0 0%, #fffdfa 50%, #f1f6f3 100%);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow: hidden;
      display: grid;
      grid-template-columns: 1.1fr .9fr;
    }

    .hero-copy {
      padding: clamp(1.25rem, 3.4vw, 2.6rem);
    }

    h1, h2, h3 {
      margin: 0;
      font-family: "Fraunces", Georgia, serif;
      line-height: 1.15;
      letter-spacing: .1px;
    }

    h1 {
      font-size: clamp(1.9rem, 5vw, 3rem);
      margin-bottom: .85rem;
    }

    h2 {
      font-size: clamp(1.45rem, 3.3vw, 2rem);
      margin-bottom: .7rem;
    }

    .hero-copy p {
      margin: .5rem 0 0;
      color: var(--muted);
      max-width: 42ch;
    }

    .hero-actions {
      margin-top: 1.2rem;
      display: flex;
      flex-wrap: wrap;
      gap: .75rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: .72rem 1.05rem;
      border-radius: 999px;
      font-weight: 700;
      text-decoration: none;
      border: 1px solid transparent;
    }

    .btn-primary {
      background: var(--brand);
      color: #fff;
    }

    .btn-secondary {
      background: transparent;
      border-color: var(--line);
      color: var(--ink);
    }

    .hero-image {
      min-height: 280px;
      background: #dce8e1;
    }

    .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    section {
      margin-top: 1.25rem;
      padding: clamp(1.2rem, 2vw, 1.8rem);
      border: 1px solid var(--line);
      background: var(--surface);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      scroll-margin-top: 96px;
    }

    .lede {
      color: var(--muted);
      margin: .2rem 0 1rem;
      max-width: 62ch;
    }

    .grid {
      display: grid;
      gap: 1rem;
      grid-template-columns: repeat(12, minmax(0, 1fr));
    }

    .col-4 { grid-column: span 4; }
    .col-6 { grid-column: span 6; }
    .col-8 { grid-column: span 8; }
    .col-12 { grid-column: span 12; }

    .tile {
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      overflow: hidden;
      background: #fff;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .tile figure {
      margin: 0;
      height: 180px;
      background: #e1ece5;
    }

    .tile figure img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .tile .content {
      padding: .95rem .95rem 1rem;
    }

    .tile h3 {
      font-size: 1.12rem;
      margin-bottom: .35rem;
    }

    .tile p,
    .tile li {
      margin: 0;
      color: var(--muted);
      font-size: .95rem;
    }

    ul.clean {
      list-style: none;
      padding: 0;
      margin: .45rem 0 0;
      display: grid;
      gap: .55rem;
    }

    ul.clean li {
      padding-left: .95rem;
      position: relative;
    }

    ul.clean li::before {
      content: "";
      width: .38rem;
      height: .38rem;
      border-radius: 50%;
      background: var(--accent);
      position: absolute;
      left: 0;
      top: .58rem;
    }

    .notice {
      border-left: 4px solid var(--accent);
      padding: .7rem .85rem;
      border-radius: 10px;
      background: #fff7f0;
      color: #5a4637;
      font-size: .93rem;
      margin-top: .8rem;
    }

    .link-list {
      columns: 2;
      gap: 1rem;
      margin-top: .45rem;
      padding-left: 1rem;
    }

    .contact {
      display: grid;
      gap: 1rem;
      grid-template-columns: 1fr auto;
      align-items: center;
    }

    .contact-logo {
      width: 260px;
      border-radius: 14px;
      border: 1px solid var(--line);
      background: #fff;
      padding: .5rem;
    }

    footer {
      padding: 2rem 0 2.5rem;
      color: var(--muted);
      text-align: center;
      font-size: .93rem;
    }

    .footer-mark {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      margin-bottom: .55rem;
      font-weight: 600;
      color: var(--ink);
    }

    .footer-mark img {
      width: clamp(170px, 22vw, 220px);
      height: auto;
      border-radius: 6px;
      border: 1px solid var(--line);
      object-fit: contain;
      background: #fff;
      padding: .22rem .35rem;
    }

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

      .hero-image {
        min-height: 220px;
      }

      .col-4,
      .col-6,
      .col-8 {
        grid-column: span 12;
      }

      .link-list {
        columns: 1;
      }

      .contact {
        grid-template-columns: 1fr;
      }
    }
