/*
Theme Name: 黒江の美容研究室
Theme URI: https://example.com
Author: 黒江
Author URI: https://example.com
Description: 美容ブログ「黒江の美容研究室 — 肌と成分の探求ノート」のオリジナルWordPressテーマ
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kuroe-theme
Tags: blog, beauty, japanese, skincare
*/

/* ─── VARIABLES ─── */
:root {
  --cream: #FAF6F1;
  --warm-white: #FFFCF8;
  --blush: #E8C4B8;
  --rose: #C4877A;
  --deep-rose: #9E5A50;
  --clay: #B8917A;
  --charcoal: #2C2825;
  --soft-black: #3A3633;
  --muted: #8A8178;
  --light-line: #E8E2DC;
  --gold: #C9A96E;
  --sage: #A8B5A0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--cream);
  color: var(--soft-black);
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 300;
  line-height: 1.9;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ─── HEADER ─── */
header.site-header {
  position: relative;
  padding: 2rem 2rem 0;
  background: var(--warm-white);
  border-bottom: 1px solid var(--light-line);
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 1.5rem;
}

.logo {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: var(--charcoal);
  text-decoration: none;
  position: relative;
}

.logo span {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 0.55rem;
  letter-spacing: 0.5em;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 300;
}

nav.main-nav {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}

nav.main-nav a,
nav.main-nav .menu-item a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  font-weight: 400;
  transition: color 0.3s;
  text-transform: uppercase;
}

nav.main-nav a:hover,
nav.main-nav .menu-item a:hover { color: var(--deep-rose); }

/* WordPress menu reset */
nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2.2rem;
  margin: 0;
  padding: 0;
}

nav.main-nav ul li { list-style: none; }

/* ─── HERO ─── */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.3s;
}

.hero-text p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 2;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.5s;
}

.hero-visual {
  position: relative;
  height: 480px;
  border-radius: 0 0 50% 50% / 0 0 15% 15%;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.2s;
}

.hero-visual-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--blush) 0%, var(--rose) 40%, var(--clay) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-visual-inner::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  top: 20%;
  left: 15%;
  animation: float 6s ease-in-out infinite;
}

.hero-visual-inner::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  bottom: 25%;
  right: 20%;
  animation: float 6s ease-in-out infinite 2s;
}

.hero-icon {
  font-size: 5rem;
  opacity: 0.4;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.1));
}

/* ─── CATEGORY STRIP ─── */
.categories {
  background: var(--warm-white);
  border-top: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
  padding: 1.2rem 2rem;
}

.categories-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cat-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-decoration: none;
  padding: 0.4rem 1.2rem;
  border: 1px solid var(--light-line);
  border-radius: 100px;
  transition: all 0.3s;
  font-weight: 400;
  cursor: pointer;
  display: inline-block;
}

.cat-tag:hover, .cat-tag.active {
  background: var(--deep-rose);
  color: white;
  border-color: var(--deep-rose);
}

/* ─── SECTION LABEL ─── */
.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--light-line);
}

/* ─── FEATURED POST ─── */
.featured {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.featured-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--warm-white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 40px rgba(0,0,0,0.04);
  transition: transform 0.4s ease;
  text-decoration: none;
  color: inherit;
}

.featured-card:hover { transform: translateY(-3px); }

.featured-img {
  height: 420px;
  background: linear-gradient(160deg, #E8D5CB 0%, #D4B5A5 50%, var(--sage) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.featured-img::before {
  content: '✦';
  position: absolute;
  font-size: 8rem;
  color: rgba(255,255,255,0.12);
  animation: rotate 20s linear infinite;
}

.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-content {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-content .tag {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--rose);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.featured-content h2 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}

.featured-content p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 2;
  margin-bottom: 2rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--deep-rose);
  text-decoration: none;
  font-weight: 500;
  transition: gap 0.3s;
}

.read-more:hover { gap: 1rem; }

/* ─── POST GRID ─── */
.posts {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.post-card {
  background: var(--warm-white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 1px 20px rgba(0,0,0,0.03);
  transition: all 0.4s ease;
  cursor: pointer;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
  text-decoration: none;
  color: inherit;
  display: block;
}

.post-card:nth-child(1) { animation-delay: 0.1s; }
.post-card:nth-child(2) { animation-delay: 0.2s; }
.post-card:nth-child(3) { animation-delay: 0.3s; }
.post-card:nth-child(4) { animation-delay: 0.4s; }
.post-card:nth-child(5) { animation-delay: 0.5s; }
.post-card:nth-child(6) { animation-delay: 0.6s; }

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.post-thumb {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-thumb .emoji-icon {
  font-size: 3rem;
  opacity: 0.6;
  transition: transform 0.4s;
}

.post-card:hover .emoji-icon { transform: scale(1.2); }

.post-body {
  padding: 1.8rem;
}

.post-body .date {
  font-size: 0.65rem;
  color: var(--clay);
  letter-spacing: 0.15em;
  margin-bottom: 0.8rem;
}

.post-body h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
}

.post-body p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.9;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ─── PR LABEL ─── */
.pr-label {
  display: inline-block;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  border: 1px solid var(--light-line);
  border-radius: 3px;
  padding: 0.15rem 0.5rem;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* ─── CONSULTATION CORNER ─── */
.consultation-section {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.consultation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.consult-card {
  background: var(--warm-white);
  border-radius: 6px;
  padding: 2rem;
  border-left: 3px solid var(--blush);
  box-shadow: 0 1px 20px rgba(0,0,0,0.03);
  cursor: pointer;
  transition: all 0.4s ease;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
  text-decoration: none;
  color: inherit;
  display: block;
}

.consult-card:nth-child(1) { animation-delay: 0.1s; }
.consult-card:nth-child(2) { animation-delay: 0.2s; }
.consult-card:nth-child(3) { animation-delay: 0.3s; }
.consult-card:nth-child(4) { animation-delay: 0.4s; }

.consult-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(0,0,0,0.07);
  border-left-color: var(--deep-rose);
}

.consult-card .consult-badge {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: white;
  background: var(--rose);
  border-radius: 100px;
  padding: 0.2rem 0.8rem;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.consult-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}

.consult-card p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.9;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.consult-card .consult-icon {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}

.consult-cta-banner {
  margin-top: 2rem;
  background: linear-gradient(135deg, rgba(232,196,184,0.15) 0%, rgba(168,181,160,0.15) 100%);
  border: 1px dashed var(--blush);
  border-radius: 8px;
  padding: 2rem 2.5rem;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.5s;
}

.consult-cta-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.consult-cta-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
}

.consult-cta-text {
  flex: 1;
}

.consult-cta-text h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.consult-cta-text p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.9;
}

.consult-cta-note {
  display: block;
  font-size: 0.68rem;
  color: var(--clay);
  margin-top: 0.3rem;
}

.consult-form-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

/* ─── CTA BUTTON ─── */
.cta-button {
  display: inline-block;
  background: var(--deep-rose);
  color: white;
  text-decoration: none;
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: all 0.3s;
  margin: 0.8rem 0.5rem 0.8rem 0;
  cursor: pointer;
}

.cta-button:hover {
  background: var(--charcoal);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.cta-button.secondary {
  background: transparent;
  color: var(--deep-rose);
  border: 1px solid var(--deep-rose);
}

.cta-button.secondary:hover {
  background: var(--deep-rose);
  color: white;
}

/* ─── ENTERTAINMENT COLUMN ─── */
.entame-section {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.entame-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.entame-card {
  background: var(--warm-white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 1px 20px rgba(0,0,0,0.03);
  cursor: pointer;
  transition: all 0.4s ease;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
  text-decoration: none;
  color: inherit;
  display: block;
}

.entame-card:nth-child(1) { animation-delay: 0.15s; }
.entame-card:nth-child(2) { animation-delay: 0.3s; }
.entame-card:nth-child(3) { animation-delay: 0.45s; }

.entame-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.entame-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.entame-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.entame-thumb .media-badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  color: white;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  border-radius: 100px;
  padding: 0.25rem 0.7rem;
  font-weight: 500;
  z-index: 2;
}

.entame-thumb .emoji-icon {
  font-size: 3rem;
  opacity: 0.6;
  transition: transform 0.4s;
}

.entame-card:hover .emoji-icon { transform: scale(1.2); }

.entame-body {
  padding: 1.5rem;
}

.entame-body .date {
  font-size: 0.65rem;
  color: var(--clay);
  letter-spacing: 0.15em;
  margin-bottom: 0.6rem;
}

.entame-body h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.entame-body p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.9;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ─── BEAUTY TRAVEL ─── */
.travel-section {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.travel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.travel-card {
  background: var(--warm-white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 1px 20px rgba(0,0,0,0.03);
  transition: all 0.4s ease;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
  text-decoration: none;
  color: inherit;
  display: block;
}

.travel-card:nth-child(1) { animation-delay: 0.15s; }
.travel-card:nth-child(2) { animation-delay: 0.3s; }
.travel-card:nth-child(3) { animation-delay: 0.45s; }

.travel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.travel-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.travel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.travel-thumb .travel-badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  color: white;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  border-radius: 100px;
  padding: 0.25rem 0.7rem;
  font-weight: 500;
  z-index: 2;
}

.travel-thumb .emoji-icon {
  font-size: 3rem;
  opacity: 0.6;
  transition: transform 0.4s;
}

.travel-card:hover .emoji-icon { transform: scale(1.2); }

.travel-body {
  padding: 1.5rem;
}

.travel-body .date {
  font-size: 0.65rem;
  color: var(--sage);
  letter-spacing: 0.15em;
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.travel-body h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.travel-body p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.9;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ─── PROFILE ─── */
.profile-section {
  max-width: 1200px;
  margin: 5rem auto;
  padding: 0 2rem;
}

.profile-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--warm-white);
  padding: 3rem;
  border-radius: 2px;
  box-shadow: 0 2px 40px rgba(0,0,0,0.04);
}

.profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--sage));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  overflow: hidden;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.profile-info h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.profile-info .credentials {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--rose);
  margin-bottom: 1rem;
}

.profile-info p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 2;
}

/* ─── FOOTER ─── */
footer.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.5);
  padding: 3.5rem 2rem;
  text-align: center;
  margin-top: 4rem;
}

.footer-logo {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1rem;
}

footer.site-footer p {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
}

/* ─── SINGLE ARTICLE ─── */
.article-detail {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.article-detail .back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 3rem;
  transition: color 0.3s;
}

.article-detail .back-btn:hover { color: var(--deep-rose); }

.article-detail .article-tag {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--rose);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.article-detail h1 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--light-line);
}

/* Article body */
.article-body p,
.entry-content p {
  font-size: 0.92rem;
  line-height: 2.2;
  margin-bottom: 1.8rem;
  color: var(--soft-black);
}

.article-body h2,
.entry-content h2 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--charcoal);
  margin: 3rem 0 1.5rem;
  padding-left: 1rem;
  border-left: 2px solid var(--blush);
}

.article-body h3,
.entry-content h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--charcoal);
  margin: 2rem 0 1rem;
}

.article-body .highlight-box,
.entry-content .highlight-box,
.wp-block-group.is-style-highlight {
  background: var(--warm-white);
  border: 1px solid var(--light-line);
  border-radius: 4px;
  padding: 1.8rem 2rem;
  margin: 2rem 0;
}

.highlight-box h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ─── AFFILIATE ARTICLE ELEMENTS ─── */
.comparison-table,
.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.82rem;
}

.comparison-table thead,
.wp-block-table thead {
  background: var(--charcoal);
  color: rgba(255,255,255,0.9);
}

.comparison-table th,
.wp-block-table th {
  padding: 0.9rem 1rem;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-align: left;
}

.comparison-table td,
.wp-block-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--light-line);
  vertical-align: top;
  line-height: 1.7;
}

.comparison-table tbody tr:hover,
.wp-block-table tbody tr:hover {
  background: rgba(232,196,184,0.08);
}

.product-name {
  font-weight: 500;
  color: var(--charcoal);
}

/* Product card */
.product-card {
  background: var(--warm-white);
  border: 1px solid var(--light-line);
  border-radius: 6px;
  padding: 2rem;
  margin: 2rem 0;
}

.product-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.product-card .price {
  font-size: 0.75rem;
  color: var(--rose);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.product-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.product-card ul li {
  font-size: 0.82rem;
  color: var(--soft-black);
  padding: 0.3rem 0;
  padding-left: 1.3rem;
  position: relative;
  line-height: 1.8;
}

.product-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

.recommend-for {
  font-size: 0.78rem;
  color: var(--muted);
  background: var(--cream);
  padding: 0.8rem 1.2rem;
  border-radius: 4px;
  margin: 1rem 0;
}

.recommend-for strong {
  color: var(--deep-rose);
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--light-line);
  padding: 1.5rem 0;
}

.faq-item:last-child { border-bottom: none; }

.faq-q {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
  display: flex;
  gap: 0.6rem;
}

.faq-q::before {
  content: 'Q.';
  color: var(--deep-rose);
  font-weight: 700;
  flex-shrink: 0;
}

.faq-a {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 2;
  padding-left: 1.8rem;
}

/* CTA section */
.cta-section {
  text-align: center;
  padding: 2.5rem 0;
  margin: 2rem 0;
  border-top: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
}

.cta-section p {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

/* Question/Answer boxes for consultation */
.question-box {
  background: var(--cream);
  border-radius: 6px;
  padding: 1.5rem 2rem;
  margin: 2rem 0 1rem;
  border-left: 3px solid var(--rose);
}

.question-box p {
  font-weight: 400;
  color: var(--charcoal);
}

.answer-box {
  background: var(--warm-white);
  border: 1px solid var(--blush);
  border-radius: 6px;
  padding: 1.8rem 2rem;
  margin: 1.5rem 0;
  position: relative;
}

.answer-box::before {
  content: 'A.';
  position: absolute;
  top: 1.5rem;
  left: -0.8rem;
  background: var(--deep-rose);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Media info box */
.media-info-box {
  background: linear-gradient(135deg, rgba(201,169,110,0.08), rgba(168,181,160,0.08));
  border: 1px solid var(--light-line);
  border-radius: 6px;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}

.media-info-box h4 {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.media-info-box p {
  font-size: 0.82rem;
  line-height: 2;
  margin-bottom: 0.3rem;
}

/* Title proposals */
.title-proposals {
  background: var(--cream);
  border: 1px dashed var(--light-line);
  border-radius: 6px;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.title-proposals h4 {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.title-proposals ol {
  padding-left: 1.5rem;
  line-height: 2.2;
}

/* ─── ARCHIVE / CATEGORY PAGE ─── */
.archive-header {
  max-width: 1200px;
  margin: 3rem auto 2rem;
  padding: 0 2rem;
}

.archive-header h1 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--charcoal);
}

/* ─── PAGINATION ─── */
.pagination {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
  text-align: center;
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.pagination .page-numbers {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  color: var(--muted);
  border: 1px solid var(--light-line);
  border-radius: 100px;
  transition: all 0.3s;
  text-decoration: none;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
  background: var(--deep-rose);
  color: white;
  border-color: var(--deep-rose);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.5rem 3rem;
    gap: 2rem;
  }
  .hero-visual { height: 280px; }
  .hero-text h1 { font-size: 1.6rem; }
  .post-grid { grid-template-columns: 1fr; }
  .consultation-grid { grid-template-columns: 1fr; }
  .consult-cta-inner { flex-direction: column; text-align: center; }
  .entame-grid { grid-template-columns: 1fr; }
  .travel-grid { grid-template-columns: 1fr; }
  .featured-card { grid-template-columns: 1fr; }
  .featured-img { height: 250px; }
  .featured-content { padding: 2rem; }
  .profile-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  nav.main-nav ul { gap: 1rem; }
  nav.main-nav a { font-size: 0.6rem; }
  .header-top { flex-direction: column; gap: 1rem; }
  .article-detail { padding: 2rem 1.5rem 4rem; }
}
