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

:root {
  --brown-dark:   #3b1f0e;
  --brown-mid:    #6b3a1f;
  --brown-light:  #a0622a;
  --tan:          #d4a96a;
  --cream:        #f5ede0;
  --cream-light:  #fdf8f2;
  --green:        #4a6741;
  --green-light:  #7a9e6e;
  --text-dark:    #1e1008;
  --text-mid:     #4a2e14;
  --text-light:   #f5ede0;
  --radius:       8px;
  --shadow:       0 4px 24px rgba(59,31,14,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', serif;
  background: var(--cream-light);
  color: var(--text-dark);
  line-height: 1.7;
}

/* ── NAV ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--brown-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 5%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

header a.logo-link { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
header img { height: 60px; width: 60px; border-radius: 4px; }
.logo-name {
  color: var(--cream);
  font-size: 1.15rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

nav { display: flex; gap: 2rem; }
nav a {
  color: var(--tan);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
nav a:hover { color: var(--cream); }

/* ── HERO ── */
#hero {
  background: linear-gradient(135deg, rgba(59,31,14,0.85) 0%, rgba(107,58,31,0.80) 60%, rgba(160,98,42,0.75) 100%), url('../assets/images/top_cover.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--text-light);
  text-align: center;
  padding: 6rem 5% 5rem;
}

#hero .badge {
  display: inline-block;
  background: var(--brown-dark);
  color: var(--tan);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

#hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--cream);
}

#hero p {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  color: var(--tan);
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.15s, box-shadow 0.15s;
}
.btn:hover { 
  transform: translateY(-2px); 
  box-shadow: var(--shadow);
  background: var(--tan);
  color: var(--brown-dark);
}
.btn-primary { background: transparent; border: 2px solid var(--tan); color: var(--tan); }
.btn-outline { background: transparent; border: 2px solid var(--tan); color: var(--tan); margin-left: 1rem; }

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
}
.hero-tags span {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212,169,106,0.3);
  color: var(--tan);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
}

/* ── SECTIONS ── */
section { padding: 5rem 5%; }
section:nth-child(even) { background: var(--cream); }

.section-label {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--brown-dark);
  margin-bottom: 1rem;
}

.section-intro {
  max-width: 680px;
  color: var(--text-mid);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

/* ── ABOUT ── */
#about .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

#about .about-text p { color: var(--text-mid); margin-bottom: 1rem; }

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.pillar {
  background: var(--cream-light);
  border-left: 4px solid var(--tan);
  padding: 1rem 1.2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.pillar strong { display: block; color: var(--brown-mid); margin-bottom: 0.25rem; font-size: 0.95rem; }
.pillar span { font-size: 0.88rem; color: var(--text-mid); }

.about-image {
  background: linear-gradient(145deg, var(--brown-mid), var(--brown-light));
  border-radius: var(--radius);
  height: 100%;
  min-height: 400px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── PRODUCTS ── */
#products { 
  text-align: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-light) 50%, var(--cream) 100%);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
  text-align: left;
}

.product-card {
  background: var(--cream-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-card:hover { transform: translateY(-4px); }

.product-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.product-card-header {
  background: linear-gradient(135deg, var(--brown-dark), var(--brown-mid));
  color: var(--cream);
  padding: 2rem 1.5rem 1.5rem;
}
.product-card-header .tag {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 0.5rem;
}
.product-card-header h3 { font-size: 1.25rem; color: var(--cream); }

.product-card-body { 
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-body > p:first-child { color: var(--text-mid); font-size: 0.95rem; margin-bottom: 1rem; }

.product-specs { 
  list-style: none; 
  margin-bottom: 1.2rem;
  flex: 1;
}
.product-specs li {
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  gap: 0.5rem;
}
.product-specs li::before { content: "✓"; color: var(--green); font-weight: bold; }

.usage-title { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brown-light); margin-bottom: 0.5rem; margin-top: auto; }
.usage-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.usage-tags span {
  background: var(--cream);
  border: 1px solid var(--tan);
  color: var(--brown-mid);
  font-size: 0.8rem;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
}

/* ── PACKAGING ── */
#packaging .packaging-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.pack-card {
  background: var(--cream-light);
  border: 2px solid var(--tan);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.pack-card .pack-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.pack-card h3 { color: var(--brown-dark); font-size: 1.1rem; margin-bottom: 0.5rem; }
.pack-card p { font-size: 0.88rem; color: var(--text-mid); }

/* ── WHY US ── */
#why {
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-mid) 100%);
  color: var(--text-light);
  text-align: center;
}
#why h2 { color: var(--cream); }
#why .section-label { color: var(--green-light); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(212,169,106,0.25);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: left;
}
.why-card .icon { font-size: 2rem; margin-bottom: 0.75rem; }
.why-card h3 { color: var(--tan); font-size: 1rem; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.88rem; color: rgba(245,237,224,0.75); }

/* ── CONTACT ── */
#contact { text-align: center; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.contact-card {
  display: block;
  background: var(--cream-light);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--tan);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(59,31,14,0.15);
}
.contact-card .icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: var(--brown-dark);
}
.contact-card .icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.contact-card h3 {
  color: var(--brown-mid);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.contact-card p {
  color: var(--brown-dark);
  font-size: 1rem;
  font-weight: bold;
  margin: 0;
  transition: color 0.2s;
}
.contact-card:hover p {
  color: var(--brown-light);
}

/* ── FOOTER ── */
footer {
  background: var(--brown-dark);
  color: var(--tan);
  padding: 4rem 5% 2rem;
  font-size: 0.95rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.footer-about h3 {
  color: var(--cream);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-about p {
  color: rgba(212,169,106,0.8);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.social-links a {
  color: var(--tan);
  text-decoration: none;
  transition: color 0.2s;
  width: 28px;
  height: 28px;
}

.social-links a:hover {
  color: var(--cream);
}

.social-links svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid rgba(212,169,106,0.2);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  color: rgba(212,169,106,0.5);
  font-size: 0.85rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { display: none; }
  #about .about-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .about-image { height: 300px; }
  .btn-outline { margin-left: 0; margin-top: 0.75rem; }
  .why-grid { grid-template-columns: 1fr; }
}
