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

:root {
  --moss-green: #5C7457;
  --sakura-blush: #F4D9D0;
  --indigo: #4A5568;
  --cream: #FAF7F2;
  --charcoal: #2D3748;
  --light-gray: #E8E4DF;
  --white: #FFFFFF;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--charcoal);
  background-color: var(--cream);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  background-color: var(--white);
  padding: 24px 0;
  border-bottom: 1px solid var(--light-gray);
}

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

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 48px;
  height: 48px;
}

.brand-name {
  font-size: 24px;
  font-weight: 600;
  color: var(--moss-green);
  letter-spacing: -0.02em;
}

.hero {
  background-color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 24px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.5;
  color: var(--indigo);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 60px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background-color: #4A5E45;
}

.btn-secondary {
  background-color: transparent;
  color: var(--moss-green);
  border-color: var(--moss-green);
}

.btn-secondary:hover {
  background-color: var(--moss-green);
  color: var(--white);
}

.hero-image {
  margin-top: 40px;
}

.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.placeholder-box {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--sakura-blush) 100%);
  border-radius: 16px;
}

section {
  padding: 80px 0;
}

h2 {
  font-size: 40px;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 16px;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 24px;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 12px;
  font-weight: 600;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--indigo);
  margin-bottom: 48px;
}

.about-intro {
  background-color: var(--sakura-blush);
}

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

.about-text {
  text-align: center;
}

.about-text h2 {
  text-align: center;
}

.about-text p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--indigo);
  margin-bottom: 16px;
  text-align: center;
}

.about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
}

.about-image-placeholder .placeholder-box {
  height: 450px;
}

.services {
  background-color: var(--white);
}

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

.service-card {
  text-align: center;
  padding: 32px 24px;
  background-color: var(--cream);
  border-radius: 12px;
}

.service-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--indigo);
}

.how-it-works {
  background-color: var(--cream);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.step {
  text-align: center;
}

.step-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--moss-green);
  margin-bottom: 16px;
  opacity: 0.3;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--indigo);
}

.products {
  background-color: var(--white);
}

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

.product-card {
  background-color: var(--cream);
  border-radius: 12px;
  overflow: hidden;
}

.product-image {
  overflow: hidden;
}

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

.product-image-placeholder .placeholder-box {
  height: 280px;
  border-radius: 0;
}

.product-card h3 {
  font-size: 20px;
  padding: 20px 20px 8px;
}

.product-card p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--indigo);
  padding: 0 20px 12px;
}

.product-price {
  font-size: 24px;
  font-weight: 600;
  color: var(--moss-green);
  padding: 0 20px 16px;
}

.btn-product {
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  text-align: center;
  display: block;
}

.workshops {
  background-color: var(--sakura-blush);
}

.workshop-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.workshop-text {
  text-align: center;
}

.workshop-text h2 {
  text-align: center;
  margin-bottom: 24px;
}

.workshop-text p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--indigo);
  margin-bottom: 32px;
  text-align: center;
}

.workshop-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.workshop-image-placeholder .placeholder-box {
  height: 400px;
}

.sustainability {
  background-color: var(--white);
  text-align: center;
}

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

.commitment-card {
  text-align: center;
  padding: 40px 32px;
  background-color: var(--cream);
  border-radius: 12px;
}

.commitment-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--moss-green);
}

.commitment-card p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--indigo);
}

.delivery-info {
  background-color: var(--cream);
  text-align: center;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.info-card {
  padding: 32px;
  background-color: var(--white);
  border-radius: 12px;
  border: 2px solid var(--light-gray);
}

.info-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.info-card {
  text-align: center;
}

.info-card p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--indigo);
}

.contact {
  background-color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--moss-green);
}

.contact-item p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--indigo);
}

.contact-item a {
  color: var(--indigo);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--moss-green);
  text-decoration: underline;
}

.map-container img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
}

.map-placeholder .placeholder-box {
  height: 500px;
}

.footer {
  background-color: var(--charcoal);
  color: var(--cream);
  padding: 60px 0 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2.5fr;
  gap: 60px;
  margin-bottom: 40px;
}

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

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--light-gray);
}

.footer-column a {
  color: var(--light-gray);
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--sakura-blush);
}

.footer-brand .logo-wrapper {
  margin-bottom: 16px;
}

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

.footer-tagline {
  font-size: 15px;
  color: var(--light-gray);
}

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

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
  color: var(--light-gray);
  text-decoration: none;
  font-size: 15px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--sakura-blush);
}

.footer-contact p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--light-gray);
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 14px;
  color: var(--light-gray);
}

@media (max-width: 1024px) {
  .hero h1 {
    font-size: 48px;
  }

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

  .about-grid,
  .workshop-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  h2 {
    font-size: 32px;
  }

  section {
    padding: 60px 0;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .services-grid,
  .steps-grid,
  .products-grid,
  .commitment-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .placeholder-box {
    height: 300px;
  }

  .brand-name {
    font-size: 20px;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
  }

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

  .hero-image img {
    height: 300px;
  }

  .about-image img,
  .workshop-image img,
  .map-container img {
    height: 300px;
  }

  .product-image img {
    height: 240px;
  }
}
