
:root {
  --cream: #faf9f7;
  --cream-warm: #f4f1ec;
  --sand: #e8e3db;
  --accent: #b8866b;
  --accent-light: #d4a98a;
  --accent-dark: #96684e;
  --charcoal: #2d2d2d;
  --charcoal-light: #404040;
  --charcoal-dark: #1a1a1a;
  --text: #2d2d2d;
  --text-secondary: #6b6560;
  --text-muted: #9a928a;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: "Noto Sans JP", -apple-system, "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.04em;
  margin: 0;
}

/* ===== Hero ===== */
.hero-cb {
  position: relative;
  padding: 140px 48px 72px;
  background: linear-gradient(135deg, var(--cream-warm) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--sand);
}
.hero-cb-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.hero-cb .label {
  font-family: "Cormorant Garamond", serif;
  font-size: .9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 16px;
  font-weight: 500;
}
.hero-cb h1 {
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: var(--charcoal-dark);
  margin: 0 0 24px;
}
.hero-cb h1 .h1-sub {
  display: block;
  font-size: .72em;
  color: var(--charcoal);
  font-weight: 400;
  margin-top: 10px;
  letter-spacing: 0.04em;
}
.hero-cb .sub {
  font-size: 1.02rem;
  color: var(--charcoal);
  line-height: 1.95;
  max-width: 680px;
  margin: 0 auto;
  font-weight: 400;
}
.hero-cb .meta {
  font-size: .82rem;
  color: var(--text-secondary);
  margin-top: 24px;
  letter-spacing: 0.15em;
}

/* ===== Section ===== */
section.article-section {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 24px;
}
.section-tag {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-size: .8rem;
  letter-spacing: 0.25em;
  color: var(--accent-dark);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.article-section h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: var(--charcoal);
  margin: 0 0 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--sand);
}
.article-section h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--accent-dark);
  margin: 32px 0 12px;
}
.article-section p {
  margin: 0 0 18px;
}
.article-section ul, .article-section ol {
  padding-left: 1.5em;
  margin: 0 0 18px;
}
.article-section li {
  margin-bottom: 8px;
}

/* ===== Lead intro ===== */
.lead {
  background: var(--cream-warm);
  border-left: 3px solid var(--accent);
  padding: 24px 28px;
  border-radius: 4px;
  margin: 0 0 32px;
  font-size: .95rem;
  color: var(--text-secondary);
  line-height: 1.95;
}

/* ===== Recipe spec card ===== */
.recipe-card {
  background: #fff;
  border: 1px solid var(--sand);
  border-radius: 8px;
  padding: 24px 28px;
  margin: 24px 0;
}
.recipe-card h4 {
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 12px;
  color: var(--charcoal);
}
.recipe-card dl {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px 16px;
  margin: 0;
  font-size: .9rem;
}
.recipe-card dt {
  color: var(--text-muted);
  font-weight: 500;
}
.recipe-card dd {
  margin: 0;
}

/* ===== Steps ===== */
.steps {
  list-style: none;
  padding: 0;
  counter-reset: step;
  margin: 24px 0;
}
.steps li {
  counter-increment: step;
  position: relative;
  padding: 16px 0 16px 56px;
  border-bottom: 1px solid var(--sand);
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 600;
}
.steps li:last-child {
  border-bottom: none;
}
.steps .step-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.steps .step-time {
  font-size: .8rem;
  color: var(--accent-dark);
  letter-spacing: 0.1em;
  margin-right: 10px;
}
.steps .step-body {
  font-size: .92rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ===== Tip box ===== */
.tip {
  background: #fff;
  border: 1px solid var(--sand);
  border-left: 3px solid var(--accent-light);
  padding: 18px 22px;
  border-radius: 4px;
  margin: 16px 0;
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.9;
}
.tip strong {
  color: var(--accent-dark);
  font-weight: 500;
}

/* ===== Image ===== */
figure.fig {
  margin: 24px 0;
}
figure.fig img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}
figure.fig figcaption {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: 8px;
  text-align: center;
  letter-spacing: 0.05em;
}

/* ===== Image grid (3 columns) ===== */
.fig-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}
.fig-grid-3 figure {
  margin: 0;
}
.fig-grid-3 img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}
.fig-grid-3 figcaption {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 6px;
  text-align: center;
}
@media (max-width: 600px) {
  .fig-grid-3 { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .fig-grid-3 figcaption { font-size: .7rem; }
}

/* ===== Pattern table ===== */
.pattern-table {
  display: grid;
  grid-template-columns: 70px repeat(3, 1fr);
  gap: 0;
  margin: 24px 0;
  border: 1px solid var(--sand);
  border-radius: 6px;
  overflow: hidden;
  font-size: .88rem;
}
.pattern-table > div {
  padding: 12px 14px;
  border-bottom: 1px solid var(--sand);
  border-right: 1px solid var(--sand);
  background: #fff;
}
.pattern-table > div:nth-child(4n) { border-right: none; }
.pattern-table > div:nth-last-child(-n+4) { border-bottom: none; }
.pattern-table .head {
  background: var(--cream-warm);
  font-weight: 500;
  color: var(--charcoal);
  text-align: center;
}
.pattern-table .time {
  background: var(--cream-warm);
  font-weight: 500;
  text-align: center;
  color: var(--accent-dark);
}
.pattern-table .total {
  background: var(--cream);
  font-weight: 500;
}

/* ===== Flavor card ===== */
.flavor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.flavor-card {
  background: #fff;
  border: 1px solid var(--sand);
  border-radius: 8px;
  padding: 22px 24px;
}
.flavor-card .badge {
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  text-align: center;
  line-height: 36px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.flavor-card h4 {
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 12px;
  color: var(--charcoal);
}
.flavor-card p {
  font-size: .9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.85;
}

/* ===== FAQ ===== */
.faq-list {
  margin: 24px 0;
}
.faq-item {
  border-bottom: 1px solid var(--sand);
  padding: 20px 0;
}
.faq-item:first-child { border-top: 1px solid var(--sand); }
.faq-q {
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin: 0 0 10px;
  padding-left: 28px;
  position: relative;
}
.faq-q::before {
  content: "Q.";
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}
.faq-a {
  font-size: .92rem;
  color: var(--text-secondary);
  margin: 0;
  padding-left: 28px;
  position: relative;
  line-height: 1.95;
}
.faq-a::before {
  content: "A.";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

/* ===== Related ===== */
.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 24px 0;
}
.related-card {
  display: block;
  background: #fff;
  border: 1px solid var(--sand);
  border-radius: 8px;
  padding: 22px 24px;
  text-decoration: none;
  color: var(--text);
  transition: border-color .25s, transform .25s;
}
.related-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.related-tag {
  font-family: "Cormorant Garamond", serif;
  font-size: .75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 8px;
}
.related-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.6;
}
.related-desc {
  font-size: .88rem;
  color: var(--text-secondary);
  line-height: 1.85;
}

/* ===== Products ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin: 24px 0;
}
.product-card {
  display: block;
  background: #fff;
  border: 1px solid var(--sand);
  border-radius: 8px;
  padding: 20px 22px;
  text-decoration: none;
  color: var(--text);
  position: relative;
  transition: border-color .25s, transform .25s;
}
.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.product-badge {
  position: absolute;
  top: 12px;
  right: 14px;
  background: var(--accent);
  color: #fff;
  font-size: .7rem;
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: 0.1em;
}
.product-title {
  font-size: .95rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.5;
  padding-right: 60px;
}
.product-desc {
  font-size: .85rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 10px;
}
.product-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: var(--accent-dark);
  font-weight: 600;
}
.shop-link {
  display: inline-block;
  padding: 14px 28px;
  background: var(--charcoal);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: .9rem;
  letter-spacing: 0.1em;
  transition: background .25s;
}
.shop-link:hover {
  background: var(--accent);
}

@media (max-width: 600px) {
  .hero-cb { padding: 80px 24px 48px; }
  section.article-section { padding: 48px 20px; }
  .recipe-card dl { grid-template-columns: 90px 1fr; gap: 8px 12px; }
  .pattern-table { grid-template-columns: 56px repeat(3, 1fr); font-size: .8rem; }
  .pattern-table > div { padding: 10px 8px; }
  .steps li { padding-left: 48px; }
  .steps li::before { width: 30px; height: 30px; font-size: 1rem; }
}
