/* ===========================================================
   Furzehills — shared stylesheet
   Rustic & natural theme
   =========================================================== */

:root {
  --green-900: #2f3e30;
  --green-700: #3d5a40;
  --green-500: #588157;
  --green-300: #a3b18a;
  --green-100: #dce3d2;
  --bark: #6f4e37;
  --bark-light: #8a5a44;
  --cream: #f4f1e8;
  --cream-dark: #e9e3d4;
  --charcoal: #2b2723;
  --gold: #c9a14a;
  --white: #ffffff;
  --shadow: 0 8px 30px rgba(47, 62, 48, 0.12);
  --shadow-sm: 0 3px 12px rgba(47, 62, 48, 0.10);
  --radius: 14px;
  --maxw: 1140px;
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Mukta", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  color: var(--green-900);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.35rem; }

p { margin-bottom: 1rem; }
a { color: var(--green-700); text-decoration: none; transition: color .2s; }
a:hover { color: var(--bark-light); }
img { max-width: 100%; display: block; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 78px 0; }
.section--tight { padding: 52px 0; }
.bg-cream-dark { background: var(--cream-dark); }
.bg-green { background: var(--green-700); color: var(--cream); }
.bg-green h2, .bg-green h3 { color: var(--white); }
.bg-green .card h3 { color: var(--green-900); }
.center { text-align: center; }
.lead { font-size: 1.18rem; color: #4a4640; max-width: 720px; }
.center .lead { margin-left: auto; margin-right: auto; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .76rem;
  font-weight: 700;
  color: var(--green-500);
  margin-bottom: .6rem;
  display: block;
}
.bg-green .eyebrow { color: var(--green-300); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 40px;
  font-weight: 700;
  font-size: .98rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s, box-shadow .2s, background .2s;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--green-700); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--green-900); color: var(--white); }
.btn--ghost { background: transparent; border-color: var(--cream); color: var(--cream); }
.btn--ghost:hover { background: var(--cream); color: var(--green-900); }
.btn--gold { background: var(--gold); color: #3a2e10; }
.btn--gold:hover { background: #d8b25e; color: #3a2e10; }
.btn--outline { border-color: var(--green-500); color: var(--green-700); }
.btn--outline:hover { background: var(--green-700); color: var(--cream); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 241, 232, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-dark);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__name {
  font-family: var(--font-head);
  font-size: 1.4rem; font-weight: 600; color: var(--green-900);
  letter-spacing: -0.01em;
}
.nav__links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav__links a {
  padding: 9px 14px; border-radius: 8px; font-weight: 600; font-size: .96rem;
  color: var(--charcoal);
}
.nav__links a:hover { background: var(--green-100); color: var(--green-900); }
.nav__links a.active { color: var(--green-700); background: var(--green-100); }
.nav__cta { margin-left: 6px; }
.nav__toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; flex-direction: column; gap: 5px;
  justify-content: center; align-items: center;
}
.nav__toggle span { width: 24px; height: 2.5px; background: var(--green-900); border-radius: 2px; transition: .25s; }
.nav__toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--cream); padding: 14px 22px 22px;
    border-bottom: 1px solid var(--cream-dark);
    box-shadow: var(--shadow);
    transform: translateY(-140%); transition: transform .3s; z-index: -1;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: 12px 14px; font-size: 1.05rem; }
  .nav__cta { margin: 8px 0 0; }
  .nav__cta .btn { width: 100%; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; color: var(--cream);
  display: flex; align-items: center;
  min-height: 76vh; padding: 90px 0;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg svg { width: 100%; height: 100%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(34,46,35,.30) 0%, rgba(34,46,35,.55) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: var(--white); max-width: 16ch; text-shadow: 0 2px 18px rgba(20,28,20,.45); }
.hero p { font-size: 1.25rem; max-width: 38ch; margin: 1.2rem 0 1.8rem; color: #f2efe4; text-shadow: 0 1px 10px rgba(20,28,20,.4); }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* page banner (interior pages) */
.banner {
  position: relative; color: var(--cream);
  padding: 70px 0; overflow: hidden;
}
.banner__bg { position: absolute; inset: 0; z-index: 0; }
.banner__bg svg { width: 100%; height: 100%; }
.banner::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(34,46,35,.45), rgba(34,46,35,.6));
}
.banner .container { position: relative; z-index: 2; }
.banner h1 { color: var(--white); }
.banner p { color: #eee7d6; max-width: 56ch; font-size: 1.12rem; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 26px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .grid--3 { grid-template-columns: 1fr; } .grid--2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__img { height: 190px; position: relative; }
.card__img svg, .card__img img { width: 100%; height: 100%; display: block; object-fit: cover; }
.card__body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.card__body h3 { margin-bottom: .5rem; }
.card__body p { color: #4a4640; font-size: .98rem; }
.card__link { margin-top: auto; font-weight: 700; padding-top: 10px; }
.card__link::after { content: " \2192"; }

/* feature row (image + text alternating) */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.feature + .feature { margin-top: 70px; }
.feature__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 320px; }
.feature__media svg { width: 100%; height: 100%; display: block; }
.feature__media img { width: 100%; height: 100%; display: block; object-fit: cover; }
.feature__media.has-photo { height: 480px; }
.feature--rev .feature__text { order: 2; }
.feature--rev .feature__media { order: 1; }
@media (max-width: 860px) {
  .feature { grid-template-columns: 1fr; gap: 24px; }
  .feature--rev .feature__text, .feature--rev .feature__media { order: initial; }
  .feature__media { min-height: 220px; }
  .feature__media.has-photo { height: 300px; }
}

/* checklist */
.checks { list-style: none; margin: 1rem 0; }
.checks li { padding: 6px 0 6px 30px; position: relative; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: 13px;
  width: 16px; height: 9px; border-left: 3px solid var(--green-500);
  border-bottom: 3px solid var(--green-500); transform: rotate(-45deg);
}

/* pill tags */
.tags { display: flex; flex-wrap: wrap; gap: 9px; margin: 14px 0; }
.tag {
  background: var(--green-100); color: var(--green-900);
  padding: 5px 14px; border-radius: 30px; font-size: .85rem; font-weight: 600;
}

/* info strip */
.strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; text-align: center; }
.strip__item { padding: 10px; }
.strip__num { font-family: var(--font-head); font-size: 2.6rem; color: var(--gold); font-weight: 600; }
.strip__label { font-weight: 600; color: var(--cream); letter-spacing: .03em; }
@media (max-width: 700px){ .strip { grid-template-columns: 1fr; gap: 8px; } }

/* notice / placeholder box */
.notice {
  border: 2px dashed var(--green-300); background: var(--green-100);
  border-radius: var(--radius); padding: 22px 24px; margin: 18px 0;
}
.notice strong { color: var(--green-900); }

/* ---------- Forms ---------- */
.form { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px){ .form .row { grid-template-columns: 1fr; } }
.field { margin-bottom: 16px; display: flex; flex-direction: column; }
.field label { font-weight: 600; font-size: .92rem; margin-bottom: 6px; color: var(--green-900); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; padding: 12px 14px;
  border: 1.5px solid var(--cream-dark); border-radius: 10px; background: var(--cream);
  color: var(--charcoal); transition: border .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(88,129,87,.18); background: #fff;
}
.field textarea { resize: vertical; min-height: 110px; }
.form__note { font-size: .85rem; color: #6b6660; margin-top: 8px; }
.form__success {
  display: none; background: var(--green-100); border: 1.5px solid var(--green-300);
  color: var(--green-900); padding: 16px 18px; border-radius: 10px; margin-bottom: 16px; font-weight: 600;
}

/* contact details list */
.contact-list { list-style: none; }
.contact-list li { padding: 10px 0; border-bottom: 1px solid var(--cream-dark); display: flex; gap: 12px; align-items: flex-start; }
.contact-list li:last-child { border-bottom: 0; }
.contact-list .ic { color: var(--green-500); flex: none; margin-top: 3px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-900); color: #cdd6c4; padding: 60px 0 26px; }
.site-footer a { color: #e3e9d9; }
.site-footer a:hover { color: var(--white); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 36px; }
@media (max-width: 760px){ .footer__grid { grid-template-columns: 1fr; gap: 26px; } }
.footer__grid h4 { color: var(--cream); margin-bottom: 14px; font-size: 1.05rem; }
.footer__grid ul { list-style: none; }
.footer__grid li { padding: 5px 0; }
.footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer__brand .brand__name { color: var(--cream); }
.footer__bottom {
  margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .88rem; color: #9fae93;
}

/* reveal on scroll — only hidden when JS is active (progressive enhancement) */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}
