/* ============================================================
   JP Healthy Kitchen — Main Stylesheet
   Font: Noto Sans JP (system fallback stack for Japanese)
   Colors:
     --green-dark   #2D6A4F
     --green-mid    #52B788
     --green-light  #B7E4C7
     --cream        #F4F7F2
     --text         #1A2E22
     --text-muted   #5A6B5F
     --white        #FFFFFF
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: #F4F7F2;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans",
               "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
  color: #1A2E22;
  background-color: #F4F7F2;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ---------- CSS Variables ---------- */
:root {
  --green-dark:  #2D6A4F;
  --green-mid:   #52B788;
  --green-light: #B7E4C7;
  --cream:       #F4F7F2;
  --cream-dark:  #E8EFE4;
  --text:        #1A2E22;
  --text-muted:  #5A6B5F;
  --white:       #FFFFFF;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 2px 12px rgba(45,106,79,0.10);
  --shadow-lg:   0 6px 28px rgba(45,106,79,0.14);
  --max-width:   1160px;
  --section-gap: 96px;
}

/* ---------- Utility ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-gap) 0;
}

.section--alt {
  background-color: var(--cream-dark);
}

.section--dark {
  background-color: var(--green-dark);
  color: var(--white);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 12px;
}

.section-label--light {
  color: var(--green-light);
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 16px;
}

.section-title--light {
  color: var(--white);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.6;
}

.section--centered {
  text-align: center;
}

.section--centered .section-header {
  margin-left: auto;
  margin-right: auto;
}

.section--centered .about-intro-inner,
.section--centered .meal-prep-inner {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section--centered .about-intro-content {
  text-align: center;
}

.section--centered .meal-prep-content {
  text-align: center;
}

.section-subtitle--light {
  color: rgba(255,255,255,0.75);
}

.section-header {
  margin-bottom: 56px;
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-subtitle {
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
  white-space: nowrap;
  font-family: inherit;
}

.btn--primary {
  background-color: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}

.btn--primary:hover {
  background-color: #235840;
  border-color: #235840;
}

.btn--outline {
  background-color: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}

.btn--outline:hover {
  background-color: var(--green-dark);
  color: var(--white);
}

.btn--light {
  background-color: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}

.btn--light:hover {
  background-color: var(--green-light);
  border-color: var(--green-light);
}

.btn--email {
  background-color: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}

.btn--email:hover {
  background-color: #3d9a6e;
  border-color: #3d9a6e;
}

/* ---------- Photo Placeholder ---------- */
.photo-placeholder {
  background-color: var(--cream-dark);
  border: 2px dashed var(--green-light);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  gap: 8px;
  overflow: hidden;
  position: relative;
}

.photo-placeholder svg {
  opacity: 0.4;
}

.photo-placeholder span {
  opacity: 0.6;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background-color: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-logo {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.header-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header-brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: 0.02em;
}

.header-brand-tagline {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.header-contact strong {
  color: var(--green-dark);
  font-weight: 700;
}

/* ============================================================
   BLOCK 1 — HERO
   ============================================================ */
.hero {
  padding: 80px 0 72px;
  background-color: var(--white);
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-content {
  flex: 1 1 480px;
}

.hero-eyebrow {
  display: inline-block;
  background-color: var(--green-light);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-title em {
  color: var(--green-dark);
  font-style: normal;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1 1 420px;
  max-width: 520px;
}

.hero-photo {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

/* ============================================================
   BLOCK 2 — STATS / INTRO NUMBERS
   ============================================================ */
.stats {
  padding: 60px 0;
  background-color: var(--green-dark);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.72);
  margin-top: 6px;
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background-color: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* ============================================================
   BLOCK 3 — ABOUT INTRODUCTION
   ============================================================ */
.about-intro {
  padding: var(--section-gap) 0;
  background-color: var(--white);
}

.about-intro-inner {
  display: flex;
  align-items: center;
  gap: 72px;
}

.about-intro-image {
  flex: 1 1 360px;
  max-width: 440px;
}

.about-intro-photo {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.about-intro-content {
  flex: 1 1 440px;
}

.about-intro-content .section-subtitle {
  max-width: 100%;
  margin-bottom: 28px;
}

.about-feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  background-color: var(--green-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-icon svg {
  width: 18px;
  height: 18px;
  color: var(--green-dark);
}

.about-feature-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.about-feature-text span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ============================================================
   BLOCK 4 — RECIPE CATEGORIES
   ============================================================ */
.categories {
  padding: var(--section-gap) 0;
  background-color: var(--cream);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.category-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow);
}

.category-card-icon {
  width: 56px;
  height: 56px;
  background-color: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.category-card-icon svg {
  width: 26px;
  height: 26px;
  color: var(--green-dark);
}

.category-card-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.category-card-count {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   BLOCK 5 — FEATURED RECIPES
   ============================================================ */
.featured-recipes {
  padding: var(--section-gap) 0;
  background-color: var(--white);
}

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.recipe-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow);
}

.recipe-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.recipe-card-body {
  padding: 20px 22px 22px;
}

.recipe-card-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.recipe-tag {
  background-color: var(--green-light);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.recipe-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.4;
}

.recipe-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.recipe-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-top: 14px;
  border-top: 1px solid var(--cream-dark);
}

.recipe-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.recipe-meta-item svg {
  width: 14px;
  height: 14px;
  color: var(--green-mid);
}

/* ============================================================
   BLOCK 6 — MEAL PREP TIPS
   ============================================================ */
.meal-prep {
  padding: var(--section-gap) 0;
  background-color: var(--cream-dark);
}

.meal-prep-inner {
  display: flex;
  align-items: flex-start;
  gap: 64px;
}

.meal-prep-content {
  flex: 1 1 460px;
}

.meal-prep-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
}

.meal-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.meal-step-num {
  width: 44px;
  height: 44px;
  background-color: var(--green-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  flex-shrink: 0;
}

.meal-step-text strong {
  display: block;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.meal-step-text span {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.meal-prep-image {
  flex: 1 1 380px;
  max-width: 460px;
}

.meal-prep-photo {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

/* ============================================================
   BLOCK 7 — KITCHEN IDEAS
   ============================================================ */
.kitchen-ideas {
  padding: var(--section-gap) 0;
  background-color: var(--white);
}

.ideas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.idea-card {
  padding: 30px 26px;
  background-color: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
}

.idea-card-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 12px;
}

.idea-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.idea-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   BLOCK 8 — PRODUCTS
   ============================================================ */
.products {
  padding: var(--section-gap) 0;
  background-color: var(--cream-dark);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}

.product-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.product-card-image {
  width: 100%;
  height: 200px;
  border-radius: 0;
  object-fit: cover;
}

.product-card-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 6px;
}

.product-card-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.4;
}

.product-card-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

.product-card-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.product-card-price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
}

.product-card-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ============================================================
   BLOCK 9 — TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: var(--section-gap) 0;
  background-color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background-color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  border: 1px solid var(--cream-dark);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}

.star {
  width: 16px;
  height: 16px;
  background-color: var(--green-mid);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar .photo-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   BLOCK 10 — CONTACTS
   ============================================================ */
.contacts {
  padding: var(--section-gap) 0;
  background-color: var(--green-dark);
  color: var(--white);
}

.contacts-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 72px;
  align-items: start;
}

.contacts-info-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.contact-info-icon {
  width: 46px;
  height: 46px;
  background-color: rgba(255,255,255,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
  color: var(--green-light);
}

.contact-info-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.5;
}

.contact-info-value a {
  color: var(--white);
}

.contact-info-value a:hover {
  color: var(--green-light);
}

.contacts-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.15);
}

.contacts-map-placeholder {
  width: 100%;
  height: 320px;
  background-color: rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
}

.contacts-map-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--green-light);
  opacity: 0.6;
}

.contacts-map-placeholder span {
  font-size: 0.85rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: #1A2E22;
  color: rgba(255,255,255,0.65);
  padding: 56px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-logo {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.footer-brand-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
}

.footer-about {
  font-size: 0.87rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}

.footer-links a:hover {
  color: var(--green-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-legal a:hover {
  color: var(--green-light);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .ideas-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 64px;
  }

  .hero-inner {
    flex-direction: column-reverse;
    gap: 36px;
  }

  .hero-image {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .hero-photo {
    height: 260px;
  }

  .about-intro-inner {
    flex-direction: column;
    gap: 36px;
  }

  .about-intro-image {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .about-intro-photo {
    height: 260px;
  }

  .meal-prep-inner {
    flex-direction: column;
    gap: 36px;
  }

  .meal-prep-image {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .meal-prep-photo {
    height: 260px;
  }

  .stat-divider {
    display: none;
  }

  .stats-grid {
    gap: 36px;
  }

  .ideas-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contacts-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .header-contact {
    display: none;
  }
}

@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
