  /* Reset */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border: 0 solid currentColor; }
  html { -webkit-text-size-adjust: 100%; }
  body { line-height: 1.5; -webkit-font-smoothing: antialiased; }
  h1, h2, h3, p { font-size: inherit; font-weight: inherit; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; color: inherit; background: none; cursor: pointer; }
  ul { list-style: none; }
  svg { display: block; }

  /* Base */
  body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; }
  .font-display { font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; }
  .antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

  /* Colors */
  .bg-cream-50 { background-color: #FBF8F3; }
  .bg-cream-100 { background-color: #F4EDE1; }
  .bg-cream-50\/90 { background-color: rgba(251,248,243,0.9); }
  .bg-white { background-color: #FFFFFF; }
  .bg-gold-400\/25 { background-color: rgba(216,184,118,0.25); }
  .bg-gold-500 { background-color: #C29A52; }
  .bg-sage-500\/15 { background-color: rgba(124,139,106,0.15); }
  .bg-terracotta-500\/10 { background-color: rgba(190,107,76,0.1); }
  .text-ink-900 { color: #2A241D; }
  .text-ink-700 { color: #4A4238; }
  .text-ink-600 { color: #5C5248; }
  .text-ink-500 { color: #7A705F; }
  .text-ink-300 { color: #C9BFAE; }
  .text-gold-600 { color: #A67C3B; }
  .text-sage-600 { color: #64715A; }
  .text-terracotta-500 { color: #BE6B4C; }
  .border-ink-900\/8 { border-color: rgba(42,36,29,0.08); }
  .border-gold-500 { border-color: #C29A52; }
  .bg-gradient-to-b.from-cream-100.via-cream-50.to-cream-50 { background: linear-gradient(to bottom, #F4EDE1 0%, #FBF8F3 50%, #FBF8F3 100%); }
  .bg-gradient-to-r.from-cream-100.via-cream-200.to-cream-100 { background: linear-gradient(to right, #F4EDE1 0%, #EADDC8 50%, #F4EDE1 100%); }
  .hover\:bg-gold-400:hover { background-color: #D8B876; }
  .hover\:bg-gold-500:hover { background-color: #C29A52; }
  .hover\:text-gold-600:hover { color: #A67C3B; }
  .hover\:text-ink-900:hover { color: #2A241D; }

  /* Layout */
  .fixed { position: fixed; }
  .absolute { position: absolute; }
  .relative { position: relative; }
  .inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
  .top-0 { top: 0; }
  .left-0 { left: 0; }
  .right-0 { right: 0; }
  .top-1\/3 { top: 33.3333%; }
  .left-1\/2 { left: 50%; }
  .-top-40 { top: -10rem; }
  .-right-40 { right: -10rem; }
  .-left-40 { left: -10rem; }
  .-top-3 { top: -0.75rem; }
  .-translate-x-1\/2 { transform: translateX(-50%); }
  .z-50 { z-index: 50; }
  .overflow-hidden { overflow: hidden; }
  .order-1 { order: 1; }
  .order-2 { order: 2; }
  .hidden { display: none; }
  .block { display: block; }
  .flex { display: flex; }
  .inline-flex { display: inline-flex; }
  .grid { display: grid; }
  .flex-col { flex-direction: column; }
  .flex-1 { flex: 1 1 0%; }
  .shrink-0 { flex-shrink: 0; }
  .items-center { align-items: center; }
  .items-start { align-items: flex-start; }
  .justify-center { justify-content: center; }
  .justify-between { justify-content: space-between; }
  .text-center { text-align: center; }
  .text-left { text-align: left; }
  .mx-auto { margin-left: auto; margin-right: auto; }
  .w-full { width: 100%; }
  .h-full { height: 100%; }
  .h-10 { height: 2.5rem; }
  .w-10 { width: 2.5rem; }
  .h-14 { height: 3.5rem; }
  .w-14 { width: 3.5rem; }
  .h-96 { height: 24rem; }
  .w-96 { width: 24rem; }
  .aspect-\[4\/5\] { aspect-ratio: 4/5; }
  .object-cover { object-fit: cover; }
  .max-w-sm { max-width: 24rem; }
  .max-w-2xl { max-width: 42rem; }
  .max-w-3xl { max-width: 48rem; }
  .max-w-4xl { max-width: 56rem; }
  .max-w-6xl { max-width: 72rem; }
  .rounded-xl { border-radius: 0.75rem; }
  .rounded-2xl { border-radius: 1rem; }
  .rounded-full { border-radius: 9999px; }
  .border { border-width: 1px; }
  .border-2 { border-width: 2px; }
  .border-t { border-top-width: 1px; }
  .border-b { border-bottom-width: 1px; }

  /* Spacing */
  .p-6 { padding: 1.5rem; }
  .p-8 { padding: 2rem; }
  .px-4 { padding-left: 1rem; padding-right: 1rem; }
  .px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
  .px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .px-8 { padding-left: 2rem; padding-right: 2rem; }
  .py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
  .py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
  .py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
  .py-4 { padding-top: 1rem; padding-bottom: 1rem; }
  .py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
  .py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .pt-40 { padding-top: 10rem; }
  .pb-28 { padding-bottom: 7rem; }
  .pb-5 { padding-bottom: 1.25rem; }
  .mb-1 { margin-bottom: 0.25rem; }
  .mb-2 { margin-bottom: 0.5rem; }
  .mb-3 { margin-bottom: 0.75rem; }
  .mb-4 { margin-bottom: 1rem; }
  .mb-6 { margin-bottom: 1.5rem; }
  .mb-8 { margin-bottom: 2rem; }
  .mb-10 { margin-bottom: 2.5rem; }
  .mb-16 { margin-bottom: 4rem; }
  .mt-0\.5 { margin-top: 0.125rem; }
  .gap-2 { gap: 0.5rem; }
  .gap-4 { gap: 1rem; }
  .gap-6 { gap: 1.5rem; }
  .gap-8 { gap: 2rem; }
  .gap-3 { gap: 0.75rem; }
  .gap-14 { gap: 3.5rem; }
  .space-y-3 > * + * { margin-top: 0.75rem; }
  .space-y-4 > * + * { margin-top: 1rem; }
  .space-y-5 > * + * { margin-top: 1.25rem; }
  .mt-1 { margin-top: 0.25rem; }
  .mt-4 { margin-top: 1rem; }
  .mt-8 { margin-top: 2rem; }
  .pb-6 { padding-bottom: 1.5rem; }
  .py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
  .py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .max-w-xl { max-width: 36rem; }
  .h-5 { height: 1.25rem; }
  .w-5 { width: 1.25rem; }

  /* Typography */
  .text-xs { font-size: 0.75rem; line-height: 1rem; }
  .text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .text-base { font-size: 1rem; line-height: 1.5rem; }
  .text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .leading-none { line-height: 1; }
  .leading-tight { line-height: 1.25; }
  .leading-relaxed { line-height: 1.625; }
  .tracking-wide { letter-spacing: 0.025em; }
  .tracking-\[0\.2em\] { letter-spacing: 0.2em; }
  .uppercase { text-transform: uppercase; }
  .font-medium { font-weight: 500; }
  .font-semibold { font-weight: 600; }
  .font-bold { font-weight: 700; }
  .font-extrabold { font-weight: 800; }

  /* Effects */
  .shadow-sm { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
  .shadow-lg.shadow-gold-500\/20 { box-shadow: 0 10px 25px -3px rgba(194,154,82,0.20), 0 4px 6px -4px rgba(194,154,82,0.15); }
  .shadow-xl.shadow-gold-500\/10 { box-shadow: 0 20px 25px -5px rgba(194,154,82,0.10), 0 8px 10px -6px rgba(194,154,82,0.08); }
  .hover\:shadow-gold-400\/30:hover { box-shadow: 0 10px 25px -3px rgba(216,184,118,0.30), 0 4px 6px -4px rgba(216,184,118,0.20); }
  .backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
  .blur-3xl { filter: blur(64px); }
  .transition-colors { transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease; }
  .transition-all { transition: all 0.2s ease; }
  .underline { text-decoration: underline; }
  .opacity-50 { opacity: 0.5; }
  .cursor-not-allowed { cursor: not-allowed; }
  .hover\:text-gold-700:hover { color: #8A6530; }

  /* Checkout form */
  input[type="checkbox"] { accent-color: #C29A52; cursor: pointer; }
  button:disabled { opacity: 0.5; cursor: not-allowed; }
  button:disabled:hover { background-color: #C29A52; }

  /* Legal document pages */
  .legal-content { max-width: 48rem; margin: 0 auto; }
  .legal-content .meta { color: #7A705F; font-size: 0.875rem; margin-bottom: 2.5rem; }
  .legal-content h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.375rem; font-weight: 700; color: #2A241D; margin-top: 2.5rem; margin-bottom: 1rem; }
  .legal-content h2:first-of-type { margin-top: 0; }
  .legal-content h3 { font-size: 1.0625rem; font-weight: 600; color: #2A241D; margin-top: 1.5rem; margin-bottom: 0.5rem; }
  .legal-content p { margin-bottom: 1rem; color: #5C5248; line-height: 1.7; }
  .legal-content ul { margin: 0 0 1rem 0; padding-left: 1.25rem; }
  .legal-content li { margin-bottom: 0.5rem; color: #5C5248; line-height: 1.7; list-style: disc; }
  .legal-content li::marker { color: #C29A52; }
  .legal-content strong { color: #2A241D; font-weight: 600; }
  .legal-content a { color: #A67C3B; font-weight: 500; text-decoration: underline; }

  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .accordion-icon {
    transition: transform 0.3s ease;
  }
  .accordion-item.open .accordion-icon {
    transform: rotate(45deg);
  }

  /* Responsive: sm (640px) */
  @media (min-width: 640px) {
    .sm\:block { display: block; }
    .sm\:flex-row { flex-direction: row; }
    .sm\:text-5xl { font-size: 3rem; line-height: 1; }
  }

  /* Responsive: md (768px) */
  @media (min-width: 768px) {
    .md\:flex { display: flex; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:order-1 { order: 1; }
    .md\:order-2 { order: 2; }
    .md\:p-8 { padding: 2rem; }
    .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
    .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
    .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
    .md\:-translate-y-4 { transform: translateY(-1rem); }
  }
