:root {
  --ink: #222222;
  --muted: #6f6a65;
  --line: #e8e1dc;
  --paper: #ffffff;
  --soft: #f7f3ef;
  --rose: #c96f7f;
  --sage: #8a9b85;
  --blue: #596e8f;
  --shadow: 0 18px 50px rgba(34, 34, 34, .10);
}
* { box-sizing: border-box; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: var(--ink); background: var(--paper); line-height: 1.55; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.site-header { position: sticky; top: 0; z-index: 20; min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px clamp(18px, 4vw, 56px); background: rgba(255,255,255,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.brand { font-weight: 800; letter-spacing: .08em; }
.site-nav { display: flex; align-items: center; gap: 20px; font-size: 15px; }
.site-nav a { color: #37322f; }
.site-nav a:hover { color: var(--rose); }
.menu-button { display: none; border: 1px solid var(--line); background: var(--paper); border-radius: 6px; padding: 8px 12px; color: var(--ink); }
.hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr); gap: clamp(28px, 5vw, 76px); align-items: center; padding: clamp(46px, 7vw, 92px) clamp(18px, 5vw, 72px) clamp(34px, 5vw, 72px); background: linear-gradient(115deg, #fff 0%, #fff 58%, var(--soft) 58%); }
.hero-copy { max-width: 720px; }
.eyebrow { display: inline-flex; color: var(--blue); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(38px, 7vw, 78px); line-height: .98; letter-spacing: 0; margin-bottom: 22px; }
h2 { font-size: clamp(28px, 4vw, 46px); line-height: 1.08; }
.hero p, .plain-hero p { color: var(--muted); font-size: clamp(18px, 2vw, 22px); max-width: 640px; }
.hero-actions, .order-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 12px 18px; border-radius: 6px; border: 1px solid var(--ink); cursor: pointer; font-weight: 700; font-size: 15px; transition: transform .18s ease, background .18s ease, color .18s ease; }
.button:hover { transform: translateY(-1px); }
.button.primary { color: white; background: var(--ink); }
.button.ghost { background: white; color: var(--ink); border-color: var(--line); }
.button.small { min-height: 38px; width: 100%; padding: 9px 12px; background: var(--ink); color: white; }
.hero-media { min-height: 380px; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
.section { padding: clamp(42px, 6vw, 88px) clamp(18px, 5vw, 72px); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 26px; }
.section-head p { color: var(--muted); max-width: 560px; margin-bottom: 0; }
.category-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.category-tile { min-height: 128px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--line); border-radius: 8px; padding: 18px; background: #fff; }
.category-tile:nth-child(2n) { background: #f5f8f4; }
.category-tile:nth-child(3n) { background: #f5f6fb; }
.category-tile span { font-weight: 800; font-size: 19px; }
.category-tile small { color: var(--muted); }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.product-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: #fff; min-width: 0; }
.product-image { background: var(--soft); aspect-ratio: 1 / 1; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.product-card:hover .product-image img { transform: scale(1.035); }
.product-info { display: grid; gap: 10px; padding: 15px; flex: 1; }
.product-title { font-weight: 700; min-height: 48px; }
.product-price, .detail-price { font-size: 22px; font-weight: 800; color: #292423; }
.why { display: grid; grid-template-columns: .8fr 1.2fr; gap: 32px; background: #f7f7f9; }
.why-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.why-grid div { border-left: 3px solid var(--sage); padding-left: 16px; }
.why-grid strong { display: block; margin-bottom: 8px; }
.why-grid span { color: var(--muted); }
.review-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.review-strip img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); }
.plain-hero { padding: clamp(56px, 8vw, 110px) clamp(18px, 5vw, 72px) 34px; background: var(--soft); }
.product-page { display: grid; grid-template-columns: minmax(300px, .95fr) minmax(320px, .85fr); gap: clamp(28px, 5vw, 72px); padding: clamp(42px, 7vw, 84px) clamp(18px, 5vw, 72px); align-items: start; }
.product-gallery { border-radius: 8px; overflow: hidden; background: var(--soft); box-shadow: var(--shadow); }
.product-gallery img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.product-details { position: sticky; top: 96px; }
.breadcrumb { color: var(--blue); font-weight: 700; font-size: 14px; }
.product-details h1 { font-size: clamp(34px, 5vw, 58px); margin-top: 12px; }
.product-details p { color: var(--muted); font-size: 18px; }
.detail-list { display: grid; gap: 12px; margin: 28px 0 0; }
.detail-list div { display: grid; grid-template-columns: 100px 1fr; gap: 16px; padding: 12px 0; border-top: 1px solid var(--line); }
.detail-list dt { color: var(--muted); }
.detail-list dd { margin: 0; }
.contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.contact-grid > div, .text-page { border: 1px solid var(--line); border-radius: 8px; padding: clamp(22px, 4vw, 40px); }
.text-page { max-width: 920px; margin-inline: auto; }
.site-footer { display: flex; justify-content: space-between; gap: 24px; padding: 36px clamp(18px, 5vw, 72px); background: #242424; color: #fff; }
.site-footer p, .site-footer a { color: rgba(255,255,255,.76); }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; align-content: start; justify-content: end; }
.footer-brand { color: #fff; }
.order-panel { position: fixed; inset: 0; z-index: 50; display: grid; place-items: center; padding: 20px; background: rgba(24, 22, 21, .58); }
.order-panel[hidden] { display: none; }
.order-box { width: min(680px, 100%); max-height: min(720px, 92vh); overflow: auto; border-radius: 8px; background: white; padding: 28px; box-shadow: var(--shadow); position: relative; }
.order-close { position: absolute; right: 18px; top: 14px; border: 0; background: transparent; font-size: 30px; cursor: pointer; }
.muted { color: var(--muted); }
form { display: grid; gap: 12px; }
label { display: grid; gap: 6px; font-weight: 700; }
input, textarea { width: 100%; border: 1px solid var(--line); border-radius: 6px; padding: 12px; font: inherit; }
.order-message { background: #f7f7f7; color: #363636; font-size: 14px; }
@media (max-width: 980px) {
  .menu-button { display: inline-flex; }
  .site-nav { display: none; position: absolute; top: 64px; left: 0; right: 0; padding: 14px 18px 18px; background: white; border-bottom: 1px solid var(--line); flex-direction: column; align-items: start; }
  .site-nav.is-open { display: flex; }
  .hero, .product-page, .why, .contact-grid { grid-template-columns: 1fr; }
  .hero { background: white; }
  .hero-media { min-height: 260px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-grid, .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-details { position: static; }
}
@media (max-width: 620px) {
  .site-header { min-height: 58px; }
  .hero, .section, .product-page, .plain-hero { padding-left: 16px; padding-right: 16px; }
  .section-head, .site-footer { display: grid; }
  .product-grid, .category-grid, .why-grid, .review-strip { grid-template-columns: 1fr; }
  .detail-list div { grid-template-columns: 1fr; gap: 2px; }
}