@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Nunito+Sans:wght@300;400;600;700&display=swap');

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

:root {
  --dark: #1a0e08;
  --dark-brown: #2c1810;
  --chocolate: #4a2c1a;
  --caramel: #c8943e;
  --gold: #d4a84b;
  --gold-light: #f0d48a;
  --cream: #faf6f0;
  --beige: #f3ece2;
  --warm-white: #fffdf9;
  --text-dark: #2c1810;
  --text-body: #5a4234;
  --text-light: #8a7568;
  --shadow: rgba(44, 24, 16, 0.12);
  --shadow-lg: rgba(44, 24, 16, 0.2);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--text-body);
  background: var(--warm-white);
  line-height: 1.7;
  font-size: 16px;
}

a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  line-height: 1.3;
}

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

/* ===== HEADER ===== */
header {
  background: var(--dark-brown);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 4px 20px var(--shadow-lg);
}

header .container {
  display: flex; align-items: center;
  justify-content: space-between; height: 72px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700;
  color: var(--gold); letter-spacing: 6px;
  text-transform: uppercase;
}
.logo span { color: var(--gold-light); font-weight: 400; }

nav { display: flex; align-items: center; gap: 8px; }

nav a {
  color: rgba(255,255,255,0.75);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.5px; padding: 8px 18px;
  border-radius: 6px; transition: all 0.3s ease;
  text-transform: uppercase;
}
nav a:hover, nav a.active { color: #fff; background: rgba(200,148,62,0.2); }
nav a.active { background: var(--caramel); }

.burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 8px;
}
.burger span {
  display: block; width: 26px; height: 2px;
  background: var(--gold); border-radius: 2px; transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-brown) 50%, var(--chocolate) 100%);
  padding: 110px 0 90px; text-align: center;
  position: relative; overflow: hidden;
}

.hero::before {
  content: ''; position: absolute;
  top: -50%; left: -10%; width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(200,148,62,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: ''; position: absolute;
  bottom: -50%; right: -10%; width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(212,168,75,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  font-size: 56px; color: #fff;
  margin-bottom: 18px; letter-spacing: 2px;
  position: relative; z-index: 1;
}
.hero h1 em { color: var(--gold); font-style: normal; }

.hero p {
  font-size: 18px; color: rgba(255,255,255,0.65);
  max-width: 580px; margin: 0 auto 40px;
  position: relative; z-index: 1;
}

.btn {
  display: inline-block; padding: 14px 40px;
  background: var(--caramel); color: #fff;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  border-radius: 50px; border: none; cursor: pointer;
  transition: all 0.3s ease; position: relative; z-index: 1;
}
.btn:hover {
  background: var(--gold); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,148,62,0.35);
}

.btn-outline { background: transparent; border: 2px solid var(--caramel); color: var(--caramel); }
.btn-outline:hover { background: var(--caramel); color: #fff; }

/* ===== SECTIONS ===== */
section { padding: 80px 0; }

.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 36px; margin-bottom: 12px; }
.section-title p { color: var(--text-light); font-size: 17px; max-width: 550px; margin: 0 auto; }
.section-title .line {
  display: block; width: 60px; height: 3px;
  background: var(--caramel); margin: 16px auto 0; border-radius: 2px;
}

/* ===== FEATURES ===== */
.features { background: var(--cream); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.feature-card {
  background: #fff; border-radius: 16px;
  padding: 36px 28px; text-align: center;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 3px solid transparent;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px var(--shadow-lg);
  border-top-color: var(--caramel);
}

.feature-icon {
  width: 56px; height: 56px;
  background: var(--cream); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.feature-icon svg {
  width: 26px; height: 26px;
  stroke: var(--caramel); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.feature-card h3 { font-size: 20px; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ===== PRODUCTS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
}

.product-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow-lg);
}

.product-img {
  height: 180px; background: var(--beige);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.product-img .product-label {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  color: var(--chocolate); letter-spacing: 2px; opacity: 0.3;
}
.product-img .badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--caramel); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 0.5px;
}

.product-info { padding: 20px 24px 24px; }
.product-info h3 { font-size: 18px; margin-bottom: 6px; }
.product-info .desc { font-size: 13px; color: var(--text-light); margin-bottom: 12px; line-height: 1.5; }

.product-details {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.product-details .tag-item {
  font-size: 12px; color: var(--text-light);
  background: var(--cream); padding: 4px 12px; border-radius: 20px;
}

/* ===== ABOUT ===== */
.about-content {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}

.about-text h2 { font-size: 36px; margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; font-size: 15px; }

.about-visual {
  background: linear-gradient(135deg, var(--dark-brown), var(--chocolate));
  border-radius: 20px; height: 400px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 72px; letter-spacing: 8px;
  position: relative; overflow: hidden;
}
.about-visual::before {
  content: ''; position: absolute; width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(200,148,62,0.15) 0%, transparent 50%);
}

.stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 32px;
}
.stat { text-align: center; padding: 24px; background: var(--cream); border-radius: 12px; }
.stat .number { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--caramel); }
.stat .label { font-size: 13px; color: var(--text-light); margin-top: 4px; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }

.contact-info-list { list-style: none; display: flex; flex-direction: column; gap: 24px; }
.contact-info-list li { display: flex; gap: 16px; align-items: flex-start; }

.ci-icon {
  width: 48px; height: 48px;
  background: var(--cream); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg {
  width: 22px; height: 22px;
  stroke: var(--caramel); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.ci-text strong { display: block; font-size: 15px; color: var(--text-dark); margin-bottom: 2px; }
.ci-text span { font-size: 14px; color: var(--text-light); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.contact-form input,
.contact-form textarea {
  width: 100%; padding: 14px 20px;
  border: 2px solid var(--beige); border-radius: 12px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 15px; color: var(--text-dark);
  background: #fff; transition: border-color 0.3s ease; outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--caramel); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form .btn { align-self: flex-start; }

/* ===== FILTER TAGS ===== */
.category-filter {
  display: flex; justify-content: center;
  gap: 12px; margin-bottom: 40px; flex-wrap: wrap;
}
.category-filter .tag {
  padding: 8px 22px; border-radius: 50px;
  border: 2px solid var(--beige); font-size: 13px;
  font-weight: 600; color: var(--text-light);
  cursor: pointer; transition: all 0.3s ease; background: #fff;
}
.category-filter .tag:hover,
.category-filter .tag.active {
  background: var(--caramel); border-color: var(--caramel); color: #fff;
}

/* ===== PAGE BANNER ===== */
.page-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-brown) 60%, var(--chocolate) 100%);
  padding: 60px 0; text-align: center;
}
.page-banner h1 { font-size: 42px; color: #fff; margin-bottom: 10px; }
.page-banner p { color: rgba(255,255,255,0.6); font-size: 16px; }

/* ===== CTA BANNER ===== */
.cta-section {
  background: linear-gradient(135deg, var(--dark-brown), var(--chocolate));
  padding: 64px 0; text-align: center;
}
.cta-section h2 { color: #fff; font-size: 32px; margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.65); margin-bottom: 28px; font-size: 16px; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark-brown); color: rgba(255,255,255,0.5);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; margin-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 320px; }

footer h4 {
  color: var(--gold-light); font-size: 16px;
  margin-bottom: 16px; letter-spacing: 1px; text-transform: uppercase;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul li a { color: rgba(255,255,255,0.55); font-size: 14px; transition: color 0.3s; }
footer ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px; text-align: center; font-size: 13px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .burger { display: flex; }
  nav {
    display: none; position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--dark-brown);
    flex-direction: column; padding: 16px 24px; gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 12px 24px var(--shadow-lg);
  }
  nav.open { display: flex; }
  nav a { width: 100%; text-align: center; padding: 12px; }
  .hero h1 { font-size: 34px; }
  .hero { padding: 70px 0 60px; }
  .about-content { grid-template-columns: 1fr; gap: 32px; }
  .about-visual { height: 240px; font-size: 48px; }
  .stats-row { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .stat .number { font-size: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .page-banner h1 { font-size: 30px; }
  .products-grid { grid-template-columns: 1fr; gap: 20px; }
}
