    /* ---------- Design tokens ---------- */
    :root{
      --bg: #b0d6c1;   
      --bg-2:#e8f3ee;  
      --fg:#000000;
      --muted:#000000;
      --card:#f2edbf;
      --accent:#aae481;
      --accent-2:#88b667; 
      --shadow:0 10px 30px rgba(0, 0, 0, 0);
      --radius:16px;
      --radius-sm:10px;
      --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    }

    *{box-sizing:border-box}
    html,body{
      min-height:100%;
    }
    body{
      margin:0;
      font-family:var(--font);
      color:var(--fg);
      background-color:var(--bg);
      background-image:
        url('../img/gold-vine.svg'),
        radial-gradient(1200px 600px at 100%, rgba(255,255,255,.25), transparent 60%),
        linear-gradient(0deg, var(--bg-2), var(--bg));
      background-repeat:repeat, no-repeat, no-repeat;
      background-size:340px 340px, auto, auto;
      background-attachment:fixed, scroll, scroll;
      background-blend-mode:soft-light, normal, normal;
    }


    /* ---------- Layout ---------- */
    .wrap{
      max-width:980px;
      margin-inline:auto;
      padding:32px 20px 80px;
    }

    header.site{
      display:grid;
      grid-template-columns:auto 1fr;
      align-items:center;
      gap:16px;
      margin-block:8px 24px;
    }
    .brand{
      display:flex;align-items:center;gap:12px;
      text-decoration:none;color:inherit;
    }
    .logo{
      display:block;
      width:52px; height:52px;
      border-radius:12px;
      object-fit:contain;
      /*background:transparent;*/
      box-shadow:var(--shadow);
      border:2px solid rgba(0,0,0,.06);
    }

    /* Image logo (icon) */
    .title{
      font-size:clamp(1.25rem, 2.5vw, 1.6rem);
      font-weight:800;
      letter-spacing:.2px;
    }
    .subtitle{
      color:var(--muted);
      font-size:.95rem;
    }

    .hero{
      display:grid;
      grid-template-columns: 1.25fr 1fr;
      gap:24px;
      align-items:stretch;
    }
    @media (max-width: 800px){
      .hero{
        grid-template-columns:minmax(0, 1fr);
        justify-items:center;
      }
      .hero > .card{
        width:100%;
        max-width:520px;
      }
      .hero .instruction-card{
        order:-1;
      }
    }

    .card{
      background:var(--card);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      padding:28px;
      margin-bottom: 28px;
    }

    .card.gradient{
      background:
        radial-gradient(600px 300px at 100% 0%, rgba(255,255,255,.20), transparent 60%),
        linear-gradient(180deg, #f2edbf, #f2edbf);
        color:var(--fg);
    }

    h1{
      font-size:clamp(1.6rem, 4vw, 2.2rem);
      margin:0 0 10px;
      line-height:1.15;
      letter-spacing:.3px;
    }
    p{margin:0 0 14px; line-height:1.6; padding-top: 50px;}
    .small{font-size:.95rem;color:var(--muted)}
    .spacer{height:8px}

    /* ---------- Table ---------- */
    .table-wrap{
      overflow:auto;
      border-radius:var(--radius-sm);
      border:1px solid rgba(0,0,0,.06);
      background:var(--card);
      box-shadow:var(--shadow);
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width:420px;
    }
    @media (max-width: 540px){
      table{min-width:0;}
    }
    caption{
      background: #ffffff;
      text-align:left;
      padding:16px 18px 8px;
      font-weight:700;
      color:inherit;
    }
    thead th{
      position:sticky; top:0;
      background:#ffffff;
      color:var(--muted);
      text-transform:uppercase;
      letter-spacing:.06em;
      font-size:.82rem;
      padding:14px 16px;
      text-align:left;
      border-bottom:1px solid rgba(0,0,0,.06);
    }

    tbody td{
      padding:14px 16px;
      background: #ffffff;
      border-bottom:1px solid rgba(0,0,0,.06);
    }
    tbody tr:last-child td{border-bottom:none}
    tbody tr:hover td{background:rgba(0,0,0,.03)} 
    .item{font-weight:600}
    .price{
      text-align:right;
      font-variant-numeric: tabular-nums;
      white-space:nowrap;
    }

    /* ---------- Buttons & links ---------- */
    .actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      justify-content:center;
      margin-top:14px;
    }
    .btn{
      appearance:none; border:0; cursor:pointer;
      display:inline-flex; align-items:center; justify-content:center;
      padding:14px 28px; gap:12px;
      background:var(--bg);
      font-weight:700; letter-spacing:.2px;
      font-size:1rem;
      border-radius:14px;
      text-decoration:none;
      color:#000;
      transition: transform .06s ease, background .15s ease;
      box-shadow: 0 8px 18px rgba(0,0,0,.12), inset 0 -2px 0 rgba(0,0,0,.12);
    }
    .btn:link,
    .btn:visited,
    .btn:focus,
    .btn:active{
      color:#000;
    }
    .btn:hover{background:var(--accent-2); transform:translateY(-1px)}
    .btn:active{transform:translateY(0)}
    .btn.ghost{
      background:transparent; color:var(--bg);
      border:1.5px solid rgba(0,0,0,.15);
      box-shadow:none;
    }

    /* ---------- Forms ---------- */
    .stacked-form{
      display:grid;
      gap:24px;
      margin:0;
    }
    @media (min-width: 960px){
      .stacked-form{
        grid-template-columns:repeat(auto-fit, minmax(360px, 1fr));
        align-items:start;
      }
      .stacked-form > article:last-of-type{
        grid-column:1 / -1;
      }
    }
    .stacked-form fieldset{
      display:grid;
      gap:12px;
      padding:18px 20px 22px;
      border:1px solid rgba(0,0,0,.08);
      border-radius:var(--radius-sm);
      background:#ffffff;
    }
    .stacked-form legend{
      font-weight:700;
      padding-top: 5px;
      /* padding:6px; */
    }
    .stacked-form label{
      font-weight:600;
      font-size:.95rem;
    }
    .stacked-form input,
    .stacked-form select,
    .stacked-form textarea{
      width:100%;
      padding:10px 12px;
      border-radius:10px;
      border:1px solid rgba(0,0,0,.12);
      font:inherit;
      background:#fdfcf5;
      transition:border-color .15s ease, box-shadow .15s ease;
    }
    .stacked-form input:focus,
    .stacked-form select:focus,
    .stacked-form textarea:focus{
      outline:none;
      border-color:var(--accent-2);
      box-shadow:0 0 0 3px rgba(136,182,103,.25);
    }
    .stacked-form textarea{
      resize:vertical;
      min-height:120px;
    }
.form-actions{
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap:16px;
      margin-top:20px;
      text-align:center;
    }
.form-actions .btn{
      min-width:220px;
      padding:14px 28px;
      font-size:1.05rem;
    }
    .form-status{
      font-size:.9rem;
      color:var(--muted);
      margin:0;
      max-width:28ch;
    }
    .form-hint{
      font-size:.9rem;
      color:var(--muted);
      margin:4px 0 0;
    }
    .form-disclaimer{
      font-size:.9rem;
      color:var(--muted);
      max-width:32ch;
      margin:0;
    }

    /* ---------- Carousel ---------- */
    .carousel-card{padding: 20px;}
    .carousel-viewport{
      position:relative;
      width: 100%;
      aspect-ratio: 4 / 3;
      background:#ffffff;
      border-radius: 12px;
      overflow:hidden;
    }
    .carousel-viewport img{
      position:absolute; inset:0;
      width:100%; height:100%;
      object-fit:cover;
      opacity:0;
      transition: opacity .6s ease-in-out;
      display:block;
    }
    .carousel-viewport img.is-active{opacity:1}

    /* ---------- Instruction images ---------- */
    .instruction-card{
      display:flex;
      flex-direction:column;
      gap:24px;
      height:100%;
    }
    .instruction-photo-grid{
      flex:1;
      display:grid;
      gap:24px;
      justify-content:center;
      align-content:space-between;
      grid-auto-rows:minmax(0, 1fr);
    }
    @media (min-width:700px){
      .instruction-photo-grid{
        grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
      }
    }
    .instruction-photo-grid figure{
      margin:0 auto;
      width:100%;
      max-width:420px;
      display:flex;
      flex-direction:column;
      gap:12px;
      align-items:center;
      text-align:center;
    }
    .instruction-photo{
      width:100%;
      max-height:360px;
      display:block;
      border-radius:12px;
      background:#ffffff;
      box-shadow:0 6px 18px rgba(0,0,0,.12);
      object-fit:contain;
    }
    .instruction-photo-grid figcaption{
      font-size:.95rem;
      color:var(--muted);
    }

    /* ---------- Badges ---------- */
    .badges{display:flex; gap:8px; flex-wrap:wrap; margin-top:14px}
    .badge{
      font-size:.8rem; color:#4a3b35;
      background:#ffece4; padding:6px 10px;
      border-radius:999px; border:1px solid #f4c7b7;
    }

    /* ---------- Footer ---------- */
    footer.site{
      text-align:center;
      color:var(--muted);
      font-size:.92rem;
      padding-top: 50px;
    }
    footer a{color:inherit}

    /* ---------- A11y & motion ---------- */
    :focus-visible{outline:3px solid var(--accent-2); outline-offset:3px; border-radius:8px}
    @media (prefers-reduced-motion: reduce){
      *{animation:none !important; transition:none !important}
    }

    /* ---------- Print ---------- */
    @media print{
      body{background:#fff}
      .card.gradient{background:#fff}
      .btn,.badges{display:none}
      header.site{margin-bottom:0}
      .wrap{padding:0}
      footer.site{color:#666}
    }
