:root {
  --ink: #243027;
  --muted: #657068;
  --paper: #fbfaf5;
  --cream: #f3ecdc;
  --sage: #718c6b;
  --sage-dark: #3f5f48;
  --berry: #a3465a;
  --gold: #d49a46;
  --line: rgba(36, 48, 39, 0.14);
  --shadow: 0 24px 80px rgba(31, 43, 34, 0.14);
  --radius: 8px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
}

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(212, 154, 70, 0.9);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(251, 250, 245, 0.94);
  box-shadow: 0 10px 30px rgba(20, 27, 22, 0.09);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 140px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.site-header.is-scrolled .brand-logo,
.site-header.is-open .brand-logo {
  border-color: rgba(36, 48, 39, 0.14);
  box-shadow: 0 8px 24px rgba(31, 43, 34, 0.12);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  margin-top: 2px;
  font-size: 0.73rem;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.9;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-action {
  padding: 10px 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.nav-toggle svg,
.button svg,
.intro-strip svg,
.product-icon svg,
.benefit-list svg,
.whatsapp-float svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.1;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(21, 30, 23, 0.86) 0%, rgba(21, 30, 23, 0.48) 42%, rgba(21, 30, 23, 0.14) 100%),
    linear-gradient(0deg, rgba(21, 30, 23, 0.44) 0%, rgba(21, 30, 23, 0) 38%);
}

.hero-logo-badge {
  position: absolute;
  z-index: 1;
  top: clamp(104px, 14vh, 164px);
  left: 58%;
  width: clamp(128px, 13vw, 210px);
  aspect-ratio: 1;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 22px 70px rgba(21, 30, 23, 0.22);
  transform: translateX(-50%);
}

.hero-logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.68);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100% - 36px));
  margin: 0 0 clamp(56px, 11vh, 104px) clamp(18px, 6vw, 88px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--berry);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f5d38a;
}

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

h1,
h2 {
  font-family: Fraunces, Georgia, serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
  line-height: 0.9;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.2vw, 4.1rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-copy-small {
  margin-top: -4px;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.74);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
}

.button.primary {
  color: #fff;
  background: var(--berry);
  box-shadow: 0 14px 34px rgba(93, 32, 44, 0.24);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.08);
}

.button.large {
  min-width: min(100%, 280px);
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.intro-strip div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 86px;
  padding: 18px;
  background: var(--cream);
  color: var(--sage-dark);
  font-weight: 800;
}

.section {
  padding: clamp(64px, 10vw, 124px) clamp(18px, 5vw, 72px);
}

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

.section-heading p {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

.compact {
  margin-bottom: 32px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 42px rgba(31, 43, 34, 0.07);
}

.product-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  color: #fff;
  border-radius: 50%;
  background: var(--sage);
}

.product-card p {
  flex: 1;
}

.tag {
  align-self: flex-start;
  padding: 8px 11px;
  color: var(--sage-dark);
  background: #edf3e9;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.education {
  background: #fff;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.info-card {
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.info-card svg {
  width: 24px;
  height: 24px;
  margin-bottom: 18px;
  color: var(--sage-dark);
  stroke-width: 2;
}

.info-card p {
  margin-bottom: 0;
}

.note-box {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  max-width: 900px;
  margin: 28px auto 0;
  padding: 20px;
  color: #5b3f27;
  background: #f8eedf;
  border: 1px solid rgba(212, 154, 70, 0.32);
  border-radius: var(--radius);
}

.note-box svg {
  width: 22px;
  height: 22px;
  margin-top: 4px;
  color: var(--gold);
}

.note-box p {
  margin: 0;
  color: #5b3f27;
}

.local-seo {
  background: linear-gradient(180deg, #fff 0%, #f6f2e8 100%);
}

.local-grid,
.faq-list {
  max-width: 1120px;
  margin: 0 auto;
}

.local-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.local-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 42px rgba(31, 43, 34, 0.06);
}

.local-card svg {
  width: 24px;
  height: 24px;
  margin-bottom: 18px;
  color: var(--berry);
}

.local-card p {
  margin-bottom: 0;
}

.process {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(32px, 7vw, 88px);
  background: #e9efe4;
}

.process-copy {
  max-width: 520px;
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 64px 1fr;
  column-gap: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(63, 95, 72, 0.15);
  border-radius: var(--radius);
}

.steps span {
  grid-row: span 2;
  color: var(--berry);
  font-family: Fraunces, serif;
  font-size: 1.7rem;
  font-weight: 700;
}

.steps strong {
  font-size: 1.05rem;
}

.steps p {
  margin: 6px 0 0;
}

.benefits {
  background: var(--paper);
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1060px;
  margin: 0 auto;
}

.benefit-list div {
  border-top: 2px solid var(--gold);
  padding-top: 20px;
}

.benefit-list svg {
  color: var(--berry);
  margin-bottom: 14px;
}

.benefit-list strong {
  display: block;
  margin-bottom: 8px;
}

.faq {
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0 0 20px;
}

.orders {
  display: grid;
  grid-template-columns: minmax(260px, 680px) auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--sage-dark);
  color: #fff;
}

.orders .eyebrow {
  color: #f5d38a;
}

.orders p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 20px;
  padding: 30px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer p {
  margin: 4px 0 0;
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--berry);
  font-weight: 800;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 7px;
  white-space: nowrap;
  font-size: 0.95rem;
}

.footer-social img {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.footer-location {
  margin: 0;
  justify-self: end;
  font-size: 0.92rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #fff;
  background: #248f5a;
  border-radius: 50%;
  box-shadow: 0 18px 44px rgba(36, 143, 90, 0.34);
}

.whatsapp-float:hover {
  background: #1f7d4f;
}

@media (max-width: 840px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px;
  }

  .nav-action {
    border-radius: var(--radius);
    text-align: center;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-media img {
    object-position: 60% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(21, 30, 23, 0.9) 0%, rgba(21, 30, 23, 0.58) 72%, rgba(21, 30, 23, 0.28) 100%),
      linear-gradient(0deg, rgba(21, 30, 23, 0.5) 0%, rgba(21, 30, 23, 0) 42%);
  }

  .hero-logo-badge {
    top: 96px;
    left: auto;
    right: 18px;
    width: 92px;
    padding: 0;
    opacity: 0.96;
    transform: none;
  }

  .hero-content {
    width: auto;
    max-width: calc(100% - 36px);
    margin: 0 18px 44px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .intro-strip,
  .product-grid,
  .info-grid,
  .local-grid,
  .process,
  .benefit-list,
  .orders {
    grid-template-columns: 1fr;
  }

  .intro-strip div {
    min-height: 68px;
  }

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

  .steps li {
    grid-template-columns: 52px 1fr;
    padding: 20px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 92px;
  }

  .site-footer > div {
    justify-self: center;
  }

  .footer-location {
    justify-self: center;
  }

  .footer-social {
    font-size: 0.92rem;
  }

  .footer-social img {
    width: 18px;
    height: 18px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .button {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .product-card {
    min-height: auto;
  }

  .info-card {
    min-height: auto;
  }
}


/* Product hover reveal inspired by Prismic-style interactive slices */
.products .product-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.products .product-card:hover,
.products .product-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(111, 138, 107, 0.38);
  box-shadow: 0 26px 70px rgba(31, 43, 34, 0.16);
}

.product-preview {
  order: -1;
  width: calc(100% + 56px);
  max-height: 0;
  margin: -28px -28px 22px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-18px) scale(0.98);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
  transition: max-height 520ms cubic-bezier(.22,1,.36,1), opacity 320ms ease, transform 520ms cubic-bezier(.22,1,.36,1);
}

.product-preview img {
  display: block;
  width: 100%;
  height: clamp(220px, 28vw, 360px);
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 620ms cubic-bezier(.22,1,.36,1);
}

.products .product-card:hover .product-preview,
.products .product-card:focus-within .product-preview {
  max-height: 380px;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.products .product-card:hover .product-preview img,
.products .product-card:focus-within .product-preview img {
  transform: scale(1);
}

.products .product-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,164,107,.2), transparent 70%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
  z-index: -1;
}

.products .product-card:hover::after,
.products .product-card:focus-within::after {
  opacity: 1;
}

@media (hover: none) {
  .product-preview {
    max-height: 280px;
    opacity: 1;
    transform: none;
  }
}
