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

:root {
  --bg-main: #FEFAF5;
  --bg-soft: #F7F1E8;
  --bg-card: #FFFFFF;
  --bg-footer: #EADDCB;
  --text-main: #2C2A28;
  --text-dark: #3C2E22;
  --text-soft: #6B5A48;
  --text-brown: #4B3D2F;
  --accent: #9B7E5F;
  --accent-olive: #6C7A5A;
  --border-soft: #EBE1D4;
  --border-card: #F0E6DB;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.45;
}

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

h1, h2, h3,
.logo,
.nav-link,
.hero-title,
.category-title,
.craft-quote,
.closing-main {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-space {
  margin-top: 4rem;
}

.soft-shadow {
  box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.02);
}

.rounded-lg {
  border-radius: 20px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8rem 2.5rem;
  flex-wrap: wrap;
  background-color: var(--bg-main);
  border-bottom: 1px solid var(--border-soft);
}

.logo {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  color: #4A3B2C;
}

.logo span {
  font-weight: 300;
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: #4F463C;
  transition: color 0.2s ease;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--accent);
}

.hero {
  width: 100%;
  position: relative;
}

.hero-image {
  width: 100%;
  height: 88vh;
  object-fit: cover;
  border-radius: 0 0 32px 32px;
  filter: brightness(0.98) contrast(1.02);
}

.hero-overlay {
  position: absolute;
  bottom: 12%;
  left: 5%;
  background: rgba(253, 250, 244, 0.88);
  backdrop-filter: blur(3px);
  padding: 1.8rem 2.5rem;
  border-radius: 32px;
  max-width: 460px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
}

.hero-title {
  font-size: 2.5rem;
  color: var(--text-dark);
}

.hero-sub {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #3F3326;
  letter-spacing: -0.3px;
  border-left: 3px solid #DCC9B0;
  padding-left: 1rem;
}

.section-title-center {
  text-align: center;
  border-left: none;
  padding-left: 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0 4rem;
}

.category-card {
  background: var(--bg-card);
  border-radius: 28px;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border-card);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.08);
}

.category-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.category-info {
  padding: 1.5rem;
}

.category-title {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.body-small {
  font-size: 0.85rem;
  color: #5C4C38;
}

.category-link {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.product-showcase {
  margin: 5rem 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-item {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 1rem;
  border: 1px solid #F1E8DE;
  transition: all 0.2s ease;
}

.product-item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 20px;
}

.product-name {
  font-weight: 500;
  margin-top: 1rem;
  font-size: 1.1rem;
}

.product-price {
  color: #8B765C;
  font-size: 0.9rem;
  margin-top: 0.3rem;
}

.craft-story {
  background-color: var(--bg-soft);
  border-radius: 48px;
  margin: 5rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.03);
}

.craft-text {
  padding: 3rem 2.5rem;
}

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--accent);
}

.craft-quote {
  font-size: 2rem;
  line-height: 1.2;
  margin: 1rem 0;
  color: #3A2D20;
}

.craft-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-brown);
}

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

.materials {
  margin: 5rem 0;
  text-align: center;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  margin-top: 2rem;
}

.material-card {
  background: var(--bg-main);
  border-radius: 32px;
  padding: 1.5rem 1rem;
  text-align: center;
  border: 1px solid #EBDDCB;
  transition: all 0.2s ease;
}

.material-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.material-title {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.material-desc {
  font-size: 0.8rem;
  color: #6F5E4A;
}

.btn-organic {
  background: var(--accent-olive);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 40px;
  color: #ffffff;
  font-size: 0.75rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  font-weight: 500;
  margin-top: 1rem;
}

.btn-organic:hover {
  background: #4F5C3E;
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--accent);
  margin-top: 1.8rem;
}

.btn-secondary:hover {
  background: #84684B;
}

.olive-banner {
  margin: 2rem auto;
  max-width: 500px;
  background: #F2ECE3;
  border-radius: 40px;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.closing-quote {
  margin: 3rem 0 5rem;
  text-align: center;
  background: #F9F3EA;
  border-radius: 48px;
  padding: 2rem;
}

.closing-main {
  font-size: 1.6rem;
  font-weight: 400;
  color: #3D3226;
}

.closing-sub {
  font-size: 0.95rem;
  color: #5C4C38;
}

.organic-line {
  width: 60px;
  height: 2px;
  background: #DBCAAD;
  border: 0;
  margin: 1rem 0;
}

.organic-line-center {
  margin: 1rem auto;
}

footer {
  background-color: var(--bg-footer);
  margin-top: 4rem;
  padding: 3rem 2rem;
  border-radius: 40px 40px 0 0;
  text-align: center;
  color: #4B3D2E;
  font-size: 0.8rem;
}

.footer-title {
  font-size: 1rem;
  font-weight: 500;
}

.footer-copy {
  margin: 1rem 0 0.5rem;
}

.footer-links {
  letter-spacing: 1px;
}

.footer-socials {
  margin-top: 1rem;
}

.footer-socials span {
  margin: 0 1rem;
}

@media (max-width: 950px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
  }

  .container {
    padding: 0 1.2rem;
  }

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

  .craft-story {
    grid-template-columns: 1fr;
  }

  .hero-overlay {
    left: 5%;
    right: 5%;
    bottom: 8%;
    padding: 1.2rem;
  }

  .hero-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 600px) {
  .category-grid,
  .product-grid,
  .materials-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-image {
    height: 74vh;
  }
}
