
    html,
    body {
      margin: 0;
      background: #faf6f2;
      color: #23313c;
    }
    .page {
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.65;
      color: #23313c;
      background:
        radial-gradient(circle at top left, rgba(221, 185, 155, 0.18), transparent 28%),
        linear-gradient(180deg, #fffaf6 0%, #f7efe8 100%);
    }
    .page * {
      box-sizing: border-box;
    }
    .page img {
      display: block;
      max-width: 100%;
    }
    .page a {
      color: #99553f;
      text-decoration: none;
    }
    .page a:hover {
      text-decoration: underline;
    }
    .page h1,
    .page h2,
    .page h3,
    .page p {
      margin-top: 0;
    }
    .page h1,
    .page h2,
    .page h3 {
      color: #18212a;
      line-height: 1.18;
    }
    .page p,
    .page li,
    .page td,
    .page th,
    .page a,
    .page summary,
    .page span {
      font-size: 16px;
    }
    .shell {
      width: 100%;
      max-width: 1180px;
      padding: 56px 20px;
    }
    .soft-card {
      background: rgba(255, 255, 255, 0.94);
      border: 1px solid #eadccf;
      border-radius: 20px;
      box-shadow: 0 18px 40px rgba(60, 35, 21, 0.08);
    }
    .deep-card {
      background: linear-gradient(135deg, #d08b72 0%, #b56f58 100%);
      border-radius: 20px;
    }
    .keyword-link {
      color: #99553f !important;
      font-weight: 700;
      border-bottom: 2px solid #dfbaa8;
    }
    .page .grid { display: grid; }
    .page .flex { display: flex; }
    .page .flex-wrap { flex-wrap: wrap; }
    .page .justify-center { justify-content: center; }
    .page .items-center { align-items: center; }
    .page .gap-3 { gap: 12px; }
    .page .gap-6 { gap: 24px; }
    .page .gap-8 { gap: 32px; }
    .page .gap-10 { gap: 40px; }
    .page .space-y-3 > * + * { margin-top: 12px; }
    .page .space-y-4 > * + * { margin-top: 16px; }
    .page .mb-2 { margin-bottom: 8px; }
    .page .mb-3 { margin-bottom: 12px; }
    .page .mb-4 { margin-bottom: 16px; }
    .page .mb-5 { margin-bottom: 20px; }
    .page .mb-6 { margin-bottom: 24px; }
    .page .mb-7 { margin-bottom: 28px; }
    .page .mt-3 { margin-top: 12px; }
    .page .p-5 { padding: 20px; }
    .page .p-6 { padding: 24px; }
    .page .text-sm { font-size: 14px; }
    .page .text-base { font-size: 16px; }
    .page .text-lg { font-size: 18px; }
    .page .text-xl { font-size: 20px; }
    .page .text-3xl { font-size: 30px; }
    .page .text-4xl { font-size: 40px; }
    .page .font-semibold { font-weight: 600; }
    .page .font-bold { font-weight: 700; }
    .page .uppercase { text-transform: uppercase; }
    .page .tracking-wide { letter-spacing: 0.05em; }
    .page .rounded-full { border-radius: 999px; }
    .page .w-full { width: 100%; }
    .page .h-auto { height: auto; }
    .page .max-w-md { max-width: 448px; }
    .page .object-cover { object-fit: cover; }
    .page .overflow-x-auto {
      overflow-x: auto;
      max-width: 100%;
    }
    .page .cursor-pointer { cursor: pointer; }
    .hero-photo {
      border-radius: 28px;
      overflow: hidden;
      background: #f1e3d9;
      border: 1px solid #e9d4c6;
      padding: 14px;
      box-shadow: 0 24px 54px rgba(60, 35, 21, 0.14);
    }
    .hero-photo img {
      width: 100%;
      height: auto;
      aspect-ratio: 4 / 5;
      object-fit: cover;
      border-radius: 22px;
    }
    .media-frame {
      background: linear-gradient(135deg, #f8e8de 0%, #f2ddd1 100%);
      border: 1px solid #e8cfbf;
      border-radius: 20px;
      padding: 14px;
    }
    .media-frame img {
      width: 100%;
      height: auto;
      aspect-ratio: 16 / 11;
      object-fit: cover;
      border-radius: 14px;
      box-shadow: 0 14px 30px rgba(60, 35, 21, 0.12);
    }
    @media (min-width: 768px) {
      .page .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .page .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
      .page .md\:text-5xl {
        font-size: 50px;
      }
    }
    @media (min-width: 1024px) {
      .page .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .page .lg\:items-center {
        align-items: center;
      }
      .page .lg\:justify-end {
        justify-content: flex-end;
      }
    }
    @media (max-width: 768px) {
      .shell {
        padding: 40px 18px;
      }
      .page h1 {
        font-size: 32px !important;
      }
      .page h2 {
        font-size: 25px !important;
      }
      .page .overflow-x-auto table {
        min-width: 640px;
      }
    }
  