/* ============================================================
   ZenDailyJapan — Main Stylesheet
   Colors:
     --green-deep   #2D4A3E  (primary brand)
     --green-mid    #7B9E87  (accent)
     --cream        #F5F0E8  (background)
     --sand         #E8DDD0  (section alt)
     --charcoal     #2C2C2C  (text)
   ============================================================ */

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

:root {
  --green-deep: #2D4A3E;
  --green-mid:  #7B9E87;
  --cream:      #F5F0E8;
  --sand:       #E8DDD0;
  --charcoal:   #2C2C2C;
  --white:      #FFFFFF;
  --radius:     4px;
  --max-w:      1200px;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--cream);
}

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

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

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
}

.btn-primary {
  background: var(--green-deep);
  color: var(--cream);
  border-color: var(--green-deep);
}

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

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

.btn-outline:hover {
  background: var(--green-deep);
  color: var(--cream);
}

/* ── SECTION SHARED ── */
section {
  padding: 80px 0;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  max-width: 560px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HEADER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--sand);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-wrap img,
.logo-wrap svg {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: 0.02em;
  line-height: 1;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--green-deep);
  font-weight: 500;
}

.header-cta svg {
  width: 16px;
  height: 16px;
  stroke: var(--green-deep);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BLOCK 1 — HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  padding: 0;
  position: relative;
  height: 92vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--sand);
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(245,240,232,0.92) 40%, rgba(245,240,232,0.20) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.hero-content .section-label {
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.1;
  margin-bottom: 24px;
}

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

.hero-desc {
  font-size: 17px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BLOCK 2 — BRAND STRIP / PILLARS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.pillars {
  background: var(--green-deep);
  padding: 48px 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.pillar-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.10);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--cream);
}

.pillar-text h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 4px;
}

.pillar-text p {
  font-size: 13px;
  color: rgba(245,240,232,0.70);
  line-height: 1.5;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BLOCK 3 — ABOUT INTRO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.about-intro {
  background: var(--cream);
}

.about-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-intro-image {
  position: relative;
}

.about-intro-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-intro-image .img-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 140px;
  height: 140px;
  background: var(--sand);
  border-radius: var(--radius);
  z-index: -1;
}

.about-intro-text .section-subtitle {
  margin-bottom: 32px;
}

.stats-row {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--sand);
}

.stat-item h3 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 13px;
  color: #777;
  letter-spacing: 0.04em;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BLOCK 4 — PRACTICES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.practices {
  background: var(--sand);
}

.practices-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 24px;
}

.practices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0 auto;
  max-width: 900px;
}

.practice-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid transparent;
}

.practice-card:hover {
  border-color: var(--green-mid);
}

.practice-num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 20px;
}

.practice-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 12px;
}

.practice-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BLOCK 5 — LIFESTYLE SPLIT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.lifestyle-split {
  background: var(--cream);
  padding: 0;
}

.lifestyle-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}

.lifestyle-image {
  overflow: hidden;
}

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

.lifestyle-text {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--green-deep);
}

.lifestyle-text .section-label {
  color: var(--green-mid);
}

.lifestyle-text .section-title {
  color: var(--cream);
}

.lifestyle-text p {
  color: rgba(245,240,232,0.80);
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 15px;
}

.lifestyle-text .btn-outline {
  color: var(--cream);
  border-color: var(--cream);
  margin-top: 12px;
  align-self: flex-start;
}

.lifestyle-text .btn-outline:hover {
  background: var(--cream);
  color: var(--green-deep);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BLOCK 6 — PRODUCTS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.products {
  background: var(--sand);
}

.products-header {
  text-align: center;
  margin-bottom: 56px;
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}

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

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--sand);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.product-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 8px;
}

.product-card-body h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 8px;
  line-height: 1.25;
}

.product-card-body p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 16px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BLOCK 7 — PHILOSOPHY / QUOTE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.philosophy {
  background: var(--cream);
  text-align: center;
}

.philosophy blockquote {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3.5vw, 40px);
  font-weight: 500;
  font-style: italic;
  color: var(--green-deep);
  line-height: 1.4;
  max-width: 820px;
  margin: 0 auto 24px;
}

.philosophy cite {
  font-size: 13px;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  display: block;
}

.philosophy-divider {
  width: 48px;
  height: 2px;
  background: var(--green-mid);
  margin: 0 auto 40px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BLOCK 8 — DAILY RITUALS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.rituals {
  background: var(--sand);
}

.rituals-header {
  max-width: 560px;
  margin-bottom: 56px;
}

.rituals-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ritual-item {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--cream);
  border-radius: var(--radius);
}

.ritual-icon-wrap {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--sand);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ritual-icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: var(--green-deep);
}

.ritual-body h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 6px;
}

.ritual-body p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BLOCK 9 — TESTIMONIALS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.testimonials {
  background: var(--cream);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}

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

.testimonial-card {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.testimonial-card p {
  font-family: var(--font-heading);
  font-size: 18px;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--cream);
  flex-shrink: 0;
}

.author-info span {
  display: block;
  font-weight: 600;
  font-size: 13px;
  color: var(--green-deep);
}

.author-info small {
  font-size: 12px;
  color: #888;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BLOCK 10 — CONTACTS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.contacts {
  background: var(--sand);
}

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

.contacts-info .section-subtitle {
  margin-bottom: 40px;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-list-icon {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-list-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--green-deep);
}

.contact-list-text span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 2px;
}

.contact-list-text a,
.contact-list-text p {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.5;
}

.contact-list-text a:hover {
  color: var(--green-deep);
}

.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 48px 40px;
}

.contact-form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #777;
}

.form-group input,
.form-group textarea {
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--charcoal);
  background: var(--cream);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-full {
  margin-bottom: 16px;
}

.form-submit {
  margin-top: 8px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-footer {
  background: var(--green-deep);
  color: rgba(245,240,232,0.75);
  padding: 56px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(245,240,232,0.12);
  margin-bottom: 32px;
}

.footer-brand .logo-wrap .brand-name {
  color: var(--cream);
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  margin-top: 16px;
  color: rgba(245,240,232,0.65);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(245,240,232,0.65);
}

.footer-col ul li a:hover {
  color: var(--cream);
}

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

.footer-bottom p {
  font-size: 12px;
  color: rgba(245,240,232,0.45);
}

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

.footer-legal a {
  font-size: 12px;
  color: rgba(245,240,232,0.45);
}

.footer-legal a:hover {
  color: rgba(245,240,232,0.80);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }

  .about-intro-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-intro-image img { height: 300px; }
  .about-intro-image .img-accent { display: none; }

  .practices-header { flex-direction: column; align-items: flex-start; }
  .practices-grid { grid-template-columns: 1fr; }

  .lifestyle-split-inner { grid-template-columns: 1fr; }
  .lifestyle-image { height: 280px; }
  .lifestyle-text { padding: 48px 32px; }

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

  .rituals-list { grid-template-columns: 1fr; }

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

  .contacts-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { gap: 24px; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 34px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
}
