

:root {
  --color-dark:   #2c3428;
  --color-green:  #3a6e3a;
  --color-stone:  #8a9e7e;
  --color-cream:  #f5f2ea;
  --color-sand:   #d4cdb8;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;
  --max-width:    1180px;
  --radius:       4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background-color: var(--color-cream);
  color: var(--color-dark);
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-dark);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p  { font-size: 1rem; line-height: 1.7; color: #4a5244; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 1rem; }
.section-body  { max-width: 640px; }
.text-center   { text-align: center; }
.text-center .section-body { margin: 0 auto 2rem; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }
.divider { width: 48px; height: 2px; background: var(--color-green); margin-bottom: 1.5rem; }
.divider.center { margin: 0 auto 1.5rem; }

.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
}
.btn-primary {
  background: var(--color-green);
  color: var(--color-cream);
  border-color: var(--color-green);
}
.btn-primary:hover {
  background: #2d5a2d;
  border-color: #2d5a2d;
}
.btn-outline {
  background: transparent;
  color: var(--color-green);
  border-color: var(--color-green);
}
.btn-outline:hover {
  background: var(--color-green);
  color: var(--color-cream);
}
.btn-outline-light {
  background: transparent;
  color: var(--color-cream);
  border-color: var(--color-cream);
}
.btn-outline-light:hover {
  background: var(--color-cream);
  color: var(--color-dark);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-cream);
  border-bottom: 1px solid var(--color-sand);
  padding: 0 24px;
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-brand img.logo-svg { width: 44px; height: 44px; flex-shrink: 0; }
.header-brand .brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 0.02em;
}
.site-nav { display: flex; align-items: center; gap: 40px; }
.site-nav a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-dark);
}
.site-nav a:hover { color: var(--color-green); }
.nav-cta { margin-left: 16px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--color-cream);
  border-bottom: 1px solid var(--color-sand);
  padding: 16px 24px 24px;
  gap: 16px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-dark);
}
.mobile-nav a:hover { color: var(--color-green); }

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-garden.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 80px 24px;
}
.hero-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-stone);
  margin-bottom: 20px;
}
.hero h1 {
  color: var(--color-cream);
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero p {
  color: #ccc8bb;
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.stats-bar {
  background: var(--color-dark);
  padding: 40px 24px;
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid rgba(255,255,255,0.08);
}
.stat-item {
  padding: 20px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--color-stone);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a9080;
}

.intro-split { background: var(--color-cream); }
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}
.split-grid.reverse .split-img { order: 2; }
.split-grid.reverse .split-text { order: 1; }
.split-img {
  height: 100%;
}
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.split-text p { margin-bottom: 1.4rem; }

.philosophy { background: var(--color-dark); }
.philosophy .section-label { color: var(--color-stone); }
.philosophy h2, .philosophy .kana { color: var(--color-cream); }
.philosophy p { color: #b0aa9a; }
.philosophy .divider { background: var(--color-stone); }
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 56px;
}
.phil-card {
  padding: 36px 32px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
}
.phil-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
}
.phil-card h3 { color: var(--color-cream); margin-bottom: 12px; }
.phil-card p { color: #8a9080; font-size: 0.93rem; }
.kana {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  opacity: 0.45;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.services { background: var(--color-sand); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.service-card {
  background: var(--color-cream);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #c8c2ae;
}
.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.service-card-body { padding: 24px 24px 28px; }
.service-card-body h3 { margin-bottom: 10px; }
.service-card-body p { font-size: 0.92rem; }

.products { background: var(--color-cream); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.product-card {
  border: 1px solid var(--color-sand);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.product-card-body { padding: 20px 20px 24px; }
.product-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-stone);
  margin-bottom: 6px;
}
.product-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.product-card p { font-size: 0.88rem; margin-bottom: 16px; }
.product-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-green);
  margin-bottom: 16px;
  display: block;
}
.product-card .btn { width: 100%; text-align: center; padding: 12px 24px; }

.gallery-strip {
  background: var(--color-dark);
  padding: 0;
}
.gallery-strip .strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.gallery-strip .strip-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.testimonials { background: var(--color-sand); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.testi-card {
  background: var(--color-cream);
  border: 1px solid #c8c2ae;
  border-radius: var(--radius);
  padding: 32px 28px;
}
.testi-quote {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-stone);
  line-height: 1;
  margin-bottom: 8px;
}
.testi-card p { font-size: 0.93rem; font-style: italic; margin-bottom: 20px; }
.testi-author { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.testi-location { font-size: 0.75rem; color: var(--color-stone); }

.process { background: var(--color-cream); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  border: 1px solid var(--color-sand);
  border-radius: var(--radius);
  overflow: hidden;
}
.process-step {
  padding: 36px 28px;
  border-right: 1px solid var(--color-sand);
}
.process-step:last-child { border-right: none; }
.step-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-sand);
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h3 { margin-bottom: 10px; }
.process-step p { font-size: 0.88rem; }

.cta-banner {
  background: var(--color-green);
  padding: 80px 24px;
}
.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-banner h2 { color: var(--color-cream); max-width: 560px; }
.cta-banner p { color: rgba(245,242,234,0.8); margin-top: 10px; }

.contacts { background: var(--color-dark); }
.contacts .section-label { color: var(--color-stone); }
.contacts h2 { color: var(--color-cream); }
.contacts .divider { background: var(--color-stone); }
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 48px;
}
.contact-item { display: flex; flex-direction: column; gap: 10px; }
.contact-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.contact-icon-wrap svg { width: 22px; height: 22px; }
.contact-item h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-stone);
}
.contact-item p, .contact-item a {
  color: #c8c4b0;
  font-size: 0.97rem;
}
.contact-item a:hover { color: var(--color-stone); }

.site-footer { background: #1e2419; padding: 48px 0 32px; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 28px;
}
.footer-brand { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.footer-brand img { width: 40px; height: 40px; }
.footer-brand .brand-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-cream);
}
.footer-col-desc p { color: #7a8070; font-size: 0.88rem; line-height: 1.6; }
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-stone);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: #7a8070;
}
.footer-col ul li a:hover { color: var(--color-cream); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: #5a6055; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.78rem; color: #5a6055; }
.footer-legal a:hover { color: #8a9080; }

.intro-split .split-text,
.philosophy-grid,
.services-grid,
.products-grid,
.testimonials-grid,
.process-steps {
  text-align: center;
}

.intro-split .split-text h2,
.philosophy-grid h2,
.services-grid h2,
.products-grid h2,
.testimonials-grid h2,
.process-steps h2 {
  text-align: center;
}

.section-pad > .container > .text-center {
  text-align: center;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #1e2419;
  border-top: 1px solid var(--color-stone);
  padding: 24px;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner-text { flex: 1; min-width: 200px; }
.cookie-banner-text p { font-size: 0.85rem; color: #8a9080; line-height: 1.5; margin: 0; }
.cookie-banner-text a { color: var(--color-stone); }
.cookie-banner-text a:hover { color: var(--color-cream); }
.cookie-banner-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-btn {
  display: inline-block;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
}
.cookie-btn.accept {
  background: var(--color-green);
  color: var(--color-cream);
  border-color: var(--color-green);
}
.cookie-btn.accept:hover { background: #2d5a2d; border-color: #2d5a2d; }
.cookie-btn.reject {
  background: transparent;
  color: var(--color-stone);
  border-color: var(--color-stone);
}
.cookie-btn.reject:hover { background: rgba(138,158,126,0.1); border-color: #8a9e7e; }

@media (max-width: 1024px) {
  .split-grid.reverse .split-img { order: 0; }
  .split-grid.reverse .split-text { order: 0; }
  .philosophy-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .gallery-strip .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step { border-right: 1px solid var(--color-sand); border-bottom: 1px solid var(--color-sand); }
  .process-step:nth-child(2n) { border-right: none; }
  .process-step:nth-last-child(-n+2) { border-bottom: none; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .contacts-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .cta-banner .container { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .gallery-strip .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--color-sand); }
  .process-step:last-child { border-bottom: none; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 16px 20px; }
  .contacts-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-btns { flex-direction: column; }
  .section-pad { padding: 64px 0; }
  .split-grid { grid-template-columns: 1fr; gap: 32px; }
  .split-grid.reverse .split-img { order: 0; }
  .split-grid.reverse .split-text { order: 0; }
  .cookie-banner-inner { flex-direction: column; align-items: stretch; }
  .cookie-banner-text { min-width: auto; }
  .cookie-banner-actions { justify-content: stretch; }
  .cookie-btn { flex: 1; text-align: center; }
}
@media (max-width: 480px) {
  .gallery-strip .strip-grid { grid-template-columns: 1fr; }
  .strip-grid img { height: 200px; }
  .stats-bar .container { grid-template-columns: 1fr; border-left: none; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
}
@media (max-width: 768px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .gallery-strip .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--color-sand); }
  .process-step:last-child { border-bottom: none; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 16px 20px; }
  .contacts-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-btns { flex-direction: column; }
  .section-pad { padding: 64px 0; }
}
@media (max-width: 480px) {
  .gallery-strip .strip-grid { grid-template-columns: 1fr; }
  .strip-grid img { height: 200px; }
  .stats-bar .container { grid-template-columns: 1fr; border-left: none; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
}

/* wh-img-fill */
.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
