/* =================================================================
   WALKERS WOOD — SHARED STYLESHEET
   All pages link to this single CSS file.
   ================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  --c1: #3E4541;   /* dark sage */
  --c2: #F5F5F5;   /* light grey */
  --c3: #CCCCCC;   /* mid grey */
  --c4: #939A96;   /* muted grey-green */
  --c6: #5B6600;   /* olive green — primary brand */
  --c7: #BDC4C0;   /* pale sage */
  --c8: #F3F8F0;   /* off-white green — page bg */
  --c9: #171A00;   /* near-black olive — dark sections */
  --white: #FFFFFF;
  --red: #C0392B;
  --amber: #E67E22;
  --green: #27ae60;
  --font: 'Open Sans', sans-serif;
  --ease: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1200px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; overflow-x: hidden; }
body {
  font-family: var(--font);
  background: var(--c8);
  color: var(--c9);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: var(--font); }

/* ── LAYOUT ── */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.wrap--narrow { max-width: 820px; }

/* ── TYPOGRAPHY ── */
.label {
  font-size: 0.67rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--c6); margin-bottom: 0.55rem; display: block;
}
.label--light { color: var(--c7); }
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700;
  line-height: 1.15; color: var(--c9); margin-bottom: 1.2rem;
}
.section-title span { font-weight: 300; color: var(--c1); }
.section-title--light { color: var(--white); }
.section-title--light span { color: var(--c7); }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--c1); border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; height: 64px;
}
.header-logo { height: 40px; width: auto; cursor: pointer; }
.header-logo img { height: 100%; width: auto; }
.header-nav { display: flex; align-items: center; gap: 0.2rem; }
.header-nav a {
  color: var(--c2); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.04em; padding: 0.5rem 0.9rem;
  transition: color var(--ease); position: relative;
}
.header-nav a:hover,
.header-nav a.active { color: var(--white); }
.header-nav a.active::after {
  content: ''; position: absolute; bottom: -2px; left: 0.9rem; right: 0.9rem;
  height: 2px; background: var(--c6);
}
.header-cta {
  background: var(--c6); color: var(--c8); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 0.55rem 1.1rem;
  border: none; cursor: pointer; transition: var(--ease); margin-left: 0.5rem;
}
.header-cta:hover { background: var(--white); color: var(--c9); }

/* Hamburger */
.hamburger {
  display: none; background: none; border: none; cursor: pointer; padding: 0.5rem;
  flex-direction: column; gap: 5px; z-index: 1001;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--c2);
  transition: var(--ease);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav overlay */
.mobile-nav {
  display: none; position: fixed; inset: 0; background: var(--c1);
  z-index: 999; flex-direction: column; align-items: center;
  justify-content: center; gap: 1rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--c2); font-size: 1.1rem; font-weight: 600; padding: 0.6rem 1.5rem;
  transition: color var(--ease);
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--white); }

/* ── FOOTER ── */
.site-footer { background: var(--c9); padding: 4rem 0 1.5rem; width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; }
.footer-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-grid > div:first-child { overflow: hidden; }
.footer-logo { display: block; max-width: 180px; margin-bottom: 1.2rem; }
.footer-logo img { width: 100%; height: auto; }
.footer-desc { font-size: 0.78rem; color: var(--c7); line-height: 1.7; margin-bottom: 1rem; }
.footer-badges { display: flex; gap: 0.8rem; align-items: center; flex-wrap: wrap; }
.footer-badges img { height: 55px; width: auto; }
.footer-heading {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--c7); margin-bottom: 1.2rem;
}
.footer-links a {
  display: block; font-size: 0.82rem; color: rgba(255,255,255,0.6);
  padding: 0.3rem 0; transition: color var(--ease);
}
.footer-links a:hover { color: var(--white); }
.footer-contact p {
  font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: 0.5rem;
}
.footer-contact a { color: var(--c7); font-weight: 600; transition: color var(--ease); }
.footer-contact a:hover { color: var(--white); }
.footer-socials { display: flex; gap: 0.5rem; margin-top: 1rem; }
.footer-socials a {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: var(--ease);
}
.footer-socials a:hover { border-color: var(--c6); background: rgba(91,102,0,0.2); }
.footer-socials svg { width: 18px; height: 18px; stroke: var(--c7); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.footer-socials a:hover svg { stroke: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a {
  font-size: 0.72rem; color: rgba(255,255,255,0.35);
  transition: color var(--ease);
}
.footer-legal a:hover { color: var(--c7); }

/* ── COOKIE BANNER ── */
.cookie-banner {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--c9); border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.2rem 2rem; z-index: 9999;
}
.cookie-banner.show { display: block; }
.cookie-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.cookie-text { font-size: 0.8rem; color: var(--c7); line-height: 1.6; flex: 1; min-width: 280px; }
.cookie-text a { color: var(--white); font-weight: 600; text-decoration: underline; }
.cookie-btns { display: flex; gap: 0.6rem; flex-shrink: 0; }
.cookie-accept {
  background: var(--c6); color: var(--c8); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 0.6rem 1.2rem;
  border: none; cursor: pointer; transition: var(--ease);
}
.cookie-accept:hover { background: var(--white); color: var(--c9); }
.cookie-decline {
  background: transparent; color: var(--c7); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 0.6rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.2); cursor: pointer; transition: var(--ease);
}
.cookie-decline:hover { border-color: var(--c7); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; background: var(--c6); color: var(--c8);
  font-family: var(--font); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.95rem 2rem; border: 2px solid var(--c6);
  cursor: pointer; transition: var(--ease); text-align: center;
}
.btn-primary:hover { background: var(--c9); border-color: var(--c6); }
.btn-outline {
  display: inline-block; background: transparent; color: var(--white);
  font-family: var(--font); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.95rem 2rem; border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer; transition: var(--ease); text-align: center;
}
.btn-outline:hover { border-color: var(--white); }
.btn-outline-dark {
  display: inline-block; background: transparent; color: var(--c1);
  font-family: var(--font); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.9rem 1.8rem; border: 2px solid var(--c1);
  cursor: pointer; transition: var(--ease); text-align: center;
}
.btn-outline-dark:hover { background: var(--c1); color: var(--c8); }
.btn-dark {
  display: inline-block; background: var(--c9); color: var(--c8);
  font-family: var(--font); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.65rem 1rem; border: 2px solid var(--c9);
  cursor: pointer; transition: var(--ease); text-align: center;
}
.btn-dark:hover { background: var(--c6); border-color: var(--c6); }
.btn-white {
  display: inline-block; background: var(--white); color: var(--c9);
  font-family: var(--font); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.9rem 1.8rem; border: 2px solid var(--white);
  cursor: pointer; transition: var(--ease); text-align: center;
}
.btn-white:hover { background: transparent; color: var(--white); }
.btn-ghost {
  display: inline-block; background: transparent; color: var(--white);
  font-family: var(--font); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.9rem 1.8rem; border: 2px solid rgba(255,255,255,0.45);
  cursor: pointer; transition: var(--ease); text-align: center;
}
.btn-ghost:hover { border-color: var(--white); }

/* ── BANNER ── */
.banner {
  background: var(--c6); color: var(--c8); text-align: center;
  padding: 0.65rem 1rem; font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; flex-wrap: wrap;
}
.banner a {
  color: var(--white); font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  transition: border-color var(--ease);
}
.banner a:hover { border-color: var(--white); }
.banner--dark { background: var(--c9); }
.banner--dark a { color: var(--c7); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 92vh; display: flex;
  align-items: center; overflow: hidden; background: var(--c9);
}
.hero--short { min-height: 48vh; }
.hero--xs { min-height: 36vh; }
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to right,
    rgba(23,26,0,0.88) 0%,
    rgba(23,26,0,0.55) 55%,
    rgba(23,26,0,0.2) 100%
  );
}
.hero-c {
  position: relative; z-index: 2; max-width: var(--max-w);
  margin: 0 auto; padding: 3.5rem 2.5rem; width: 100%;
}
.hero-inner { max-width: 600px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(91,102,0,0.45); border: 1px solid rgba(91,102,0,0.8);
  color: var(--c8); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.4rem 0.9rem; margin-bottom: 1.2rem;
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--c8); flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700;
  line-height: 1.1; color: var(--white); margin-bottom: 0.5rem;
}
.hero h1 span { font-weight: 300; color: var(--c7); }
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.25rem); font-weight: 300;
  color: rgba(255,255,255,0.65); margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.hero-desc {
  font-size: 0.9rem; font-weight: 300; color: rgba(255,255,255,0.8);
  line-height: 1.75; max-width: 480px; margin-bottom: 2rem;
}
.hero-price { font-weight: 700; color: var(--c7); }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(91,102,0,0.35); border: 1px solid rgba(91,102,0,0.6);
  color: var(--c8); font-size: 0.76rem; font-weight: 600;
  padding: 0.45rem 0.9rem; margin-top: 1rem;
}

/* ── TRUST BAR ── */
.trust { background: var(--c1); padding: 2.2rem 0; }
.trust-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.trust-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 0.5rem 2rem; border-right: 1px solid rgba(255,255,255,0.12);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 42px; height: 42px; flex-shrink: 0; background: var(--c6);
  display: flex; align-items: center; justify-content: center;
}
.trust-icon svg {
  width: 20px; height: 20px; stroke: var(--c8); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.trust-text strong {
  display: block; font-size: 0.82rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.15rem;
}
.trust-text p { font-size: 0.75rem; color: var(--c7); line-height: 1.4; }

/* ── LOGO BAR ── */
.logo-bar {
  background: var(--c9); display: flex; justify-content: center;
  align-items: center; padding: 2.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.logo-bar img { max-width: 260px; width: 100%; height: auto; }

/* ── PRODUCT CARDS ── */
.products { background: var(--c8); padding: 5.5rem 0; }
.products-hdr { text-align: center; margin-bottom: 3.5rem; }
.products-hdr p {
  font-size: 0.95rem; color: var(--c4); max-width: 520px;
  margin: 0.8rem auto 0; line-height: 1.7;
}
.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 1.5rem; }
.pgrid2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-bottom: 2.5rem; }
.card {
  background: var(--white); border: 1px solid var(--c3); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(23,26,0,0.12);
}
.card.selected { border: 2px solid var(--c6); box-shadow: 0 0 0 3px rgba(91,102,0,0.15); }
.card-img {
  height: 230px; overflow: hidden; position: relative;
  background: var(--c3); flex-shrink: 0;
}
.card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .card-img img { transform: scale(1.04); }
.cbadge {
  position: absolute; top: 0.8rem; right: 0.8rem;
  background: var(--c9); color: var(--c8);
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.28rem 0.65rem;
}
.cbadge.g { background: var(--c6); }
.card-body { padding: 1.3rem; flex: 1; display: flex; flex-direction: column; }
.card-sp {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--c6); margin-bottom: 0.3rem;
}
.card-name {
  font-size: 1.15rem; font-weight: 700; color: var(--c9);
  margin-bottom: 0.45rem; line-height: 1.25;
}
.card-desc {
  font-size: 0.78rem; color: var(--c4); line-height: 1.6;
  margin-bottom: auto; padding-bottom: 0.9rem;
}
.card-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 0.9rem; border-top: 1px solid var(--c3); margin-top: auto;
}
.price { font-size: 1.4rem; font-weight: 700; color: var(--c9); }
.price small { font-size: 0.62rem; font-weight: 400; color: var(--c4); display: block; }
.price s { font-size: 0.75rem; color: var(--c4); font-weight: 400; display: block; }
.sel-btn {
  background: var(--c9); color: var(--c8); font-family: var(--font);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.65rem 1rem; border: 2px solid var(--c9);
  cursor: pointer; transition: var(--ease);
}
.sel-btn:hover, .card.selected .sel-btn { background: var(--c6); border-color: var(--c6); }
.card.selected .sel-btn::after { content: ' ✓'; }
.pfooter { text-align: center; }
.pnote { font-size: 0.78rem; color: var(--c4); margin-top: 0.9rem; }

/* ── ADDON / STACKING BAR ── */
.addon {
  background: var(--c1); color: var(--white);
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 2rem; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem;
}
.addon-l strong { display: block; font-size: 0.88rem; font-weight: 700; margin-bottom: 0.2rem; }
.addon-l p { font-size: 0.76rem; color: var(--c7); line-height: 1.5; max-width: 520px; }
.addon-r { display: flex; align-items: center; gap: 1.2rem; flex-shrink: 0; }
.addon-price { font-size: 1.5rem; font-weight: 700; text-align: right; }
.addon-price small { font-size: 0.68rem; font-weight: 300; color: var(--c7); display: block; }
.toggle { display: flex; align-items: center; gap: 0.6rem; cursor: pointer; font-size: 0.8rem; color: var(--c7); }
.toggle input { width: 18px; height: 18px; accent-color: var(--c6); cursor: pointer; }

/* Kindling row */
.kindling-row {
  display: none; background: var(--c8); border: 1px solid var(--c3);
  padding: 1.2rem 1.5rem; margin-bottom: 1.5rem;
}
.kindling-row label { font-size: 0.78rem; font-weight: 700; color: var(--c9); margin-bottom: 0.5rem; display: block; }
.kindling-row input {
  width: 100px; padding: 0.6rem 0.8rem; border: 1px solid var(--c3);
  font-family: var(--font); font-size: 0.9rem; outline: none;
}
.kindling-row input:focus { border-color: var(--c6); }
.kindling-row span { font-size: 0.78rem; color: var(--c4); margin-left: 0.6rem; }

/* Checkout bar */
.checkout-bar {
  background: var(--c9); padding: 1.5rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.checkout-bar p { font-size: 0.82rem; color: var(--c7); }
.checkout-bar p strong { color: var(--white); }
.open-checkout {
  background: var(--c6); color: var(--c8); font-family: var(--font);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.9rem 1.8rem; border: none;
  cursor: pointer; transition: var(--ease);
}
.open-checkout:hover { background: var(--white); color: var(--c9); }
.open-checkout:disabled { opacity: 0.4; cursor: not-allowed; }

/* Discount bar */
.disc-bar {
  background: var(--c6); color: var(--c8); text-align: center;
  padding: 0.8rem 1rem; font-size: 0.82rem; font-weight: 600;
}
.disc-bar span { font-weight: 300; margin-left: 0.3rem; }

/* ── GALLERY ── */
.gallery { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; height: 320px; }
.gallery--even { grid-template-columns: repeat(4, 1fr); }
.gallery--short { height: 240px; }
.gslot { overflow: hidden; background: var(--c1); }
.gslot img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s ease;
}
.gslot:hover img { transform: scale(1.05); }

/* ── ABOUT SECTION (homepage) ── */
.about { background: var(--c9); overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; }
.about-img { position: relative; overflow: hidden; background: var(--c1); }
.about-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-fade {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 65%, var(--c9) 100%);
}
.about-content {
  padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center;
}
.about-body {
  font-size: 0.92rem; font-weight: 300; color: rgba(255,255,255,0.72);
  line-height: 1.8; margin-bottom: 1.2rem;
}
.woodsure {
  display: flex; align-items: center; gap: 0.9rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  padding: 0.9rem 1.2rem; margin: 1.4rem 0 1.8rem;
}
.woodsure img { width: 48px; height: auto; }
.woodsure-t strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--white); }
.woodsure-t p { font-size: 0.73rem; color: var(--c7); }

/* ── HOW IT WORKS ── */
.how { background: var(--c2); padding: 6rem 0; }
.how-hdr { text-align: center; margin-bottom: 4rem; }
.how-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem; position: relative;
}
.how-grid::before {
  content: ''; position: absolute; top: 27px;
  left: calc(12.5% + 27px); right: calc(12.5% + 27px);
  height: 1px; background: var(--c3);
}
.how-step { text-align: center; position: relative; z-index: 1; }
.how-num {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--c2); border: 2px solid var(--c6);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.3rem; font-size: 1.15rem; color: var(--c6); font-weight: 700;
}
.how-step h3 { font-size: 1rem; font-weight: 700; color: var(--c9); margin-bottom: 0.5rem; }
.how-step p { font-size: 0.8rem; color: var(--c4); line-height: 1.6; }

/* ── REVIEWS ── */
.reviews { background: var(--c1); padding: 6rem 0; }
.reviews-hdr { text-align: center; margin-bottom: 3.5rem; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.rev-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--c6); padding: 1.8rem;
}
.rev-stars { display: flex; gap: 3px; margin-bottom: 0.9rem; }
.star { width: 13px; height: 13px; fill: var(--c6); }
.rev-text {
  font-style: italic; font-size: 0.95rem;
  color: rgba(255,255,255,0.85); line-height: 1.65; margin-bottom: 1.1rem;
}
.rev-author {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--c7);
}

/* ── CTA SECTION ── */
.cta {
  position: relative; padding: 7rem 0; text-align: center; overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.cta-ov { position: absolute; inset: 0; background: rgba(23,26,0,0.78); }
.cta-c {
  position: relative; z-index: 2; max-width: 640px;
  margin: 0 auto; padding: 0 2rem;
}
.cta-title {
  font-size: clamp(1.9rem, 3.5vw, 3rem); font-weight: 700;
  color: var(--white); line-height: 1.2; margin-bottom: 1.1rem;
}
.cta-title span { font-weight: 300; color: var(--c7); }
.cta-desc {
  font-size: 0.95rem; font-weight: 300; color: rgba(255,255,255,0.72);
  line-height: 1.75; margin-bottom: 2.2rem;
}
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.cta-phone {
  background: none; border: none; color: rgba(255,255,255,0.5);
  font-size: 0.8rem; cursor: pointer; font-family: var(--font);
  transition: color var(--ease);
}
.cta-phone:hover { color: var(--c7); }

/* ── SPECIES SECTION (shop) ── */
.species { background: var(--c9); padding: 4.5rem 0; }
.species-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.sc {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  padding: 1.6rem 1.4rem;
}
.sc .tag {
  display: inline-block; background: var(--c6); color: var(--c8);
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.2rem 0.6rem; margin-bottom: 0.6rem;
}
.sc h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.sc p { font-size: 0.78rem; color: var(--c7); line-height: 1.65; }

/* ── WHY US BAR ── */
.why { background: var(--c1); padding: 3.5rem 0; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.wi { text-align: center; }
.wi-icon {
  width: 46px; height: 46px; background: var(--c6);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.9rem;
}
.wi-icon svg {
  width: 20px; height: 20px; stroke: var(--c8); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.wi strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--white); margin-bottom: 0.25rem; }
.wi p { font-size: 0.73rem; color: var(--c7); line-height: 1.5; }

/* ── MODAL (checkout) ── */
.modal-bg {
  display: none; position: fixed; inset: 0;
  background: rgba(23,26,0,0.78); z-index: 9999;
  align-items: flex-start; justify-content: center;
  padding: 2rem 1rem; overflow-y: auto;
}
.modal-bg.open { display: flex; }
.modal { background: var(--white); width: 100%; max-width: 660px; position: relative; margin: auto; }
.modal-hdr {
  background: var(--c9); padding: 1.4rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.modal-hdr h2 { font-size: 1.2rem; font-weight: 700; color: var(--white); }
.modal-hdr h2 span { font-weight: 300; color: var(--c7); }
.modal-close {
  background: none; border: none; color: rgba(255,255,255,0.6);
  font-size: 1.6rem; cursor: pointer; line-height: 1;
}
.modal-close:hover { color: var(--white); }
.modal-body { padding: 1.8rem; }
.order-summary { background: var(--c8); border: 1px solid var(--c3); padding: 1.2rem 1.5rem; margin-bottom: 1.6rem; }
.order-summary h3 {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--c6); margin-bottom: 0.8rem;
}
.sum-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.84rem; padding: 0.3rem 0; }
.sum-row.total { font-weight: 700; font-size: 0.95rem; border-top: 1px solid var(--c3); padding-top: 0.7rem; margin-top: 0.4rem; }
.sum-row.free-del { color: var(--green); font-weight: 600; }

/* ── FORMS ── */
.field { margin-bottom: 1.2rem; }
.field label {
  display: block; font-size: 0.73rem; font-weight: 700;
  color: var(--c9); margin-bottom: 0.38rem; letter-spacing: 0.04em;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 0.72rem 0.9rem; border: 1px solid var(--c3);
  background: var(--white); font-family: var(--font); font-size: 0.86rem;
  color: var(--c9); outline: none; transition: border-color var(--ease);
  border-radius: 0; -webkit-appearance: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--c6); }
.field textarea { min-height: 80px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field-note { font-size: 0.71rem; color: var(--c4); margin-top: 0.35rem; line-height: 1.5; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23939A96' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2rem;
}

/* Postcode checker */
.pc-wrap { display: flex; gap: 0.6rem; margin-bottom: 0.5rem; }
.pc-wrap input { flex: 1; }
.check-btn {
  background: var(--c9); color: var(--c8); font-family: var(--font);
  font-size: 0.73rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.72rem 1.1rem; border: none;
  cursor: pointer; transition: var(--ease); white-space: nowrap; flex-shrink: 0;
}
.check-btn:hover { background: var(--c6); }
.check-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* Delivery result badges */
.del-result {
  padding: 0.75rem 1rem; font-size: 0.82rem; font-weight: 600;
  margin-bottom: 0.3rem; display: none;
}
.del-result.free { background: #e8f5e9; color: #1b5e20; border-left: 3px solid var(--green); }
.del-result.paid { background: #fff8e1; color: #e65100; border-left: 3px solid var(--amber); }
.del-result.blocked { background: #fce4e4; color: var(--red); border-left: 3px solid var(--red); }
.del-result.error { background: #fce4e4; color: var(--red); border-left: 3px solid var(--red); }
.del-msg {
  font-size: 0.76rem; color: var(--c4); line-height: 1.5;
  padding: 0.6rem 1rem; background: var(--c8); border: 1px solid var(--c3);
  margin-bottom: 1rem; display: none;
}

/* Date / form sections */
.date-section { display: none; }
.date-section.visible { display: block; }
.divider { height: 1px; background: var(--c3); margin: 1.4rem 0; }
.submit-btn {
  width: 100%; background: var(--c6); color: var(--c8);
  font-family: var(--font); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 1rem; border: none; cursor: pointer;
  transition: var(--ease); margin-top: 0.5rem;
}
.submit-btn:hover { background: var(--c9); }
.submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.form-note { font-size: 0.7rem; color: var(--c4); text-align: center; margin-top: 0.8rem; line-height: 1.6; }

/* Success box */
.success-box { display: none; text-align: center; padding: 2.5rem 2rem; }
.success-box svg {
  width: 52px; height: 52px; stroke: var(--green); fill: none;
  stroke-width: 1.5; margin: 0 auto 1rem;
}
.success-box h3 { font-size: 1.4rem; font-weight: 700; color: var(--c9); margin-bottom: 0.6rem; }
.success-box p { font-size: 0.86rem; color: var(--c4); line-height: 1.7; margin-bottom: 1.5rem; }

/* Spinner */
.spinner {
  display: inline-block; width: 13px; height: 13px;
  border: 2px solid rgba(255,255,255,0.3); border-top-color: var(--white);
  border-radius: 50%; animation: spin 0.7s linear infinite;
  vertical-align: middle; margin-right: 5px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Form success message */
.form-success {
  display: none; background: var(--c8); border: 1px solid var(--c3);
  border-left: 3px solid var(--c6); padding: 1.1rem 1.4rem; margin-top: 1rem;
}
.form-success p { font-size: 0.84rem; color: var(--c9); line-height: 1.6; }
.form-success a { color: var(--c6); font-weight: 700; }

/* ── STORY SECTION (about page) ── */
.story { padding: 6rem 0; background: var(--c8); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.story-img { position: relative; overflow: hidden; }
.story-img img { width: 100%; height: 520px; object-fit: cover; object-position: center top; }
.story-accent {
  position: absolute; bottom: -1rem; right: -1rem;
  width: 110px; height: 110px; background: var(--c6);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; color: var(--c8); text-align: center; padding: 1rem;
}
.story-accent strong { font-size: 1.8rem; font-weight: 700; line-height: 1; }
.story-accent em { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-style: normal; margin-top: 0.2rem; }
.story-body { font-size: 0.92rem; font-weight: 300; color: var(--c4); line-height: 1.85; margin-bottom: 1.2rem; }
.story-body strong { font-weight: 600; color: var(--c9); }

/* Woodsure section */
.woodsure-sec { background: var(--c9); padding: 3.5rem 0; }
.ws-inner {
  display: grid; grid-template-columns: auto 1fr; gap: 3rem;
  align-items: center; max-width: 860px; margin: 0 auto; padding: 0 2rem;
}
.ws-inner img { width: 110px; }
.ws-text h2 { font-size: 1.6rem; font-weight: 700; color: var(--white); margin-bottom: 0.8rem; }
.ws-text h2 span { font-weight: 300; color: var(--c7); }
.ws-text p { font-size: 0.88rem; font-weight: 300; color: rgba(255,255,255,0.7); line-height: 1.8; }

/* Values grid */
.values { background: var(--c2); padding: 5.5rem 0; }
.values-hdr { text-align: center; margin-bottom: 3.5rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.val { background: var(--white); border: 1px solid var(--c3); border-top: 3px solid var(--c6); padding: 2rem 1.8rem; }
.val-icon {
  width: 46px; height: 46px; background: var(--c8);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem;
}
.val-icon svg {
  width: 20px; height: 20px; stroke: var(--c6); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.val h3 { font-size: 1.05rem; font-weight: 700; color: var(--c9); margin-bottom: 0.55rem; }
.val p { font-size: 0.8rem; color: var(--c4); line-height: 1.65; }

/* ── SERVICES ── */
.svc {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 400px;
  margin-bottom: 2rem; overflow: hidden; border: 1px solid var(--c3);
}
.svc.rev { direction: rtl; }
.svc.rev > * { direction: ltr; }
.svc-img { overflow: hidden; background: var(--c1); position: relative; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.svc:hover .svc-img img { transform: scale(1.04); }
.svc-body {
  background: var(--white); padding: 3rem;
  display: flex; flex-direction: column; justify-content: center;
}
.svc-num { font-size: 3rem; font-weight: 300; color: var(--c3); line-height: 1; margin-bottom: 0.5rem; }
.svc-body h2 { font-size: 1.45rem; font-weight: 700; color: var(--c9); margin-bottom: 0.9rem; line-height: 1.25; }
.svc-body p { font-size: 0.84rem; color: var(--c4); line-height: 1.75; margin-bottom: 1.1rem; }
.svc-body p strong { color: var(--c9); font-weight: 600; }
.svc-tag {
  display: inline-block; background: var(--c8); border: 1px solid var(--c3);
  font-size: 0.63rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--c6); padding: 0.22rem 0.65rem; margin-bottom: 1.1rem;
}
.svc-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--c6); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: gap var(--ease);
}
.svc-link:hover { gap: 0.7rem; }

/* ── FAQ ACCORDION ── */
.faqs-sec { padding: 5.5rem 0; background: var(--c8); }
.faqs-hdr { text-align: center; margin-bottom: 3.5rem; }
.cat-group { margin-bottom: 3rem; }
.cat-title {
  font-size: 1.05rem; font-weight: 700; color: var(--c9);
  padding-bottom: 0.8rem; border-bottom: 2px solid var(--c6);
  margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.6rem;
}
.cat-title svg {
  width: 16px; height: 16px; stroke: var(--c6); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0;
}
.faq-item { border-bottom: 1px solid var(--c3); }
.faq-q {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1rem; padding: 1.1rem 0; cursor: pointer;
  font-size: 0.88rem; font-weight: 600; color: var(--c9); line-height: 1.4;
  transition: color var(--ease);
}
.faq-q:hover { color: var(--c6); }
.faq-q svg {
  width: 16px; height: 16px; stroke: var(--c6); fill: none;
  stroke-width: 2; flex-shrink: 0; margin-top: 2px;
  transition: transform var(--ease);
}
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner { padding-bottom: 1.2rem; }
.faq-a p { font-size: 0.83rem; color: var(--c4); line-height: 1.8; }
.faq-a p + p { margin-top: 0.6rem; }
.faq-a a { color: var(--c6); font-weight: 600; }
.faq-a strong { color: var(--c9); font-weight: 600; }

/* ── CONTACT ── */
.contact-sec { padding: 5.5rem 0; background: var(--c8); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-details h2 { font-size: 1.5rem; font-weight: 700; color: var(--c9); margin-bottom: 1.8rem; }
.contact-details h2 span { font-weight: 300; color: var(--c1); }
.cm { display: flex; align-items: flex-start; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--c3); }
.cm:first-of-type { border-top: 1px solid var(--c3); }
.cm-icon {
  width: 40px; height: 40px; background: var(--c6);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cm-icon svg {
  width: 17px; height: 17px; stroke: var(--c8); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.cm-text strong { display: block; font-size: 0.78rem; font-weight: 700; color: var(--c9); margin-bottom: 0.12rem; }
.cm-text a { font-size: 0.86rem; color: var(--c6); font-weight: 600; transition: color var(--ease); }
.cm-text a:hover { color: var(--c9); }
.cm-text p { font-size: 0.76rem; color: var(--c4); line-height: 1.5; }

/* Hours */
.hours { background: var(--c1); padding: 1.4rem; margin-top: 1.6rem; }
.hours h3 { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c7); margin-bottom: 0.8rem; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.8rem; padding: 0.28rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { color: var(--c7); }
.hours-row span:last-child { color: var(--white); font-weight: 600; }

/* Socials */
.socials { display: flex; gap: 0.6rem; margin-top: 1.6rem; }
.social-btn {
  width: 40px; height: 40px; border: 1px solid var(--c3);
  display: flex; align-items: center; justify-content: center;
  color: var(--c4); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.04em;
  transition: var(--ease);
}
.social-btn:hover { border-color: var(--c6); color: var(--c6); }
.form-wrap h2 { font-size: 1.5rem; font-weight: 700; color: var(--c9); margin-bottom: 1.8rem; }
.form-wrap h2 span { font-weight: 300; color: var(--c1); }

/* Delivery zones */
.delivery-sec { background: var(--c9); padding: 3.5rem 0; }
.da-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.da-text h2 { font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 0.8rem; }
.da-text h2 span { font-weight: 300; color: var(--c7); }
.da-text p { font-size: 0.84rem; font-weight: 300; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 0.7rem; }
.da-text a { color: var(--c7); font-weight: 700; }
.da-text a:hover { color: var(--white); }
.btn-sm {
  display: inline-block; margin-top: 1rem; background: var(--c6); color: var(--c8);
  font-family: var(--font); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.82rem 1.5rem; transition: var(--ease);
}
.btn-sm:hover { background: var(--white); color: var(--c9); }
.zones { display: flex; flex-direction: column; gap: 0.6rem; }
.zone { display: flex; align-items: center; gap: 0.9rem; padding: 0.9rem 1.2rem; border: 1px solid rgba(255,255,255,0.1); }
.zdot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.zdot.f { background: #4caf50; }
.zdot.p { background: #ff9800; }
.zdot.o { background: #f44336; }
.zone strong { display: block; font-size: 0.8rem; font-weight: 700; color: var(--white); }
.zone p { font-size: 0.72rem; color: var(--c7); }

/* ── STILL GOT QUESTIONS ── */
.still { background: var(--c1); padding: 4rem 0; text-align: center; }
.still h2 { font-size: 1.8rem; font-weight: 700; color: var(--white); margin-bottom: 0.6rem; }
.still h2 span { font-weight: 300; color: var(--c7); }
.still p { font-size: 0.88rem; font-weight: 300; color: var(--c7); margin-bottom: 1.8rem; max-width: 420px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.still-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── LEGAL PAGES ── */
.legal { padding: 4rem 0; background: var(--c8); }
.legal h2 { font-size: 1.3rem; font-weight: 700; color: var(--c9); margin: 2rem 0 0.8rem; }
.legal h3 { font-size: 1rem; font-weight: 700; color: var(--c9); margin: 1.5rem 0 0.5rem; }
.legal p { font-size: 0.86rem; color: var(--c4); line-height: 1.8; margin-bottom: 0.8rem; }
.legal ul { margin-left: 1.5rem; margin-bottom: 1rem; list-style: disc; }
.legal ul li { font-size: 0.86rem; color: var(--c4); line-height: 1.8; margin-bottom: 0.3rem; }
.legal a { color: var(--c6); font-weight: 600; }
.legal strong { color: var(--c9); }

/* ── SCROLL ANIMATIONS ── */
.fade { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade.in { opacity: 1; transform: translateY(0); }
.fade:nth-child(2) { transition-delay: 0.1s; }
.fade:nth-child(3) { transition-delay: 0.2s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .header-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .pgrid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; height: 400px; }
  .gallery--short { height: 200px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { height: 360px; }
  .about-content { padding: 3rem 2rem; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .how-grid::before { display: none; }
  .rev-grid { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .trust-item { border-right: none; padding: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .species-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .svc { grid-template-columns: 1fr; min-height: auto; }
  .svc.rev { direction: ltr; }
  .svc-img { height: 280px; }
  .svc-body { padding: 2rem; }
  .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-img img { height: 380px; }
  .ws-inner { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .da-grid { grid-template-columns: 1fr; gap: 2rem; }
  .field-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .pgrid { grid-template-columns: 1fr; }
  .pgrid2 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; height: 280px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-btns { flex-direction: column; }
  .how-grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .still-btns { flex-direction: column; align-items: center; }
  .addon { flex-direction: column; }
  .checkout-bar { flex-direction: column; text-align: center; }
  .open-checkout { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cookie-inner { flex-direction: column; text-align: center; }
}
