
    html,
    body {
      margin: 0;
      background: #f8f5f1;
      color: #24303d;
    }
    .page {
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.65;
      color: #24303d;
      background:
        radial-gradient(circle at top right, rgba(196, 154, 120, 0.16), transparent 28%),
        linear-gradient(180deg, #fcfaf8 0%, #f5efe9 100%);
    }
    .page * {
      box-sizing: border-box;
    }
    .page img {
      display: block;
      max-width: 100%;
    }
    .page a {
      color: #8e4f3a;
      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: #18222d;
      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.92);
      border: 1px solid #eaded3;
      border-radius: 18px;
      box-shadow: 0 18px 40px rgba(49, 31, 17, 0.08);
    }
    .ink-panel {
      background: #27313b;
      border-radius: 18px;
    }
    .keyword-link {
      color: #8e4f3a !important;
      font-weight: 700;
      border-bottom: 2px solid #d7b3a2;
    }
    .cta-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 26px;
      border-radius: 999px;
      background: #8e4f3a;
      color: #ffffff !important;
      font-weight: 700;
      box-shadow: 0 12px 28px rgba(142, 79, 58, 0.22);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .cta-button:hover {
      text-decoration: none;
      transform: translateY(-1px);
      box-shadow: 0 16px 30px rgba(142, 79, 58, 0.28);
    }
    .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-4 {
      gap: 16px;
    }
    .page .gap-6 {
      gap: 24px;
    }
    .page .gap-8 {
      gap: 32px;
    }
    .page .gap-10 {
      gap: 40px;
    }
    .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 .shadow-lg {
      box-shadow: 0 18px 38px rgba(49, 31, 17, 0.14);
    }
    .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: 26px;
      overflow: hidden;
      background: #efe1d6;
      border: 1px solid #ebd6ca;
      padding: 14px;
      box-shadow: 0 22px 52px rgba(49, 31, 17, 0.14);
    }
    .hero-photo img {
      width: 100%;
      height: auto;
      aspect-ratio: 4 / 5;
      object-fit: cover;
      border-radius: 20px;
    }
    .media-frame {
      background: #f4e6dc;
      border: 1px solid #e8d1c4;
      border-radius: 18px;
      padding: 14px;
    }
    .media-frame img {
      width: 100%;
      height: auto;
      aspect-ratio: 4 / 5;
      object-fit: cover;
      border-radius: 14px;
      box-shadow: 0 12px 28px rgba(49, 31, 17, 0.12);
    }
    .light-footer {
      background: #f3ece4;
      border-top: 1px solid #e3d7cb;
    }
    @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;
      }
    }
  