:root {
  --ink: #28256f;
  --ink-2: #30236f;
  --honey: #e1a56b;
  --petal: #edd7d3;
  --cream: #f5edd7;
  --white: #ffffff;
  --text: #20203b;
  --muted: #5b5b78;
  --line: rgba(40, 37, 111, 0.18);
  --shadow: 0 16px 40px rgba(40, 37, 111, 0.12);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(237, 215, 211, 0.5), transparent 28%),
    linear-gradient(180deg, #fcf8f2 0%, #f7f0e3 100%);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(252, 248, 242, 0.92);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.85rem 0; }
.brand-lockup { display: flex; align-items: center; gap: 0.9rem; min-width: 0; }
.brand-lockup img { width: 110px; height: 110px; object-fit: contain; }
.brand-text { min-width: 0; }
.brand-text strong { display: block; font-size: 1.05rem; letter-spacing: 0.03em; color: var(--ink); }
.brand-text span { display: block; color: var(--muted); font-size: 0.92rem; }
.nav nav { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
.nav nav a { color: var(--ink); font-weight: 600; }
.nav nav a:hover { opacity: 0.78; }
.cart-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 1.5rem; height: 1.5rem; padding: 0 0.35rem; margin-left: 0.25rem;
  background: var(--ink); color: var(--white); border-radius: 999px; font-size: 0.85rem;
}
.hero { padding: 4.25rem 0 2.5rem; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 2rem; align-items: center; }
.eyebrow {
  display: inline-block; margin-bottom: 0.75rem; padding: 0.4rem 0.75rem;
  background: rgba(40, 37, 111, 0.08); color: var(--ink); border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; font-weight: 700;
}
h1, h2, h3 { line-height: 1.1; color: var(--ink); margin: 0 0 0.8rem; }
h1 { font-size: clamp(2.5rem, 5vw, 4.8rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: 1.25rem; }
.lead { font-size: 1.1rem; color: var(--muted); max-width: 58ch; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.4rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  border: 0; border-radius: 999px; background: var(--ink); color: var(--white);
  padding: 0.95rem 1.25rem; font-weight: 700; cursor: pointer; box-shadow: var(--shadow);
}
.btn:hover { transform: translateY(-1px); }
.btn:disabled { opacity: 0.58; cursor: not-allowed; transform: none; }
.btn-secondary { background: transparent; color: var(--ink); border: 1px solid var(--line); box-shadow: none; }
.panel { background: rgba(255, 255, 255, 0.74); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.hero-card { padding: 1.25rem; background: linear-gradient(180deg, rgba(225,165,107,0.25), rgba(255,255,255,0.92)); }
.hero-card img { width: 100%; border-radius: 18px; }
.section { padding: 1.5rem 0 2.2rem; }
.grid-3, .product-grid, .info-grid { display: grid; gap: 1rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.info-grid { grid-template-columns: 1fr 1fr; }
.card { background: rgba(255,255,255,0.84); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.3rem; }
.card p:last-child { margin-bottom: 0; }
.brand-band { background: var(--honey); border-top: 1px solid rgba(40, 37, 111, 0.22); border-bottom: 1px solid rgba(40, 37, 111, 0.22); margin: 2rem 0; padding: 1.25rem 0; }
.brand-band img { margin: 0 auto; max-height: 180px; width: auto; }
.kicker { color: var(--muted); font-style: italic; }
.product-grid { grid-template-columns: repeat(3, 1fr); }
.product-card { display: flex; flex-direction: column; }
.product-art { aspect-ratio: 4 / 3; border-radius: 18px; background: linear-gradient(180deg, rgba(237,215,211,0.65), rgba(255,255,255,0.85)); border: 1px solid var(--line); display: grid; place-items: center; overflow: hidden; margin-bottom: 1rem; }
.product-art img { width: 100%; height: 100%; object-fit: contain; padding: 0.5rem; }
.price { font-size: 1.3rem; font-weight: 700; color: var(--ink); margin: 0.5rem 0 1rem; }
.meta { color: var(--muted); font-size: 0.95rem; }
.product-card .btn { margin-top: auto; }
.product-actions { display: grid; grid-template-columns: auto 1fr; gap: 0.65rem; align-items: end; margin-top: auto; }
.product-actions .btn { grid-column: 1 / -1; }
.qty-select { min-width: 88px; }
.notice { padding: 1rem 1.1rem; border-left: 4px solid var(--ink); background: rgba(237,215,211,0.45); border-radius: 14px; color: var(--text); }
.list-clean { margin: 0; padding-left: 1.15rem; }
.cart-row { display: grid; grid-template-columns: 1.2fr auto auto auto; align-items: center; gap: 0.8rem; padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
.cart-row:last-child { border-bottom: 0; }
.qty-input { width: 82px; padding: 0.55rem; }
.total-row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 1.2rem; font-size: 1.15rem; font-weight: 700; color: var(--ink); }
.checkout-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 1rem; align-items: start; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
label { display: block; font-weight: 700; color: var(--ink); margin-bottom: 0.35rem; }
.input { width: 100%; padding: 0.8rem 0.9rem; border: 1px solid var(--line); border-radius: 14px; background: var(--white); color: var(--text); }
textarea.input { min-height: 110px; resize: vertical; }
.order-summary-preview { border: 1px solid var(--line); border-radius: 14px; padding: 0.9rem; background: rgba(255,255,255,0.72); margin: 0.85rem 0; }
.order-summary-preview p { margin: 0 0 0.45rem; }
.form-status { margin-top: 0.85rem; color: var(--ink); font-weight: 700; }
.site-footer { margin-top: 2rem; border-top: 1px solid var(--line); background: rgba(255,255,255,0.7); }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding: 1.4rem 0 2rem; }
.footer-inner p { margin: 0; color: var(--muted); }
.center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
@media (max-width: 900px) { .hero-grid, .info-grid, .checkout-grid, .product-grid, .grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 720px) { .nav { flex-direction: column; align-items: flex-start; } .field-grid { grid-template-columns: 1fr; } .cart-row { grid-template-columns: 1fr; align-items: start; } .brand-band img { max-height: 120px; } .hero { padding-top: 2.5rem; } }
