/* ============================================================
   GREENPULSE PERMACULTURE — Design System
   Palette drawn from the brand mark: forest green, sage, cream
   paper, charcoal ink, terracotta-blush accent.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,400;1,9..144,500&family=Inter:wght@400;500;600;700;800&family=Caveat:wght@500;600;700&display=swap');

:root{
  /* --- core palette --- */
  --forest:        #1F6E52;
  --forest-deep:    #154C39;
  --sage:           #4A9B7F;
  --sage-light:     #7FBCA4;
  --cream:          #FAF6EE;
  --cream-deep:     #F2EBDA;
  --ink:            #2B2B26;
  --ink-soft:       #55534A;
  --terracotta:     #E8926B;
  --terracotta-deep:#D97A50;
  --mint-tint:      #DCEEE3;
  --blush-tint:     #FBEADF;
  --gold-tint:      #F3E3B8;
  --white:          #FFFFFF;

  /* --- gradients --- */
  --grad-hero: radial-gradient(circle at 15% 20%, #DCEEE3 0%, #FAF6EE 45%, #FBEADF 100%);
  --grad-forest: linear-gradient(135deg, var(--forest) 0%, var(--sage) 100%);
  --grad-warm: linear-gradient(135deg, var(--terracotta) 0%, var(--gold-tint) 100%);
  --grad-badge: linear-gradient(145deg, #2C8763 0%, #1a5c42 60%, #123f2d 100%);

  /* --- type --- */
  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;
  --font-script: 'Caveat', cursive;

  /* --- shape / motion --- */
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 40px;
  --radius-pill: 999px;
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);
  --ease-soft: cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *,*::before,*::after{
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body{
  margin:0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family: inherit; cursor:pointer; }
ul{ margin:0; padding:0; list-style:none; }

h1,h2,h3,h4{
  font-family: var(--font-display);
  color: var(--forest-deep);
  margin: 0;
  line-height: 1.08;
  font-weight: 600;
}

::selection{ background: var(--terracotta); color: var(--white); }

:focus-visible{
  outline: 3px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 4px;
}

.container{
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow{
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .76rem;
  color: var(--terracotta-deep);
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{
  content:'';
  width:22px; height:2px;
  background: var(--terracotta);
  border-radius:2px;
}

.script{
  font-family: var(--font-script);
  font-weight: 600;
}

/* ============================================================
   BACKGROUND TEXTURE — soft grain
   ============================================================ */
.grain{
  position:fixed; inset:0; pointer-events:none; z-index:2;
  opacity:.035; mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header{
  position: sticky; top:0; z-index: 100;
  background: rgba(250,246,238,.82);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid rgba(43,43,38,.07);
  transition: box-shadow .4s var(--ease-soft);
}
.site-header.scrolled{ box-shadow: 0 8px 30px -12px rgba(31,110,82,.25); }

.nav-wrap{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 32px;
  max-width: 1240px; margin:0 auto;
}

.brand{
  display:flex; align-items:center; gap:12px;
  font-family: var(--font-display);
}
.brand-badge{
  width:46px; height:46px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 4px 14px rgba(31,110,82,.3);
  transition: transform .5s var(--ease-bounce);
  flex-shrink:0; overflow:hidden;
}
.brand:hover .brand-badge{ transform: rotate(-14deg) scale(1.08); }
.brand-badge img{ width:100%; height:100%; object-fit:cover; display:block; }
.brand-badge svg{ width:26px; height:26px; }

.brand-text{ display:flex; flex-direction:column; line-height:1.15; }
.brand-text strong{ font-size:1.05rem; color:var(--forest-deep); font-weight:700; letter-spacing:.01em; }
.brand-text span{ font-family: var(--font-script); font-size:1rem; color: var(--terracotta-deep); margin-top:-2px; }

.main-nav{ display:flex; align-items:center; gap:2px; }
.main-nav > ul{ display:flex; align-items:center; gap:4px; }

.nav-link{
  position:relative;
  padding: 10px 16px;
  font-size: .92rem; font-weight:600; color: var(--ink);
  border-radius: var(--radius-pill);
  transition: color .3s ease, background .3s ease;
}
.nav-link::after{
  content:'';
  position:absolute; left:16px; right:16px; bottom:6px; height:2px;
  background: var(--terracotta);
  transform: scaleX(0); transform-origin:left;
  transition: transform .35s var(--ease-out);
}
.nav-link:hover{ color: var(--forest-deep); background: var(--mint-tint); }
.nav-link:hover::after{ transform: scaleX(1); }
.nav-link.active{ color: var(--forest-deep); }
.nav-link.active::after{ transform: scaleX(1); background: var(--forest); }

.has-dropdown{ position:relative; }
.dropdown{
  position:absolute; top: calc(100% + 10px); left:50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 250px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 60px -16px rgba(31,110,82,.3);
  padding: 10px;
  opacity:0; visibility:hidden;
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out), visibility .3s;
  z-index: 50;
}
.has-dropdown:hover .dropdown{
  opacity:1; visibility:visible; transform: translateX(-50%) translateY(0);
}
.dropdown li a{
  display:flex; align-items:center; gap:10px;
  padding: 11px 14px; border-radius: 12px;
  font-size:.88rem; font-weight:600; color: var(--ink-soft);
  transition: background .25s, color .25s, padding-left .25s;
}
.dropdown li a svg{ width:18px; height:18px; color: var(--sage); flex-shrink:0; transition: transform .3s var(--ease-bounce); }
.dropdown li a:hover{ background: var(--mint-tint); color: var(--forest-deep); padding-left:18px; }
.dropdown li a:hover svg{ transform: scale(1.2) rotate(8deg); color: var(--terracotta); }

.nav-cta{
  display:inline-flex; align-items:center; gap:8px;
  padding: 12px 22px;
  background: var(--grad-forest);
  color: var(--white); font-weight:700; font-size:.88rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 22px -8px rgba(31,110,82,.55);
  transition: transform .35s var(--ease-bounce), box-shadow .35s ease;
}
.nav-cta:hover{ transform: translateY(-3px) scale(1.03); box-shadow: 0 14px 30px -8px rgba(31,110,82,.6); }
.nav-cta svg{ width:16px; height:16px; transition: transform .4s var(--ease-bounce); }
.nav-cta:hover svg{ transform: translateX(3px) rotate(12deg); }

.nav-toggle{
  display:none; width:44px; height:44px; border-radius:50%;
  background: var(--mint-tint); border:none; align-items:center; justify-content:center;
  position:relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:''; display:block; width:20px; height:2px; background: var(--forest-deep); border-radius:2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle span::before{ position:absolute; transform: translateY(-6px); }
.nav-toggle span::after{ position:absolute; transform: translateY(6px); }
.nav-toggle.open span{ background:transparent; }
.nav-toggle.open span::before{ transform: rotate(45deg); }
.nav-toggle.open span::after{ transform: rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-weight:700; font-size:.94rem;
  border: none;
  transition: transform .4s var(--ease-bounce), box-shadow .4s ease, background .3s ease;
  position:relative; overflow:hidden;
}
.btn svg{ width:18px; height:18px; transition: transform .4s var(--ease-bounce); }

.btn-primary{
  background: var(--grad-forest); color:var(--white);
  box-shadow: 0 10px 26px -10px rgba(31,110,82,.6);
}
.btn-primary:hover{ transform: translateY(-4px) scale(1.02); box-shadow: 0 18px 34px -10px rgba(31,110,82,.65); }
.btn-primary:active{ transform: translateY(-1px) scale(.98); }
.btn-primary:hover svg{ transform: translateX(4px); }

.btn-warm{
  background: var(--grad-warm); color: var(--forest-deep);
  box-shadow: 0 10px 26px -10px rgba(217,122,80,.55);
}
.btn-warm:hover{ transform: translateY(-4px) scale(1.02) rotate(-1deg); box-shadow: 0 18px 34px -10px rgba(217,122,80,.6); }

.btn-outline{
  background: transparent; color: var(--forest-deep);
  border: 2px solid var(--forest);
}
.btn-outline:hover{ background: var(--forest); color: var(--white); transform: translateY(-4px); }

.btn-ghost{
  background: var(--white); color: var(--forest-deep);
  box-shadow: 0 6px 18px -8px rgba(43,43,38,.2);
}
.btn-ghost:hover{ background: var(--mint-tint); transform: translateY(-3px); }

.btn-block{ width:100%; justify-content:center; }

/* ============================================================
   HERO (page-specific extensions in each page's inline style
   block reference these shared base classes)
   ============================================================ */
.hero{
  position:relative;
  padding: 96px 32px 120px;
  background: var(--grad-hero);
  overflow:hidden;
}
.hero-inner{
  max-width:1240px; margin:0 auto;
  display:grid; grid-template-columns: 1.05fr .95fr; gap:60px; align-items:center;
  position:relative; z-index:3;
}
.hero-vine{
  position:absolute; inset:0; z-index:1; pointer-events:none;
}
.hero-vine path{
  fill:none; stroke: var(--sage-light); stroke-width:2; stroke-linecap:round;
  stroke-dasharray: 1400; stroke-dashoffset: 1400;
  animation: drawVine 2.6s var(--ease-out) .3s forwards;
  opacity:.55;
}
@keyframes drawVine{ to{ stroke-dashoffset:0; } }

.hero-eyebrow{ animation: fadeSlideUp .8s var(--ease-out) .1s both; }
.hero h1{
  font-size: clamp(2.6rem, 4.6vw, 4.2rem);
  margin: 18px 0 22px;
  animation: fadeSlideUp .9s var(--ease-out) .25s both;
}
.hero h1 em{ font-style:italic; color: var(--sage); position:relative; }
.hero p.lead{
  font-size: 1.18rem; color: var(--ink-soft); max-width:520px; margin-bottom:34px;
  animation: fadeSlideUp .9s var(--ease-out) .4s both;
}
.hero-ctas{ display:flex; gap:16px; flex-wrap:wrap; animation: fadeSlideUp .9s var(--ease-out) .55s both; }
.hero-stats{
  display:flex; gap:30px; margin-top:46px; flex-wrap:wrap;
  animation: fadeSlideUp .9s var(--ease-out) .7s both;
}
.hero-stats div strong{ display:block; font-family:var(--font-display); font-size:1.8rem; color:var(--forest-deep); }
.hero-stats div span{ font-size:.82rem; color: var(--ink-soft); }

.hero-art{ position:relative; animation: heroArtIn 1.1s var(--ease-out) .35s both; }
@keyframes heroArtIn{ from{ opacity:0; transform: scale(.85) rotate(-4deg); } to{ opacity:1; transform:none; } }
.hero-art-frame{
  position:relative; border-radius: var(--radius-lg);
  overflow:hidden; aspect-ratio: 4/4.3;
  box-shadow: 0 40px 80px -30px rgba(31,110,82,.45);
  transform: rotate(2deg);
}
.hero-art-frame img{ width:100%; height:100%; object-fit:cover; transition: transform 1.2s var(--ease-soft); }
.hero-art-frame:hover img{ transform: scale(1.08) rotate(-1deg); }
.hero-badge-float{
  position:absolute; bottom:-26px; left:-26px;
  background:var(--white); border-radius: var(--radius-md);
  padding: 16px 20px; display:flex; align-items:center; gap:12px;
  box-shadow: 0 20px 45px -18px rgba(43,43,38,.3);
  animation: floatBadge 4.5s ease-in-out infinite, fadeSlideUp .9s var(--ease-out) .9s both;
}
@keyframes floatBadge{ 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-10px); } }
.hero-badge-float .icon-circle{ width:42px;height:42px;background:var(--mint-tint);border-radius:50%;display:flex;align-items:center;justify-content:center; }
.hero-badge-float .icon-circle svg{ width:22px;height:22px;color:var(--forest); }
.hero-badge-float strong{ display:block; font-size:.95rem; color:var(--forest-deep); }
.hero-badge-float span{ font-size:.76rem; color:var(--ink-soft); }

.hero-dot{
  position:absolute; border-radius:50%;
  animation: bobDot 6s ease-in-out infinite;
}
@keyframes bobDot{ 0%,100%{ transform: translate(0,0); } 33%{ transform: translate(8px,-14px); } 66%{ transform: translate(-6px,10px); } }

/* ============================================================
   ANIMATION UTILITY CLASSES (unique per-element via delays,
   applied by JS IntersectionObserver adding .in-view)
   ============================================================ */
[data-reveal]{ opacity:0; }
[data-reveal].in-view{ opacity:1; }

[data-reveal="rise"]{ transform: translateY(46px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
[data-reveal="rise"].in-view{ transform:none; }

[data-reveal="clip"]{ clip-path: inset(0 0 100% 0); transition: opacity .1s, clip-path 1s var(--ease-out); }
[data-reveal="clip"].in-view{ clip-path: inset(0 0 0% 0); }

[data-reveal="scale"]{ transform: scale(.82); transition: opacity .7s var(--ease-out), transform .7s var(--ease-bounce); }
[data-reveal="scale"].in-view{ transform:none; }

[data-reveal="slide-left"]{ transform: translateX(-60px); transition: opacity .85s var(--ease-out), transform .85s var(--ease-out); }
[data-reveal="slide-left"].in-view{ transform:none; }

[data-reveal="slide-right"]{ transform: translateX(60px); transition: opacity .85s var(--ease-out), transform .85s var(--ease-out); }
[data-reveal="slide-right"].in-view{ transform:none; }

[data-reveal="rotate"]{ transform: rotate(-7deg) scale(.9); transition: opacity .8s var(--ease-out), transform .8s var(--ease-bounce); }
[data-reveal="rotate"].in-view{ transform:none; }

[data-reveal="blur"]{ filter: blur(10px); transform: translateY(20px); transition: opacity .9s ease, filter .9s ease, transform .9s ease; }
[data-reveal="blur"].in-view{ filter: blur(0); transform:none; }

[data-reveal="flip"]{ transform: perspective(800px) rotateX(-35deg); transform-origin: top; transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
[data-reveal="flip"].in-view{ transform: perspective(800px) rotateX(0); }

[data-reveal="pop"]{ transform: scale(.5); transition: opacity .6s var(--ease-bounce), transform .6s var(--ease-bounce); }
[data-reveal="pop"].in-view{ transform: scale(1); }

/* ============================================================
   SECTION SCAFFOLDING
   ============================================================ */
.section{ padding: 110px 32px; position:relative; }
.section-tight{ padding: 80px 32px; }
.section-head{ max-width:640px; margin: 0 auto 60px; text-align:center; }
.section-head.left{ margin: 0 0 56px; text-align:left; }
.section-head h2{ font-size: clamp(2rem, 3.4vw, 2.9rem); margin-top:16px; }
.section-head p{ color: var(--ink-soft); font-size:1.08rem; margin-top:16px; line-height:1.65; }

.bg-mint{ background: var(--mint-tint); }
.bg-cream{ background: var(--cream); }
.bg-blush{ background: var(--blush-tint); }
.bg-forest{ background: var(--grad-forest); color: var(--white); }
.bg-forest h2, .bg-forest h3{ color: var(--white); }

.divider-wave{ display:block; width:100%; height:80px; }

/* ============================================================
   PURPOSE SECTION — corner icons + centered soft icon
   ============================================================ */
.purpose-section{ position:relative; overflow:hidden; padding-top:48px; padding-bottom:48px; }

.purpose-icon.corner{
  position:absolute; z-index:1; width:44px; height:44px; border-radius:50%;
  background: var(--white); display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 24px -12px rgba(43,43,38,.28);
  animation: bobIcon 5.5s ease-in-out infinite;
  color: var(--forest);
}
.purpose-icon.corner:nth-of-type(even){ color: var(--terracotta-deep); }
.purpose-icon.corner svg{ width:21px; height:21px; }

.purpose-mark{
  display:flex; align-items:center; justify-content:center;
  width:52px; height:52px; border-radius:50%; margin: 24px auto 0;
  background: var(--white); color: var(--forest);
  box-shadow: 0 12px 28px -14px rgba(43,43,38,.3);
  animation: bobIcon 5.5s ease-in-out infinite;
  position:relative; z-index:2;
}
.purpose-mark svg{ width:24px; height:24px; }
@keyframes bobIcon{ 0%,100%{ transform: translateY(0) rotate(0deg); } 50%{ transform: translateY(-10px) rotate(6deg); } }

@media (max-width: 780px){
  .purpose-icon.corner{ display:none; }
}

/* ============================================================
   CARDS — offerings grid
   ============================================================ */
.offer-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap:28px;
}
.offer-card{
  background: var(--white); border-radius: var(--radius-lg);
  overflow:hidden; position:relative;
  box-shadow: 0 14px 40px -20px rgba(43,43,38,.25);
  transition: transform .5s var(--ease-bounce), box-shadow .5s ease;
}
.offer-card:hover{ transform: translateY(-10px) rotate(-.6deg); box-shadow: 0 30px 60px -20px rgba(31,110,82,.4); }
.offer-card-img{ aspect-ratio: 4/3; overflow:hidden; position:relative; }
.offer-card-img img{ width:100%; height:100%; object-fit:cover; transition: transform .8s var(--ease-soft); }
.offer-card:hover .offer-card-img img{ transform: scale(1.13) rotate(1deg); }
.offer-card-img::after{
  content:''; position:absolute; inset:0;
  background: linear-gradient(to top, rgba(21,76,57,.55), transparent 55%);
  opacity:0; transition: opacity .4s ease;
}
.offer-card:hover .offer-card-img::after{ opacity:1; }
.offer-card-icon{
  position:absolute; top:16px; right:16px; width:48px; height:48px; border-radius:50%;
  background: var(--white); display:flex; align-items:center; justify-content:center;
  box-shadow: 0 8px 20px -8px rgba(0,0,0,.3);
  transition: transform .5s var(--ease-bounce);
}
.offer-card:hover .offer-card-icon{ transform: rotate(18deg) scale(1.12); background: var(--terracotta); }
.offer-card-icon svg{ width:24px; height:24px; color: var(--forest); transition: color .4s ease; }
.offer-card:hover .offer-card-icon svg{ color: var(--white); }
.offer-card-body{ padding: 26px 26px 30px; }
.offer-card-body h3{ font-size:1.3rem; margin-bottom:10px; }
.offer-card-body p{ color: var(--ink-soft); font-size:.95rem; line-height:1.6; margin-bottom:18px; }
.offer-card-link{
  display:inline-flex; align-items:center; gap:8px; font-weight:700; font-size:.88rem; color: var(--forest);
}
.offer-card-link svg{ width:16px; height:16px; transition: transform .35s var(--ease-bounce); }
.offer-card:hover .offer-card-link svg{ transform: translateX(6px); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid{ display:grid; grid-template-columns: repeat(2,1fr); gap:26px; }
.testi-card{
  background: var(--white); border-radius: var(--radius-md); padding: 34px;
  position:relative; box-shadow: 0 14px 36px -20px rgba(43,43,38,.2);
  transition: transform .45s var(--ease-bounce);
}
.testi-card:hover{ transform: translateY(-6px); }
.testi-card::before{
  content:'"'; font-family: var(--font-display); font-size:5rem; color: var(--mint-tint);
  position:absolute; top:6px; left:20px; line-height:1; z-index:0;
}
.testi-quote{ position:relative; z-index:1; font-size:1.02rem; line-height:1.7; color: var(--ink); margin-bottom:22px; }
.testi-person{ display:flex; align-items:center; gap:14px; }
.testi-avatar{ width:52px; height:52px; border-radius:50%; overflow:hidden; flex-shrink:0; border:3px solid var(--mint-tint); }
.testi-avatar img{ width:100%; height:100%; object-fit:cover; }
.testi-person strong{ display:block; font-size:.92rem; color: var(--forest-deep); }
.testi-person span{ font-size:.8rem; color: var(--ink-soft); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{ background: var(--forest-deep); color: var(--cream); padding: 70px 32px 30px; position:relative; overflow:hidden; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap:40px; max-width:1240px; margin:0 auto; position:relative; z-index:2; }
.footer-brand{ display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.footer-brand .brand-badge{ width:42px; height:42px; }
.footer-brand strong{ font-family:var(--font-display); font-size:1.1rem; color:var(--white); }
.site-footer p{ color: #B9CFC3; font-size:.92rem; line-height:1.7; max-width:280px; }
.footer-col h4{ color: var(--white); font-size:.85rem; text-transform:uppercase; letter-spacing:.1em; margin-bottom:18px; font-family:var(--font-body); font-weight:700; }
.footer-col ul li{ margin-bottom:11px; }
.footer-col ul li a{ color:#B9CFC3; font-size:.92rem; transition: color .3s, padding-left .3s; display:inline-block; }
.footer-col ul li a:hover{ color: var(--terracotta); padding-left:5px; }
.footer-social{ display:flex; gap:12px; margin-top:18px; }
.footer-social a{
  width:42px; height:42px; border-radius:50%; background: rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center;
  transition: background .35s ease, transform .45s var(--ease-bounce);
}
.footer-social a:hover{ background: var(--terracotta); transform: translateY(-5px) rotate(-8deg); }
.footer-social svg{ width:19px; height:19px; color: var(--white); }
.footer-bottom{
  max-width:1240px; margin: 50px auto 0; padding-top:26px;
  border-top: 1px solid rgba(255,255,255,.1);
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;
  font-size:.82rem; color:#8FAD9F; position:relative; z-index:2;
}
.footer-bottom a{ color:#8FAD9F; transition:color .3s; }
.footer-bottom a:hover{ color: var(--terracotta); }
.footer-leaf-decor{
  position:absolute; right:-60px; top:-60px; width:340px; height:340px; opacity:.06;
  animation: slowSpin 60s linear infinite;
}
@keyframes slowSpin{ to{ transform: rotate(360deg); } }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-hero{
  position:relative; padding: 74px 32px 90px; overflow:hidden;
  background: var(--grad-forest); color:var(--white);
}
.page-hero-inner{ max-width:1240px; margin:0 auto; position:relative; z-index:3; }
.page-hero .eyebrow{ color: var(--gold-tint); }
.page-hero .eyebrow::before{ background: var(--gold-tint); }
.page-hero h1{ color:var(--white); font-size: clamp(2.3rem, 4vw, 3.4rem); margin: 16px 0 18px; }
.page-hero p{ color: rgba(255,255,255,.85); font-size:1.1rem; max-width:600px; line-height:1.65; }
.page-hero-crumbs{ display:flex; gap:8px; align-items:center; font-size:.85rem; color: rgba(255,255,255,.7); margin-bottom:18px; }
.page-hero-crumbs svg{ width:13px;height:13px; }
.page-hero-media{
  margin-top:40px; border-radius: var(--radius-lg); overflow:hidden; aspect-ratio: 16/6;
  box-shadow: 0 30px 70px -25px rgba(0,0,0,.45);
}
.page-hero-media img{ width:100%; height:100%; object-fit:cover; }
.page-hero-blob{ position:absolute; border-radius:50%; filter: blur(2px); opacity:.18; }

/* ============================================================
   FEATURE ROWS (used on service pages)
   ============================================================ */
.feature-row{
  display:grid; grid-template-columns: 1fr 1fr; gap:64px; align-items:center;
  padding: 70px 0;
}
.feature-row.reverse{ direction: rtl; }
.feature-row.reverse > *{ direction: ltr; }
.feature-row-media{ position:relative; border-radius: var(--radius-lg); overflow:hidden; aspect-ratio: 5/4; box-shadow: 0 30px 60px -25px rgba(31,110,82,.35); }
.feature-row-media img{ width:100%; height:100%; object-fit:cover; transition: transform 1s var(--ease-soft); }
.feature-row-media:hover img{ transform: scale(1.06); }
.feature-row-num{
  position:absolute; top:20px; left:20px; width:52px; height:52px; border-radius:50%;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  display:flex; align-items:center; justify-content:center;
  color: var(--forest); font-family: var(--font-display); font-weight:700; font-size:1.1rem;
  box-shadow: 0 8px 20px -8px rgba(0,0,0,.3);
}
.feature-row h3{ font-size: clamp(1.6rem,2.4vw,2.1rem); margin-bottom:18px; }
.feature-row p{ color: var(--ink-soft); line-height:1.75; font-size:1.03rem; }
.feature-row .btn{ margin-top:26px; }
.icon-chip{
  display:inline-flex; align-items:center; justify-content:center;
  width:54px; height:54px; border-radius:16px; background: var(--mint-tint);
  margin-bottom:20px; transition: transform .5s var(--ease-bounce), background .4s ease;
}
.icon-chip svg{ width:28px;height:28px; color: var(--forest); }
.feature-row:hover .icon-chip{ transform: rotate(-8deg) scale(1.08); background: var(--blush-tint); }

/* ============================================================
   PROCESS LIST (garden club "how it works")
   ============================================================ */
.process-list{ display:flex; flex-direction:column; gap:0; }
.process-item{
  display:flex; gap:24px; padding: 24px 0; border-bottom: 1px dashed rgba(43,43,38,.15);
  transition: padding-left .4s var(--ease-out);
}
.process-item:hover{ padding-left:14px; }
.process-item:last-child{ border-bottom:none; }
.process-check{
  width:38px; height:38px; border-radius:50%; background: var(--grad-forest);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  box-shadow: 0 6px 16px -6px rgba(31,110,82,.5);
}
.process-check svg{ width:18px;height:18px; color:var(--white); }
.process-item p{ font-size:1.02rem; color: var(--ink); padding-top:8px; }

/* ============================================================
   PILL LIST (bullet replacements)
   ============================================================ */
.pill-list{ display:flex; flex-direction:column; gap:14px; margin: 22px 0; }
.pill-item{ display:flex; align-items:center; gap:14px; }
.pill-item .dot{
  width:30px; height:30px; border-radius:50%; background: var(--blush-tint);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  transition: transform .4s var(--ease-bounce), background .3s;
}
.pill-item:hover .dot{ transform: scale(1.15); background: var(--terracotta); }
.pill-item .dot svg{ width:14px;height:14px; color: var(--terracotta-deep); transition:color .3s; }
.pill-item:hover .dot svg{ color:var(--white); }
.pill-item span{ font-weight:600; font-size:.98rem; color: var(--ink); }

/* ============================================================
   GALLERY GRID
   ============================================================ */
.masonry{
  columns: 3 260px; column-gap: 22px;
}
.masonry-item{
  break-inside: avoid; margin-bottom:22px; border-radius: var(--radius-md); overflow:hidden;
  position:relative; box-shadow: 0 14px 34px -18px rgba(43,43,38,.3);
  transition: transform .5s var(--ease-bounce);
}
.masonry-item:hover{ transform: translateY(-8px) scale(1.015); }
.masonry-item img{ width:100%; display:block; transition: transform .8s var(--ease-soft), filter .5s ease; }
.masonry-item:hover img{ transform: scale(1.09); }
.masonry-item .tag{
  position:absolute; bottom:14px; left:14px; background: rgba(255,255,255,.92);
  padding:7px 14px; border-radius: var(--radius-pill); font-size:.78rem; font-weight:700; color: var(--forest-deep);
  opacity:0; transform: translateY(10px); transition: opacity .4s ease, transform .4s ease;
}
.masonry-item:hover .tag{ opacity:1; transform:none; }

/* ============================================================
   CONTACT / FORM ELEMENTS
   ============================================================ */
.form-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:20px; }
.field{ display:flex; flex-direction:column; gap:8px; margin-bottom:20px; }
.field.full{ grid-column: 1/-1; }
.field label{ font-size:.85rem; font-weight:700; color: var(--forest-deep); }
.field label .opt{ font-weight:500; color: var(--ink-soft); }
.field input, .field select, .field textarea{
  padding: 14px 16px; border-radius: 14px; border: 2px solid rgba(43,43,38,.12);
  background: var(--white); font-family: var(--font-body); font-size:.96rem; color: var(--ink);
  transition: border-color .3s ease, box-shadow .3s ease, transform .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color: var(--sage); box-shadow: 0 0 0 4px rgba(74,155,127,.15);
}
.field textarea{ resize: vertical; min-height:110px; }
.checkbox-row{ display:flex; align-items:flex-start; gap:12px; margin: 6px 0 22px; }
.checkbox-row input{ margin-top:3px; width:18px; height:18px; accent-color: var(--forest); flex-shrink:0; }
.checkbox-row label{ font-size:.88rem; color: var(--ink-soft); line-height:1.55; }
.checkbox-row a{ color: var(--forest); font-weight:700; text-decoration: underline; }

.form-card{
  background: var(--white); border-radius: var(--radius-lg); padding: 44px;
  box-shadow: 0 30px 70px -30px rgba(31,110,82,.3);
}

.contact-info-card{
  background: var(--grad-forest); color: var(--white); border-radius: var(--radius-lg);
  padding: 44px; height:100%;
}
.contact-info-card h3{ color: var(--white); font-size:1.5rem; margin-bottom: 14px; }
.contact-info-card p{ color: rgba(255,255,255,.82); line-height:1.7; margin-bottom:30px; }
.contact-info-row{ display:flex; align-items:center; gap:16px; margin-bottom:22px; }
.contact-info-row .ci-icon{
  width:48px;height:48px; border-radius:14px; background: rgba(255,255,255,.14);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  transition: transform .4s var(--ease-bounce), background .3s;
}
.contact-info-row:hover .ci-icon{ transform: rotate(-10deg) scale(1.08); background: rgba(255,255,255,.24); }
.contact-info-row .ci-icon svg{ width:22px;height:22px; color: var(--white); }
.contact-info-row strong{ display:block; font-size:.95rem; }
.contact-info-row span, .contact-info-row a{ font-size:.86rem; color: rgba(255,255,255,.78); }

/* ============================================================
   BOOKING PAGE — steps, packages, calendar-ish picker
   ============================================================ */
.steps-track{ display:flex; align-items:center; justify-content:center; gap:0; margin-bottom:60px; flex-wrap:wrap; }
.step-node{ display:flex; flex-direction:column; align-items:center; gap:10px; position:relative; }
.step-circle{
  width:52px; height:52px; border-radius:50%; background: var(--white); border: 2px solid rgba(43,43,38,.15);
  display:flex; align-items:center; justify-content:center; font-family: var(--font-display); font-weight:700; color: var(--ink-soft);
  transition: all .4s var(--ease-bounce); position:relative; z-index:2;
}
.step-node.active .step-circle{ background: var(--grad-forest); border-color:transparent; color:var(--white); transform: scale(1.1); box-shadow: 0 10px 24px -8px rgba(31,110,82,.55); }
.step-node.done .step-circle{ background: var(--sage); border-color:transparent; color:var(--white); }
.step-node span.label{ font-size:.8rem; font-weight:700; color: var(--ink-soft); }
.step-node.active span.label{ color: var(--forest-deep); }
.step-line{ width:70px; height:2px; background: rgba(43,43,38,.15); margin: 0 4px 26px; position:relative; }
.step-line.done{ background: var(--sage); }

.package-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:24px; margin-bottom:20px; }
.package-card{
  background: var(--white); border-radius: var(--radius-lg); padding: 30px; border: 2px solid transparent;
  cursor:pointer; transition: transform .4s var(--ease-bounce), border-color .3s ease, box-shadow .4s ease;
  box-shadow: 0 14px 34px -20px rgba(43,43,38,.25); position:relative;
}
.package-card:hover{ transform: translateY(-8px); box-shadow: 0 24px 50px -20px rgba(31,110,82,.35); }
.package-card.selected{ border-color: var(--forest); box-shadow: 0 20px 44px -18px rgba(31,110,82,.4); }
.package-card.selected::after{
  content:'✓ Selected'; position:absolute; top:-13px; right:22px; background: var(--forest);
  color:var(--white); font-size:.72rem; font-weight:700; padding:5px 12px; border-radius: var(--radius-pill);
}
.package-card .pkg-icon{ width:52px;height:52px; border-radius:16px; background: var(--mint-tint); display:flex; align-items:center; justify-content:center; margin-bottom:18px; transition: transform .4s var(--ease-bounce); }
.package-card:hover .pkg-icon{ transform: rotate(8deg) scale(1.08); }
.package-card .pkg-icon svg{ width:26px;height:26px; color: var(--forest); }
.package-card h4{ font-size:1.2rem; margin-bottom:8px; }
.package-card .pkg-price{ font-family: var(--font-display); font-size:1.7rem; color: var(--terracotta-deep); margin-bottom:14px; }
.package-card .pkg-price span{ font-size:.9rem; font-weight:400; color: var(--ink-soft); font-family: var(--font-body); }
.package-card ul{ display:flex; flex-direction:column; gap:9px; }
.package-card ul li{ display:flex; align-items:center; gap:9px; font-size:.88rem; color: var(--ink-soft); }
.package-card ul li svg{ width:15px;height:15px; color: var(--sage); flex-shrink:0; }

.booking-panel{ background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: 0 30px 70px -30px rgba(31,110,82,.28); }
.booking-panel h3{ font-size:1.4rem; margin-bottom: 26px; }

.date-grid{ display:grid; grid-template-columns: repeat(7,1fr); gap:8px; margin-bottom:26px; }
.date-cell{
  aspect-ratio:1; border-radius:12px; display:flex; align-items:center; justify-content:center;
  font-size:.86rem; font-weight:600; color: var(--ink); background: var(--cream-deep);
  cursor:pointer; transition: all .3s var(--ease-bounce); border: 2px solid transparent;
}
.date-cell.faded{ opacity:.3; pointer-events:none; }
.date-cell:hover{ background: var(--mint-tint); transform: scale(1.08); }
.date-cell.selected{ background: var(--grad-forest); color:var(--white); border-color: var(--forest-deep); transform: scale(1.08); }

.time-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:10px; margin-bottom:26px; }
.time-slot{
  padding: 12px; text-align:center; border-radius: 12px; background: var(--cream-deep);
  font-size:.86rem; font-weight:700; color: var(--ink); cursor:pointer;
  transition: all .3s var(--ease-bounce); border:2px solid transparent;
}
.time-slot:hover{ background: var(--blush-tint); transform: translateY(-2px); }
.time-slot.selected{ background: var(--terracotta); color:var(--white); border-color: var(--terracotta-deep); }

.summary-card{
  background: var(--cream-deep); border-radius: var(--radius-md); padding: 24px; margin-top:10px;
}
.summary-row{ display:flex; justify-content:space-between; padding: 10px 0; font-size:.92rem; border-bottom: 1px dashed rgba(43,43,38,.15); }
.summary-row:last-child{ border-bottom:none; font-weight:800; font-size:1.05rem; color: var(--forest-deep); padding-top:16px; }

.pay-card{
  background: var(--white); border-radius:16px; border: 2px solid rgba(43,43,38,.12);
  padding: 22px; display:flex; align-items:center; gap:16px; cursor:pointer;
  transition: all .3s ease; margin-bottom:14px;
}
.pay-card:hover{ border-color: var(--sage); }
.pay-card.selected{ border-color: var(--forest); background: var(--mint-tint); }
.pay-card input{ width:20px; height:20px; accent-color: var(--forest); }
.pay-card svg{ width:30px; height:30px; color: var(--forest); }
.pay-card strong{ display:block; font-size:.95rem; }
.pay-card span{ font-size:.8rem; color: var(--ink-soft); }

.demo-banner{
  display:flex; align-items:center; gap:12px; background: var(--gold-tint); border-radius: var(--radius-md);
  padding: 16px 22px; margin-bottom: 34px; font-size:.88rem; color: var(--ink);
}
.demo-banner svg{ width:22px; height:22px; color: var(--terracotta-deep); flex-shrink:0; }

.card-mock{ background: var(--cream-deep); border-radius:16px; padding:22px; margin-top:8px; }
.card-mock .field{ margin-bottom:16px; }

/* signature drawn / step icon svg */
.check-anim{ stroke-dasharray:24; stroke-dashoffset:24; animation: drawCheck .5s ease forwards .1s; }
@keyframes drawCheck{ to{ stroke-dashoffset:0; } }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu{
  position:fixed; inset:0; z-index:200; background: var(--cream);
  padding: 100px 32px 40px; transform: translateX(100%); transition: transform .5s var(--ease-out);
  overflow-y:auto;
}
.mobile-menu.open{ transform: translateX(0); }
.mobile-menu ul{ display:flex; flex-direction:column; gap:6px; }
.mobile-menu a{ display:block; padding:16px 6px; font-size:1.3rem; font-family:var(--font-display); font-weight:600; color: var(--forest-deep); border-bottom:1px solid rgba(43,43,38,.08); }
.mobile-sub{ padding-left:20px; display:flex; flex-direction:column; }
.mobile-sub a{ font-size:1rem; font-family: var(--font-body); font-weight:600; color: var(--ink-soft); padding:12px 6px; border-bottom:none; }
.mobile-menu .nav-cta{ margin-top:24px; justify-content:center; width:100%; }

/* ============================================================
   MARQUEE strip (ethics / values ribbon)
   ============================================================ */
.marquee{
  overflow:hidden; background: var(--forest-deep); padding: 18px 0;
}
.marquee-track{ display:flex; gap:50px; width:max-content; animation: marquee 28s linear infinite; }
@keyframes marquee{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }
.marquee-item{ display:flex; align-items:center; gap:12px; color: var(--cream); font-weight:700; font-size:.95rem; white-space:nowrap; }
.marquee-item svg{ width:18px; height:18px; color: var(--terracotta); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.to-top{
  position:fixed; bottom:28px; right:28px; z-index:90;
  width:52px; height:52px; border-radius:50%; background: var(--grad-forest);
  display:flex; align-items:center; justify-content:center; box-shadow: 0 14px 30px -10px rgba(31,110,82,.5);
  opacity:0; visibility:hidden; transform: translateY(20px) scale(.8);
  transition: all .4s var(--ease-bounce);
}
.to-top.show{ opacity:1; visibility:visible; transform:none; }
.to-top:hover{ transform: translateY(-4px) scale(1.08); }
.to-top svg{ width:22px;height:22px; color:var(--white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px){
  .nav-wrap{ padding: 12px 20px; }
  .main-nav{ display:none; }
  .nav-toggle{ display:flex; }
  .site-header .nav-cta{ display:none; }
  .hero-inner{ grid-template-columns:1fr; }
  .hero-art{ order:-1; }
  .offer-grid{ grid-template-columns: repeat(2,1fr); }
  .testi-grid{ grid-template-columns: 1fr; }
  .feature-row, .feature-row.reverse{ grid-template-columns:1fr; direction:ltr; gap:34px; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .package-grid{ grid-template-columns:1fr; }
  .form-grid{ grid-template-columns:1fr; }
  .masonry{ columns: 2 220px; }
}

@media (max-width: 640px){
  .container{ padding:0 20px; }
  .nav-wrap{ padding: 10px 16px; }
  .brand-badge{ width:38px; height:38px; }
  .brand-text strong{ font-size:.92rem; }
  .brand-text span{ font-size:.86rem; }
  .nav-toggle{ width:40px; height:40px; }

  .hero{ padding: 56px 16px 64px; }
  .hero h1{ font-size: clamp(2rem, 8vw, 2.6rem); }
  .hero p.lead{ font-size: 1.02rem; }
  .hero-ctas{ flex-direction:column; align-items:stretch; }
  .hero-ctas .btn{ width:100%; justify-content:center; }
  .hero-stats{ gap:18px; }
  .hero-badge-float{ left:12px; bottom:-18px; padding:12px 14px; }
  .hero-art-frame{ transform:none !important; }

  .section{ padding: 56px 16px; }
  .section-tight{ padding: 44px 16px; }
  .section-head h2{ font-size: clamp(1.6rem, 6vw, 2.1rem); }

  .offer-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; gap:34px; }
  .footer-leaf-decor{ display:none; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; gap:8px; }

  .date-grid{ grid-template-columns: repeat(7,minmax(0,1fr)); gap:4px; }
  .date-cell{ font-size:.74rem; }
  .time-grid{ grid-template-columns: repeat(2,1fr); }
  .masonry{ columns: 1 100%; }

  .steps-track{ gap:0; flex-wrap:wrap; row-gap:14px; justify-content:center; }
  .step-line{ width:22px; }
  .step-node span.label{ font-size:.7rem; }

  .package-card, .booking-panel, .form-card{ padding:22px; }
  .contact-info-card{ padding:28px; }

  .page-hero{ padding: 56px 16px 60px; }
  .page-hero-media{ aspect-ratio: 4/3; }

  .mobile-menu{ padding: 90px 20px 40px; }
  .mobile-menu a{ font-size:1.1rem; padding:13px 4px; }
  .mobile-sub a{ font-size:.92rem; padding:10px 4px; }

  .to-top{ right:16px; bottom:16px; width:46px; height:46px; }
}

@media (max-width: 380px){
  .brand-text span{ display:none; }
  .hero-stats{ flex-direction:column; gap:12px; }
}

