:root {
  --color-bg: #fdf8f2;
  --color-bg-alt: #f6ede1;
  --color-text: #1b2b1f;
  --color-text-muted: #55665c;
  --color-primary: #2f6b3f;
  --color-primary-dark: #204a2c;
  --color-ink: #16301f;
  --color-accent: #c98a2c;
  --color-accent-light: #e3b768;
  --color-card: #ffffff;
  --color-border: #e8dcc8;
  --color-cream-text: #f3e9da;
  --shadow-sm: 0 2px 8px rgba(27, 43, 31, 0.08);
  --shadow-md: 0 10px 30px rgba(27, 43, 31, 0.14);
  --radius: 14px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--color-primary-dark);
  margin: 0 0 0.5em;
}

p {
  color: var(--color-text-muted);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Eyebrow labels */
.eyebrow {
  margin: 0 0 8px;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.eyebrow-light {
  color: var(--color-accent-light);
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 48px;
}

/* Media placeholder pattern (shows until a real photo is dropped into /images).
   The photo itself is a real <img> layered on top - a CSS var() holding a
   url() would resolve relative to this stylesheet's folder instead of the
   page's, so it can never find files in /images from here. */
.about-media,
.promo,
.product-media,
.shop-media,
.contact-media,
.hero-slide {
  background-image:
    repeating-linear-gradient(45deg, rgba(47, 107, 63, 0.12) 0 2px, transparent 2px 16px),
    linear-gradient(135deg, #fff4e4, var(--color-bg-alt));
  background-size: auto, cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.about-media img,
.promo img,
.product-media img,
.shop-media img,
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-hint {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--color-text-muted);
  font-size: 0.7rem;
  padding: 4px 8px;
  border-radius: 6px;
  pointer-events: none;
}

.media-hint-dark {
  background: rgba(0, 0, 0, 0.5);
  color: var(--color-cream-text);
  left: 24px;
  bottom: auto;
  top: 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  color: #fff;
  padding: 13px 30px;
  border-radius: 30px;
  font-weight: bold;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: #fff;
}

.btn-small {
  padding: 9px 20px;
  font-size: 0.9rem;
}

.btn-outline {
  background: none;
  color: var(--color-primary-dark);
  border: 2px solid var(--color-primary-dark);
  box-shadow: none;
  padding: 11px 28px;
}

.btn-outline:hover {
  background: var(--color-primary-dark);
  color: #fff;
}

.btn-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
}

.btn-whatsapp:hover {
  background: #25d366;
}

.btn-whatsapp svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: #fff;
}

/* Announcement bar */
.announcement-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  color: var(--color-ink);
  text-align: center;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: filter 0.15s ease;
}

.announcement-bar:hover {
  filter: brightness(1.05);
  color: var(--color-ink);
}

.announcement-bar svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: var(--color-ink);
}

.announcement-cta {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Header */
.site-header {
  background: var(--color-ink);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 24px;
}

.logo {
  display: flex;
  align-items: center;
  margin-right: auto;
}

.logo-img {
  height: 88px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: var(--color-cream-text);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

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

.header-cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-cream-text);
  display: block;
}

/* Hero */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 26, 18, 0.82) 0%, rgba(15, 26, 18, 0.35) 55%, rgba(15, 26, 18, 0.15) 100%);
}

.hero-inner {
  position: relative;
  padding: 60px 24px 90px;
  max-width: 720px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 0 0 18px;
}

.hero p {
  color: var(--color-cream-text);
  max-width: 560px;
  margin: 0 0 28px;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-dots {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-bottom: 24px;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 0;
}

.hero-dots button.is-active {
  background: var(--color-accent-light);
}

/* Sections */
.section {
  padding: 90px 24px;
}

.about p {
  font-size: 1.02rem;
}

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

.about-text h2 {
  font-size: 2rem;
}

.about-media {
  border-radius: var(--radius);
  aspect-ratio: 1081 / 1186;
  box-shadow: var(--shadow-md);
}

/* Promo banner */
.promo {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 26, 18, 0.78), rgba(15, 26, 18, 0.35));
}

.promo-inner {
  position: relative;
}

.promo-inner h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 24px;
}

/* Products */
.products {
  background: var(--color-bg-alt);
}

.category-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  border-radius: 2px;
  margin: 64px auto 40px;
}

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

.product-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.product-media {
  aspect-ratio: 4 / 3;
}

.product-body {
  padding: 20px 22px 26px;
  text-align: center;
}

.product-body h3 {
  font-size: 1.2rem;
}

.product-body p {
  margin: 0;
}

.product-price {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.product-price span {
  color: var(--color-text-muted);
  font-weight: 400;
  font-size: 0.9rem;
}

/* Shop photo */
.shop-media {
  border-radius: var(--radius);
  aspect-ratio: 21 / 9;
  box-shadow: var(--shadow-md);
  max-width: 900px;
  margin: 0 auto;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.contact-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-list svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  fill: var(--color-accent);
}

.info-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.info-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-ink);
  border-radius: 10px;
  padding: 14px 18px;
  flex: 1 1 200px;
}

.info-badge svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  fill: var(--color-accent-light);
}

.info-badge span {
  color: var(--color-cream-text);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.contact-media {
  display: block;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
}

.contact-media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.map-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--color-ink);
  color: var(--color-cream-text);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 8px 14px;
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease;
}

.map-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--color-accent-light);
}

.contact-media:hover .map-badge {
  transform: translateY(-2px);
}

/* Footer */
.site-footer {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 40px;
  padding: 64px 24px 48px;
}

.footer-col h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--color-text-muted);
}

.footer-col a:hover {
  color: var(--color-primary);
}

.footer-list-plain li {
  color: var(--color-text-muted);
}

.footer-col-contact p {
  margin: 0 0 10px;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.social-row a:hover {
  background: var(--color-accent);
}

.social-row svg {
  width: 18px;
  height: 18px;
  fill: var(--color-primary-dark);
}

.social-row a:hover svg {
  fill: #fff;
}

.footer-bottom {
  background: var(--color-ink);
}

.footer-bottom-inner {
  padding: 18px 24px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: var(--color-cream-text);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-media {
    order: -1;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-col-contact {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    order: 3;
    width: 100%;
  }

  .nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-ink);
    flex-direction: column;
    gap: 0;
    display: none;
  }

  .nav-list.open {
    display: flex;
  }

  .nav-list li {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-list a {
    display: block;
    padding: 14px 24px;
    border-bottom: none;
  }

  .hero {
    min-height: 70vh;
  }

  .section {
    padding: 60px 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-col-contact {
    grid-column: span 1;
  }
}
