:root {
  --green: #0d3324;
  --green-deep: #071910;
  --green-mid: #184a36;
  --green-soft: #2a6b4e;
  --cream: #f4ecdc;
  --cream-2: #ebe1cc;
  --parchment: #faf6ee;
  --gold: #c9a24a;
  --gold-bright: #e0b85c;
  --gold-dim: #9a7a32;
  --pumpkin: #d9852a;
  --ink: #1c241e;
  --muted: #5c665e;
  --white: #fffdf8;
  --whatsapp: #1f8a4c;
  --shadow: 0 18px 50px rgba(7, 25, 16, 0.18);
  --radius: 22px;
  --header-h: 76px;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-script: "Great Vibes", "Segoe Script", cursive;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--parchment);
  font-family: var(--font-body);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button,
.nav-toggle {
  font-family: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -40px;
  z-index: 1000;
  background: var(--gold);
  color: var(--green-deep);
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  font-weight: 700;
}

.skip-link:focus {
  top: 0.75rem;
}

.wrap {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.script {
  font-family: var(--font-script);
  font-weight: 400;
  line-height: 1.15;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  color: var(--gold);
}

.divider span {
  width: min(88px, 22vw);
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.leaf {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(7, 25, 16, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 162, 74, 0.18);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--cream);
}

.brand img {
  width: 48px;
  height: 48px;
  padding: 2px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 0 0 2px var(--gold);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.brand-text small {
  color: var(--gold-bright);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--gold-bright);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 162, 74, 0.35);
  border-radius: 10px;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: var(--green-deep);
}

.btn-cream {
  background: var(--cream);
  color: var(--green);
}

.btn-outline {
  border-color: var(--gold);
  color: var(--cream);
  background: transparent;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: white;
}

/* Hero */
.hero {
  display: grid;
  background: var(--green-deep);
  color: var(--cream);
}

.hero-copy {
  position: relative;
  padding: 1.15rem 8vw 1.8rem;
  overflow: hidden;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(201, 162, 74, 0.12), transparent 42%),
    url("../assets/images/wood-texture.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  pointer-events: none;
}

.hero-copy > * {
  position: relative;
}

.hero-logo {
  width: 108px;
  height: 108px;
  margin-bottom: 0.65rem;
  padding: 4px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--gold);
  background: var(--cream);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 7vw, 5.4rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--gold-bright);
}

.hero .script {
  margin: 0.85rem 0 1rem;
  color: var(--gold-bright);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.hero p {
  max-width: 36rem;
  margin: 1rem 0 1.6rem;
  color: rgba(244, 236, 220, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-visual {
  overflow: hidden;
  background: #0b2e1f;
}

.hero-visual picture,
.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-visual img {
  object-fit: cover;
  object-position: center 30%;
}

/* Trust */
.trust {
  background: var(--green);
  border-block: 1px solid rgba(201, 162, 74, 0.28);
}

.trust-inner {
  background: var(--green);
  color: var(--cream);
  padding: 1.4rem 1rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.trust-item {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
}

.trust-item svg {
  width: 34px;
  height: 34px;
  color: var(--gold-bright);
}

.trust-item strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-item span {
  color: rgba(244, 236, 220, 0.75);
  font-size: 0.88rem;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-head {
  text-align: center;
  margin-bottom: 2.2rem;
}

.section-head h2 {
  margin: 0.2rem 0 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.3rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-head p {
  max-width: 38rem;
  margin: 0.8rem auto 0;
  color: var(--muted);
}

.featured {
  background: var(--cream);
}

.featured-card {
  display: grid;
  overflow: hidden;
  background: var(--green-deep);
  color: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.featured-copy {
  padding: 2rem 1.6rem;
}

.featured-copy h3 {
  margin: 0.2rem 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 0.92;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.featured-copy h3 em {
  color: var(--pumpkin);
  font-style: normal;
}

.featured-copy p {
  color: rgba(244, 236, 220, 0.82);
}

.featured-card picture {
  display: block;
  min-height: 240px;
}

.featured-card img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  object-position: center;
}

.products {
  background: var(--parchment);
}

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

.product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(13, 51, 36, 0.08);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(13, 51, 36, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.product-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  background: var(--cream-2);
}

.product-card h3 {
  margin: 0;
  padding: 1rem 1rem 0.2rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
}

.product-card p {
  margin: 0;
  padding: 0 1rem 1.2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.partners {
  background: var(--cream);
}

.partner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.partner-card {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  padding: 1.8rem 1.2rem 1.6rem;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(13, 51, 36, 0.1);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(13, 51, 36, 0.06);
}

.partner-card .leaf {
  width: 22px;
  height: 22px;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.partner-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}

.partner-card p {
  margin: 0;
  color: var(--green-mid);
  font-family: var(--font-script);
  font-size: 1.55rem;
}

.store {
  background: var(--green-deep);
  color: var(--cream);
}

.store-grid {
  display: grid;
  gap: 1.4rem;
  align-items: center;
}

.store-copy h2 {
  margin: 0.25rem 0 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 6vw, 3.8rem);
  line-height: 0.92;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-copy h2 span {
  display: block;
  color: var(--gold-bright);
}

.store-copy p {
  color: rgba(244, 236, 220, 0.84);
}

.store-photo {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 162, 74, 0.28);
}

.store-photo picture,
.store-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.store-photo img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}

.storefront {
  background: var(--cream);
}

.storefront-frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.storefront-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.contact {
  background:
    linear-gradient(180deg, rgba(13, 51, 36, 0.88), rgba(7, 25, 16, 0.94)),
    url("../assets/images/storefront.webp") center / cover;
  color: var(--cream);
  text-align: center;
}

.contact h2 {
  margin: 0.2rem 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.contact-meta {
  margin-top: 1.2rem;
  color: rgba(244, 236, 220, 0.8);
}

.contact-meta a {
  color: var(--gold-bright);
  text-decoration: none;
  font-weight: 700;
}

/* Footer */
.site-footer {
  background: var(--green-deep);
  color: var(--cream);
  padding: 2.2rem 0 5.5rem;
  text-align: center;
  border-top: 1px solid rgba(201, 162, 74, 0.22);
}

.site-footer .domain {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  text-transform: lowercase;
}

.site-footer p {
  margin: 0.35rem 0 0;
  color: rgba(244, 236, 220, 0.7);
  font-size: 0.9rem;
}

.wa-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--whatsapp);
  color: white;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(31, 138, 76, 0.4);
}

.wa-float svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    min-height: calc(100svh - var(--header-h));
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 1.35rem 5.5vw 2rem;
  }

  .hero-visual,
  .hero-visual picture,
  .hero-visual img {
    height: 100%;
  }

  .hero-visual img {
    object-fit: cover;
  }

  .featured-card {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .store-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .product-grid,
  .partner-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 899px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.6rem 1rem 1rem;
    background: var(--green-deep);
    border-bottom: 1px solid rgba(201, 162, 74, 0.2);
  }

  .site-nav a,
  .site-nav .btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 0.5rem;
  }

  body.nav-open .site-nav {
    display: flex;
  }

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

@media (min-width: 640px) and (max-width: 899px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .partner-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .btn,
  .product-card,
  .partner-card {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
