:root {
  --bg: #f6efe3;
  --card: #fffaf2;
  --brown: #5f3417;
  --brown-dark: #3e2210;
  --gold: #c99a3d;
  --green: #516b2d;
  --green-dark: #35471d;
  --text: #2d2118;
  --muted: #6c5b4a;
  --line: rgba(95, 52, 23, 0.12);
  --shadow: 0 14px 32px rgba(62, 34, 16, 0.12);
  --radius: 20px;
  --max: 1180px;
  /* Typography — Inter + system stack, limited weights (400–700) */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-hand: "Caveat", "Segoe Print", "Bradley Hand", cursive;
  --fs-body: 1.0625rem;
  --fs-body-lg: 1.125rem;
  --fs-small: 0.875rem;
  --fs-label: 0.8125rem;
  --lh-body: 1.62;
  --lh-snug: 1.28;
  --lh-tight: 1.12;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  /* Motion — calm, editorial feel */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --reveal-duration: 0.75s;
  --surface-elevated: 0 14px 40px rgba(62, 34, 16, 0.1);
  --surface-glow-line: rgba(255, 220, 165, 0.2);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: var(--fw-normal);
  line-height: var(--lh-body);
  color: var(--text);
  background:
    radial-gradient(ellipse 120% 80% at 100% 0%, rgba(201, 154, 61, 0.09), transparent 50%),
    radial-gradient(ellipse 90% 60% at 0% 100%, rgba(81, 107, 45, 0.08), transparent 45%),
    linear-gradient(180deg, #f9f2e8 0%, #f0e4d4 100%);
  overflow-x: clip;
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1,
h3,
h4 {
  font-family: var(--font-sans);
  font-weight: var(--fw-bold);
  letter-spacing: -0.02em;
  text-wrap: balance;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(100deg, #2f1a0c 0%, #3e2210 40%, #2a3815 100%);
  color: #fff;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 210, 140, 0.14);
  box-shadow: 0 8px 28px rgba(18, 10, 5, 0.18);
  animation: cg-topbar-in 0.55s var(--ease-out-expo) both;
}

.topbar::before {
  content: "";
  position: absolute;
  inset: -60% -20% auto;
  height: 180%;
  background:
    radial-gradient(ellipse 45% 35% at 88% 20%, rgba(255, 190, 80, 0.22), transparent 55%),
    radial-gradient(ellipse 40% 30% at 8% 70%, rgba(120, 160, 70, 0.18), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.nav,
.hero,
.farm-showcase,
.grid-3,
.grid-2,
.footer-grid {
  display: grid;
  gap: 24px;
}

.topbar-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.topbar-contact-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.topbar-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-weight: var(--fw-semibold);
  text-decoration: none;
  overflow-wrap: break-word;
}

.topbar-contact:hover {
  color: var(--gold);
  text-decoration: underline;
}

.topbar-contact:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.topbar-contact-icon {
  flex-shrink: 0;
  display: block;
  opacity: 0.95;
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.topbar-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.2s ease, transform 0.25s var(--ease-soft);
}

.topbar-social-link:hover {
  color: var(--gold);
  transform: translateY(-1px);
}

.topbar-social-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

.topbar-social-icon {
  display: block;
  width: 22px;
  height: 22px;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(249, 242, 232, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(95, 52, 23, 0.1);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
  transition:
    box-shadow 0.4s var(--ease-soft),
    background-color 0.4s var(--ease-soft),
    border-color 0.4s var(--ease-soft);
}

header.is-scrolled {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 16px 48px rgba(62, 34, 16, 0.12);
  background: rgba(255, 252, 246, 0.96);
  border-bottom-color: rgba(201, 154, 61, 0.22);
}

.nav {
  grid-template-columns: auto 1fr;
  align-items: center;
  padding: 16px 0;
  padding-top: max(16px, env(safe-area-inset-top, 0));
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  border: 2px solid var(--gold);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--brown-dark);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:hover {
  background: rgba(201, 154, 61, 0.12);
}

.nav-toggle:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
}

.nav-toggle-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 22px;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav.is-menu-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav.is-menu-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav.is-menu-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-panel {
  display: contents;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-img {
  height: 64px;
  width: auto;
  max-width: min(280px, 52vw);
  flex: 0 0 auto;
  object-fit: contain;
  object-position: left center;
  border-radius: 6px;
}

.footer-brand {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 18px;
  margin-bottom: 12px;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}

.footer-brand-name {
  margin: 0;
  color: #fff;
  font-size: clamp(1.0625rem, 2.5vw, 1.25rem);
  font-weight: var(--fw-semibold);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.footer-brand-tagline {
  margin: 0;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  line-height: 1.4;
  color: var(--gold);
  letter-spacing: 0.03em;
}

.footer-logo-img {
  height: 64px;
  width: auto;
  max-width: min(280px, 52vw);
  object-fit: contain;
  object-position: left center;
  border-radius: 6px;
  flex-shrink: 0;
}

.links {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.01em;
  color: var(--brown);
  flex-wrap: wrap;
}

.links a {
  padding: 6px 4px;
  border-radius: 8px;
}

.links a:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.02em;
  line-height: 1.35;
  border: 2px solid transparent;
  transition:
    transform 0.3s var(--ease-soft),
    box-shadow 0.3s var(--ease-soft),
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(180deg, #5f7a35 0%, var(--green) 45%, var(--green-dark) 100%);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow), 0 2px 0 rgba(255, 255, 255, 0.12) inset;
}

.btn-primary:hover {
  background: linear-gradient(180deg, #6d8a3d 0%, #4a6228 50%, var(--green-dark) 100%);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(62, 34, 16, 0.18);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.45);
  border-color: rgba(201, 154, 61, 0.65);
  color: var(--brown-dark);
  box-shadow: 0 2px 12px rgba(62, 34, 16, 0.05);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(62, 34, 16, 0.1);
}

.btn-secondary:active {
  transform: translateY(0);
}

.btn--whatsapp {
  background: linear-gradient(180deg, #35e877 0%, #1fa855 100%);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.32);
}

.btn--whatsapp:hover {
  background: linear-gradient(180deg, #4aed86 0%, #25d366 100%);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

.btn--whatsapp:active {
  transform: translateY(0);
}

.btn--icon-only {
  padding: 0;
  width: 48px;
  min-width: 48px;
}

.btn-icon {
  flex-shrink: 0;
  width: 1.125em;
  height: 1.125em;
}

.hero-actions .btn:not(.btn--icon-only),
.certificate-actions .btn:not(.btn--icon-only),
.why-contact-actions .btn:not(.btn--icon-only),
.cta-actions .btn:not(.btn--icon-only) {
  gap: 10px;
}

.social-icon {
  display: block;
  width: 24px;
  height: 24px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: var(--fw-semibold);
}

.footer-social-link .social-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.hero {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  padding: 68px 0 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 247, 232, 0.9) 100%);
  border: 1px solid rgba(201, 154, 61, 0.35);
  color: var(--brown-dark);
  font-family: var(--font-sans);
  font-size: var(--fs-label);
  font-weight: var(--fw-semibold);
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 18px rgba(62, 34, 16, 0.07);
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold), var(--green));
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(2.125rem, 5vw + 0.5rem, 3.75rem);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: -0.03em;
  margin: 18px 0 16px;
  color: var(--brown-dark);
  text-shadow: 0 2px 36px rgba(255, 255, 255, 0.65);
}

.text-accent {
  background: linear-gradient(115deg, var(--green-dark) 0%, var(--green) 28%, #b8892e 62%, var(--brown) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .text-accent {
    color: var(--green-dark);
    background: none;
  }
}

.hero p {
  font-size: var(--fs-body-lg);
  font-weight: var(--fw-normal);
  line-height: 1.65;
  color: var(--muted);
  max-width: 40rem;
  margin: 0 0 28px;
}

.hero-actions,
.badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.why-us-back-actions {
  justify-content: center;
  margin-top: 20px;
}

.why-us-cards-heading {
  text-align: center;
  margin: 0 0 22px;
  font-size: clamp(1.15rem, 1.4vw + 0.45rem, 1.35rem);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-snug);
  color: var(--brown-dark);
  letter-spacing: -0.02em;
}

.why-us-intro {
  margin: 0 auto 24px;
  max-width: 40rem;
  text-align: center;
  color: var(--muted);
  font-size: var(--fs-body-lg);
  line-height: 1.62;
}

.why-us-breadcrumb {
  margin: 0 auto 20px;
  max-width: 72rem;
  padding: 0 20px;
  font-size: var(--fs-small);
  color: var(--muted);
}

.why-us-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.why-us-breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.why-us-breadcrumb li:not(:last-child)::after {
  content: "/";
  color: rgba(95, 52, 23, 0.35);
  font-weight: var(--fw-normal);
  margin-left: 2px;
}

.why-us-breadcrumb a {
  color: var(--green);
  font-weight: var(--fw-semibold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.why-us-breadcrumb a:hover {
  color: var(--green-dark);
}

.why-us-breadcrumb [aria-current="page"] {
  color: var(--brown);
  font-weight: var(--fw-semibold);
  text-decoration: none;
}

.why-us-internal {
  margin: 24px auto 0;
  max-width: 40rem;
  text-align: center;
  color: var(--muted);
  font-size: var(--fs-body);
  line-height: 1.62;
}

.why-us-internal a {
  color: var(--green);
  font-weight: var(--fw-semibold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.why-us-internal a:hover {
  color: var(--green-dark);
}

.why-us-page-link {
  margin-top: 22px;
  text-align: center;
}

.why-us-page-link a {
  color: var(--green);
  font-weight: var(--fw-semibold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.why-us-page-link a:hover {
  color: var(--green-dark);
}

.badges { margin-top: 28px; }

.badge {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--brown);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  line-height: 1.4;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 16px rgba(62, 34, 16, 0.05);
}

.badge--accent {
  background: linear-gradient(135deg, rgba(81, 107, 45, 0.1) 0%, rgba(201, 154, 61, 0.12) 100%);
  border-color: rgba(201, 154, 61, 0.35);
  color: var(--brown-dark);
  box-shadow: 0 6px 20px rgba(62, 34, 16, 0.08);
}

.hero-card {
  background: linear-gradient(160deg, #fffaf3 0%, #f7ead4 42%, #edd9b8 100%);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--surface-elevated), 0 1px 0 rgba(255, 255, 255, 0.75) inset;
  border: 1px solid rgba(201, 154, 61, 0.22);
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -30% -20% auto auto;
  width: 70%;
  height: 55%;
  background: radial-gradient(ellipse at 70% 0%, rgba(81, 107, 45, 0.12), transparent 62%);
  pointer-events: none;
  z-index: 0;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(201, 154, 61, 0.32), transparent 65%);
  border-radius: 50%;
  z-index: 0;
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.product-visual {
  height: 290px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 66%, #8b5a2b 0 16%, transparent 17%),
    radial-gradient(circle at 58% 64%, #8b5a2b 0 16%, transparent 17%),
    radial-gradient(circle at 43% 64%, #8b5a2b 0 16%, transparent 17%),
    radial-gradient(circle at 50% 58%, #9e6a35 0 22%, transparent 23%),
    radial-gradient(circle at 50% 80%, #5d3418 0 30%, transparent 31%),
    linear-gradient(180deg, #ead1a2 0%, #c18b49 100%);
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
}

.product-visual .product-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  opacity: 0.92;
  animation: cg-hero-float 7s ease-in-out infinite;
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: auto 18px 16px auto;
  width: 90px;
  height: 120px;
  background: linear-gradient(180deg, #cfa24d, #9a702d);
  clip-path: polygon(50% 0%, 62% 14%, 54% 100%, 46% 100%, 38% 14%);
  opacity: 0.9;
  filter: blur(0.2px);
  z-index: 1;
  pointer-events: none;
}

.hero-card h3 {
  margin: 10px 0 8px;
  font-size: clamp(1.375rem, 2vw + 0.75rem, 1.75rem);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  color: var(--brown-dark);
}

.hero-card p {
  margin: 0 0 18px;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--muted);
}

/* Farm showcase — split layout with overlapping circles (inspired by editorial farm kits; original implementation) */
.farm-showcase-section {
  padding: 48px 0 40px;
  background: #fffef9;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.farm-showcase {
  grid-template-columns: minmax(260px, 1fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(28px, 4vw, 48px);
}

.farm-showcase-visual {
  display: flex;
  justify-content: center;
  padding: 12px 0 24px;
}

.farm-showcase-collage {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1;
  margin: 0 auto;
}

.farm-showcase-circle {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(62, 34, 16, 0.14);
}

.farm-showcase-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.farm-showcase-circle--accent {
  width: 42%;
  aspect-ratio: 1;
  left: 4%;
  top: 2%;
  z-index: 1;
  background: linear-gradient(145deg, #f0c83a 0%, #e8b420 45%, #d9a010 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(255, 255, 255, 0.65);
}

.farm-showcase-accent-icon {
  color: rgba(62, 34, 16, 0.45);
  display: flex;
}

.farm-showcase-circle--farm {
  width: 48%;
  aspect-ratio: 1;
  right: 6%;
  top: 12%;
  z-index: 2;
  border: 5px solid var(--green-dark);
  background: var(--green);
}

.farm-showcase-circle--farm img {
  opacity: 0.95;
  mix-blend-mode: luminosity;
  filter: saturate(1.05);
}

.farm-showcase-circle--product {
  width: 58%;
  aspect-ratio: 1;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 3;
  border: 6px solid #fff;
  background:
    radial-gradient(circle at 50% 70%, rgba(201, 154, 61, 0.35), transparent 55%),
    linear-gradient(180deg, #f4e8d2 0%, #e8d4b4 100%);
}

.farm-showcase-circle--product img {
  object-position: center 55%;
  mix-blend-mode: multiply;
  opacity: 0.88;
}

.farm-showcase-copy {
  position: relative;
  max-width: 36rem;
}

.farm-showcase-copy::before {
  content: "";
  position: absolute;
  width: min(280px, 70vw);
  height: min(280px, 70vw);
  right: -12%;
  top: -8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 154, 61, 0.14) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.farm-showcase-copy > * {
  position: relative;
  z-index: 1;
}

.farm-showcase-eyebrow {
  margin: 0 0 12px;
  font-size: var(--fs-label);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.farm-showcase-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 3.5vw + 0.5rem, 2.5rem);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  letter-spacing: -0.02em;
  color: var(--brown-dark);
}

.farm-showcase-lead {
  margin: 0 0 24px;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--muted);
}

.farm-showcase-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
}

.farm-showcase-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.farm-showcase-feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: var(--green-dark);
  background: linear-gradient(135deg, rgba(81, 107, 45, 0.12) 0%, rgba(201, 154, 61, 0.1) 100%);
  border: 1px solid rgba(81, 107, 45, 0.2);
}

.farm-showcase-feature-text {
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  line-height: 1.45;
  color: var(--brown);
  padding-top: 2px;
}

.farm-showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

section { padding: 34px 0; }

section.farm-showcase-section {
  padding: 48px 0 40px;
}

.section-title {
  text-align: center;
  margin-bottom: 28px;
}

.section-title h1,
.section-title h2,
.section-title h3 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.375rem);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  color: var(--brown-dark);
}

.section-title h1::after,
.section-title h2::after,
.section-title h3::after {
  content: "";
  display: block;
  width: min(64px, 18vw);
  height: 4px;
  margin: 14px auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  box-shadow: 0 2px 12px rgba(81, 107, 45, 0.25);
}

.section-title--left h1::after,
.section-title--left h2::after,
.section-title--left h3::after {
  margin-left: 0;
  margin-right: auto;
}

.section-title p {
  margin: 0 auto;
  max-width: 36rem;
  color: var(--muted);
  font-size: var(--fs-body-lg);
  font-weight: var(--fw-normal);
  line-height: 1.58;
}

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

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

.card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(165deg, #fffdfa 0%, var(--card) 55%, #fff7ec 100%);
  border: 1px solid rgba(95, 52, 23, 0.1);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 12px 36px rgba(62, 34, 16, 0.07), 0 1px 0 rgba(255, 255, 255, 0.85) inset;
  transition:
    transform 0.4s var(--ease-soft),
    box-shadow 0.4s var(--ease-soft),
    border-color 0.3s ease;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 42%;
  background: radial-gradient(ellipse at 100% 0%, rgba(201, 154, 61, 0.1), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.card > * {
  position: relative;
  z-index: 1;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--surface-elevated), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  border-color: rgba(201, 154, 61, 0.32);
}

.icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 26px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(201, 154, 61, 0.2) 100%);
  border: 1px solid rgba(201, 154, 61, 0.28);
  margin-bottom: 16px;
  box-shadow: 0 6px 20px rgba(62, 34, 16, 0.08);
}

.card h2,
.card h3,
.card h4 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: var(--fw-semibold);
  line-height: var(--lh-snug);
  letter-spacing: -0.015em;
  color: var(--brown);
}

.card p {
  margin: 0;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--muted);
}

.card p a {
  color: var(--green);
  font-weight: var(--fw-semibold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.card p a:hover { color: var(--green-dark); }

.why-contact {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.why-contact.surface-dark h4 {
  margin: 0 0 12px;
  font-size: clamp(1.2rem, 2vw + 0.5rem, 1.45rem);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  color: #fff;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.why-contact.surface-dark .why-contact-lead {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--fs-body);
  font-weight: var(--fw-normal);
  line-height: var(--lh-body);
}

.why-contact-lead {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: var(--fs-body);
  font-weight: var(--fw-normal);
  line-height: var(--lh-body);
}

.why-contact-actions {
  justify-content: center;
}

.certificate-section {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(81, 107, 45, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(81, 107, 45, 0.07), transparent);
  border-top: 1px solid var(--line);
}

.certificate-panel {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  border-color: rgba(81, 107, 45, 0.15);
}

.certificate-license {
  margin: 0 0 12px;
  font-size: var(--fs-body-lg);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-snug);
  color: var(--brown-dark);
}

.certificate-note {
  margin: 0 auto 22px;
  color: var(--muted);
  font-size: var(--fs-body);
  font-weight: var(--fw-normal);
  line-height: var(--lh-body);
  max-width: 36rem;
}

.certificate-actions { justify-content: center; }

.story {
  background:
    radial-gradient(ellipse 55% 45% at 15% 50%, rgba(81, 107, 45, 0.12), transparent 52%),
    radial-gradient(ellipse 50% 40% at 90% 30%, rgba(201, 154, 61, 0.1), transparent 50%),
    linear-gradient(180deg, rgba(81, 107, 45, 0.07), rgba(201, 154, 61, 0.09));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-visual {
  min-height: 320px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0)),
    linear-gradient(0deg, rgba(81, 107, 45, 0.55), rgba(81, 107, 45, 0.18)),
    linear-gradient(180deg, #dfc07c 0%, #b88a4b 100%);
  position: relative;
  overflow: hidden;
}

.story-visual .story-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  mix-blend-mode: overlay;
}

.story-visual::before,
.story-visual::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 130px;
  height: 210px;
  border-radius: 70px 70px 20px 20px;
  background: linear-gradient(180deg, #f7f1e8 0%, #b56c37 100%);
  box-shadow: inset 0 -20px 0 rgba(95, 52, 23, 0.12);
  z-index: 1;
  pointer-events: none;
}

.story-visual::before { left: 24%; }
.story-visual::after { right: 18%; }

.section-title--left {
  text-align: left;
  margin-bottom: 18px;
}

.section-title--left p {
  margin-left: 0;
  margin-right: auto;
}

.list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.list-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 250, 242, 0.88) 100%);
  border: 1px solid rgba(201, 154, 61, 0.18);
  padding: 14px 16px;
  border-radius: 14px;
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  line-height: 1.5;
  color: var(--brown);
  box-shadow: 0 4px 14px rgba(62, 34, 16, 0.04);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #fffefb 0%, #fff 100%);
  border: 1px solid rgba(95, 52, 23, 0.1);
  border-radius: 18px;
  padding: 22px 20px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(62, 34, 16, 0.07), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition:
    transform 0.35s var(--ease-soft),
    box-shadow 0.35s var(--ease-soft);
}

.step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  opacity: 0.85;
  z-index: 1;
  pointer-events: none;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(62, 34, 16, 0.11);
  border-color: rgba(201, 154, 61, 0.25);
}

.step strong {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, #6d8a3d 0%, var(--green) 45%, var(--green-dark) 100%);
  color: #fff;
  margin-bottom: 12px;
  font-weight: var(--fw-bold);
  font-size: 1.05rem;
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 18px rgba(81, 107, 45, 0.35);
  transition: transform 0.35s var(--ease-soft), box-shadow 0.25s ease;
}

.step:hover strong {
  transform: scale(1.06);
  box-shadow: 0 8px 22px rgba(81, 107, 45, 0.45);
}

.step h4 {
  margin: 0 0 8px;
  font-size: 1.0625rem;
  font-weight: var(--fw-semibold);
  line-height: var(--lh-snug);
  color: var(--brown-dark);
}

.step p {
  margin: 0;
  font-size: var(--fs-small);
  font-weight: var(--fw-normal);
  line-height: 1.55;
  color: var(--muted);
}

.testimonials-showcase {
  position: relative;
  padding: 0;
  overflow: visible;
}

section.testimonials-showcase {
  padding-top: 0;
  padding-bottom: 0;
}

.testimonials-showcase__hero {
  position: relative;
  isolation: isolate;
  min-height: 220px;
  padding: 40px 0 120px;
  background:
    radial-gradient(ellipse 80% 70% at 12% 20%, rgba(201, 154, 61, 0.12), transparent 52%),
    radial-gradient(ellipse 55% 50% at 92% 35%, rgba(255, 255, 255, 0.06), transparent 48%),
    linear-gradient(165deg, var(--green-dark) 0%, #2a3815 42%, #243212 100%);
  color: #fff;
}

.testimonials-showcase__hero-inner {
  position: relative;
  z-index: 1;
}

.testimonials-showcase__hero .section-title--on-hero {
  margin-bottom: 0;
}

.testimonials-showcase__hero .section-title--on-hero h3 {
  color: #fffaf2;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
}

.testimonials-showcase__hero .section-title--on-hero h3::after {
  background: linear-gradient(90deg, var(--gold), rgba(255, 248, 230, 0.85));
  box-shadow: 0 2px 14px rgba(201, 154, 61, 0.35);
}

.testimonials-showcase__hero .section-title--on-hero p {
  color: rgba(255, 248, 240, 0.82);
}

.testimonials-showcase__pull {
  position: relative;
  z-index: 2;
  margin-top: -104px;
  padding-bottom: 52px;
}

.testimonials-carousel {
  position: relative;
  padding: 36px 20px 24px;
  border-radius: calc(var(--radius) + 4px);
  box-shadow:
    0 28px 60px rgba(62, 34, 16, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.testimonials-carousel__viewport {
  overflow: hidden;
  margin: 0 -4px;
  padding: 0 4px;
}

.testimonials-carousel__viewport:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

.testimonials-carousel__track {
  display: flex;
  gap: var(--tc-gap, 20px);
  transition: transform 0.5s var(--ease-soft);
  will-change: transform;
}

.testimonials-slide {
  flex-shrink: 0;
  min-width: 0;
  padding: 8px 6px 4px;
  box-sizing: border-box;
}

.testimonials-slide__avatar {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 18px;
}

.testimonials-slide__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(201, 154, 61, 0.5);
  box-shadow: 0 10px 28px rgba(62, 34, 16, 0.12);
  background: var(--card);
}

.testimonials-slide__quote-mark {
  position: absolute;
  left: 2px;
  bottom: 2px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #e8bc55 0%, var(--gold) 100%);
  color: var(--brown-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: var(--fw-bold);
  line-height: 1;
  box-shadow: 0 6px 16px rgba(62, 34, 16, 0.22);
  border: 2px solid rgba(255, 248, 230, 0.85);
}

.testimonials-slide__quote {
  margin: 0 0 18px;
  padding: 0 10px;
  border: none;
  text-align: center;
}

.testimonials-slide__quote p {
  margin: 0;
  font-family: var(--font-hand);
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  font-weight: 600;
  line-height: 1.38;
  color: var(--muted);
}

.testimonials-slide__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px 20px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.testimonials-slide__name {
  font-style: normal;
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brown-dark);
  line-height: var(--lh-snug);
}

.testimonials-slide__role {
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  color: var(--muted);
  line-height: 1.45;
  text-align: right;
}

.testimonials-carousel__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.testimonials-carousel__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fffdfa 0%, var(--card) 100%);
  color: var(--brown-dark);
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(62, 34, 16, 0.08);
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.25s var(--ease-soft),
    box-shadow 0.2s ease;
}

.testimonials-carousel__btn:hover:not(:disabled) {
  border-color: rgba(201, 154, 61, 0.55);
  color: var(--green-dark);
  transform: translateY(-1px);
}

.testimonials-carousel__btn:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.testimonials-carousel__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-carousel__track {
    transition: none;
  }

  .testimonials-carousel__btn:hover:not(:disabled) {
    transform: none;
  }
}

@media (max-width: 719px) {
  .testimonials-slide__meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonials-slide__role {
    text-align: left;
  }
}

.surface-dark {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 28px;
  background: linear-gradient(125deg, #2a170d 0%, #3d2615 22%, #2a4014 58%, #1a2e0f 100%);
  color: #fff;
  border: 1px solid var(--surface-glow-line);
  box-shadow:
    0 1px 0 rgba(255, 235, 200, 0.12) inset,
    0 24px 56px rgba(18, 10, 5, 0.35);
  transition: transform 0.45s var(--ease-soft), box-shadow 0.45s var(--ease-soft);
}

.surface-dark::before {
  content: "";
  position: absolute;
  inset: -45% -25%;
  background:
    radial-gradient(ellipse 52% 42% at 90% 6%, rgba(255, 200, 95, 0.38), transparent 55%),
    radial-gradient(ellipse 48% 38% at 4% 92%, rgba(130, 175, 72, 0.32), transparent 50%),
    radial-gradient(ellipse 35% 30% at 50% 50%, rgba(255, 255, 255, 0.06), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.surface-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 3px,
    rgba(255, 255, 255, 0.02) 3px,
    rgba(255, 255, 255, 0.02) 4px
  );
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
  mix-blend-mode: overlay;
}

.surface-dark:hover {
  transform: translateY(-3px);
  box-shadow:
    0 1px 0 rgba(255, 235, 200, 0.15) inset,
    0 28px 64px rgba(18, 10, 5, 0.42);
}

.surface-dark > * {
  position: relative;
  z-index: 1;
}

.cta.surface-dark {
  padding: clamp(28px, 5vw, 44px) clamp(22px, 4vw, 40px);
}

.why-contact.surface-dark {
  padding: clamp(26px, 4vw, 40px) clamp(20px, 3vw, 36px);
  margin-top: 20px;
}

.cta-wrap {
  display: grid;
  grid-template-columns: 1.15fr auto;
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
}

.cta-content {
  max-width: 36rem;
}

.cta-eyebrow {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-label);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 224, 170, 0.95);
}

.cta-eyebrow::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 14px rgba(37, 211, 102, 0.65);
}

.cta h3 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.25);
}

.cta-accent {
  background: linear-gradient(105deg, #fff4d2 0%, #ffc94a 42%, #fff9e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .cta-accent {
    color: #ffd060;
    background: none;
  }
}

.cta-lead {
  margin: 0;
  font-size: var(--fs-body);
  font-weight: var(--fw-normal);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

.cta-actions {
  justify-content: flex-end;
}

.surface-dark .btn--whatsapp {
  border: 2px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.38);
}

.surface-dark .btn--whatsapp:hover {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.45);
}

.surface-dark .btn--whatsapp:active {
  transform: translateY(0);
}

.surface-dark .btn-secondary {
  color: #fffdf7;
  border-color: rgba(255, 228, 185, 0.72);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: none;
}

.surface-dark .btn-secondary:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
  border-color: #ffe8b8;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.surface-dark .btn--icon-only {
  color: #fffdf7;
}

footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  margin-top: 42px;
  background: linear-gradient(165deg, #1f1108 0%, #2d190d 40%, #1a2e0f 100%);
  color: #f5e6d1;
  padding: 48px 0 22px;
  border-top: 1px solid rgba(255, 210, 140, 0.12);
  box-shadow: 0 -12px 48px rgba(18, 10, 5, 0.2);
}

footer::before {
  content: "";
  position: absolute;
  inset: -40% 20% auto;
  height: 80%;
  background: radial-gradient(ellipse 50% 40% at 70% 0%, rgba(255, 190, 90, 0.12), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.footer-grid,
footer > .copyright {
  position: relative;
  z-index: 1;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 1fr;
  align-items: start;
}

footer h4 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1.0625rem;
  font-weight: var(--fw-semibold);
  line-height: var(--lh-snug);
  letter-spacing: -0.01em;
}

footer p,
footer li,
footer a {
  font-size: var(--fs-small);
  font-weight: var(--fw-normal);
  line-height: 1.55;
  color: rgba(245, 230, 209, 0.88);
  transition: color 0.2s ease;
}

footer a:hover {
  color: #ffe9b8;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.copyright {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  color: rgba(245, 230, 209, 0.72);
  font-size: var(--fs-small);
  font-weight: var(--fw-normal);
  line-height: 1.5;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 100;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 12px 20px;
  background: var(--green);
  color: #fff;
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  line-height: 1.35;
  border-radius: 8px;
  overflow: visible;
}

/* —— Motion: hero entrance, scroll reveal, ambient float —— */
@keyframes cg-fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cg-hero-float {
  0%,
  100% {
    transform: scale(1.02) translateY(0);
  }
  50% {
    transform: scale(1.035) translateY(-10px);
  }
}

@keyframes cg-topbar-in {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy > * {
  animation: cg-fade-up 0.88s var(--ease-out-expo) both;
}

.hero-copy > *:nth-child(1) {
  animation-delay: 0.06s;
}
.hero-copy > *:nth-child(2) {
  animation-delay: 0.14s;
}
.hero-copy > *:nth-child(3) {
  animation-delay: 0.22s;
}
.hero-copy > *:nth-child(4) {
  animation-delay: 0.3s;
}
.hero-copy > *:nth-child(5) {
  animation-delay: 0.38s;
}

.hero-card {
  animation: cg-fade-up 0.92s var(--ease-out-expo) 0.1s both;
}

.links a {
  position: relative;
  transition: color 0.25s ease;
}

.links a:hover,
.links a:focus-visible {
  color: var(--green-dark);
}

.links a::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease-soft);
}

.links a:hover::after,
.links a:focus-visible::after {
  transform: scaleX(1);
}

.cg-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity var(--reveal-duration) var(--ease-out-expo),
    transform var(--reveal-duration) var(--ease-out-expo);
  transition-delay: var(--cg-reveal-delay, 0s);
  will-change: opacity, transform;
}

.cg-reveal.cg-reveal--visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  .topbar,
  .hero-copy > *,
  .hero-card {
    animation: none !important;
  }

  .product-visual .product-hero-img {
    animation: none !important;
  }

  .cg-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
  }

  header {
    transition: none !important;
  }

  .btn,
  .card,
  .step,
  .surface-dark,
  .step strong {
    transition: none !important;
  }

  .btn:hover,
  .btn-primary:hover,
  .btn-secondary:hover,
  .btn--whatsapp:hover,
  .card:hover,
  .step:hover,
  .surface-dark:hover {
    transform: none !important;
  }

  .step:hover strong {
    transform: none !important;
  }

  .links a::after {
    transition: none !important;
  }

  .topbar-social-link {
    transition: none !important;
  }

  .topbar-social-link:hover {
    transform: none !important;
  }
}

@media (max-width: 980px) {
  .hero,
  .farm-showcase,
  .grid-3,
  .grid-2,
  .process,
  .footer-grid,
  .cta-wrap {
    grid-template-columns: 1fr;
  }

  .cta-actions,
  .why-contact-actions {
    justify-content: flex-start;
  }

  .topbar-row {
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  .topbar-contact-group {
    justify-content: center;
  }

  .topbar-contact {
    justify-content: center;
    word-break: break-word;
  }
  .hero { padding-top: 36px; }
  .hero-card { min-height: auto; }
}

@media (max-width: 980px) and (min-width: 521px) {
  .process {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .nav {
    grid-template-columns: 1fr auto;
    align-items: center;
    text-align: left;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-panel {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding-top: 16px;
    margin-top: 4px;
    border-top: 1px solid var(--line);
  }

  .nav.is-menu-open .nav-panel {
    display: flex;
  }

  .brand {
    justify-content: flex-start;
    min-width: 0;
  }

  .links {
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    text-align: right;
  }

  .links a {
    padding: 12px 14px;
  }
}

@media (max-width: 640px) {
  .container { width: min(var(--max), calc(100% - 20px)); }
  .hero h1 { font-size: clamp(1.65rem, 8vw + 0.25rem, 2.25rem); }
  .hero p { font-size: 1rem; line-height: 1.62; }
  .product-visual {
    height: min(290px, 52vw);
    min-height: 200px;
  }
  .story-visual {
    min-height: min(320px, 55vw);
  }
  .btn:not(.btn--icon-only) { width: 100%; }
  .hero-actions .btn:not(.btn--icon-only),
  .farm-showcase-actions .btn:not(.btn--icon-only),
  .why-contact-actions .btn:not(.btn--icon-only),
  .certificate-actions .btn:not(.btn--icon-only),
  .cta-wrap .btn:not(.btn--icon-only) { width: 100%; }
  .cta h3 { font-size: clamp(24px, 7vw, 30px); }
  .badge {
    font-size: 13px;
    padding: 8px 12px;
    word-break: break-word;
  }
  .section-title p {
    font-size: 1rem;
    line-height: 1.6;
  }
  .footer-grid ul a,
  .footer-grid ul li {
    word-break: break-word;
  }
  .contact-page-actions .btn:not(.btn--icon-only) {
    width: 100%;
  }
}

/* Contact page */
.contact-page-section {
  padding-top: 0;
}

.contact-page-title {
  margin-top: 28px;
  margin-bottom: 32px;
}

.contact-page-lead {
  margin: 0 auto 8px;
  max-width: 42rem;
  text-align: center;
  color: var(--muted);
  font-size: var(--fs-body-lg);
  line-height: 1.62;
}

.contact-map-fullbleed {
  margin-top: 28px;
  margin-bottom: 8px;
}

.contact-map-fullbleed-head {
  text-align: center;
  margin-bottom: 16px;
}

.contact-map-fullbleed-title {
  margin: 0 0 8px;
  font-size: clamp(1.2rem, 2vw + 0.5rem, 1.5rem);
  font-weight: var(--fw-bold);
  color: var(--brown-dark);
}

.contact-map-fullbleed-title::after {
  content: "";
  display: block;
  width: min(56px, 16vw);
  height: 3px;
  margin: 12px auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
}

.contact-map-fullbleed-sub {
  margin: 0 auto;
  max-width: 36rem;
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--muted);
}

.contact-map-embed-wrap--fullbleed {
  width: 100vw;
  max-width: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
  aspect-ratio: 16 / 9;
  min-height: 220px;
  max-height: min(52vh, 420px);
  box-shadow: 0 16px 48px rgba(62, 34, 16, 0.12);
}

.contact-map-fullbleed-actions {
  display: flex;
  justify-content: center;
  padding-top: 18px;
  padding-bottom: 8px;
}

.contact-info-card--wide {
  margin-top: 16px;
}

.contact-info-split {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 28px 32px;
  align-items: start;
}

.contact-dl--wide {
  margin-bottom: 0;
}

.contact-info-aside .contact-hours {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  padding: 20px 20px 20px 22px;
  background: rgba(95, 52, 23, 0.05);
  border-radius: 14px;
  border: 1px solid rgba(95, 52, 23, 0.1);
}

@media (max-width: 768px) {
  .contact-info-split {
    grid-template-columns: 1fr;
  }

  .contact-info-aside .contact-hours {
    padding: 18px 16px;
  }

  .contact-map-embed-wrap--fullbleed {
    aspect-ratio: 4 / 3;
    max-height: none;
    min-height: 200px;
  }
}

.contact-card-title {
  margin: 0 0 16px;
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: var(--fw-semibold);
  color: var(--brown);
}

.contact-dl {
  margin: 0 0 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  font-size: var(--fs-body);
}

.contact-dl dt {
  margin: 0;
  font-weight: var(--fw-semibold);
  color: var(--brown);
}

.contact-dl dd {
  margin: 0;
  color: var(--muted);
}

.contact-dl a {
  color: var(--green);
  font-weight: var(--fw-semibold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contact-dl a:hover {
  color: var(--green-dark);
}

.contact-muted {
  display: inline;
  font-size: var(--fs-small);
  font-weight: var(--fw-normal);
  color: rgba(95, 52, 23, 0.65);
}

.contact-hours {
  padding-top: 16px;
  margin-top: 8px;
  border-top: 1px solid rgba(95, 52, 23, 0.12);
}

.contact-hours h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  color: var(--brown);
}

.contact-hours p {
  margin: 0 0 6px;
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--muted);
}

.contact-hours-note {
  margin-top: 12px !important;
  font-size: var(--fs-small) !important;
  line-height: 1.5 !important;
}

.contact-page-actions {
  margin-top: 20px;
  flex-wrap: wrap;
}

.contact-map-embed-wrap {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(95, 52, 23, 0.06);
  aspect-ratio: 4 / 3;
  min-height: 220px;
}

.contact-map-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 380px) {
  .topbar {
    font-size: 12px;
    padding: 8px 0;
  }
}
