

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

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

:root {
  --bg:          #F8F5EF;
  --bg-alt:      #EDE6D6;
  --bg-dark:     #252320;
  --primary:     #252320;
  --accent:      #5C7C5F;
  --accent-dark: #3D5C40;
  --warm:        #B5784A;
  --warm-dark:   #8F5D38;
  --text:        #3A3630;
  --text-light:  #7A7265;
  --border:      #D1C9B8;
  --white:       #FFFFFF;

  --font: 'Noto Sans JP', sans-serif;

  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  16px;

  --max-w: 1200px;
}

html { font-size: 16px; }

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.75;
}

img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button { cursor: pointer; font-family: var(--font); }

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

section { padding: 80px 0; }
.s-alt  { background-color: var(--bg-alt); }
.s-dark { background-color: var(--bg-dark); color: var(--white); }

section > .container > div:not(.header-inner):not(.footer-inner) { text-align: center; }
.hero { text-align: left; }
.contacts { text-align: left; }

.sh { text-align: center; margin-bottom: 56px; }
.sh--left { text-align: left; }

.sh__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.sh__title {
  font-size: clamp(22px, 3.2vw, 36px);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 14px;
}

.s-dark .sh__title { color: var(--white); }

.sh__desc {
  font-size: 15px;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.9;
}

.sh--left .sh__desc { margin: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font);
  border: none;
  border-radius: var(--r-sm);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--white);
}
.btn-primary:hover { background-color: var(--accent-dark); }

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

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

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 10px 20px;
  font-size: 13px;
}
.btn-ghost:hover {
  background-color: var(--accent);
  color: var(--white);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

.btn-secondary {
  background-color: #D4A574;
  color: var(--white);
}
.btn-secondary:hover {
  background-color: #c49461;
}

.photo-ph {
  background-color: var(--bg-alt);
  border: 2px dashed var(--border);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 13px;
  text-align: center;
}

.photo-ph svg {
  width: 32px;
  height: 32px;
  stroke: var(--border);
  fill: none;
}

.site-header {
  height: 76px;
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 200;
}

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

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

.site-logo__icon {
  width: 38px;
  height: 46px;
  flex-shrink: 0;
}

.site-logo__brand { display: flex; flex-direction: column; }

.site-logo__name {
  font-size: 21px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.025em;
  line-height: 1.1;
}

.site-logo__sub {
  font-size: 10px;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: .08em;
  margin-top: 1px;
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  color: var(--text-light);
}

.header-meta a { color: var(--text-light); }
.header-meta a:hover { color: var(--accent); }

.header-meta__sep {
  width: 1px;
  height: 18px;
  background-color: var(--border);
}

.hero {
  background-color: var(--bg-alt);
  padding: 100px 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.hero__kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.hero__title {
  font-size: clamp(30px, 4.8vw, 58px);
  font-weight: 700;
  line-height: 1.18;
  color: var(--primary);
  margin-bottom: 22px;
}

.hero__title em {
  font-style: normal;
  color: var(--accent);
}

.hero__desc {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 38px;
  max-width: 460px;
}

.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-md);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--r-md);
}

.about__body {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.95;
  margin-bottom: 16px;
}

.about__stats {
  display: flex;
  gap: 36px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.stat__num {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.stat__label {
  font-size: 12px;
  color: var(--text-light);
}

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

.feat-card {
  padding: 28px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}

.feat-card__icon {
  width: 46px;
  height: 46px;
  background-color: var(--bg-alt);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feat-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feat-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.feat-card__desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}

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

.step { text-align: center; }

.step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--accent);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.step__desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.85;
}

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

.prod-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.prod-card__img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  font-size: 12px;
}

.prod-card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.prod-card__cat {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.prod-card__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.35;
}

.prod-card__desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}

.prod-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: auto;
}

.prod-card__price {
  font-size: 20px;
  font-weight: 700;
  color: var(--warm);
}

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

.testi-card {
  padding: 28px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}

.testi-card__mark {
  font-size: 40px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 12px;
  font-family: Georgia, serif;
}

.testi-card__text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 18px;
}

.testi-card__author { font-size: 13px; font-weight: 700; color: var(--primary); }
.testi-card__role   { font-size: 12px; color: var(--text-light); margin-top: 2px; }

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

.tips__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tip-item {
  display: flex;
  gap: 16px;
  padding: 18px;
  background-color: var(--white);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--accent);
}

.tip-item__n {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .1em;
  padding-top: 2px;
}

.tip-item__body { font-size: 14px; color: var(--text); line-height: 1.7; }
.tip-item__body strong { color: var(--primary); font-weight: 700; display: block; margin-bottom: 4px; }

.tips__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--r-md);
}

.workshop__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.workshop__photo { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r-md); }

.events__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0;
}

.event-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  background-color: var(--bg-alt);
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
}

.event-item__date {
  flex-shrink: 0;
  width: 52px;
  background-color: var(--accent);
  color: var(--white);
  border-radius: var(--r-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  padding: 8px 4px;
}

.event-item__date span { font-size: 22px; line-height: 1; }

.event-item__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.event-item__meta { font-size: 12px; color: var(--text-light); }

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

.blog-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  font-size: 12px;
}

.blog-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }

.blog-card__cat {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 8px;
}

.blog-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 10px;
  flex: 1;
}

.blog-card__meta { font-size: 12px; color: var(--text-light); }

.contacts-section { padding: 80px 0; }

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

.contact-item {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  background-color: rgba(255,255,255,.04);
}

.contact-item__icon {
  width: 44px;
  height: 44px;
  background-color: var(--accent);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.contact-item__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 8px;
}

.contact-item__value {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.6;
}

.contact-item__value a { color: var(--white); }
.contact-item__value a:hover { color: var(--accent); }

.site-footer {
  background-color: #1A1815;
  color: rgba(255,255,255,.45);
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding: 24px 0;
}

.footer-col {
  flex: 0 1 auto;
}

.footer-col--brand {
  min-width: 180px;
}

.footer-col--links {
  flex: 1 1 auto;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-col--copy {
  flex: 0 0 100%;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 16px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 22px;
  height: 26px;
  opacity: .7;
}

.footer-brand__name {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,.65);
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,.45);
}
.footer-links a:hover { color: rgba(255,255,255,.75); }

.footer-col--links a {
  font-size: 13px;
  color: rgba(255,255,255,.45);
}
.footer-col--links a:hover { color: rgba(255,255,255,.75); }

.footer-copy { font-size: 12px; color: rgba(255,255,255,.28); }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(37, 35, 32, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 24px;
  z-index: 1000;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  max-height: 200px;
  overflow-y: auto;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  line-height: 1.6;
  min-width: 200px;
}

.cookie-banner__text strong {
  color: rgba(255, 255, 255, 0.9);
  display: block;
  margin-bottom: 6px;
}

.cookie-banner__text p {
  margin: 0;
  font-size: 13px;
}

.cookie-banner__text a {
  color: #5C7C5F;
  text-decoration: underline;
}

.cookie-banner__text a:hover {
  color: #7CA57F;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-banner__btn {
  padding: 10px 18px;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s;
}

.cookie-banner__btn--accept {
  background-color: #5C7C5F;
  color: white;
}

.cookie-banner__btn--accept:hover {
  background-color: #3D5C40;
}

.cookie-banner__btn--reject {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.7);
}

.cookie-banner__btn--reject:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: rgba(255, 255, 255, 0.9);
}

.cookie-banner__btn--customize {
  background-color: #D4A574;
  color: var(--white);
}

.cookie-banner__btn--customize:hover {
  background-color: #c49461;
}

.cookie-customize {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  padding: 20px;
}

.cookie-customize.hidden {
  display: none;
}

.customize-content {
  background-color: var(--white);
  border-radius: 8px;
  padding: 32px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.customize-content h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--primary);
}

.customize-content > p {
  margin: 0 0 24px;
  font-size: 14px;
  color: var(--text-light);
}

.cookie-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.cookie-item:last-child {
  border-bottom: none;
  margin-bottom: 24px;
  padding-bottom: 0;
}

.cookie-item label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: var(--primary);
}

.cookie-checkbox {
  margin-top: 3px;
  cursor: pointer;
  accent-color: #5C7C5F;
}

.cookie-checkbox:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-item__desc {
  margin: 8px 0 0 28px;
  font-size: 12px;
  color: var(--text-light);
}

.customize-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}

.customize-actions .btn {
  min-width: 120px;
}
@media (max-width: 1024px) {
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .hero { padding: 64px 0; }

  .hero__grid,
  .about__grid,
  .workshop__grid,
  .tips__intro { grid-template-columns: 1fr; gap: 40px; }

  .hero__title { font-size: 30px; }

  .features__grid,
  .steps__grid,
  .testi__grid,
  .blog__grid,
  .contacts__grid { grid-template-columns: 1fr; }

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

  .header-meta { display: none; }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  
  .footer-col--brand,
  .footer-col--links,
  .footer-col--copy {
    flex: 0 0 100%;
  }
  
  .footer-col--links { 
    justify-content: center;
    flex-wrap: wrap;
  }
}
