/* ============================================================
   NATURE STREET — stylesheet
   Brand tokens live here. Change a value once, it updates site-wide.
   ============================================================ */

:root {
  /* --- Colour palette (edit these to retune the whole site) --- */
  --charcoal:    #2C2C2C;   /* dark sections + body text */
  --eucalypt:    #38503f;   /* deep native green */
  --sage:        #7e9b80;   /* mid sage green */
  --sage-soft:   #cdd8c8;   /* pale sage tint */
  --bone:        #f7f4ec;   /* warm cream background */
  --bone-tint:   #eee8da;   /* slightly deeper cream for alt sections */
  --wattle:      #d99a3e;   /* warm gold accent (CTAs, voucher) */
  --wattle-deep: #b97c27;
  --ink:         #23271f;   /* near-black green-tinted text */
  --muted:       #5d6358;   /* secondary text */
  --line:        #ddd6c6;   /* hairline borders */

  /* --- Type --- */
  --display: "Fraunces", Georgia, serif;
  --body: "Inter", system-ui, -apple-system, sans-serif;

  /* --- Layout --- */
  --wrap: 1180px;
  --radius: 14px;
  --radius-lg: 22px;
}

/* --- Reset / base --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--bone);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4, h5 { font-family: var(--display); font-weight: 600; line-height: 1.08; margin: 0; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* --- Buttons --- */
.btn {
  display: inline-block; font-family: var(--body); font-weight: 600;
  font-size: 0.95rem; text-decoration: none; cursor: pointer;
  padding: 0.85em 1.5em; border-radius: 100px; border: 1.5px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--wattle); color: var(--ink); }
.btn-primary:hover { background: var(--wattle-deep); color: #fff; box-shadow: 0 8px 22px -10px var(--wattle-deep); }
.btn-ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bone); }
.btn-small { padding: 0.6em 1.2em; font-size: 0.85rem; background: var(--eucalypt); color: #fff; }
.btn-small:hover { background: var(--ink); }
.btn-small.btn-primary { background: var(--wattle); color: var(--ink); }
.btn-small.btn-primary:hover { background: var(--wattle-deep); color: #fff; }
.btn-block { width: 100%; text-align: center; }

/* --- Header --- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bone) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo { height: 38px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--display); font-weight: 600; font-size: 1.15rem; }
.brand-sub { font-size: 0.7rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { text-decoration: none; font-size: 0.92rem; font-weight: 500; color: var(--ink); }
.main-nav a:hover { color: var(--wattle-deep); }
.nav-cta { background: var(--eucalypt); color: #fff !important; padding: 0.55em 1.1em; border-radius: 100px; }
.nav-cta:hover { background: var(--ink); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); display: block; }

/* --- Hero --- */
.hero { padding: 70px 0 60px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.eyebrow, .section-eyebrow {
  font-size: 0.78rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 600; color: var(--sage); margin: 0 0 18px;
}
.hero h1 { font-size: clamp(2.6rem, 5.4vw, 4.3rem); letter-spacing: -0.01em; margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--muted); font-weight: 400; }
.hero h1 .leaf { color: var(--eucalypt); }
.lede { font-size: 1.12rem; color: var(--muted); max-width: 30em; margin: 0 0 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats { display: flex; gap: 38px; margin: 0; padding-top: 28px; border-top: 1px solid var(--line); }
.hero-stats div dt { font-family: var(--display); font-size: 2rem; font-weight: 600; color: var(--eucalypt); }
.hero-stats div dd { margin: 2px 0 0; font-size: 0.82rem; color: var(--muted); }

.hero-figure { margin: 0; }
.img-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, var(--sage) 0%, var(--eucalypt) 100%);
  aspect-ratio: 4 / 5;
}
.img-frame img { width: 100%; height: 100%; object-fit: cover; }
.img-frame.img-missing img { display: none; }
.img-frame.img-missing::after {
  content: "🌿"; position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 3rem; opacity: .5;
}
.img-tag {
  position: absolute; left: 14px; bottom: 14px; background: rgba(0,0,0,.55);
  color: #fff; font-size: 0.75rem; padding: 6px 12px; border-radius: 100px; backdrop-filter: blur(4px);
}
.credit { font-size: 0.68rem; color: var(--muted); margin: 12px 2px 0; line-height: 1.4; }

/* --- Section scaffolding --- */
.section { padding: 92px 0; }
.section-tint { background: var(--bone-tint); }
.section-eyebrow { color: var(--sage); }
.section-eyebrow.light { color: var(--wattle); }
.section-title { font-size: clamp(2rem, 3.6vw, 2.9rem); letter-spacing: -0.01em; margin-bottom: 18px; max-width: 16em; }
.section-title.light { color: var(--bone); }
.section-lede { font-size: 1.08rem; color: var(--muted); max-width: 40em; margin: 0 0 8px; }

/* --- Packages --- */
.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 48px; }
.package {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 34px 30px 30px; display: flex; flex-direction: column;
}
.package.featured { border-color: var(--wattle); box-shadow: 0 24px 50px -28px rgba(185,124,39,.5); }
.pkg-num { font-family: var(--display); font-size: 0.9rem; color: var(--sage); font-weight: 600; }
.pkg-flag {
  position: absolute; top: -12px; left: 30px; background: var(--wattle); color: var(--ink);
  font-size: 0.72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
}
.package h3 { font-size: 1.55rem; margin: 14px 0 10px; }
.pkg-price { font-family: var(--display); font-size: 1.5rem; color: var(--eucalypt); font-weight: 600; margin: 0 0 16px; }
.pkg-price span { font-family: var(--body); font-size: 0.78rem; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.package p { color: var(--muted); font-size: 0.95rem; margin: 0 0 14px; }
.pkg-note { background: var(--sage-soft); color: var(--eucalypt); padding: 12px 14px; border-radius: var(--radius); font-size: 0.86rem !important; font-weight: 500; }
.package .btn { margin-top: auto; align-self: flex-start; }

/* --- Before / After --- */
.ba-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin: 40px 0 26px; }
.ba-tab {
  font-family: var(--body); font-weight: 600; font-size: 0.88rem; cursor: pointer;
  padding: 0.6em 1.2em; border-radius: 100px; border: 1.5px solid var(--line);
  background: #fff; color: var(--muted); transition: all .18s ease;
}
.ba-tab:hover { border-color: var(--sage); color: var(--eucalypt); }
.ba-tab.is-active { background: var(--eucalypt); border-color: var(--eucalypt); color: #fff; }

.ba-compare {
  position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: var(--radius-lg);
  overflow: hidden; user-select: none; touch-action: none; cursor: ew-resize;
  background: linear-gradient(135deg, var(--sage), var(--eucalypt));
}
.ba-img { position: absolute; inset: 0; }
.ba-img img { width: 100%; height: 100%; object-fit: cover; }
.ba-img.img-missing { display: grid; place-items: center; }
.ba-img.img-missing img { display: none; }
.ba-img.img-missing::after { content: "🌱"; font-size: 3rem; opacity: .5; }
.ba-before { clip-path: inset(0 50% 0 0); }
.ba-badge {
  position: absolute; top: 14px; font-size: 0.74rem; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 100px; color: #fff; background: rgba(0,0,0,.55);
}
.ba-badge-before { left: 14px; }
.ba-badge-after { right: 14px; }
.ba-range {
  position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; z-index: 3;
}
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; transform: translateX(-50%); z-index: 2; pointer-events: none;
}
.ba-handle span {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 42px; height: 42px; border-radius: 50%; background: #fff; box-shadow: 0 4px 14px rgba(0,0,0,.3);
  display: grid; place-items: center;
}
.ba-handle span::before { content: "⟺"; font-size: 1.1rem; color: var(--eucalypt); }
.ba-caption { margin-top: 22px; }
.ba-caption h3 { font-size: 1.5rem; }
.ba-caption p { color: var(--muted); margin: 4px 0 10px; }
.link-arrow { color: var(--wattle-deep); font-weight: 600; text-decoration: none; font-size: 0.92rem; }
.link-arrow:hover { text-decoration: underline; }

/* --- Calculator --- */
.section-dark { background: var(--charcoal); color: var(--bone); }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.light-text { color: #c9c6bd; font-size: 1.05rem; max-width: 32em; }
.calc-howto { margin-top: 28px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); padding: 22px 24px; border-radius: var(--radius); }
.calc-howto h4 { color: var(--wattle); font-size: 0.78rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 8px; font-family: var(--body); }
.calc-howto p { margin: 0; color: #d7d4cb; font-size: 0.95rem; }
.calc-howto strong { color: var(--bone); }

.calc-form { background: var(--bone); color: var(--ink); padding: 32px; border-radius: var(--radius-lg); }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label, .dims legend { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 7px; color: var(--ink); }
.field input, .field select {
  width: 100%; font-family: var(--body); font-size: 0.98rem; padding: 12px 14px;
  border: 1.5px solid var(--line); border-radius: 10px; background: #fff; color: var(--ink);
}
.field input:focus, .field select:focus { outline: none; border-color: var(--eucalypt); box-shadow: 0 0 0 3px rgba(56,80,63,.15); }
.dims { border: 0; padding: 0; margin: 0 0 18px; }
.dims legend { padding: 0; }
.dims-notsure { display: flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 0.85rem; color: var(--muted); cursor: pointer; }
.dims-notsure input { width: 16px; height: 16px; accent-color: var(--eucalypt); cursor: pointer; }
.field input:disabled { background: #f0ede6; color: var(--muted); cursor: not-allowed; }
.field-hint { font-size: 0.78rem; color: var(--muted); margin: 7px 0 0; }
.estimate-out {
  background: var(--eucalypt); color: #fff; border-radius: var(--radius);
  padding: 20px 22px; margin: 6px 0 20px; text-align: center;
}
.estimate-label { display: block; font-size: 0.76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--sage-soft); }
.estimate-value { display: block; font-family: var(--display); font-size: 2.4rem; font-weight: 600; margin: 4px 0; }
.estimate-sub { display: block; font-size: 0.8rem; color: var(--sage-soft); }
.form-status { text-align: center; font-size: 0.9rem; margin: 14px 0 0; min-height: 1.2em; }
.form-status.ok { color: var(--eucalypt); font-weight: 600; }
.form-status.err { color: #b3402f; font-weight: 600; }

/* --- Palettes --- */
.palettes { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; }
.palette { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; }
.palette .img-frame { aspect-ratio: 16 / 10; border-radius: 0; }
.palette-body { padding: 26px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.palette-body h3 { font-size: 1.45rem; margin-bottom: 6px; }
.palette-tag { color: var(--sage); font-weight: 600; font-size: 0.82rem; letter-spacing: .03em; margin: 0 0 12px; }
.palette-body > p { color: var(--muted); font-size: 0.95rem; margin: 0 0 16px; }
.varieties { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 20px !important; }
.varieties span { background: var(--bone-tint); border: 1px solid var(--line); font-size: 0.78rem; padding: 5px 11px; border-radius: 100px; color: var(--eucalypt); font-weight: 500; }
.palette .btn { margin-top: auto; align-self: flex-start; }

/* --- Plant menu --- */
.plant-menu { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 46px; }
.plant-group h4 { font-size: 1.05rem; color: var(--eucalypt); padding-bottom: 12px; margin-bottom: 14px; border-bottom: 2px solid var(--sage); font-family: var(--body); font-weight: 700; letter-spacing: .02em; }
.plant-group ul { list-style: none; margin: 0; padding: 0; }
.plant-group li { padding: 7px 0; font-size: 0.92rem; color: var(--muted); border-bottom: 1px solid var(--line); }

/* --- Compliance --- */
.compliance { padding: 70px 0; }
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 34px; }
.trust { text-align: center; padding: 22px 16px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); }
.trust strong { display: block; color: var(--wattle); font-family: var(--display); font-size: 1.05rem; margin-bottom: 4px; }
.trust span { font-size: 0.82rem; color: #c9c6bd; }
.compliance-statement { text-align: center; max-width: 52em; margin: 0 auto; color: #d7d4cb; font-size: 1.05rem; }
.compliance-statement strong { color: var(--bone); }

/* --- Footer --- */
.site-footer { background: var(--ink); color: #c9c6bd; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 44px; }
.footer-brand .brand-logo { height: 40px; margin-bottom: 14px; }
.footer-name { font-family: var(--display); font-size: 1.3rem; color: var(--bone); margin: 0; }
.footer-sub { font-size: 0.72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--sage); margin: 2px 0 16px; }
.footer-blurb { font-size: 0.9rem; max-width: 34em; margin: 0 0 10px; }
.footer-division { font-size: 0.82rem; color: #8a8880; margin: 0 0 14px; }
.footer-division a { color: #8a8880; text-decoration: underline; text-underline-offset: 2px; }
.footer-brand a { color: var(--wattle); text-decoration: none; }
.footer-col h5 { color: var(--bone); font-family: var(--body); font-size: 0.78rem; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 16px; }
.footer-col a { display: block; color: #c9c6bd; text-decoration: none; padding: 5px 0; font-size: 0.92rem; }
.footer-col a:hover { color: var(--wattle); }
.suburbs { font-size: 0.9rem; line-height: 1.9; }
.suburbs em { color: var(--sage); font-style: italic; }
.footer-base { display: flex; justify-content: space-between; padding-top: 26px; margin-top: 44px; border-top: 1px solid rgba(255,255,255,.1); font-size: 0.8rem; color: var(--muted); }

/* FOUNDING-OFFER-START */
.founding-bar { background: var(--eucalypt); color: var(--bone); padding: 11px 0; font-size: 0.88rem; }
.founding-bar-inner { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.founding-bar-badge { background: var(--wattle); color: var(--ink); font-weight: 700; font-size: 0.75rem; letter-spacing: .05em; text-transform: uppercase; padding: 3px 10px; border-radius: 100px; white-space: nowrap; }
.founding-bar-text { color: var(--sage-soft); }
.founding-bar-spots { color: var(--wattle); font-weight: 600; white-space: nowrap; }
.founding-bar-link { margin-left: auto; color: #fff; font-weight: 600; text-decoration: none; white-space: nowrap; border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 1px; }
.founding-bar-link:hover { border-color: #fff; }
.pkg-founding-flag { display: block; background: var(--wattle); color: var(--ink); font-size: 0.78rem; font-weight: 600; padding: 6px 14px; margin: -4px -28px 16px; border-radius: 0; font-style: normal; }
.pkg-founding-flag em { font-style: italic; font-weight: 400; }
.founding-toggle { display: flex; align-items: flex-start; gap: 12px; background: rgba(255,255,255,.07); border: 1.5px solid var(--wattle); border-radius: var(--radius); padding: 14px 16px; cursor: pointer; margin-bottom: 16px; }
.founding-toggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.founding-toggle-box { flex-shrink: 0; width: 20px; height: 20px; border: 2px solid var(--wattle); border-radius: 5px; margin-top: 2px; transition: background .15s; display: flex; align-items: center; justify-content: center; }
.founding-toggle input:checked ~ .founding-toggle-box { background: var(--wattle); }
.founding-toggle input:checked ~ .founding-toggle-box::after { content: ''; display: block; width: 5px; height: 9px; border: 2px solid var(--ink); border-top: none; border-left: none; transform: rotate(45deg) translateY(-1px); }
.founding-toggle-label { color: var(--bone); font-size: 0.92rem; line-height: 1.4; }
.founding-toggle-label strong { color: var(--wattle); }
.founding-toggle-sub { display: block; font-size: 0.78rem; color: var(--sage-soft); margin-top: 3px; }
/* FOUNDING-OFFER-END */

/* --- FAQ page --- */
.faq-hero { background: var(--eucalypt); color: var(--bone); padding: 72px 0 60px; }
.faq-hero .eyebrow { color: var(--sage-soft); font-size: 0.78rem; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 18px; }
.faq-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-bottom: 20px; }
.faq-hero h1 em { color: var(--wattle); font-style: italic; }
.faq-hero .lede { font-size: 1.1rem; max-width: 52em; color: var(--sage-soft); margin: 0; line-height: 1.7; }
.faq-wrap { max-width: 760px; }
.faq-category { font-size: 0.78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--sage); font-family: var(--body); font-weight: 700; margin: 0 0 36px; padding-bottom: 14px; border-bottom: 2px solid var(--line); }
.faq-item { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.faq-item h3 { font-size: 1.15rem; color: var(--eucalypt); margin-bottom: 14px; line-height: 1.3; }
.faq-item p { margin: 0; color: var(--muted); line-height: 1.75; }
.faq-item em { font-style: italic; }
.faq-link { color: var(--wattle-deep); text-decoration: none; font-weight: 600; white-space: nowrap; }
.faq-link:hover { text-decoration: underline; }
.faq-cta { text-align: center; padding: 20px 0; }
.faq-cta .section-title { margin-bottom: 16px; }
.faq-cta .light-text { max-width: 44em; margin: 0 auto 32px; }
.faq-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.main-nav a[aria-current="page"] { color: var(--wattle-deep); }

/* --- Privacy page --- */
.privacy-wrap { max-width: 720px; }
.privacy-block { margin-bottom: 44px; }
.privacy-block h2 { font-size: 1.2rem; color: var(--eucalypt); margin-bottom: 14px; }
.privacy-block p { color: var(--muted); line-height: 1.75; margin: 0 0 12px; }
.privacy-block p:last-child { margin-bottom: 0; }
.privacy-block ul { color: var(--muted); line-height: 1.75; padding-left: 20px; margin: 0 0 12px; }
.privacy-block a { color: var(--wattle-deep); text-decoration: underline; text-underline-offset: 2px; }
.privacy-link { color: var(--muted); text-decoration: none; }
.privacy-link:hover { color: var(--bone); }

/* --- Responsive --- */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-figure { order: -1; max-width: 460px; }
  .packages, .plant-menu, .trust-row { grid-template-columns: 1fr 1fr; }
  .palettes { grid-template-columns: 1fr; }
  .calc-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.open {
    display: flex; flex-direction: column; position: absolute; top: 74px; left: 0; right: 0;
    background: var(--bone); padding: 20px 24px; gap: 14px; border-bottom: 1px solid var(--line);
  }
  .section { padding: 64px 0; }
  .packages, .plant-menu, .trust-row, .footer-grid, .field-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .footer-base { flex-direction: column; gap: 8px; }
}
