
    :root {
      --ink: #181411;
      --muted: #62584d;
      --paper: #f8f2ea;
      --soft: #efe5d8;
      --line: #d9c9b4;
      --accent: #ad7b2b;
      --accent-deep: #6a4616;
      --shadow: 0 22px 56px rgba(24, 20, 17, 0.12);
      --radius: 8px;
      --serif: Georgia, "Times New Roman", serif;
      --sans: "Trebuchet MS", "Gill Sans", "Avenir Next", sans-serif;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      background:
        radial-gradient(circle at top right, rgba(173, 123, 43, 0.12), transparent 28%),
        linear-gradient(90deg, rgba(173, 123, 43, 0.05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(173, 123, 43, 0.05) 1px, transparent 1px),
        var(--paper);
      background-size: auto, 44px 44px, 44px 44px, auto;
      color: var(--ink);
      font-family: var(--sans);
      font-size: 18px;
      line-height: 1.72;
    }

    a {
      color: var(--accent-deep);
      font-weight: 700;
      text-decoration-color: rgba(173, 123, 43, 0.42);
      text-decoration-thickness: 2px;
      text-underline-offset: 0.18em;
    }

    a:hover {
      color: var(--ink);
      text-decoration-color: var(--ink);
    }

    .shell { min-height: 100vh; }

    .hero {
      padding: clamp(28px, 5vw, 72px);
      min-height: clamp(560px, 78vh, 740px);
      display: grid;
      align-items: end;
      background:
        linear-gradient(90deg, rgba(248, 242, 234, 0.98) 0%, rgba(248, 242, 234, 0.9) 48%, rgba(248, 242, 234, 0.28) 78%),
        url("//ueeshop.ly200-cdn.com/u_file/UPBC/UPBC459/2508/15/products/DSC097411024x1024.jpg") center right / min(72vw, 900px) no-repeat,
        var(--paper);
    }

    .hero-copy {
      width: min(760px, 100%);
      animation: rise-in 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
      color: var(--accent-deep);
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 34px;
      height: 2px;
      background: var(--accent);
    }

    h1, h2, h3 {
      margin: 0;
      font-family: var(--serif);
      line-height: 1.08;
      color: var(--ink);
    }

    h1 { font-size: clamp(3.1rem, 8vw, 6.4rem); max-width: 720px; }
    h2 { margin-top: 68px; font-size: clamp(2rem, 5vw, 3.8rem); }
    h3 { margin-top: 34px; font-size: clamp(1.4rem, 3vw, 2.1rem); }
    p { margin: 18px 0 0; }

    .dek {
      max-width: 640px;
      margin-top: 24px;
      color: var(--muted);
      font-size: clamp(1.12rem, 2vw, 1.3rem);
    }

    .meta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 30px;
    }

    .pill {
      padding: 8px 14px;
      border: 1px solid rgba(173, 123, 43, 0.34);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.74);
      color: var(--accent-deep);
      font-size: 0.86rem;
      font-weight: 800;
    }

    .content {
      width: min(1100px, calc(100% - 36px));
      margin: 0 auto;
      padding: 18px 0 88px;
    }

    .lead-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.56fr);
      gap: clamp(24px, 5vw, 56px);
      align-items: start;
    }

    .toc {
      position: sticky;
      top: 18px;
      margin-top: 68px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.78);
      box-shadow: var(--shadow);
      padding: 24px;
    }

    .toc strong {
      display: block;
      margin-bottom: 12px;
      font-size: 0.86rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .toc a {
      display: block;
      margin-top: 10px;
      color: var(--muted);
      text-decoration: none;
    }

    .toc a:hover { color: var(--accent-deep); }

    .note {
      margin: 32px 0;
      padding: 22px 24px;
      border-left: 4px solid var(--accent);
      background: var(--soft);
      color: var(--muted);
    }

    .stat-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
      margin: 28px 0 8px;
    }

    .stat {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.72);
      padding: 16px;
    }

    .stat b {
      display: block;
      font-size: 1.28rem;
      line-height: 1.15;
    }

    .stat span {
      display: block;
      margin-top: 6px;
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.35;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
      margin-top: 28px;
    }

    .card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      padding: 24px;
      box-shadow: 0 14px 44px rgba(24, 20, 17, 0.08);
    }

    .card h3 {
      margin-top: 0;
      font-size: 1.5rem;
    }

    .band {
      margin: 56px 0 0;
      background: #221c17;
      color: #fff;
      border-radius: var(--radius);
      overflow: hidden;
      padding: clamp(34px, 6vw, 70px) 0;
    }

    .band-inner {
      width: min(980px, calc(100% - 48px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      gap: 28px;
      align-items: start;
    }

    .band-copy {
      min-width: 0;
      max-width: 760px;
    }

    .band h2, .band h3 { color: #fff; }
    .band p { color: #d7cec3; }

    .image-frame {
      width: 100%;
      max-width: 640px;
      justify-self: center;
      margin: 0;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: var(--radius);
      background: #111;
    }

    .image-frame img {
      display: block;
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
    }

    ul, ol { margin: 18px 0 0; padding-left: 1.2em; }
    li + li { margin-top: 10px; }

    .faq details {
      border-top: 1px solid var(--line);
      padding: 22px 0;
    }

    .faq details:last-child { border-bottom: 1px solid var(--line); }
    .faq summary { cursor: pointer; font-weight: 800; }

    .review-note {
      margin-top: 62px;
      border: 1px dashed var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.74);
      padding: 22px 24px;
      color: var(--muted);
      font-size: 0.94rem;
    }

    @keyframes rise-in {
      from { opacity: 0; transform: translateY(18px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 860px) {
      body { font-size: 16px; }
      .hero {
        min-height: 700px;
        align-items: start;
        padding-top: 52px;
        background:
          linear-gradient(180deg, rgba(248, 242, 234, 0.98) 0%, rgba(248, 242, 234, 0.92) 46%, rgba(248, 242, 234, 0.2) 100%),
          url("//ueeshop.ly200-cdn.com/u_file/UPBC/UPBC459/2508/15/products/DSC097411024x1024.jpg") center bottom / 112vw no-repeat,
          var(--paper);
      }
      .lead-grid, .stat-grid, .cards, .band-inner { grid-template-columns: 1fr; }
      .image-frame {
        max-width: 100%;
        justify-self: center;
      }
      .toc { position: static; margin-top: 28px; }
      h2 { margin-top: 48px; }
    }
  