:root{
  color-scheme:light;
  --bg:#faf8f5; --ink:#2b2926; --sub:#8a8279; --line:#e8e2d9;
  --accent:#9c7f6a; --soft:#f2ece4;
}
*{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0; background:var(--bg); color:var(--ink);
  font-family:-apple-system,BlinkMacSystemFont,"Hiragino Sans","Yu Gothic",sans-serif;
  line-height:1.9; font-size:15px; -webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;display:block}
.mincho{font-family:"Hiragino Mincho ProN","Yu Mincho",serif}
.wrap{max-width:1000px;margin:0 auto;padding:0 22px}
.narrow{max-width:720px}

/* header */
header{border-bottom:1px solid var(--line)}
.hrow{display:flex;align-items:center;justify-content:space-between;padding:22px 0;gap:20px;flex-wrap:wrap}
.logo{font-size:19px;letter-spacing:.2em;font-weight:600;text-decoration:none;color:var(--ink)}
.logo small{display:block;font-size:9.5px;letter-spacing:.16em;color:var(--sub);margin-top:5px;
  font-family:-apple-system,BlinkMacSystemFont,"Hiragino Sans",sans-serif;font-weight:400}
nav{display:flex;gap:24px;font-size:13px;flex-wrap:wrap}
nav a{color:var(--ink);text-decoration:none;padding-bottom:3px;border-bottom:1px solid transparent}
nav a:hover,nav a[aria-current="page"]{border-color:var(--accent)}

/* hero */
.hero{padding:40px 0 12px}
.heroimg{aspect-ratio:16/6.5;border-radius:4px;background:linear-gradient(120deg,#e6dcd0,#d8c8b8 55%,#cbb9a6);
  position:relative;display:flex;align-items:flex-end;padding:32px;overflow:hidden}
.heroimg>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.herotx{position:relative;color:#fff}
.herotx h1{font-size:26px;margin:0 0 7px;font-weight:500;line-height:1.6;text-shadow:0 1px 14px rgba(0,0,0,.35)}
.herotx p{margin:0;font-size:13px;opacity:.96;text-shadow:0 1px 12px rgba(0,0,0,.4)}

/* sections */
section{padding:50px 0}
.sh{display:flex;align-items:baseline;justify-content:space-between;margin-bottom:24px;
  border-bottom:1px solid var(--line);padding-bottom:12px}
.sh h2{font-size:17px;margin:0;font-weight:500;letter-spacing:.06em}
.sh a{font-size:12px;color:var(--sub);text-decoration:none}
.cat{display:inline-block;font-size:10px;color:var(--accent);border:1px solid var(--accent);
  border-radius:2px;padding:1px 7px;margin-bottom:9px;letter-spacing:.06em}

/* product block */
.prod{display:grid;grid-template-columns:1fr 1fr;gap:44px;align-items:center}
.prodimg{aspect-ratio:1/1;border-radius:3px;background:linear-gradient(140deg,#efe7dc,#ddcdbc);
  position:relative;overflow:hidden}
.prodimg>img{width:100%;height:100%;object-fit:cover}
.ph{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,.85);font-size:11px;letter-spacing:.12em;text-align:center;padding:12px}
.prod h3{font-size:21px;margin:0 0 5px;font-weight:500;letter-spacing:.06em}
.prod .lead{font-size:13px;color:var(--sub);margin:0 0 18px}
.prod p{font-size:14px;margin:0 0 22px}
.btn{display:inline-block;background:var(--ink);color:#fff;text-decoration:none;
  padding:13px 34px;border-radius:2px;font-size:13.5px;letter-spacing:.08em}
.btn:hover{background:#443f39}
.note{font-size:11.5px;color:var(--sub);margin-top:11px}
.price{font-size:15px;letter-spacing:.04em;margin:0 0 18px}
.price small{font-size:11.5px;color:var(--sub);margin-left:6px}

/* article body */
.page-h{padding:44px 0 4px}
.page-h h1{font-size:25px;font-weight:500;line-height:1.6;margin:0 0 10px;letter-spacing:.04em}
.page-h .sub{font-size:13px;color:var(--sub);margin:0}
.body h2{font-size:18px;font-weight:500;margin:42px 0 14px;padding-bottom:10px;
  border-bottom:1px solid var(--line);letter-spacing:.05em}
.body h3{font-size:15.5px;font-weight:600;margin:30px 0 8px}
.body p{margin:0 0 18px}
.body ul{margin:0 0 20px;padding-left:20px}
.body li{margin-bottom:8px}
.quiet{background:var(--soft);border-radius:4px;padding:20px 22px;font-size:13.5px;margin:26px 0}
.quiet b{font-weight:600}

/* byline */
.byline{border-top:1px solid var(--line);margin-top:10px;padding:26px 0 0;
  display:flex;gap:15px;align-items:center;font-size:12.5px;color:var(--sub)}
.byline .face{width:44px;height:44px;border-radius:50%;flex-shrink:0;
  background:linear-gradient(135deg,#e3d8cb,#c9b6a2);overflow:hidden}
.byline .face img{width:100%;height:100%;object-fit:cover}
.byline a{color:var(--accent);text-decoration:none;white-space:nowrap}

/* footer */
footer{border-top:1px solid var(--line);margin-top:24px;padding:32px 0 46px;font-size:12px;color:var(--sub)}
.frow{display:flex;justify-content:space-between;gap:20px;flex-wrap:wrap}
.frow a{color:var(--sub);text-decoration:none;margin-right:18px}
.frow a:hover{color:var(--accent)}

@media(max-width:760px){
  .prod{grid-template-columns:1fr;gap:24px}
  .herotx h1{font-size:19px}
  .heroimg{aspect-ratio:4/3;padding:20px}
  nav{gap:15px;font-size:12.5px}
  section{padding:38px 0}
  .page-h h1{font-size:20px}
}
