/* Maya's World — design tokens from Figma */
:root {
  --cream: #faeed8;
  --cream-card: #fff8eb;
  --sage: #b9d28e;
  --sage-light: #cee99f;
  --forest: #1f3d2b;
  --forest-dark: #1a3224;
  --accent: #a3b18a;
  --secondary: #bedb88;
  --text: #222222;
  --text-main: #1a1a1a;
  --text-light: #faeed8;
  --green-italic: #237744;
  --nav-bg: rgba(122, 139, 105, 0.2);
  --nav-pill: rgba(163, 177, 138, 0.08);
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-label: "Manrope", var(--font-sans);
  --container: 1240px;
  --page-padding: 60px;
  --content-inset: max(var(--page-padding), calc((100vw - min(100vw - 2 * var(--page-padding), var(--container))) / 2));
  --page-max: 1440px;
  --radius: 10px;
  --radius-sm: 6px;
  /* About/Blog hero: green band + card straddle (Figma 152px of 450px on cream) */
  --hero-page-pre-image: 382px;
  --shadow-logo: 0 2.65px 4.64px rgba(15, 49, 29, 0.35);
  --glass-blur: 2px;
  --glass-badge-bg: rgba(163, 177, 138, 0.50);
  --glass-badge-border: rgba(31, 61, 43, 0.2);
  --glass-btn-bg: rgba(22, 22, 22, 0.25);
  --glass-btn-border: #A3B18A;
  --btn-hover-border: rgba(163, 177, 138, 0.2);
  --btn-hover-border-light: #b9d28e;
  --btn-hover-inset: 6px;
  --btn-shell-transition: border-color 0.25s ease;
  --btn-fill-transition: inset 0.25s ease;
  /* Barely-there halo on cream — one layer, no dark edge */
  --category-shadow: 0 10px 48px -22px rgba(26, 26, 26, 0.018);
  --category-shadow-hover: 0 12px 52px -22px rgba(26, 26, 26, 0.024);
  --nav-menu-bg: #314d37;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html {
    overflow-x: hidden;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.5;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

/* <picture> must not break absolute-fill image layouts */
picture {
  display: contents;
}

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

h1, h2, h3, p, ul {
  margin: 0;
}

em {
  font-style: italic;
  color: var(--accent);
}

.container {
  width: min(100% - 2 * var(--page-padding), var(--container));
  margin-inline: auto;
}

.section {
  padding: 100px 0;
}

.section--cream {
  background: var(--cream);
  --btn-hover-border: var(--btn-hover-border-light);
}

.section--sage {
  background: var(--sage);
  --btn-hover-border: var(--btn-hover-border-light);
}

.section-header h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 48px);
  line-height: 1.1;
  color: var(--text-main);
}

.section-header h2 em {
  color: var(--forest);
}

.section-header p {
  margin-top: 22px;
  opacity: 0.85;
  max-width: 482px;
}

.section-header--center {
  text-align: center;
}

.section-header--center p {
  margin-inline: auto;
}

/* Buttons — hover: outer border (full size), inner fill shrinks 6px */
.btn,
.nav-link {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  border: none;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  width: auto;
  max-width: none;
  flex: 0 0 auto;
  align-self: center;
  transition: color 0.25s ease;
  --btn-fill: transparent;
}

.btn::before,
.nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: transparent;
  pointer-events: none;
  transition: var(--btn-shell-transition);
}

.btn::after,
.nav-link::after {
  content: "";
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  border-radius: inherit;
  border: 1px solid transparent;
  background: var(--btn-fill);
  pointer-events: none;
  transition: var(--btn-fill-transition), border-color 0.25s ease;
  z-index: -1;
}

/* Outer shell border — hover only (never visible at rest) */
.btn:hover::before,
.nav-link:hover::before {
  border-color: var(--btn-hover-border);
}

.btn:hover::after,
.nav-link:hover::after {
  inset: var(--btn-hover-inset);
}

.btn--primary {
  --btn-fill: var(--secondary);
  color: var(--text);
}

.btn--dark {
  --btn-fill: var(--forest);
  color: var(--text-light);
  text-transform: capitalize;
}

.btn--outline-light {
  color: var(--text-light);
}

.btn--outline-light::after {
  border-color: var(--accent);
}

.btn--outline-light:hover {
  --btn-fill: var(--nav-pill);
  color: var(--secondary);
}

.btn--outline-light:hover::after {
  border-color: var(--btn-hover-border);
}

/* Glassmorphism (hero badge, explore button — per Figma) */
.btn--glass {
  --btn-fill: var(--glass-btn-bg);
  color: var(--text-light);
}

.btn--glass::after {
  border-color: var(--glass-btn-border);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  box-shadow:
    inset 0 1px 0 rgba(250, 238, 216, 0.12),
    0 4px 24px rgba(0, 0, 0, 0.12);
}

.btn--glass:hover {
  --btn-fill: rgba(31, 61, 43, 0.35);
}

.btn--glass:hover::before {
  border-color: rgba(163, 177, 138, 0.7);
}

.btn--outline-dark {
  color: var(--text-main);
}

.btn--outline-dark::after {
  border-color: var(--accent);
}

.btn--outline-dark:hover {
  --btn-fill: var(--nav-pill);
  color: var(--secondary);
}

.btn--outline-dark:hover::after {
  border-color: var(--btn-hover-border);
}

/* Site header — overlays page hero (mct-style header.php) */
body.has-page-hero {
  position: relative;
}

body.has-page-hero .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
}

/* Hero */
.hero {
  position: relative;
  padding-bottom: 0;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0 0 auto;
  height: 920px;
  background: var(--cream);
  z-index: 0;
  overflow: hidden;
}

.hero__bg > img:not(.hero__bg-leaf) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Full-width navbar row — only side padding (Figma: 60px) */
.hero__nav-bar {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 50px var(--page-padding) 0;
  box-sizing: border-box;
}

/* Narrower hero content — matches .container (1240px) */
.hero__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2 * var(--page-padding), var(--container));
  margin-inline: auto;
  padding: 0;
  box-sizing: border-box;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  width: 100%;
  max-width: none;
  min-height: 80px;
  padding: 13px 20px;
  background: var(--nav-bg);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  position: relative;
  box-sizing: border-box;
}

.navbar__logo {
  position: absolute;
  left: 20px;
  top: -40px;
  display: block;
  width: 138.411px;
  height: 200px;
  z-index: 3;
  overflow: hidden;
  flex-shrink: 0;
  filter: drop-shadow(var(--shadow-logo));
}

/* Crop/position asset per Figma MAYA'S LOGO frame */
.navbar__logo img {
  position: absolute;
  width: 162.67%;
  height: 112.32%;
  max-width: none;
  left: -32.76%;
  top: -6.34%;
}

.navbar__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.navbar__toggle img {
  display: block;
  width: 24px;
  height: 24px;
}

.navbar__backdrop,
.navbar__close,
.navbar__menu-logo {
  display: none;
}

.navbar__panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  min-height: 54px;
}

.navbar__panel .btn--whatsapp {
  z-index: 2;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 500!important;
}

.navbar__links {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 13px;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 1;
}

.nav-link {
  --btn-fill: var(--nav-pill);
  font-size: 18px;
  color: var(--text-light);
  font-weight: 400!important;
}

.nav-link:hover,
.nav-link--active {
  color: var(--secondary);
}

/* Hero content */
.hero__content {
  margin-top: 117px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 66px;
}

.hero__headline {
  text-align: center;
  max-width: 713px;
}

.hero__headline h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 74px);
  line-height: 1;
  color: var(--text-light);
}

.hero__headline h1 em {
  color: var(--accent);
}

.hero__sub {
  margin-top: 34px;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 200;
  opacity: 0.8;
  color: #faeed8;
}

.hero__image-wrap {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: var(--radius) var(--radius) var(--radius) var(--radius);
  overflow: hidden;
  padding: 24px 24px 44px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

/* Photo crop — matches Figma Main image (99:5516) */
.hero__image-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}

.hero__image {
  position: absolute;
  left: 0;
  width: 100%;
  height: 137.78%;
  max-width: none;
  top: -18.89%;
  object-fit: cover;
}

.hero__image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  pointer-events: none;
  border-radius: inherit;
}

.hero__badge {
  position: relative;
  z-index: 2;
  align-self: flex-end;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--glass-badge-bg);
  border: 1px solid var(--glass-badge-border);
  border-radius: 25px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 4px 20px rgba(0, 0, 0, 0.08);
}

@keyframes hero-badge-dot-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
    box-shadow: 0 0 0 0 rgba(31, 61, 43, 0.45);
  }

  50% {
    transform: scale(1.12);
    opacity: 1;
    box-shadow: 0 0 0 5px rgba(31, 61, 43, 0);
  }
}

.hero__badge-dot {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  display: block;
  border-radius: 50%;
  transform-origin: center;
  animation: hero-badge-dot-pulse 2s ease-in-out infinite;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .hero__badge {
    background: rgba(163, 177, 138, 0.92);
  }

  .btn--glass {
    --btn-fill: rgba(31, 61, 43, 0.55);
  }
}

.hero__actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  width: 100%;
  min-height: 54px;
}

.hero__actions .btn--primary {
  --btn-hover-border: rgba(250, 238, 216, 0.35);
}

/* Our Plants — static grid when motion is reduced */
@media (prefers-reduced-motion: reduce) {
  .plants__slider-viewport {
    width: 100%;
    max-width: none;
    margin-left: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .plants__slider-viewport::-webkit-scrollbar {
    display: none;
  }

  .plants__grid {
    flex-wrap: wrap;
    width: 100%;
    animation: none;
    will-change: auto;
  }
}

@media (max-width: 767px) {
  @media (prefers-reduced-motion: reduce) {
    .plants__grid {
      display: grid;
      grid-template-columns: 1fr;
      justify-items: start;
      gap: 18px;
    }

   

    .plant-card {
      flex: none;
      width: 100%;
      max-width: 100%;
    }

    .plant-card__media {
      position: absolute;
      width: 100%;
      max-width: none;
    }
  }
}

/* Equal-width buttons when stacked (phone only — tablet+ stays horizontal) */
@media (max-width: 599px) {
  .hero__actions,
  .visit__actions,
  .cta-gradient__cardsection-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
  }

  .hero__actions .btn,
  .visit__actions .btn,
  .cta-gradient__cardsection-actions .btn {
    width: 100%;
    align-self: stretch;
  }
}

/* Categories — Figma Frame 200 (300:45954) */
.categories {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding-bottom: 100px;
}

.categories__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 45px;
  width: 100%;
  margin-inline: auto;
}

.categories__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
  width: min(100% - 2 * var(--page-padding), var(--container));
  margin-inline: auto;
}

.categories__header h2 {
  margin: 0;
  max-width: 757px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 48px);
  line-height: 1;
  color: var(--text-main);
}

.categories__header h2 em {
  font-style: italic;
  color: var(--forest);
}

.categories__header p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  color: var(--text);
  opacity: 0.85;
  white-space: nowrap;
}

.categories__slider {
  width: min(100% - 2 * var(--page-padding), var(--container));
  margin-inline: auto;
}

.categories__scroll {
  position: relative;
  width: 100%;
  padding-bottom: 2px;
  overflow: hidden;
  cursor: default;
  touch-action: pan-x;
  user-select: none;
}

.categories__scroll.is-dragging {
  cursor: grabbing;
}

.categories__scroll-track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: max-content;
  transition: transform 700ms ease-in-out;
}

.categories__scroll-track.is-sliding {
  will-change: transform;
}

.categories__scroll-track.is-sliding .category-card__image-frame {
  transition: none;
}

.categories__scroll-track.categories__scroll-track--instant {
  transition: none;
}

.categories__scroll.is-dragging .categories__scroll-track {
  cursor: grabbing;
}

.categories__scroll-track a {
  user-select: none;
}

/* Clones are for motion only — always visible (not in scroll-reveal) */
.category-card--clone {
  opacity: 1;
  transform: none;
}

.categories__scroll::-webkit-scrollbar {
  display: none;
}

/* Figma Categories — Default: #fff8eb; Hover: #1f3d2b body, #b9d28e border */
.category-card {
  position: relative;
  flex: 0 0 297px;
  width: 297px;
  border-radius: var(--radius);
  color: inherit;
  box-shadow: var(--category-shadow);
  transition: box-shadow 0.4s ease-out;
}

.category-card:hover {
  box-shadow: var(--category-shadow-hover);
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color 0.25s ease;
  z-index: 2;
}

.category-card:hover::before {
  border-color: var(--btn-hover-border-light);
}

.category-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  background: var(--cream-card);
  transition: background 0.25s ease;
}

.category-card:hover .category-card__inner {
  background: var(--forest);
}

.category-card__image {
  position: relative;
  flex-shrink: 0;
  height: 371px;
  overflow: hidden;
}

.category-card__image-frame {
  width: 100%;
  height: 100%;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.6s ease-in-out;
}

@media (hover: hover) {
  .category-card:hover .category-card__image-frame,
  .category-card:focus-visible .category-card__image-frame {
    transform: scale(1.06);
  }
}

.category-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  user-select: none;
}

/* Figma image crop — Low Maintenance */
.category-card__image--low img {
  object-position: 50% 42%;
}

/* Figma image crop — Flowering */
.category-card__image--flower img {
  object-position: 50% 38%;
}

.category-card__body {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-height: 113px;
  padding: 24px 24px 28px 22px;
  box-sizing: border-box;
  transition: color 0.25s ease;
}

.category-card__title-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
}

.category-card__body h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: var(--text-main);
  transition: color 0.25s ease;
}

.category-card:hover .category-card__body h3 {
  color: var(--text-light);
}

.category-card__arrow {
  display: none;
}

.category-card__arrow--default,
.category-card__arrow--hover {
  display: none;
}

.category-card:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 4px;
}

/* Arrow icon removed from category cards */

.category-card__body p {
  margin: 0;
  max-width: 205px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: var(--text-main);
  opacity: 0.8;
  transition: color 0.25s ease;
}

.category-card:hover .category-card__body p {
  color: var(--text-light);
  opacity: 0.8;
}

/* Categories info bar — Figma Group 28 / Component 8 (99:5680) */
.categories__marquee {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  height: 72px;
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
}

.categories__marquee-viewport {
  flex: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: transparent;
}

.categories__marquee-track {
  display: flex;
  align-items: center;
  gap: 50px;
  width: max-content;
  opacity: 0.85;
  animation: categories-marquee 40s linear infinite;
}

.categories__marquee-segment {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-shrink: 0;
}

.categories__marquee-icon {
  position: relative;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  overflow: hidden;
}

.categories__marquee-icon img {
  position: absolute;
  inset: 8.67% 10.19%;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
}

.categories__marquee-label {
  flex-shrink: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: var(--text-main);
  white-space: nowrap;
  font-feature-settings: "lnum" 1, "pnum" 1;
}

@keyframes categories-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Plants — Figma Frame 204 (300:49523) */
.plants {
  position: relative;
  overflow: hidden;
  /* Figma: section 942px, inner starts at y=90 → 90px top padding, inner h=752 */
  padding: 0 !important;
}

.plants__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 45px;
  width: min(100% - 2 * var(--page-padding), 1242px);
  margin-inline: auto;
  padding: 90px 0;
}

.plants__deco {
  position: absolute;
  pointer-events: none;
}

/* Top-left: wrapper positions at top-left, rotate-180 the inner group */
.plants__deco--left {
  top: 0;
  left: 0;
  width: 373px;
  height: 280px;
  opacity: 0.1;
}

.plants__deco--left .plants__deco-rotate {
  width: 100%;
  height: 100%;
  transform: rotate(180deg);
}

/* Bottom-right: spans full width, 563px tall — matches Figma 99:4061 */
.plants__deco--right {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 563px;
  opacity: 0.1;
}

/* Shared inner: fills parent, stacks images */
.plants__deco-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.plants__deco-inner > img,
.plants__deco-rotate > .plants__deco-inner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  max-width: none;
  object-fit: fill;
}

/* Sub-layer offsets match Figma inset percentages */
.plants__deco-sub {
  position: absolute;
}

.plants__deco-sub img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  max-width: none;
}

/* Left deco sub-layers (Figma insets on 373×280 box) */
.plants__deco-sub--a {
  top: 23.16%;
  left: 26.9%;
  right: 0;
  bottom: 0;
}

.plants__deco-sub--b {
  top: 10.62%;
  left: 39.61%;
  right: 0;
  bottom: 19.9%;
}

/* Right deco — group spans right half: inset 0 left 48% */
.plants__deco-sub--ra {
  top: -0.04%;
  left: 47.99%;
  right: -0.14%;
  bottom: 0.07%;
}

.plants__deco-sub--rb {
  top: 23.11%;
  left: 62.01%;
  right: -0.14%;
  bottom: 0.07%;
}

.plants__deco-sub--rc {
  top: 10.57%;
  left: 68.65%;
  right: -0.14%;
  bottom: 19.97%;
}

.plants__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  text-align: left;
}

.plants__header-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.plants__header h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 48px);
  line-height: 1;
  color: var(--text-main);
}

.plants__header h2 em {
  font-style: italic;
  color: var(--green-italic);
}

.plants__header p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  color: var(--text);
  opacity: 0.85;
}

/* Our Plants — static product grid (no clone / marquee repeat) */
.plants__slider-viewport--static {
  width: 100%;
  max-width: none;
  margin-left: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: default;
  touch-action: pan-x pan-y;
}

.plants__slider-viewport--static::-webkit-scrollbar {
  display: none;
}

.plants__slider-viewport--static .plants__grid {
  will-change: auto;
}

/* Our Plants — auto-sliding carousel (drag + JS motion in main.js) */
.plants__slider-viewport {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.plants__slider-viewport.is-dragging {
  cursor: grabbing;
}

.plants__grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 18px;
  width: max-content;
}

.plants__slider-viewport.is-dragging .plants__grid,
.plants__slider-viewport.is-moving .plants__grid {
  will-change: transform;
}

.plants__slider-viewport.is-dragging .plants__grid {
  cursor: grabbing;
}

.plants__grid a {
  user-select: none;
  position: relative;
  z-index: 2;
  touch-action: manipulation;
}

/* Slider clones — always fully visible (not in scroll-reveal) */
.plant-card[aria-hidden="true"] {
  opacity: 1;
  transform: none;
}

/* Figma: 297×515px card */
.plant-card {
  flex: 0 0 297px;
  width: 297px;
  height: 515px;
  background: var(--cream-card);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.35s ease;
}

.plant-card:hover {
  box-shadow: 0 12px 32px rgba(31, 61, 43, 0.12);
}

/* Figma: 297×297px square image area */
.plant-card__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 297px;
  height: 297px;
  background: #f0ede8;
  flex-shrink: 0;
  overflow: hidden;
}

.plant-card__media-frame {
  width: 100%;
  height: 100%;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.6s ease-in-out;
}

@media (hover: hover) {
  .plant-card:hover .plant-card__media-frame {
    transform: scale(1.06);
  }
}

.plants__slider-viewport.is-dragging .plant-card__media-frame,
.plants__slider-viewport.is-moving .plant-card__media-frame {
  transition: none;
}

.plant-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.plant-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 3px 8px;
  background: #f6f5f2;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 12.04px;
  color: var(--text);
}

/* Figma: body starts at top:297, padding 20px top 24px bottom 22px sides */
.plant-card__body {
  position: absolute;
  top: 297px;
  left: 0;
  width: 100%;
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.plant-card__info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.plant-card__body h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: var(--text-main);
  transition: color 0.25s ease;
}

.plant-card:hover .plant-card__body h3 {
  color: var(--forest);
}

.plant-card__price {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  color: var(--text);
  opacity: 0.85;
}

.plant-card__meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plant-card__meta li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--text);
  white-space: nowrap;
}

.plant-card__meta-icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  display: block;
}

.plant-card__meta .label {
  color: var(--forest);
  font-family: var(--font-serif);
  font-weight: 400;
}

.plant-card__meta .value {
  color: var(--text);
  font-family: var(--font-serif);
  font-weight: 400;
}

/* Figma CTA button: #1f3d2b fill, #faeed8 text, 54px height */
.btn--forest {
  --btn-fill: var(--forest);
  --btn-hover-border: rgba(31, 61, 43, 0.3);
  color: var(--text-light);
  text-decoration: none;
}

/* Figma card WhatsApp button: border #a3b18a, transparent bg, 45px height */
.btn--outline-accent {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  padding: 0 30px;
  background: transparent;
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: var(--text-main);
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.plant-card:hover .btn--outline-accent {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--text-light);
}

.plants__cta {
  display: flex;
  justify-content: flex-end;
  flex: 0 0 auto;
  margin-left: auto;
}

.plants__cta[hidden] {
  display: none !important;
}

/* Why Choose — Figma Frame 206 (300:49525) */
.why {
  background: var(--cream);
  padding: 0px 0 110px;
}


.why__inner {
  display: flex;
  gap: 92px;
  align-items: flex-end;
  width: min(100% - 2 * var(--page-padding), var(--container));
  margin-inline: auto;
}

.why__left {
  flex: 0 0 612px;
  width: 612px;
  display: flex;
  flex-direction: column;
  gap: 141px;
}

.why__left h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 48px);
  line-height: 1.1;
  color: var(--text-main);
  max-width: 398px;
}

.why__left h2 em {
  font-style: italic;
  color: var(--forest);
}

.why__image {
  position: relative;
  height: 650px;

  border-radius: var(--radius);
  overflow: hidden;
}

.why__image img {
  position: absolute;
  width: 100%;
  height: 216.45%;
  top: -47.56%;
  left: 0;
  object-fit: cover;
  max-width: none;
}

.why__features {
  flex: 0 0 536px;
  width: 536px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* Figma divider: line asset image, height 0 with 1px inset */
.why__divider {
  position: relative;
  height: 1px;
  width: 100%;
  flex-shrink: 0;
}

.why__divider img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
}

.why-item {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.why-item__icon {
  display: block;
  flex-shrink: 0;
  /* width: 30.06px;
  height: 27px; */
  object-fit: contain;
}

.why-item__text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.why-item h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 23px;
  font-weight: 500;
  line-height: 1;
  color: var(--text);
}

.why-item p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  opacity: 0.85;
}

/* Subtle motion for Why section */
.why__image img {
  transition: transform 0.45s ease;
}

.why__image:hover img {
  transform: scale(1.02);
}

.why-item {
  transition: transform 0.25s ease;
}

.why-item__icon {
  transition: transform 0.25s ease;
}

.why-item h3 {
  transition: color 0.25s ease;
}

.why-item:hover {
  transform: translateX(4px);
}

.why-item:hover .why-item__icon {
  transform: translateY(-1px) scale(1.03);
}

.why-item:hover h3 {
  color: var(--forest);
}

/* Visit */
.visit {
  --about-inset: var(--content-inset);
}

.visit__grid {
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: 100%;
}

.visit__content {
  flex: 0 0 calc(50% - 9px);
  width: calc(50% - 9px);
  height: 762px;
  background: var(--forest);
  color: var(--text-light);
  padding: 90px 100px 90px var(--about-inset);
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

/* Home — match About copy/button left edge (100px from panel) */
#visit .visit__content-inner {
  margin-left: calc(100px - var(--about-inset));
}

/* Deco top-left: 373×280px, rotated 180° */
.visit__deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.05;
}

.visit__deco--tl {
  top: 0;
  left: 0;
  width: 373.458px;
  height: 279.88px;
}

.visit__deco--tl .visit__deco-rotate {
  width: 100%;
  height: 100%;
  transform: rotate(180deg);
}

/* Deco bottom-right: 254×190px at Figma coords 456,571 */
.visit__deco--br {
  right: 0;
  bottom: 0;
  width: 254.701px;
  height: 190.88px;
}

.visit__deco-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.visit__deco-inner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  max-width: none;
}

.visit__deco-sub {
  position: absolute;
}

.visit__deco-sub img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  max-width: none;
}

.visit__deco-sub--a {
  top: 23.16%;
  left: 26.9%;
  right: 0;
  bottom: 0;
}

.visit__deco-sub--b {
  top: 10.62%;
  left: 39.61%;
  right: 0;
  bottom: 19.9%;
}

.visit__content-inner {
  position: relative;
  z-index: 1;
  width: min(436px, 100%);
  display: flex;
  flex-direction: column;
  gap: 130px;
}
.visit__content-container {
  width: 100%;
  max-width: 436px;
}

@media (min-width: 1400px) {
  .visit__content-container {
    display: flex;
    /* justify-content: flex-end; */
    max-width: none;
    /* padding: 0 67px; */
  }
}
.visit__intro {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  max-width: 401px;
}

.visit__content h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 48px);
  line-height: 1.1;
  width: 100%;
}

.visit__content h2 em {
  font-style: italic;
  color: var(--accent);
}

.visit__intro > p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 24px;
  opacity: 0.8;
  width: 450px;
}

.visit__footer {
  display: flex;
  flex-direction: column;
  gap: 34px;
  width: 100%;
}

.visit__address {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
}

/* Figma: icon wrapper 13.818×38px, inner group inset 18.34% 0.13% 5.1% 0 */
.visit__address-icon {
  flex-shrink: 0;
  position: relative;
  width: 14px;
  height: 30px;
}

.visit__address-icon img {
  position: absolute;
  top: 17.15%;
  left: -1.56%;
  right: 0.24%;
  bottom: 3.91%;
  width: 14px;
  height: 100%;
  display: block;
  max-width: none;
  object-fit: fill;
}

.visit__address p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  opacity: 0.9;
  width: 100%;
}

.visit__actions {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
  height: 54px;
}

.visit__image {
  flex: 0 0 calc(50% - 9px);
  width: calc(50% - 9px);
  height: 762px;
  position: relative;
  overflow: hidden;
}

.visit__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Visit — side-by-side corner radii (desktop through 1024px) */
@media (min-width: 1024px) {
  .visit__content {
    border-radius: 0 var(--radius) var(--radius) 0;
    
  }

  .visit__image {
    border-radius: var(--radius) 0 0 var(--radius);
  }
}

/* CTA banner — Figma Frame 152 (99:5859) */
.cta-banner.section {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  min-height: 424px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Figma leaf clusters — transparent PNG exports (99:6061, 99:5860) */
.cta-banner__deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  display: block;
  height: auto;
  opacity: 1;
  object-fit: contain;
  object-position: bottom;
}

.cta-banner__deco--left {
  left: 0;
  bottom: 0;
  width: 478px;
  max-width: 42vw;
}

.cta-banner__deco--right {
  right: 0;
  bottom: 0;
  width: 548px;
  max-width: 48vw;
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  width: min(100% - 48px, 757px);
  margin-inline: auto;
  text-align: center;
}

.cta-banner__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  width: 100%;
 
}

.cta-banner__header h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 52px;
  line-height: 1.1;
  color: var(--text-main);
 width: 571px !important;
}

.cta-banner__header p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  color: var(--text);
  opacity: 0.85;
}

.cta-banner .btn--forest {
  flex-shrink: 0;
}

/* CTA gradient — Figma Frame 162 (222:2734), pre-footer */
.cta-gradient.section {
  padding: 0 0 100px;
}

/* About: same cream band above card as homepage (blog section bottom padding) */
.cta-gradient__cardsection.section {
  padding: 100px 0 100px;
}

.cta-gradient__card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100% - 2 * var(--page-padding), var(--container));
  min-height: 364px;
  margin-inline: auto;
  border-radius: var(--radius);
  background: linear-gradient(0deg, #1F3D2B 0%, #B9D28E 100%);
}

.cta-gradient__deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  display: block;
  height: auto;
  opacity: 1;
  object-fit: contain;
  object-position: bottom;
}

.cta-gradient__deco--left {
  left: 0;
  bottom: 0;
  width: 478px;
  max-width: 42vw;
}

.cta-gradient__deco--right {
  right: 0;
  bottom: 0;
  width: 548px;
  max-width: 48vw;
}

.cta-gradient__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  width: min(100% - 48px, 757px);
  margin-inline: auto;
  padding: 60px 24px;
  text-align: center;
}

.cta-gradient__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  width: 100%;
  max-width: 661px;
}

.cta-gradient__header h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 52px;
  line-height: 1.1;
  color: var(--text-light);
}

.cta-gradient__header p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  color: var(--text-light);
  opacity: 0.85;
}

.cta-gradient .btn--primary {
  flex-shrink: 0;
  text-transform: capitalize;
  --btn-hover-border: rgba(250, 238, 216, 0.2);
}

/* Home CTA — #BEDB88 button fill */
#cta-plants .btn--primary {
  flex-shrink: 0;
  text-transform: capitalize;
  --btn-fill: #bedb88;
  --btn-hover-border: rgba(31, 61, 43, 0.3);
  color: var(--text);
}

#cta-plants .btn--primary::after {
  background: #bedb88;
}

/* About page CTA — gradient card (screenshot / Figma) */
.cta-gradient__cardsection-inner {
  width: min(100% - 48px, 757px);
}

.cta-gradient__cardsection-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.cta-gradient__cardsection .btn--primary {
  flex-shrink: 0;
  text-transform: capitalize;
  --btn-hover-border: rgba(250, 238, 216, 0.2);
}

.cta-gradient__cardsection .btn--outline-light {
  flex-shrink: 0;
  --btn-hover-border: rgba(250, 238, 216, 0.2);
}

/* About — Figma About Us (222:3402) */
.about {
  background: var(--sage);
  --btn-hover-border: var(--btn-hover-border-light);
  --about-inset: var(--content-inset);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 60%) minmax(0, 40%);
  align-items: stretch;
}

.about__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: visible;
}

/* Figma 222:3427 — leaf cluster sits directly above the feature bar */
.about__bar-zone {
  position: relative;
  z-index: 0;
  margin-top: 127px;
  margin-left: calc(-1 * var(--about-inset));
  margin-right: calc(-1 * var(--about-inset));
  width: calc(100% + (2 * var(--about-inset)));
}

.about__bar-zone > picture {
  display: contents;
}

.about__deco {
  position: absolute;
  right: 0;
  bottom: 100%;
  width: 751px;
  max-width: min(751px, 95%);
  height: auto;
  object-fit: contain;
  object-position: right bottom;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

.about__main {
  position: relative;
  z-index: 2;
  padding: 144px var(--about-inset) 70px;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 45px;
  max-width: 486px;
}

/* Home — 100px left inset for copy only; bar bg spans full left panel */
.about--home-layout .about__copy {
  margin-left: calc(100px - var(--about-inset));
}

.about--home-layout .about__btn_plant {
  margin-left: calc(100px - var(--about-inset));
}

.about--home-layout .about__bar {
  padding-left: var(--page-padding);
}

.about__copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 486px;
}

.about__content h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 52px;
  line-height: 1.1;
  color: var(--text-main);
}

.about__content h2 em {
  font-style: italic;
  color: var(--forest);
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 429px;
}

.about__text p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text-main);
  opacity: 0.8 !important;
}

/* Above leaf deco; button keeps default ::before/::after hover like cta-banner */
.about__btn_plant {
  position: relative;
  z-index: 10;
  isolation: isolate;
  align-self: flex-start;
  display: inline-flex;
}

.about__btn_plant .btn--forest {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  text-transform: capitalize;
  color: var(--text-light);
  background: transparent;
}

.about__btn_plant .btn--forest::after {
  background: linear-gradient(180deg, #1a3224 0%, #1f3d2b 55%, #2a5040 100%);
}

/* Bar — Figma Frame 15 (222:3405): gap 40px, py 10px, single row */
.about__bar {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  min-height: 54px;
  width: 100%;
  padding: 10px var(--about-inset);
  background: var(--sage-light);
}

.about__bar-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  white-space: nowrap;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  color: var(--text);
  opacity: 0.7 !important;
}

/* Our Plants — 2 cards per row on tablet when motion is reduced */
@media (min-width: 768px) and (max-width: 1200px) {
  @media (prefers-reduced-motion: reduce) {
    .plants__grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      justify-items: start;
      gap: 18px;
    }

    .plant-card {
      flex: none;
      width: 100%;
      max-width: none;
      margin-inline: 0;
    }

    .plant-card__media {
      width: 100%;
    }
  }
}

/* Laptop: one line (Figma Frame 15) */
@media (min-width: 1024px) and (max-width: 1199px) {
  .about__bar {
    flex-wrap: nowrap;
    gap: 28px;
  }
}

@media (min-width: 1200px) {
  .about__bar {
    flex-wrap: nowrap;
    gap: 40px;
  }
}

.about__bar-item img {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  display: block;
}

.about__image {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  align-self: stretch;
}

.about__image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius) 0 0 var(--radius);
}

/* Home About — keep desktop layout through 1024px */
@media (min-width: 1024px) {
  .about--home-layout .about__grid {
    grid-template-columns: minmax(0, 60%) minmax(0, 40%);
  }

  .about--home-layout .about__main {
    padding: 144px var(--about-inset) 70px;
  }

  .about--home-layout .about__content {
    margin-left: 0;
    max-width: 486px;
  }

  .about--home-layout .about__copy {
    margin-left: calc(100px - var(--about-inset));
    max-width: 486px;
  }

  .about--home-layout .about__btn_plant {
    margin-left: calc(100px - var(--about-inset));
  }

  .about--home-layout .about__text {
    max-width: 429px;
  }

  .about--home-layout .about__bar-zone {
    margin-top: 127px;
  }

  .about--home-layout .about__bar {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    padding-left: var(--page-padding);
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 12px !important;
  }

  .about--home-layout .about__bar-item {
    white-space: nowrap;
  }

  .about--home-layout .about__image {
    min-height: 100%;
    width: auto;
    max-width: none;
    margin-left: 0;
  }

  .about--home-layout .about__image img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius) 0 0 var(--radius);
  }

  .about--home-layout .about__deco {
    width: 751px;
    max-width: min(751px, 95%);
  }
}

/* Home Visit + About — 90px 50px panel padding (1024px–1202px) */
@media (min-width: 1024px) and (max-width: 1202px) {
  .visit__content {
    padding: 90px 50px;
  }

  #visit .visit__content-inner {
    margin-left: 0;
  }

  .about--home-layout .about__main {
    padding: 90px 50px;
  }

  .about--home-layout .about__copy,
  .about--home-layout .about__btn_plant {
    margin-left: 0;
  }

  /* Bar full-bleed within left panel only — avoid spilling onto image */
  .about--home-layout .about__panel {
    overflow: hidden;
  }

  .about--home-layout .about__bar-zone {
    margin-left: -50px;
    margin-right: -50px;
    width: calc(100% + 100px);
  }

  .about--home-layout .about__bar {
    padding-left: 50px;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .about--home-layout .about__content h2 {
    font-size: clamp(2.25rem, 3.6vw, 46px);
  }

  .about--home-layout .about__text p {
    font-size: 17px;
    line-height: 23px;
  }

  .about--home-layout .about__bar-item {
    font-size: 16px;
  }
}

/* Blog — Figma Frame 160 (222:3491) */
.blog__inner {
  display: flex;
  flex-direction: column;
  gap: 45px;
  width: min(100% - 2 * var(--page-padding), var(--container));
  margin-inline: auto;
}

.blog__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

/* Figma Frame 160 — intro left, All Articles right (tablet+) */
@media (min-width: 768px) {
  .blog__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
  }

  .blog__header .btn--outline-dark {
    align-self: flex-end;
    flex-shrink: 0;
  }
}

.blog__intro {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 401px;
  flex: 1 1 auto;
  min-width: 0;
}

.blog__intro h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 48px;
  line-height: 1.1;
  color: var(--text-main);
}

.blog__intro p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text);
  opacity: 0.85;
}

.blog__header .btn--outline-dark {
  flex-shrink: 0;
  align-self: flex-start;
}

/* Blog section only — hover text #1F3D2B */
.blog .btn:hover,
.blog .btn--outline-dark:hover {
  color: var(--forest);
}

.blog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .blog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .blog__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

a.blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.blog-card:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

.blog-card {
  min-width: 0;
  transition: transform 0.3s ease;
}

/* Card image frame: 401×296 accent border, 8px inset */
.blog-card__frame {
  background: var(--accent);
  border-radius: var(--radius);
  padding: 8px;
  margin-bottom: 18px;
  transition: box-shadow 0.35s ease;
}

.blog-card__media {
  position: relative;
  height: 280px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.blog-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.blog-card__tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  background: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: var(--text);
  white-space: nowrap;
}

.blog-card h3 {
  margin: 0 0 14px;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: var(--text-main);
  transition: color 0.25s ease;
}

.blog-card p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text);
  opacity: 0.85;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  max-height: 48px;
}

/* Blog — subtle hover */
.blog-card:hover {
  transform: translateY(-4px);
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.03);
}

.blog-card:hover .blog-card__frame {
  box-shadow: 0 10px 28px rgba(31, 61, 43, 0.1);
}

.blog-card:hover h3 {
  color: var(--forest);
}

/* Scroll reveal — fade up on scroll */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-group:not(.is-visible) .reveal {
  opacity: 0;
  transform: translateY(22px);
}

.reveal-group.is-visible .reveal {
  opacity: 1;
  transform: translateY(0);
}

.plant-card.reveal.is-visible:hover {
  transform: translateY(-4px);
}

/* Blog article pages */
.blog-page-header {
  background: var(--cream);
  border-bottom: 1px solid rgba(31, 61, 43, 0.08);
  padding: 20px 0;
}

.blog-page-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 2 * var(--page-padding), var(--container));
  margin-inline: auto;
}

.blog-page-header__logo img {
  display: block;
  height: 48px;
  width: auto;
}

.blog-post {
  background: var(--cream);
  padding: 64px 0 100px;
}

.blog-post__inner {
  width: min(100% - 2 * var(--page-padding), 760px);
  margin-inline: auto;
}

.blog-post__tag {
  display: inline-block;
  margin-bottom: 20px;
  background: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 16px;
  color: var(--text);
}

.blog-post__inner h1 {
  margin: 0 0 32px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 48px);
  line-height: 1.1;
  color: var(--text-main);
}

.blog-post__hero {
  margin-bottom: 32px;
  background: var(--accent);
  border-radius: var(--radius);
  padding: 8px;
}

.blog-post__hero img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.blog-post__body {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 28px;
  color: var(--text);
  opacity: 0.9;
}

.blog-post__body p {
  margin: 0 0 1.25em;
}

.blog-post__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--forest);
  text-decoration: none;
}

.blog-post__back:hover {
  text-decoration: underline;
}

.blog-list-page .blog__inner {
  padding-top: 0;
}

/* Blog listing page — Figma Blog (275:3032) */
.blog-list-page {
  background: var(--cream);
}

.about-page,
.blog-list-page,
.contact-page {
  --hero-page-card-h: 450px;
  --hero-page-overlap: calc(var(--hero-page-card-h) * 152 / 450);
  --hero-page-bg-height: calc(
    var(--hero-page-pre-image) + var(--hero-page-card-h) - var(--hero-page-overlap)
  );
}

/* Home hero — hero__inner lives inside header (matches static HTML layout) */
.hero.hero--home {
  overflow: visible;
}

/* Blog listing hero — same layout as About; split bottom leaf PNGs on forest bg */
.hero.hero--about,
.hero.hero--blog-list {
  position: relative;
  padding-bottom: var(--hero-page-overlap);
  overflow: visible;
  background: transparent;
}

/* Home, About, Blog — green hero bg (#1f3d2b); About/Blog use split bottom leaf PNGs */
.hero--home .hero__bg,
.hero--about .hero__bg,
.hero--blog-list .hero__bg {
  background: var(--forest);
}

.hero--about .hero__bg,
.hero--blog-list .hero__bg {
  height: var(--hero-page-bg-height);
}

.hero--home .hero__bg > img:not(.hero__bg-leaf) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.hero--about .hero__bg-leaf,
.hero--blog-list .hero__bg-leaf {
  position: absolute;
  bottom: 0;
  width: clamp(100px, 67vw, 440px);
  height: auto;
  max-height: 85%;
  object-fit: contain;
  pointer-events: none;
}

.hero--about .hero__bg-leaf--left,
.hero--blog-list .hero__bg-leaf--left {
  left: 0;
  object-position: left bottom;
}

.hero--about .hero__bg-leaf--right,
.hero--blog-list .hero__bg-leaf--right {
  right: 0;
  object-position: right bottom;
}

.hero--blog-list .hero__nav-bar {
  position: relative;
  z-index: 3;
}

.hero--blog-list .hero__inner {
  position: relative;
  z-index: 2;
}

.hero--blog-list .hero__content {
  gap: 45px;
  align-items: flex-start;
  width: 100%;
}

.hero--blog-list .hero__headline {
  align-self: stretch;
  max-width: none;
  text-align: center;
}

.hero--blog-list .hero__headline h1 {
  font-weight: 400;
}

.hero--blog-list .hero__image-wrap--blog-list {
  height: auto;
  padding: 0;
  align-items: stretch;
  width: 100%;
  overflow: visible;
  display: block;
}

/* Figma Frame 187 (275:5341): intro + marquee on cream; image lives in hero */
.blog-list-featured {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 75px;
  margin-top: calc(-1 * var(--hero-page-overlap));
  padding-top: 35px;
  padding-bottom: 0;
  background: var(--cream);
}

.blog-list-featured__inner {
  width: min(100% - 2 * var(--page-padding), var(--container));
  margin-inline: auto;
}

/* Figma Frame 185 (275:5343): accent border 8px, 10px radius, 1240×466 */
.blog-list-featured__hero-wrap {
  background: var(--accent);
  border-radius: var(--radius);
  padding: 8px;
  width: 100%;
  box-sizing: border-box;
}

.contact-page .blog-list-featured__hero-wrap {
  background: transparent;
  padding: 0;
}

.contact-page .hero--blog-list .hero__image-wrap--blog-list {
  height: var(--hero-page-card-h);
  padding: 0;
  align-items: stretch;
  background: var(--forest);
}

.contact-page .blog-list-featured__hero {
  padding: 0;
  height: var(--hero-page-card-h);
}

.contact-page .blog-list-featured__hero-media {
  background: var(--forest);
}

.contact-page .contact-hero__img {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  background-color: var(--forest);
}

/* Figma Frame 9 (275:5344): 450px inner, 24px inset, 10px radius */
.blog-list-featured__hero {
  position: relative;
  height: var(--hero-page-card-h, 450px);
  padding: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  box-sizing: border-box;
}

.blog-list-featured__hero-media {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  overflow: hidden;
  pointer-events: none;
}

/* Figma image crop — height 137.78%, top -13.88% */
.blog-list-featured__hero-media img:not(.blog-list-hero__img, .contact-hero__img) {
  position: absolute;
  left: 0;
  top: -13.88%;
  display: block;
  width: 100%;
  height: 137.78%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
}

.blog-list-featured__hero-gradient {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
  pointer-events: none;
}

/* Figma badge (275:5346): white pill, 4×12 padding, 14px DM Sans */
.blog-list-featured__badge {
  position: relative;
  z-index: 2;
  display: inline-block;
  background: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  color: var(--text);
}

/* Intro copy sits below hero image — centered like blog detail */
.blog-list-featured__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  text-align: center;
}

.blog-list-featured__title {
  margin: 0;
  max-width: 856px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 52px);
  line-height: 1.1;
  color: var(--text-main);
}

.blog-list-featured__title em {
  font-style: italic;
  color: var(--forest);
}

.blog-list-featured__text {
  margin: 0;
  max-width: 856px;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text);
  opacity: 0.85;
}

.blog-list-featured__marquee {
  width: 100%;
}

.blog-list-posts {
  padding-top: 100px;
  padding-bottom: 100px;
}

.blog-list-posts__inner {
  display: flex;
  flex-direction: column;
  gap: 45px;
  width: min(100% - 2 * var(--page-padding), var(--container));
  margin-inline: auto;
}

.blog-list-posts__title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 48px);
  line-height: 1;
  color: var(--text-main);
}

.blog-list-posts__title em {
  font-style: italic;
  color: var(--forest);
}

.blog-list-posts__grid {
  row-gap: 45px;
}

.blog-list-page .cta-gradient.section {
  padding-top: 0;
}

/* Blog detail page — Figma Blog Detail (281:13628) */
.blog-detail-page {
  background: var(--cream);
}

.blog-detail-page #main {
  position: relative;
  z-index: 2;
}

.hero--blog-detail {
  position: relative;
  z-index: 1;
  min-height: 0;
  padding-bottom: 0;
  overflow: visible;
}

.hero--blog-detail .hero__bg {
  background: var(--forest);
  height: clamp(520px, 56vw, 806px);
  inset: 0;
}

.hero--blog-detail .hero__bg picture,
.hero--blog-detail .hero__bg img {
  display: none;
}

.hero--blog-detail .hero__nav-bar {
  position: relative;
  z-index: 3;
}

.blog-detail__deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.95;
}

.blog-detail__deco img {
  display: block;
  width: 100%;
  height: auto;
}

.blog-detail__deco--left {
  left: 0;
  bottom: -80px;
  width: min(42vw, 420px);
}

.blog-detail__deco--right {
  right: 0;
  top: 120px;
  width: min(38vw, 380px);
}

.blog-detail__header {
  position: relative;
  z-index: 2;
  max-width: 856px;
  margin: clamp(48px, 10vw, 117px) auto 0;
  padding: 0 var(--page-padding) 28px;
  text-align: center;
}

.blog-detail__title {
  margin: 0 auto;
  max-width: 713px;
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(2.25rem, 5.2vw, 74px);
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #faeed8;
}

.blog-detail__title em {
  font-style: italic;
  color: #a3b18a;
}

.blog-detail__meta {
  margin: 25px 0 0;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: rgba(250, 238, 216, 0.5);
}

.blog-detail-hero.section {
  position: relative;
  z-index: 2;
  margin-top: clamp(-220px, -24vw, -306px);
  padding: 0 0 40px;
  background: transparent;
}

.blog-detail-hero__inner {
  width: min(100% - 2 * var(--page-padding), var(--container));
  margin-inline: auto;
}

.blog-detail-hero__wrap {
  background: var(--accent);
  border-radius: var(--radius);
  padding: 8px;
  width: 100%;
}

body.single-post .blog-detail-hero__wrap {
  background: transparent;
  padding: 0;
}

.blog-detail-hero__media {
  position: relative;
  height: clamp(220px, 38vw, 450px);
  border-radius: var(--radius);
  overflow: hidden;
}

.blog-detail-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.blog-detail-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
  pointer-events: none;
}

.blog-detail-hero__badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 1;
  background: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  color: var(--text);
}

/* Description — centered copy below hero image (Figma blog detail) */
.blog-detail__description {
  position: relative;
  z-index: 3;
  background: var(--cream);
  padding: 28px 0 48px;
}

.blog-detail__description-text {
  max-width: 856px;
  margin: 0 auto;
  padding: 0 var(--page-padding);
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  color: var(--text);
  opacity: 0.85;
}

.blog-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 48px;
  width: min(100% - 2 * var(--page-padding), var(--container));
  margin-inline: auto;
  padding-bottom: 80px;
}

@media (min-width: 1100px) {
  .blog-detail__layout {
    grid-template-columns: minmax(0, 734px) minmax(0, 401px);
    justify-content: space-between;
    gap: 105px;
    align-items: start;
  }

  .blog-detail__sidebar {
    position: sticky;
    top: 32px;
    align-self: start;
  }
}

.blog-detail__article {
  min-width: 0;
}

.blog-detail__sections {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog-detail__section {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.blog-detail__section h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.75rem, 3vw, 38px);
  line-height: 1;
  color: var(--text-main);
}

.blog-detail__section-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.blog-detail__section-body p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text);
  opacity: 0.85;
}

.blog-detail__sidebar {
  min-width: 0;
  align-self: start;
}

.blog-detail__next-label {
  margin: 0 0 14px;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: var(--forest);
}

.blog-detail__next-card.blog-card {
  max-width: 401px;
}

.blog-detail__next-card.blog-card h3 {
  font-size: 20px;
  line-height: 1.2;
}

.blog-detail-page .cta-gradient.section {
  padding-top: 0;
}

.blog-detail-page .cta-gradient__header h2 {
  max-width: 661px;
}

/* Footer — Figma Frame 168 (222:3541) */
.footer {
  position: relative;
  background: var(--forest-dark);
  color: var(--text-light);
  min-height: 545px;
  padding: 80px 0 68px;
  overflow: hidden;
}

/* Leaf clusters — Figma 222:3593 (right), 222:3657 (left) */
.footer__deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
  display: block;
  height: auto;
}

.footer__deco--right {
  right: 0;
  bottom: 0;
  width: 520px;
  max-width: 42vw;
}

.footer__deco--left {
  left: 0;
  bottom: 0;
  width: 434px;
  max-width: 38vw;
}

.footer__inner {
  position: relative;
  z-index: 1;
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 145px;
}

.footer__top--no-nav {
  justify-content: flex-start;
}

.footer__top--no-brand {
  justify-content: flex-end;
}

.footer__brand img {
  display: block;
  width: 222px;
  max-width: 100%;
  height: auto;
}

.footer__brand p {
  margin: 8px 0 0 8px;
  font-size: 18px;
  opacity: 0.7;
  text-transform: capitalize;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

/* WordPress menu — keep flex row if ul/li is output */
.footer__nav .menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__nav .menu li {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Figma footer nav pill — 115×54, DM Sans 20px / 400 */
.footer__nav .nav-link {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 115px;
  width: auto;
  height: 54px;
  min-height: 54px;
  padding: 18px 30px;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  color: var(--text-light);
  --btn-fill: var(--nav-pill);
}

.footer__contact {
  display: grid;
  grid-template-columns: repeat(var(--footer-contact-cols, 3), 1fr);
  gap: 0;
  padding: 0;
  border-top: 1px solid rgba(163, 177, 138, 0.3);
  border-bottom: 1px solid rgba(163, 177, 138, 0.3);
}

.footer__contact-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 62px;
  border-left: 1px solid rgba(163, 177, 138, 0.3);
}

.footer__contact-item:first-child {
  border-left: none;
}

.footer__contact-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 4px;
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 18px;
  opacity: 0.8;
  text-transform: capitalize;
}

.footer__contact-item a,
.footer__contact-item p {
  display: block;
  margin: 0;
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.7;
  text-transform: none;
  color: var(--text-light);
  text-decoration: none;
}

.footer__contact-item a:hover {
  text-decoration: underline;
}

.footer__copy {
  text-align: center;
  margin-top: 32px;
  font-size: 16px;
  opacity: 0.85;
}

/* Fixed WhatsApp — Figma Frame 169 (287:41833) */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  padding: 0;
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.00);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 16px rgba(31, 61, 43, 0.1);
  text-decoration: none;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  border-color: var(--btn-hover-border-light);
  background: #1F3D2B;
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(31, 61, 43, 0.14);
}

.whatsapp-float:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 3px;
}

.whatsapp-float__icon {
  display: block;
  width: 33px;
  height: 33px;
  flex-shrink: 0;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .whatsapp-float {
    background: rgba(253, 245, 227, 0.95);
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .container,
  .categories__inner,
  .plants__inner,
  .why__inner,
  .blog__inner,
  .blog-page-header__inner,
  .blog-post__inner,
  .about-page-intro__inner,
  .about-page-story__inner,
  .blog-list-featured__inner,
  .blog-list-posts__inner {
    width: min(100% - 96px, var(--container));
  }

  .blog-list-posts__title {
    padding-inline: max(0px, calc(var(--page-padding) - 48px));
    box-sizing: border-box;
  }

  .blog-post__inner {
    max-width: 760px;
  }

  .hero--about .hero__content,
  .hero--blog-list .hero__content {
    margin-top: 80px;
    gap: 40px;
  }

  .hero__content {
    margin-top: 80px;
    gap: 48px;
  }

  .hero__image-wrap {
    height: 520px;
  }

  .categories.section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .plants__inner {
    padding: 72px 0;
  }

  .blog__inner {
    gap: 40px;
  }

  .blog__intro h2 {
    font-size: clamp(2rem, 5vw, 48px);
  }

}

@media (min-width: 1024px) and (max-width: 1200px) {
  .why__inner {
    gap: clamp(40px, 6vw, 92px);
  }

  .why__left {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
  }

  .why__features {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
  }
}

@media (max-width: 1024px) {
  :root {
    --page-padding: 48px;
  }

  .hero--about .hero__bg-leaf, .hero--blog-list .hero__bg-leaf{
    width: clamp(80px, 90vw, 320px);
  }

  .container,
  .categories__inner,
  .plants__inner,
  .why__inner,
  .blog__inner,
  .blog-page-header__inner,
  .blog-post__inner,
  .about-page-intro__inner,
  .about-page-story__inner,
  .blog-list-featured__inner,
  .blog-list-posts__inner {
    width: min(100% - 96px, var(--container));
  }

  .blog-post__inner {
    max-width: 760px;
  }



  .blog-list-featured__intro {
    gap: 20px;
  }

  .blog-list-featured__title,
  .blog-list-featured__text {
    max-width: 100%;
  }

  .blog-list-posts {
    padding-top: 72px;
    padding-bottom: 80px;
  }

  .navbar__links {
    gap: 8px;
  }

  .nav-link {
    padding: 0 20px;
    min-height: 48px;
    font-size: 16px;
  }

  .navbar__panel .btn--whatsapp {
    min-height: 48px;
    padding: 0 20px;
    font-size: 16px;
  }
}
/* Why — keep desktop side-by-side layout through 1024px */
@media (max-width: 1023px) {
  .why__image img {
    height: 100%;
    top: 0;
  }

  .why__inner {
    flex-direction: column;
    gap: 48px;
    align-items: stretch;
  }

  .why__left,
  .why__features {
    flex: none;
    width: 100%;
  }

  .why__left {
    gap: 48px;
  }

  .why__left h2 {
    font-size: clamp(2rem, 5vw, 48px);
    max-width: none;
  }

  .why__image {
    height: clamp(280px, 40vw, 377px);
  }
}

/* Footer — keep desktop layout through 1024px */
@media (max-width: 1023px) {
  .footer {
    min-height: 0;
    padding: 56px 0 40px;
  }

  .footer__deco--left {
    width: min(434px, 55vw);
  }

  .footer__deco--right {
    width: min(520px, 60vw);
  }

  .footer__top {
    flex-direction: column;
    margin-bottom: 48px;
    gap: 32px;
  }

  .footer__top--no-brand,
  .footer__top--no-nav {
    justify-content: flex-start;
  }

  .footer__nav {
    width: 100%;
  }

  .footer__nav .nav-link {
    flex: 0 0 auto;
  }

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

  .footer__contact-item {
    border-left: none;
    padding: 20px 0;
    align-items: flex-start;
  }

  .footer__contact-item:not(:last-child) {
    border-bottom: 1px solid rgba(163, 177, 138, 0.3);
  }

  /* About — stack copy + bar above full-width image (below 1024px) */
  .about__grid {
    grid-template-columns: 1fr;
  }

  .about__panel {
    min-height: 0;
    overflow: visible;
  }

  .about__main {
    padding-top: 80px;
    padding-bottom: 0;
  }

  .about__content,
  .about__copy,
  .about__text {
    max-width: none;
  }

  .about--home-layout .about__content {
    margin-left: 0;
  }

  .about--home-layout .about__copy {
    margin-left: 0;
  }

  .about--home-layout .about__btn_plant {
    margin-left: 0;
  }

  .about--home-layout .about__bar {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: clamp(12px, 2.8vw, 28px);
    padding-left: var(--about-inset);
    padding-right: var(--about-inset);
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .about--home-layout .about__content h2 {
    font-size: clamp(1.875rem, 5vw, 40px);
  }

  .about--home-layout .about__text p {
    font-size: 16px;
    line-height: 22px;
  }

  .about--home-layout .about__bar-item {
    flex: 0 1 auto;
    min-width: 0;
    white-space: nowrap;
    font-size: clamp(11px, 2.6vw, 16px);
    gap: clamp(8px, 1.5vw, 12px);
  }

  .about--home-layout .about__bar-item img {
    width: clamp(10px, 2.5vw, 14px);
    height: clamp(10px, 2.5vw, 14px);
  }

  .about__bar-zone {
    margin-top: 64px;
  }

  .about__deco {
    width: min(560px, 75%);
  }

  .about__bar {
    flex-wrap: wrap;
  }

  .about__image {
    min-height: 0;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .about__image img {
    position: static;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 390 / 320;
    min-height: 0;
    object-fit: cover;
    object-position: center top;
    border-radius: 0;
    height: 560px;
  }

  /* Visit — stack image below content (below 1024px) */
  .visit__grid {
    flex-direction: column;
    gap: 0;
  }

  .visit__content,
  .visit__image {
    flex: none;
    width: 100%;
  }

  .visit__content {
    height: auto;
    min-height: 0;
    border-radius: 0;
    border-top-left-radius: 0;
    border-top-right-radius: var(--radius);
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    padding: 56px var(--about-inset);
  }

  #visit .visit__content-inner {
    margin-left: 0;
  }

  .visit__content-inner {
    width: 100%;
    max-width: 436px;
    gap: 40px;
  }

  .visit__content h2 {
    font-size: clamp(2rem, 5vw, 48px);
  }

  .visit__intro,
  .visit__address p {
    width: 100%;
    max-width: none;
  }

  .visit__image {
    flex: none;
    width: 100%;
    height: clamp(380px, 42vw, 520px);
    border-radius: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: var(--radius);
    border-bottom-left-radius: var(--radius);
  }

  .visit__image img {
    border-radius: inherit;
  }

  .visit__actions {
    flex-wrap: wrap;
    height: auto;
  }

  .visit__deco--tl {
    width: min(280px, 72%);
    height: auto;
    aspect-ratio: 373 / 280;
  }

  .visit__deco--br {
    width: min(200px, 50%);
    height: auto;
    aspect-ratio: 254.701 / 190.88;
  }
}

/* Visit stacked — taller storefront image on tablet (below 1024px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .visit__image {
    height: clamp(520px, 58vh, 680px);
    min-height: 560px;
  }

  .visit__image img {
    object-position: top center;
  }
}

@media (max-width: 768px) {
  :root {
    --page-padding: 24px;
  }

  .about-page {
    --hero-page-pre-image: clamp(248px, 32vh, 300px);
    --hero-page-card-h: clamp(360px, 48vw, 520px);
  }

  .blog-list-page,
  .contact-page {
    --hero-page-pre-image: clamp(248px, 32vh, 300px);
    --hero-page-card-h: clamp(220px, 42vw, 450px);
  }

  .hero {
    overflow: visible;
  }

  body.nav-is-open {
    overflow: hidden;
  }

  .section {
    padding: 64px 0;
  }

  .container,
  .categories__inner,
  .plants__inner,
  .why__inner,
  .blog__inner,
  .blog-page-header__inner,
  .blog-post__inner,
  .about-page-intro__inner,
  .about-page-story__inner,
  .contact-cards__inner {
    width: min(100% - 48px, var(--container));
  }

  .contact-cards {
    padding-bottom: 64px;
  }

  .blog-post__inner {
    max-width: 760px;
  }

  .blog-page-header__inner {
    flex-wrap: wrap;
    gap: 16px;
  }

  .blog-page-header__logo img {
    height: 40px;
  }

  .blog-post {
    padding: 48px 0 72px;
  }

  .blog-list-featured__inner,
  .blog-list-posts__inner {
    width: min(100% - 48px, var(--container));
  }

  .blog-list-featured__title {
    font-size: clamp(1.75rem, 6vw, 52px);
  }

  .blog-list-featured__text {
    font-size: 16px;
    line-height: 22px;
  }

  .blog-list-featured {
    gap: 40px;
  }

  .blog-list-posts {
    padding-top: 2px;
    padding-bottom: 64px;
  }

  .blog-list-posts__title {
    font-size: clamp(1.75rem, 6vw, 48px);
    padding-inline: var(--page-padding);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    box-sizing: border-box;
  }

  .blog-list-posts__grid {
    row-gap: 32px;
  }

  .blog-list-page .cta-gradient.section {
    padding-top: 0;
    padding-bottom: 64px;
  }

  .hero--blog-detail .hero__bg {
    height: clamp(480px, 65vh, 806px);
  }

  .blog-detail__header {
    margin-top: 48px;
    padding-bottom: 16px;
  }

  .blog-detail-hero.section {
    margin-top: clamp(-180px, -28vh, -306px);
  }

  .blog-detail__description {
    padding: 24px 0 32px;
  }

  .blog-detail__description-text {
    font-size: 16px;
    line-height: 22px;
  }

  .blog-detail__layout {
    padding-bottom: 48px;
  }

  .blog-detail__next-card.blog-card {
    max-width: none;
  }

  .blog-post__body {
    font-size: 16px;
    line-height: 26px;
  }

  .about-page-intro__headline {
    font-size: clamp(1.75rem, 6vw, 52px);
  }

  .about-page-story__text p {
    font-size: 16px;
    line-height: 22px;
    opacity: 0.85;
  }

  .about-page-story__accent {
    margin-top: 0;
    width: min(192px, 60%);
  }

  .about-page-story {
    padding-top: 56px;
    padding-bottom: 72px;
  }

  .about-page-story__media {
    aspect-ratio: 4 / 3;
  }

  /* Hero */
  .hero__nav-bar {
    padding: 32px var(--page-padding) 56px;
    margin-bottom: 0;
  }

  .navbar {
    min-height: 40px;
    padding: 0 16px;
    flex-wrap: nowrap;
    align-items: center;
    overflow: visible;
    border-radius: 6px;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .navbar__backdrop {
    display: none;
  }

  .navbar__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: absolute;
    top: max(16px, env(safe-area-inset-top, 0px));
    right: max(var(--page-padding), env(safe-area-inset-right, 0px));
    z-index: 2;
    min-height: 44px;
    padding: 0 18px;
    border: none;
    border-radius: var(--radius-sm);
    background: transparent;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
  }

  .navbar__close:hover {
    color: var(--secondary);
    background: rgba(255, 255, 255, 0.08);
  }

  .navbar__logo {
    position: absolute;
    left: 16px;
    top: -26px;
    width: 85px;
    height: 123px;
    order: unset;
  }

  .navbar__logo img {
    position: absolute;
    width: 162.67%;
    height: 112.32%;
    max-width: none;
    left: -32.76%;
    top: -6.34%;
  }

  .navbar__toggle {
    display: flex;
    margin-left: auto;
    z-index: 10001;
    position: relative;
  }

  body.nav-is-open .navbar__toggle {
    visibility: hidden;
    pointer-events: none;
  }

  .navbar__panel {
    box-sizing: border-box;
    display: flex;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    z-index: 10000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    min-height: 0;
    flex: none;
    margin: 0;
    padding: max(80px, env(safe-area-inset-top, 0px) + 56px) var(--page-padding)
      max(32px, env(safe-area-inset-bottom, 0px));
    background: var(--nav-menu-bg);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }

  .navbar__panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .navbar__menu-logo {
    display: block;
    position: relative;
    flex-shrink: 0;
    width: 110px;
    height: 158px;
    margin: 0 0 4px;
    overflow: hidden;
    filter: drop-shadow(var(--shadow-logo));
  }

  .navbar__menu-logo img {
    position: absolute;
    width: 162.67%;
    height: 112.32%;
    max-width: none;
    left: -32.76%;
    top: -6.34%;
  }

  .navbar__links {
    position: static;
    transform: none;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 300px;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .navbar__links li {
    width: 100%;
    display: block;
  }

  .navbar__panel .nav-link {
    width: 100%;
    max-width: none;
    font-size: 20px;
    min-height: 52px;
    color: var(--text-light);
    --btn-fill: rgba(163, 177, 138, 0.1);
  }

  .navbar__panel .nav-link::after {
    border-color: rgba(163, 177, 138, 0.35);
  }

  .navbar__panel .nav-link:hover,
  .navbar__panel .nav-link--active {
    color: var(--secondary);
  }

  .navbar__panel .nav-link:hover::after,
  .navbar__panel .nav-link--active::after {
    border-color: rgba(190, 219, 136, 0.5);
  }

  .navbar__panel .btn--whatsapp {
    flex-shrink: 0;
    width: 100%;
    max-width: 300px;
    margin-top: 4px;
  }

  .hero__content {
    margin-top: 40px;
    gap: 32px;
  }

  .hero__headline h1 {
    font-size: clamp(2.25rem, 10vw, 3.5rem);
  }

  .hero__sub {
    margin-top: 20px;
    font-size: 16px;
  }

  /* Green leafy bg behind headline + upper banner; cream body behind lower banner (desktop parity) */
  .hero__bg {
    height: clamp(500px, 75vh, 640px);
  }

  .hero__image-wrap {
    height: clamp(360px, 48vw, 520px);
    min-height: 0;
    padding: 24px 24px 44px;
  }

  /* About + Blog listing hero — match homepage mobile (nav, title, image card) */
  .hero--about .hero__nav-bar,
  .hero--blog-list .hero__nav-bar {
    padding: 32px var(--page-padding) 56px;
    width: 100%;
    box-sizing: border-box;
  }

  .hero--about .hero__content,
  .hero--blog-list .hero__content {
    margin-top: 40px;
    gap: 32px;
    align-items: center;
    width: 100%;
  }

  .hero--about .hero__headline h1,
  .hero--blog-list .hero__headline h1 {
    font-size: clamp(2.25rem, 10vw, 3.5rem);
  }

  .hero--about .hero__bg,
  .hero--blog-list .hero__bg {
    height: var(--hero-page-bg-height);
  }

  .hero--about .hero__bg-leaf,
  .hero--blog-list .hero__bg-leaf {
    width: clamp(80px, 90vw, 420px);
    max-height: 75%;
  }

  .hero.hero--about,
  .hero.hero--blog-list {
    padding-bottom: var(--hero-page-overlap);
  }

  .hero--about .hero__image-wrap--about {
    height: var(--hero-page-card-h);
    min-height: 0;
    width: 100%;
    padding: 0;
    align-items: stretch;
    border-radius: var(--radius);
  }

  .hero--about .hero__image-wrap--about .hero__image:not(.about-hero__img) {
    height: 137.78%;
    top: -13.88%;
    left: 0;
    width: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .hero--blog-list .hero__image-wrap--blog-list {
    height: auto;
    width: 100%;
    padding: 0;
  }

  .blog-list-featured__hero-wrap {
    padding: clamp(6px, 1.5vw, 8px);
  }

  .contact-page .blog-list-featured__hero-wrap {
    padding: 0;
  }

  .blog-list-featured__hero {
    height: var(--hero-page-card-h);
    padding: clamp(16px, 4vw, 24px);
  }

  .contact-page .blog-list-featured__hero {
    padding: 0;
    height: var(--hero-page-card-h);
  }

  .blog-list-featured__hero-media img:not(.blog-list-hero__img, .contact-hero__img) {
    height: 100%;
    top: 0;
    object-position: center center;
  }

  .blog-list-featured__badge {
    font-size: 13px;
    padding: 4px 10px;
  }

  .hero__badge {
    font-size: 12px;
    padding: 10px 14px;
  }

  /* Categories */
  .categories.section {
    gap: 40px;
    padding-bottom: 64px;
  }

  .categories__header h2 {
    font-size: clamp(2rem, 6vw, 48px);
  }

  .categories__header p {
    white-space: normal;
    text-align: center;
  }

  .category-card {
    flex: 0 0 min(297px, 85vw);
    width: min(297px, 85vw);
  }

  .categories__marquee-track {
    animation-duration: 25s;
  }

  .category-card:hover .category-card__image-frame,
  .category-card:focus-visible .category-card__image-frame {
    transform: scale(1);
  }

  /* Plants */
  .plants {
    padding: 0 !important;
  }

  .plants__inner {
    padding: 64px 0;
    gap: 32px;
  }

  .plants__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .plants__cta {
    margin-left: 0;
    justify-content: flex-start;
  }

  .plants__header h2 {
    font-size: clamp(2rem, 6vw, 48px);
  }

  .plants__header p {
    white-space: normal;
  }

  .plants__deco--left {
    width: min(280px, 75vw);
    height: auto;
    aspect-ratio: 373 / 280;
  }

  .plants__deco--right {
    height: min(400px, 50vh);
  }

  /* Why */
  .why {
    padding: 64px 0;
  }

  .why__inner {
    gap: 40px;
  }

  .why__left {
    gap: 32px;
  }

  .why__features {
    gap: 24px;
  }

  .why-item h3 {
    font-size: clamp(1.25rem, 4vw, 23px);
    white-space: normal;
  }

  .why-item p {
    font-size: 16px;
    white-space: normal;
  }

  /* Visit */
  .visit__content {
    padding: 48px var(--about-inset);
  }

  #visit .visit__content-inner {
    margin-left: 0;
  }

  .visit__content-inner {
    gap: 40px;
    max-width: 436px;
  }

  .visit__content h2 {
    font-size: clamp(2rem, 7vw, 48px);
  }

  .visit__intro > p {
    font-size: 16px;
    line-height: 22px;
  }

  .visit__address {
    align-items: flex-start;
  }

  .visit__address p {
    font-size: 18px;
    line-height: 26px;
  }

  .visit__image {
    height: clamp(320px, 65vw, 480px);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .visit__deco--tl {
    width: min(280px, 70vw);
    height: auto;
    aspect-ratio: 373 / 280;
  }

  .visit__deco--br {
    width: min(220px, 55vw);
    height: auto;
    aspect-ratio: 255 / 191;
  }

  /* CTA */
  .cta-banner.section {
    padding: 60px 0;
    min-height: 0;
  }

  .cta-banner__deco--left {
    width: min(360px, 55vw);
  }

  .cta-banner__deco--right {
    width: min(400px, 60vw);
  }

  .cta-banner__inner {
    gap: 28px;
  }

  .cta-banner__header {
    gap: 18px;
  }

  .cta-banner__header h2 {
    font-size: clamp(1.75rem, 6vw, 52px);
  }

  .cta-banner__header p {
    font-size: 16px;
  }

  .cta-gradient.section {
    padding-bottom: 60px;
  }

  .cta-gradient__cardsection.section {
    padding: 64px 0 60px;
  }

  .cta-gradient__card {
    width: min(100% - 2 * var(--page-padding), var(--container));
    min-height: 0;
  }

  .cta-gradient__deco--left {
    width: min(360px, 55vw);
  }

  .cta-gradient__deco--right {
    width: min(400px, 60vw);
  }

  .cta-gradient__inner {
    gap: 28px;
    padding: 48px 20px;
  }

  .cta-gradient__header {
    gap: 18px;
  }

  .cta-gradient__header h2 {
    font-size: clamp(1.75rem, 6vw, 52px);
  }

  .cta-gradient__header p {
    font-size: 16px;
    white-space: normal;
  }

  /* About */
  .about__main {
    padding-top: 56px;
    padding-bottom: 0;
  }

  .about--home-layout .about__content h2 {
    font-size: clamp(1.75rem, 8vw, 36px);
  }

  .about--home-layout .about__text p {
    font-size: 15px;
    line-height: 21px;
  }

  .about--home-layout .about__bar-item {
    font-size: clamp(9px, 2.2vw, 13px);
    white-space: nowrap;
    gap: clamp(6px, 1.2vw, 10px);
  }

  .about--home-layout .about__bar {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: clamp(8px, 2vw, 14px);
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .about__content {
    gap: 32px;
  }

  .about__copy {
    gap: 18px;
  }

  .about__content h2 {
    font-size: clamp(2rem, 9vw, 40px);
    line-height: 1.1;
  }

  .about__text p {
    font-size: 16px;
    line-height: 24px;
  }

  .about__bar-zone {
    margin-top: 48px;
  }

  .about__deco {
    width: min(280px, 72%);
  }

  .about__bar {
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .about__bar-item {
    white-space: normal;
  }

  .about__image img {
    aspect-ratio: 390 / 320;
  }

  /* Blog */
  .blog__inner {
    gap: 32px;
  }

  .blog__intro {
    max-width: none;
  }

  .blog-card__media {
    height: clamp(220px, 50vw, 280px);
  }

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

  .whatsapp-float__icon {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .cta-banner__deco--left {
    width: min(260px, 72vw);
  }

  .cta-banner__deco--right {
    width: min(280px, 75vw);
  }

  .cta-gradient__deco--left {
    width: min(260px, 72vw);
  }

  .cta-gradient__deco--right {
    width: min(280px, 75vw);
  }

  .footer__deco--left {
    width: min(260px, 72vw);
  }

  .footer__deco--right {
    width: min(300px, 75vw);
  }

  .visit__image {
    height: 300px;
  }

  .plant-card {
    height: auto;
    min-height: 515px;
  }

  .about-page-story__accent {
    width: min(240px, 72%);
  }

  .blog-post__hero img {
    max-height: 280px;
  }

  .footer__nav .nav-link {
    flex: 1 1 calc(50% - 5px);
    min-width: 0;
  }
}

/* About page hero — storefront card (287:40749): 1240×450 */
.hero--about .hero__content {
  gap: 45px;
  align-items: flex-start;
  width: 100%;
}

.hero--about .hero__headline {
  align-self: stretch;
  max-width: none;
  text-align: center;
}

.hero--about .hero__image-wrap--about,
.hero--blog-list .hero__image-wrap--blog-list {
  position: relative;
  z-index: 2;
}

.hero--about .hero__image-wrap--about {
  height: var(--hero-page-card-h);
  padding: 0;
  align-items: stretch;
}

.about-page .hero--about .hero__image-wrap--about {
  background: var(--forest);
}

.about-page .hero--about .hero__image-wrap--about .hero__image-media {
  background: var(--forest);
}

.about-page .hero--about .hero__image-wrap--about .hero__image-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

/* Photo crop — Figma Frame 9 storefront (287:40749) */
.hero--about .hero__image-wrap--about .hero__image {
  height: 206.67%;
  top: -48.37%;
  left: 0;
  width: 100%;
  object-fit: cover;
}

.about-page .hero--about .hero__image-wrap--about .about-hero__img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background-color: var(--forest);
}

@media (max-width: 1024px) {
  .about-page .hero--about .hero__image-wrap--about .about-hero__img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}

.hero--about .hero__image-wrap--about .hero__image-gradient {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 58.842%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.about-page-intro {
  position: relative;
  z-index: 1;
  margin-top: calc(-1 * var(--hero-page-overlap));
  padding: 35px  0 70px;
  background: var(--cream);
}

.about-page-intro__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  /* gap: 48px; */
  width: min(100% - 2 * var(--page-padding), var(--container));
  margin-inline: auto;
}

.about-page-intro__headline {
  margin: 0;
  flex: 0 1 1024px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 52px);
  line-height: 1.1;
  color: var(--text-main);
}

.about-page-intro__headline em {
  font-style: italic;
  font-weight: 500;
  color: var(--forest);
}

.about-page-intro__text {
  margin: 21px 0 0;
  flex: 0 1 401px;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text);
  opacity: 0.85;
}

/* Contact page — three-card row */
.contact-cards {
  padding: 0 0 100px;
  background: var(--cream);
}

.contact-cards__inner {
  display: grid;
  grid-template-columns: repeat(3, 401px);
  justify-content: space-between;
  gap: 18px;
  width: min(100% - 2 * var(--page-padding), var(--container));
  margin-inline: auto;
}

/* Figma card — 401×280, inner content 339px, padding 30.27px 30px 30.27px 32px */
.contact-cards__card {
  position: relative;
  isolation: isolate;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 401px;
  height: 280px;
  padding: 30.27px 30px 30.27px 32px;
  border: none;
  border-radius: 8px;
  background: transparent;
}

.contact-cards__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid #a3b18a;
  background: transparent;
  pointer-events: none;
  transition: var(--btn-shell-transition);
  z-index: 1;
}

.contact-cards__card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--cream);
  pointer-events: none;
  transition: var(--btn-fill-transition), background-color 0.3s ease;
  z-index: 0;
}

.contact-cards__body {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
}

.contact-cards__top {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 339px;
}

@media (hover: hover) {
  .contact-cards__card:hover::before {
    border-color: var(--btn-hover-border);
  }

  .contact-cards__card:hover::after {
    inset: var(--btn-hover-inset);
    background: #bedb88;
  }

  .contact-cards__card:hover .contact-cards__btn {
    --btn-fill: var(--forest);
    --btn-hover-inset: 0;
    color: var(--text-light);
  }

  .contact-cards__card:hover .contact-cards__link {
    opacity: 1;
    color: var(--forest);
  }
}

.contact-cards__card:focus-within::before {
  border-color: var(--btn-hover-border);
}

.contact-cards__card:focus-within::after {
  inset: var(--btn-hover-inset);
  background: #bedb88;
}

.contact-cards__card:focus-within .contact-cards__btn {
  --btn-fill: var(--forest);
  --btn-hover-inset: 0;
  color: var(--text-light);
}

.contact-cards__card:focus-within .contact-cards__link {
  opacity: 1;
  color: var(--forest);
}

.contact-cards__card:hover .contact-cards__btn::before,
.contact-cards__card:hover .contact-cards__btn:hover::before,
.contact-cards__card:focus-within .contact-cards__btn::before,
.contact-cards__card:focus-within .contact-cards__btn:hover::before {
  border-color: transparent;
}

.contact-cards__card:hover .contact-cards__btn::after,
.contact-cards__card:hover .contact-cards__btn:hover::after,
.contact-cards__card:focus-within .contact-cards__btn::after,
.contact-cards__card:focus-within .contact-cards__btn:hover::after {
  inset: 0;
}

.contact-cards__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 23px;
  font-weight: 500;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0;
  color: #1a1a1a;
}

.contact-cards__text {
  margin: 0;
  max-width: 339px;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  letter-spacing: 0;
  color: #1a1a1a;
  opacity: 0.85;
}

.contact-cards__location {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
  color: var(--text);
  opacity: 0.85;
}

.contact-cards__location img {
  flex-shrink: 0;
  display: block;
  width: 10.17px;
  height: 21.44px;
  margin-top: 3.73px;
}

.contact-cards__btn {
  --btn-fill: #bedb88;
  position: relative;
  box-sizing: border-box;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 0;
  height: auto;
  min-height: 0;
  padding: 18px 30px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  background: transparent;
  transition: color 0.3s ease;
}

.contact-cards__details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-cards__link {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
  color: var(--text);
  opacity: 0.85;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.contact-cards__link:hover {
  opacity: 1;
}

/* Our Story — Figma Frame 175 (287:40970) */
.about-page-story {
  padding: 100px 0;
}

.about-page-story__inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 50px;
  width: min(100% - 2 * var(--page-padding), var(--container));
  min-height: 330px;
  margin-inline: auto;
}

.about-page-story__media {
  flex: 0 0 506px;
  width: 506px;
  max-width: 100%;
  height: 330px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #f0ede8;
}

.about-page-story__media img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  object-position: center bottom;
}

.about-page-story__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  flex: 0 1 401px;
  max-width: 401px;
  min-width: 0;
}

.about-page-story__content h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 48px);
  line-height: 1.1;
  color: var(--text-main);
}

.about-page-story__content h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--forest);
}

.about-page-story__text {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.about-page-story__text p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text);
  opacity: 0.85;
}

/* Figma Rectangle 19 — 192×170 at right, top 160 */
.about-page-story__accent {
  position: absolute;
  top: 160px;
  right: 0;
  width: 192px;
  height: 170px;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-page-story__accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Figma: accent sits in the 192px band at the right of the 1240px frame */
@media (min-width: 1024px) {
  .about-page-story__inner {
    padding-right: 192px;
  }
}

@media (min-width: 1024px) and (max-width: 1200px) {
  .about-page-story__inner {
    gap: clamp(28px, 4vw, 50px);
  }

  .about-page-story__media {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    max-width: 506px;
  }

  .about-page-story__content {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    max-width: 401px;
  }
}

/* Our Story — stacked responsive below 1024px (must follow base rules above) */
@media (max-width: 1023px) {
  .about-page-story__inner {
    flex-direction: column;
    gap: 40px;
    min-height: 0;
    padding-right: 0;
  }

  .about-page-story__media {
    flex: none;
    width: 100%;
    height: auto;
    aspect-ratio: 506 / 330;
  }

  .about-page-story__content {
    flex: none;
    max-width: none;
  }

  .about-page-story__accent {
    position: static;
    width: min(192px, 55%);
    height: auto;
    aspect-ratio: 192 / 170;
    margin-left: auto;
    margin-top: -24px;
  }
}

@media (max-width: 1024px) {
  .contact-cards__inner {
    grid-template-columns: 1fr;
    justify-content: stretch;
    max-width: 401px;
  }

  .contact-cards__card {
    max-width: none;
    height: auto;
    min-height: 280px;
  }

  .about-page-intro__inner {
    flex-direction: row;
    gap: 28px;
  }

  .about-page-intro__text {
    margin-top: 0;
    flex-basis: auto;
  }

  .about-page,
  .blog-list-page,
  .contact-page {
    --hero-page-pre-image: clamp(300px, 36vh, 380px);
    --hero-page-card-h: 400px;
  }

  .about-page {
    --hero-page-card-h: 450px;
  }

  .hero--about .hero__image-wrap--about {
    height: var(--hero-page-card-h);
  }

  .hero--blog-list .hero__image-wrap--blog-list {
    height: auto;
  }

  .hero--blog-list .blog-list-featured__hero {
    height: var(--hero-page-card-h);
    padding: 20px;
  }

  .contact-page .blog-list-featured__hero {
    padding: 0;
    height: var(--hero-page-card-h);
  }

  .about-page-intro {
    padding-bottom: 56px;
  }

  .blog-list-featured {
    gap: 56px;
  }
}

/* Tablet — hero image crops */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero--about .hero__image-wrap--about .hero__image:not(.about-hero__img) {
    height: 100%;
    top: 0;
    width: 100%;
    object-position: center center;
  }

  .hero--blog-list .blog-list-featured__hero-media img:not(.blog-list-hero__img, .contact-hero__img) {
    height: 100%;
    top: 0;
    object-position: center center;
  }
}

@media (max-width: 767px) {
  .about-page-intro {
    padding: 48px 0;
  }

  .about-page-intro__inner{
    flex-direction: column;
    gap: 24px;
  }

  .about-page-intro__headline{
    flex: none;
  }

  .about-page-intro__headline br {
    display: none;
  }

  .blog-list-featured__hero {
    height: clamp(200px, 56vw, 320px);
    padding: 16px;
  }

  .contact-page .blog-list-featured__hero {
    padding: 0;
    height: var(--hero-page-card-h);
  }

  .blog-list-featured__badge {
    top: auto;
    left: auto;
  }

  .blog-list-posts__inner {
    gap: 32px;
  }
}

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

  .navbar__backdrop,
  .navbar__panel {
    transition: none;
    transform: none;
  }

  .categories__marquee-track {
    animation: none;
  }

  .categories__slider .categories__scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: auto;
    touch-action: auto;
  }

  .categories__slider .categories__scroll::-webkit-scrollbar {
    display: none;
  }

  .categories__slider .categories__scroll-track {
    transition: none;
    transform: none !important;
  }

  .plants__grid {
    animation: none;
  }

  .hero__badge-dot {
    animation: none;
    box-shadow: none;
  }

  .category-card:hover .category-card__image-frame,
  .category-card:focus-visible .category-card__image-frame {
    transform: scale(1);
  }

  .why__image img,
  .why-item,
  .why-item__icon,
  .why-item h3 {
    transition: none;
  }

  .why__image:hover img,
  .why-item:hover,
  .why-item:hover .why-item__icon {
    transform: none;
  }

  .blog-card,
  .blog-card__media img,
  .blog-card__frame,
  .blog-card h3,
  .reveal,
  .reveal.is-visible,
  .reveal-group.is-visible .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .blog-card:hover,
  .blog-card:hover .blog-card__media img {
    transform: none;
  }

  .plant-card,
  .plant-card__media img,
  .plant-card__body h3,
  .plant-card .btn--outline-accent {
    transition: none;
  }

  .plant-card:hover {
    transform: none;
    box-shadow: none;
  }

  .plant-card:hover .plant-card__media-frame {
    transform: scale(1);
  }

  .whatsapp-float,
  .whatsapp-float:hover {
    transform: none;
  }

  .btn::after,
  .nav-link::after {
    transition: none;
  }

  .btn:hover::after,
  .nav-link:hover::after {
    inset: var(--btn-hover-inset);
  }
}

/* Single post banner — scoped via body.single-post (single.php layout) */
body.single-post {
  background: var(--cream);
}

body.single-post .hero.hero--home {
  position: relative;
  z-index: 2;
  min-height: 0;
  padding-bottom: 0;
  overflow: visible;
  background: transparent;
}

body.single-post .hero .hero__bg {
  display: none;
}

body.single-post .hero .hero__nav-bar {
  position: relative;
  z-index: 1;
}

body.single-post .blog-detail-banner {
  position: relative;
  z-index: 1;
}

body.single-post .blog-detail-banner__bg {
  position: absolute;
  top: clamp(-200px, -22vw, -150px);
  left: 0;
  right: 0;
  height: clamp(580px, 64vw, 880px);
  background: var(--forest);
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

body.single-post .blog-detail-banner__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

body.single-post .blog-detail-banner__head {
  position: relative;
  z-index: 2;
  background: transparent;
  padding: clamp(40px, 7vw, 80px) var(--page-padding) clamp(20px, 3vw, 32px);
}

body.single-post .blog-detail-banner__head .blog-detail__header {
  position: relative;
  z-index: 2;
  max-width: 713px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

body.single-post .blog-detail-banner__head .blog-detail__title {
  font-weight: 400;
  font-size: clamp(2.25rem, 5.2vw, 74px);
  line-height: 100%;
  letter-spacing: 0;
  color: #faeed8;
}

body.single-post .blog-detail-banner__body {
  position: relative;
  z-index: 3;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Image below title — overlap downward into cream, not upward over title */
body.single-post .blog-detail-hero.section {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

body.single-post .blog-detail__description {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 48px;
  z-index: 1;
}

body.single-post #main {
  position: relative;
  z-index: 2;
  background: var(--cream);
}

body.single-post .blog-detail-page .cta-gradient.section,
body.single-post .cta-gradient.section {
  padding-top: 0;
}

@media (max-width: 768px) {
  body.single-post .blog-detail-banner__head {
    padding: 40px var(--page-padding) 16px;
  }

  body.single-post .blog-detail-hero.section {
    margin-top: 0;
    margin-bottom: 0;
  }

  body.single-post .blog-detail__description {
    padding-top: 0;
    padding-bottom: 32px;
  }

  body.single-post .blog-detail__description-text {
    font-size: 16px;
    line-height: 22px;
  }
}

