:root {
  color-scheme: dark;
  --forest: #004327;
  --forest-2: #006b3a;
  --leaf: #22a06b;
  --signal: #e31f2f;
  --cream: #f6f1df;
  --paper: #fffaf0;
  --brass: #d7b46a;
  --clay: #b96f47;
  --charcoal: #15231d;
  --muted: rgba(246, 241, 223, 0.76);
  --dark-muted: #5a665f;
  --line: rgba(246, 241, 223, 0.2);
  --dark-line: rgba(21, 35, 29, 0.12);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--forest);
}

body {
  margin: 0;
  background: var(--forest);
  color: var(--cream);
  letter-spacing: 0;
}

body,
button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: 6px;
  background: var(--cream);
  color: var(--charcoal);
  padding: 10px 14px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto minmax(140px, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 70px;
  padding: 12px 40px;
  background: rgba(255, 250, 240, 0.94);
  border-bottom: 1px solid rgba(0, 67, 39, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand img {
  display: block;
  width: min(300px, 34vw);
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nav-links a,
.nav-whatsapp {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--forest);
  padding: 0 16px;
  font-size: 0.93rem;
  font-weight: 800;
}

.nav-links a:hover {
  background: rgba(0, 67, 39, 0.08);
}

.nav-whatsapp {
  justify-self: end;
  background: #19c37d;
  color: #fff;
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  padding: 140px 40px 64px;
  background: var(--forest);
}

.hero-video,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: -3;
  object-fit: cover;
  background: var(--forest);
}

.hero-scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 28, 18, 0.74) 0%, rgba(3, 28, 18, 0.42) 48%, rgba(3, 28, 18, 0.12) 100%),
    linear-gradient(0deg, rgba(0, 67, 39, 0.18) 0%, rgba(0, 67, 39, 0.08) 48%, rgba(0, 67, 39, 0.1) 100%);
}

.hero-content {
  width: min(100%, 980px);
}

.eyebrow {
  margin: 0 0 14px;
  color: #f4d36f;
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--forest-2);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: 5.8rem;
  line-height: 1.08;
  font-weight: 950;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.1rem;
  line-height: 1;
  font-weight: 920;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.15;
}

.hero-lede {
  max-width: 720px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.35rem;
  line-height: 1.36;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 26px;
}

.primary-cta,
.secondary-cta,
.map-link,
.whatsapp-outline {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 900;
  line-height: 1.1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.nav-whatsapp,
.primary-cta,
.map-link,
.floating-whatsapp {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.primary-cta {
  min-height: 68px;
  background: #19c37d;
  color: #fff;
  box-shadow: 0 20px 52px rgba(25, 195, 125, 0.32);
  font-size: 1.08rem;
}

.hero-actions .primary-cta {
  transform-origin: center;
  animation: hero-whatsapp-pulse 2.4s ease-in-out infinite;
}

@keyframes hero-whatsapp-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 20px 52px rgba(25, 195, 125, 0.42);
    filter: brightness(1);
  }

  50% {
    transform: scale(1.035);
    box-shadow:
      0 24px 68px rgba(25, 195, 125, 0.58),
      0 0 0 9px rgba(25, 195, 125, 0.2);
    filter: brightness(1.08);
  }
}

.primary-cta span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.secondary-cta,
.whatsapp-outline {
  border: 1px solid rgba(246, 241, 223, 0.32);
  color: var(--cream);
}

.primary-cta:hover,
.secondary-cta:hover,
.map-link:hover,
.whatsapp-outline:hover,
.floating-whatsapp:hover,
.nav-whatsapp:hover {
  transform: translateY(-2px);
}

.hero-badges,
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges span,
.service-list span {
  border: 1px solid rgba(246, 241, 223, 0.18);
  border-radius: 999px;
  background: rgba(246, 241, 223, 0.08);
  color: rgba(246, 241, 223, 0.88);
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 800;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(246, 241, 223, 0.16);
  border-top: 1px solid rgba(246, 241, 223, 0.16);
  border-bottom: 1px solid rgba(246, 241, 223, 0.16);
}

.proof-band article {
  display: grid;
  gap: 8px;
  min-height: 142px;
  align-content: center;
  padding: 28px 40px;
  background: #005631;
}

.proof-band strong {
  color: var(--brass);
  font-size: 2.1rem;
  line-height: 1;
}

.proof-band span {
  color: rgba(246, 241, 223, 0.78);
  font-weight: 700;
}

.section {
  padding: 96px 40px;
}

.products-section,
.location-section {
  background: var(--paper);
  color: var(--charcoal);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading p,
.location-copy p {
  color: var(--dark-muted);
  font-size: 1.12rem;
  line-height: 1.6;
}

.product-grid {
  width: min(100%, 1120px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0 auto;
}

.instagram-callout {
  width: min(100%, 760px);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  margin: 34px auto 0;
  border: 1px solid rgba(0, 67, 39, 0.12);
  border-radius: 8px;
  background: #fffdf6;
  padding: 18px 22px;
}

.instagram-callout p {
  margin: 0;
  color: var(--charcoal);
  font-size: 1.05rem;
  font-weight: 850;
}

.instagram-callout a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--signal);
  color: #fff;
  padding: 0 18px;
  font-weight: 900;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.32);
}

.product-card {
  min-height: 230px;
  display: grid;
  align-content: end;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(0, 107, 58, 0.16), rgba(227, 31, 47, 0.07)),
    #fffdf6;
  padding: 24px;
}

.product-card p {
  margin-bottom: 0;
  color: var(--dark-muted);
  line-height: 1.55;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 64px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(185, 111, 71, 0.14), rgba(6, 45, 31, 0) 36%),
    var(--forest);
}

.story-copy {
  max-width: 760px;
}

.story-copy p {
  color: var(--muted);
  font-size: 1.14rem;
  line-height: 1.7;
}

.service-list {
  align-content: start;
}

.service-list span {
  background: rgba(246, 241, 223, 0.1);
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: 48px;
  align-items: center;
}

.location-panel {
  display: grid;
  gap: 26px;
}

.location-copy {
  max-width: 760px;
}

.supplier-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin-top: 22px;
  color: var(--forest);
}

.supplier-contact strong {
  width: 100%;
  font-size: 0.88rem;
  text-transform: uppercase;
}

.supplier-contact a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(0, 67, 39, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.72);
  padding: 0 14px;
  font-weight: 850;
}

.supplier-contact .supplier-whatsapp {
  border-color: rgba(25, 195, 125, 0.44);
  background: #19c37d;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.32);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.map-link {
  background: var(--forest);
  color: #fff;
}

.instagram-link {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--signal);
  color: #fff;
  padding: 0 24px;
  font-weight: 900;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.32);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.instagram-link:hover,
.instagram-callout a:hover {
  transform: translateY(-2px);
}

.whatsapp-outline {
  border-color: var(--dark-line);
  color: var(--charcoal);
}

.map-frame {
  position: relative;
  min-height: 380px;
  display: block;
  border: 1px solid rgba(0, 67, 39, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 107, 58, 0.12), rgba(227, 31, 47, 0.08)),
    #e3eadc;
  box-shadow: 0 22px 56px rgba(0, 67, 39, 0.12);
  overflow: hidden;
}

.map-frame img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  display: block;
  object-fit: cover;
}

.map-pin-label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: grid;
  gap: 4px;
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.94);
  color: var(--forest);
  padding: 12px 14px;
  box-shadow: 0 14px 32px rgba(0, 67, 39, 0.18);
}

.map-pin-label strong {
  font-size: 1rem;
}

.map-pin-label small {
  color: var(--dark-muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.map-attribution {
  position: absolute;
  right: 10px;
  bottom: 8px;
  z-index: 2;
  border-radius: 4px;
  background: rgba(255, 250, 240, 0.82);
  color: rgba(21, 35, 29, 0.74);
  padding: 4px 6px;
  font-size: 0.72rem;
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(2, 39, 25, 0.22);
  border-radius: 999px;
  background: #19c37d;
  color: #fff;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
  padding: 0 24px;
  font-size: 1rem;
  font-weight: 950;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
  align-items: center;
  padding: 28px 40px 110px;
  background: #031c12;
  color: rgba(246, 241, 223, 0.72);
}

.footer strong {
  color: var(--cream);
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr auto;
    padding: 12px 24px;
  }

  .nav-links {
    display: none;
  }

  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .product-grid,
  .story-section,
  .location-section {
    grid-template-columns: 1fr;
  }

  .map-frame {
    min-height: 340px;
  }
}

@media (max-width: 760px) {
  .topbar {
    min-height: 64px;
    gap: 12px;
    padding: 10px 16px;
  }

  .brand img {
    width: min(222px, 58vw);
  }

  .nav-whatsapp {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: 90svh;
    padding: 112px 16px 42px;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(3, 28, 18, 0.8) 0%, rgba(3, 28, 18, 0.48) 58%, rgba(3, 28, 18, 0.16) 100%),
      linear-gradient(90deg, rgba(0, 67, 39, 0.14), rgba(0, 67, 39, 0.06));
  }

  h1 {
    font-size: 3.05rem;
    line-height: 1.12;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-lede {
    font-size: 1.08rem;
  }

  .primary-cta,
  .secondary-cta,
  .map-link,
  .instagram-link,
  .whatsapp-outline {
    width: 100%;
  }

  .instagram-callout {
    justify-content: flex-start;
  }

  .primary-cta {
    min-height: 72px;
    flex-direction: column;
  }

  .proof-band {
    grid-template-columns: 1fr;
  }

  .proof-band article {
    min-height: 108px;
    padding: 24px 18px;
  }

  .section {
    padding: 70px 16px;
  }

  .section-heading {
    text-align: left;
  }

  .product-grid {
    gap: 10px;
  }

  .product-card {
    min-height: 180px;
    padding: 20px;
  }

  .story-section {
    gap: 32px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 14px;
    width: calc(100% - 32px);
  }

  .footer {
    padding: 26px 16px 100px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
