@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Poppins:wght@300;400;500;600&display=swap");

:root {
  --emerald: #0f3d2e;
  --emerald-dark: #0a2c21;
  --emerald-soft: #1b5a44;
  --gold: #c6a25a;
  --gold-light: #e3c98a;
  --ivory: #faf7f0;
  --ivory-dark: #f2ecdf;
  --ink: #2b2b2b;
  --muted: #8a8478;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Poppins", "Segoe UI", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  line-height: 1.7;
  background: var(--ivory);
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
.site-header {
  background: linear-gradient(90deg, var(--emerald-dark), var(--emerald-soft));
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}

.brand-logo {
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 162, 90, 0.25);
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-tag {
  display: block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold-light);
  margin-top: 2px;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 26px;
}

.nav-list a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.nav-list a:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--gold);
  color: #fff;
  font-size: 1.5rem;
  padding: 2px 10px;
  border-radius: 4px;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 140px 20px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slider::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(150deg, rgba(10, 44, 33, 0.88), rgba(15, 61, 46, 0.78) 55%, rgba(10, 44, 33, 0.92));
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: 3.1rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 14px;
}

.hero-accent {
  color: var(--gold-light);
  font-style: italic;
}

.hero-tagline {
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 640px;
  margin: 0 auto 32px;
  opacity: 0.95;
}

/* Buttons */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), #b7933f);
  color: var(--emerald-dark);
  font-family: var(--sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  padding: 14px 32px;
  border: none;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(198, 162, 90, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(198, 162, 90, 0.45);
}

/* Sections */
.section {
  padding: 72px 20px;
}

.section-alt {
  background: var(--ivory-dark);
}

.section h2 {
  text-align: center;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--emerald);
  margin-bottom: 12px;
}

.section h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto 0;
}

#about p {
  max-width: 720px;
  margin: 26px auto 0;
  text-align: center;
  color: #4c4c4c;
}

/* Products */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 30px 0 36px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  color: var(--emerald);
  border: 1px solid var(--emerald);
  padding: 8px 22px;
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: background 0.25s ease, color 0.25s ease;
}

.filter-btn:hover {
  background: var(--emerald);
  color: var(--gold-light);
}

.filter-btn.active {
  background: var(--emerald);
  color: var(--gold-light);
  border-color: var(--emerald);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}

.product-card {
  background: #fff;
  border: 1px solid #e7dfd0;
  border-top: 3px solid var(--gold);
  border-radius: 4px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 22px;
  box-shadow: 0 4px 16px rgba(15, 61, 46, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(15, 61, 46, 0.14);
}

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

.product-card h3 {
  margin: 16px 12px 4px;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--emerald);
}

.product-cat {
  font-size: 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 8px;
  font-weight: 500;
}

.hidden {
  display: none;
}

/* Feedback */
.feedback-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 12px;
}

.feedback-card {
  background: linear-gradient(145deg, var(--emerald-dark), var(--emerald-soft));
  color: #fff;
  border: 1px solid rgba(198, 162, 90, 0.4);
  border-radius: 4px;
  padding: 30px 26px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(10, 44, 33, 0.18);
}

.feedback-stars {
  font-size: 1.15rem;
  letter-spacing: 4px;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.feedback-text {
  font-style: italic;
  font-weight: 300;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.feedback-name {
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 920px;
  margin: 28px auto 0;
}

.contact-info p {
  margin-bottom: 12px;
  font-size: 0.98rem;
}

.contact-info strong {
  color: var(--emerald);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
}

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

.contact-form label {
  font-weight: 500;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--emerald);
}

.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border: 1px solid #d8cfbe;
  border-radius: 2px;
  background: #fff;
  font-family: inherit;
  font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 162, 90, 0.18);
}

.form-status {
  font-size: 0.9rem;
  font-weight: 500;
  min-height: 1.2em;
}

.form-status.success {
  color: var(--emerald-soft);
}

.form-status.error {
  color: #a33a2b;
}

/* Footer */
.site-footer {
  background: var(--emerald-dark);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  padding: 28px 20px;
  border-top: 2px solid var(--gold);
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 6px;
}

.site-footer p {
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    width: 100%;
  }

  .nav.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 14px;
    padding: 14px 0;
  }

  .header-bar {
    flex-wrap: wrap;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero {
    padding: 96px 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}