/* =========================================================================
   Bin Buddy's — Edmonton Bin Rental
   Design system & styles. Mobile-first, no framework.
   ========================================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand */
  --green-900: #0E3A2B;
  --green-800: #11492f;
  --green-700: #15623f;
  --green-600: #1b7a4c;
  --green-500: #1fa463;
  --green-400: #36c47e;
  --green-100: #e3f4ea;
  --green-50:  #f0f8f3;

  --amber:     #ffb81c;
  --amber-600: #ed9e00;
  --amber-100: #fff2d4;

  --ink:       #10211a;
  --ink-700:   #2c3f35;
  --muted:     #5d6f65;
  --paper:     #f5f8f3;
  --white:     #ffffff;
  --line:      #e4ebe3;
  --line-2:    #d4ddd2;

  /* Type */
  --font-display: 'Outfit', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Radii & shadow */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 34px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(16,33,26,.06), 0 2px 8px rgba(16,33,26,.05);
  --shadow-md: 0 6px 20px rgba(16,33,26,.08), 0 2px 6px rgba(16,33,26,.05);
  --shadow-lg: 0 24px 60px rgba(16,33,26,.14), 0 8px 22px rgba(16,33,26,.08);
  --shadow-amber: 0 12px 30px rgba(237,158,0,.32);
  --shadow-green: 0 14px 34px rgba(27,122,76,.30);

  --container: 1180px;
  --gutter: clamp(1.1rem, 4vw, 2.2rem);

  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--green-500); outline-offset: 2px; border-radius: 4px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.08; font-weight: 700; letter-spacing: -.02em; color: var(--ink); text-wrap: balance; }
h1 { font-size: clamp(2.3rem, 6vw, 4rem); }
h2 { font-size: clamp(1.85rem, 4.4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }
p { text-wrap: pretty; }
.lead { font-size: clamp(1.08rem, 2.1vw, 1.3rem); color: var(--ink-700); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.4rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.6rem, 6vw, 4.5rem); }
.section--paper { background: var(--paper); }
.section--green { background: var(--green-900); color: #eaf3ed; }
.section--green h2, .section--green h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 700; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-600);
  background: var(--green-100);
  padding: .42rem .85rem; border-radius: var(--r-pill);
}
.section--green .eyebrow { color: var(--amber); background: rgba(255,184,28,.14); }
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: .9rem; }
.section-head p { margin-top: 1rem; color: var(--muted); font-size: 1.1rem; }
.section--green .section-head p { color: #c4d6cb; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem;
  padding: .92rem 1.6rem; border-radius: var(--r-pill);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn--primary { background: var(--amber); color: var(--green-900); box-shadow: var(--shadow-amber); }
.btn--primary:hover { background: #ffc23f; transform: translateY(-2px); }
.btn--green { background: var(--green-500); color: #fff; box-shadow: var(--shadow-green); }
.btn--green:hover { background: var(--green-600); transform: translateY(-2px); }
.btn--dark { background: var(--green-900); color: #fff; }
.btn--dark:hover { background: var(--green-800); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line-2); }
.btn--ghost:hover { border-color: var(--green-500); color: var(--green-600); background: var(--green-50); }
.btn--light { background: #fff; color: var(--green-900); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.08rem; }
.btn--block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--font-display); font-weight: 800; font-size: 1.28rem; color: var(--green-900); letter-spacing: -.02em; white-space: nowrap; }
.brand .brand-mark { width: 40px; height: 40px; flex: none; }
.brand-name { white-space: nowrap; }
.brand b { color: var(--green-500); }

.nav-links { display: none; align-items: center; gap: .35rem; }
.nav-links a { font-family: var(--font-display); font-weight: 500; color: var(--ink-700); padding: .55rem .8rem; border-radius: var(--r-pill); transition: color .15s ease, background .15s ease; }
.nav-links a:hover { color: var(--green-600); background: var(--green-50); }
.nav-links a.active { color: var(--green-700); background: var(--green-100); }
.nav-cta { display: none; align-items: center; gap: .6rem; }
.nav-phone { display: inline-flex; align-items: center; gap: .45rem; font-family: var(--font-display); font-weight: 700; color: var(--green-900); }
.nav-phone svg { width: 1.05em; height: 1.05em; color: var(--green-500); }

.nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; width: 46px; height: 46px; align-items: center; justify-content: center; border-radius: 12px; border: 1px solid var(--line); background: #fff; }
.nav-toggle span { width: 22px; height: 2.4px; background: var(--ink); border-radius: 3px; transition: transform .25s ease, opacity .25s ease; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 55;
  background: #fff; padding: 1.4rem var(--gutter) 2rem;
  transform: translateX(100%); transition: transform .32s cubic-bezier(.4,.0,.2,1);
  display: flex; flex-direction: column; gap: .35rem; overflow-y: auto;
}
.nav-open .mobile-menu { transform: translateX(0); }
.mobile-menu a.m-link { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; padding: .95rem .4rem; border-bottom: 1px solid var(--line); color: var(--ink); display: flex; justify-content: space-between; align-items: center; }
.mobile-menu a.m-link::after { content: "→"; color: var(--green-400); }
.mobile-menu .m-actions { margin-top: 1.4rem; display: grid; gap: .8rem; }
body.nav-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero { position: relative; background: radial-gradient(120% 120% at 85% -10%, var(--green-100) 0%, transparent 55%), linear-gradient(180deg, #fff 0%, var(--paper) 100%); overflow: hidden; }
.hero::before { content:""; position:absolute; inset:0; background-image: radial-gradient(circle, rgba(27,122,76,.06) 1.4px, transparent 1.6px); background-size: 26px 26px; -webkit-mask-image: linear-gradient(180deg,#000,transparent 70%); mask-image: linear-gradient(180deg,#000,transparent 70%); pointer-events:none; }
.hero-grid { position: relative; display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; padding-block: clamp(2.6rem, 6vw, 5rem); }
.hero h1 { margin-bottom: 1.1rem; }
.hero h1 .hl { color: var(--green-500); position: relative; white-space: nowrap; }
.hero .lead { max-width: 36ch; margin-bottom: 1.8rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 1.8rem; }
.hero-points { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; }
.hero-points li { display: inline-flex; align-items: center; gap: .5rem; font-weight: 500; color: var(--ink-700); }
.hero-points svg { width: 1.2rem; height: 1.2rem; color: var(--green-500); flex: none; }

.hero-art { position: relative; }
.hero-art svg { width: 100%; height: auto; filter: drop-shadow(0 30px 50px rgba(16,33,26,.16)); }
.hero-badge { position: absolute; background: #fff; border-radius: var(--r-md); box-shadow: var(--shadow-lg); padding: .75rem .95rem; display: flex; align-items: center; gap: .6rem; font-family: var(--font-display); }
.hero-badge .big { font-weight: 800; font-size: 1.1rem; color: var(--green-900); line-height: 1; }
.hero-badge .small { font-size: .76rem; color: var(--muted); }
.hero-badge .dot { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; background: var(--green-100); color: var(--green-600); flex: none; }
.hero-badge--1 { top: 6%; left: -4%; }
.hero-badge--2 { bottom: 10%; right: -3%; }
.hero-stars { color: var(--amber); letter-spacing: 2px; }

/* ---------- Trust bar ---------- */
.trustbar { border-block: 1px solid var(--line); background: #fff; }
.trustbar .container { display: flex; flex-wrap: wrap; gap: 1rem 2.2rem; align-items: center; justify-content: space-between; padding-block: 1.1rem; }
.trust-item { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 600; color: var(--ink-700); font-size: .98rem; }
.trust-item svg { width: 1.4rem; height: 1.4rem; color: var(--green-500); flex: none; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: clamp(1.1rem, 2.4vw, 1.7rem); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.4rem, 3vw, 2rem); box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; height: 100%; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-100); }
.card .icon { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; background: var(--green-100); color: var(--green-600); margin-bottom: 1.1rem; }
.card .icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .55rem; }
.card p { color: var(--muted); }

/* ---------- Bin size cards ---------- */
.bin-card { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.bin-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--green-200, #cfe9d9); }
.bin-card.popular { border-color: var(--amber); box-shadow: 0 18px 44px rgba(237,158,0,.18); }
.bin-tag { position: absolute; top: 1rem; right: 1rem; background: var(--amber); color: var(--green-900); font-family: var(--font-display); font-weight: 700; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; padding: .35rem .7rem; border-radius: var(--r-pill); z-index: 2; }
.bin-visual { background: linear-gradient(160deg, var(--green-50), var(--green-100)); padding: 1.8rem 1.5rem 1rem; display: grid; place-items: center; }
.bin-visual svg { width: 86%; max-width: 230px; filter: drop-shadow(0 14px 18px rgba(16,33,26,.14)); }
.bin-body { padding: 1.5rem; display: flex; flex-direction: column; gap: .85rem; flex: 1; }
.bin-body .size { font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; color: var(--green-900); line-height: 1; }
.bin-body .size span { font-size: .95rem; color: var(--muted); font-weight: 600; }
.bin-dims { display: flex; flex-wrap: wrap; gap: .4rem; }
.bin-dims span { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-pill); padding: .3rem .7rem; font-size: .82rem; color: var(--ink-700); font-weight: 500; }
.bin-best { color: var(--muted); font-size: .96rem; }
.bin-best b { color: var(--ink); font-weight: 600; }
.bin-price { margin-top: auto; padding-top: .4rem; }
.bin-price .amt { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--green-900); }
.bin-price .amt span { font-size: .85rem; font-weight: 600; color: var(--muted); }

/* ---------- Steps ---------- */
.steps { counter-reset: step; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 2.4rem 1.6rem 1.6rem; box-shadow: var(--shadow-sm); }
.step .step-num { counter-increment: step; position: absolute; top: -22px; left: 1.6rem; width: 48px; height: 48px; border-radius: 14px; background: var(--green-500); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; box-shadow: var(--shadow-green); }
.step .step-num::before { content: counter(step); }
.step h3 { margin-bottom: .5rem; }
.step p { color: var(--muted); }

/* ---------- Split feature ---------- */
.split { display: grid; gap: clamp(2rem,5vw,3.5rem); align-items: center; }
.feature-list { display: grid; gap: 1.1rem; margin-top: 1.6rem; }
.feature-list li { display: flex; gap: .9rem; }
.feature-list .fi { width: 30px; height: 30px; flex: none; border-radius: 9px; background: var(--green-100); color: var(--green-600); display: grid; place-items: center; }
.feature-list .fi svg { width: 17px; height: 17px; }
.feature-list h4 { font-family: var(--font-display); font-size: 1.08rem; margin-bottom: .15rem; }
.feature-list p { color: var(--muted); font-size: .97rem; }

/* Accepted / prohibited columns */
.matters { display: grid; gap: 1.4rem; }
.matter-col { border-radius: var(--r-lg); padding: 1.6rem; border: 1px solid var(--line); background: #fff; }
.matter-col.yes { border-color: #bfe6cf; background: linear-gradient(180deg,#f3fbf6,#fff); }
.matter-col.no { border-color: #f3cdc8; background: linear-gradient(180deg,#fdf4f3,#fff); }
.matter-col h3 { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; font-size: 1.2rem; }
.matter-col .pin { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; flex: none; }
.matter-col.yes .pin { background: var(--green-100); color: var(--green-600); }
.matter-col.no .pin { background: #fbe0dd; color: #c0392b; }
.matter-col ul { display: grid; gap: .55rem; }
.matter-col li { display: flex; gap: .55rem; align-items: flex-start; color: var(--ink-700); }
.matter-col li svg { width: 18px; height: 18px; flex: none; margin-top: .25rem; }
.matter-col.yes li svg { color: var(--green-500); }
.matter-col.no li svg { color: #d0524a; }

/* ---------- Service areas ---------- */
.area-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: .7rem; }
.area-chip { display: flex; align-items: center; gap: .55rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: .85rem 1rem; font-weight: 500; transition: border-color .15s, transform .15s; }
.area-chip:hover { border-color: var(--green-400); transform: translateY(-2px); }
.area-chip svg { width: 1.1rem; height: 1.1rem; color: var(--green-500); flex: none; }

/* ---------- Testimonials ---------- */
.reviews { display: grid; gap: 1.3rem; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.7rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 1rem; }
.review .stars { color: var(--amber); letter-spacing: 2px; font-size: 1.05rem; }
.review p { color: var(--ink-700); font-size: 1.02rem; }
.review .who { display: flex; align-items: center; gap: .75rem; margin-top: auto; }
.review .av { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--green-500); color: #fff; font-family: var(--font-display); font-weight: 700; flex: none; }
.review .who b { font-family: var(--font-display); display: block; }
.review .who span { color: var(--muted); font-size: .87rem; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.4rem; }
.stat { text-align: center; }
.stat .n { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.1rem,6vw,3.1rem); color: var(--amber); line-height: 1; }
.stat .l { color: #c4d6cb; margin-top: .4rem; font-size: .95rem; }

/* ---------- Pricing table ---------- */
.price-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); background:#fff; }
table.price-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.price-table th, .price-table td { padding: 1rem 1.15rem; text-align: left; border-bottom: 1px solid var(--line); }
.price-table thead th { font-family: var(--font-display); background: var(--green-900); color: #fff; font-size: .95rem; }
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:nth-child(even) { background: var(--paper); }
.price-table .yd { font-family: var(--font-display); font-weight: 700; color: var(--green-700); }
.price-table .p { font-family: var(--font-display); font-weight: 800; color: var(--green-900); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: .75rem; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r-md); background: #fff; overflow: hidden; transition: box-shadow .2s, border-color .2s; }
.faq-item[open] { box-shadow: var(--shadow-md); border-color: var(--green-100); }
.faq-item summary { list-style: none; cursor: pointer; padding: 1.15rem 1.3rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: var(--font-display); font-weight: 600; font-size: 1.06rem; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { width: 26px; height: 26px; flex: none; border-radius: 50%; background: var(--green-100); color: var(--green-600); display: grid; place-items: center; transition: transform .25s ease, background .2s; }
.faq-item[open] summary .chev { transform: rotate(180deg); background: var(--green-500); color: #fff; }
.faq-item .answer { padding: 0 1.3rem 1.25rem; color: var(--muted); }
.faq-item .answer p + p { margin-top: .7rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: linear-gradient(135deg, var(--green-700), var(--green-900)); color: #fff; border-radius: var(--r-xl); padding: clamp(2.2rem,5vw,3.6rem); overflow: hidden; text-align: center; box-shadow: var(--shadow-lg); }
.cta-band::after { content:""; position:absolute; width:340px; height:340px; right:-90px; top:-120px; background: radial-gradient(circle, rgba(255,184,28,.28), transparent 65%); }
.cta-band::before { content:""; position:absolute; width:300px; height:300px; left:-100px; bottom:-130px; background: radial-gradient(circle, rgba(54,196,126,.28), transparent 65%); }
.cta-band > * { position: relative; }
.cta-band h2 { color:#fff; }
.cta-band p { color:#d3e4d9; max-width: 56ch; margin: 1rem auto 1.8rem; font-size: 1.12rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }

/* ---------- Quote form ---------- */
.quote-wrap { background:#fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: clamp(1.5rem,3vw,2.4rem); }
.form-grid { display: grid; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field.span2 { grid-column: 1 / -1; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: .92rem; color: var(--ink-700); }
.field label .req { color: #d0524a; }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink); background: var(--paper);
  border: 1.5px solid var(--line-2); border-radius: var(--r-sm);
  padding: .8rem .9rem; transition: border-color .15s, background .15s, box-shadow .15s; width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green-500); background: #fff; box-shadow: 0 0 0 4px var(--green-100); }
.form-note { font-size: .85rem; color: var(--muted); margin-top: .25rem; }
.form-status { display: none; padding: .9rem 1.1rem; border-radius: var(--r-sm); font-weight: 600; font-family: var(--font-display); }
.form-status.ok { display: block; background: var(--green-100); color: var(--green-700); }
.form-status.err { display: block; background: #fbe0dd; color: #b23b30; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-900); color: #b9cdc1; padding-block: clamp(3rem,6vw,4.5rem) 1.5rem; }
.footer-grid { display: grid; gap: 2.4rem; grid-template-columns: 1fr; }
.footer-brand .brand { color:#fff; margin-bottom: 1rem; }
.footer-brand .brand b { color: var(--amber); }
.footer-brand p { color: #9fb6a8; max-width: 36ch; }
.footer-social { display:flex; gap:.6rem; margin-top:1.2rem; }
.footer-social a { width:42px; height:42px; border-radius:12px; background: rgba(255,255,255,.07); display:grid; place-items:center; color:#cfe0d6; transition: background .15s, transform .15s; }
.footer-social a:hover { background: var(--green-500); color:#fff; transform: translateY(-2px); }
.footer-col h4 { color:#fff; font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 1rem; }
.footer-col ul { display:grid; gap:.6rem; }
.footer-col a, .footer-col li { color:#a9c0b3; transition: color .15s; }
.footer-col a:hover { color:#fff; }
.footer-contact li { display:flex; gap:.6rem; align-items:flex-start; }
.footer-contact svg { width:1.15rem; height:1.15rem; color: var(--green-400); flex:none; margin-top:.2rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.8rem; padding-top: 1.5rem; display:flex; flex-wrap:wrap; gap:1rem; justify-content: space-between; align-items:center; font-size: .87rem; color:#8aa597; }
.footer-bottom a { color:#a9c0b3; }
.footer-bottom a:hover { color:#fff; }

/* Bespoke stamp */
.bespoke-stamp { display:inline-flex; align-items:center; gap:.5rem; color:#8aa597; font-size:.84rem; }
.bespoke-stamp .bmark { width:24px; height:24px; border-radius:7px; background: linear-gradient(135deg,#f6d36b,#caa23a); color:#3a2e0a; display:grid; place-items:center; font-family:var(--font-display); font-weight:800; font-size:.85rem; flex:none; }
.bespoke-stamp:hover { color:#cfe0d6; }

/* ---------- Mobile sticky call bar ---------- */
.mobile-bar { position: fixed; left:0; right:0; bottom:0; z-index: 50; display:flex; gap:.6rem; padding:.6rem .7rem calc(.6rem + env(safe-area-inset-bottom)); background: rgba(255,255,255,.94); backdrop-filter: blur(12px); border-top:1px solid var(--line); box-shadow: 0 -6px 20px rgba(16,33,26,.08); }
.mobile-bar .btn { flex:1; padding: .85rem 1rem; }

/* ---------- Breadcrumb ---------- */
.crumbs { padding-block: 1rem 0; }
.crumbs ol { display:flex; flex-wrap:wrap; gap:.4rem; align-items:center; font-size:.86rem; color:var(--muted); }
.crumbs a:hover { color: var(--green-600); }
.crumbs li:not(:last-child)::after { content:"/"; margin-left:.4rem; color: var(--line-2); }

/* ---------- Page hero (interior) ---------- */
.page-hero { background: radial-gradient(110% 130% at 90% -20%, var(--green-100), transparent 55%), var(--paper); padding-block: clamp(2rem,5vw,3.6rem); border-bottom: 1px solid var(--line); }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { max-width: 60ch; color: var(--ink-700); font-size: 1.12rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; }
.hide { display: none !important; }
.pad-bottom-mobile { padding-bottom: 86px; }

/* ---------- Media / photos ---------- */
.brand-mark { border-radius: 11px; }
.media-frame { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--green-100); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-rounded { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); display: block; }
.img-rounded img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Hero photo */
.hero-photo { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 5 / 4; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.25); border-radius: var(--r-xl); pointer-events: none; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
.gallery figure { position: relative; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4 / 3; margin: 0; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery figure:hover img { transform: scale(1.07); }
.gallery figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem .9rem .7rem; color: #fff; font-family: var(--font-display); font-weight: 600; font-size: .92rem; background: linear-gradient(transparent, rgba(7,30,20,.82)); }

/* Feature photo (in split) */
.feature-photo { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3; }
.feature-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Photo band (full-width image with text overlay) */
.photo-band { position: relative; border-radius: var(--r-xl); overflow: hidden; display: grid; align-items: center; min-height: 300px; box-shadow: var(--shadow-lg); }
.photo-band img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo-band .veil { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(11,46,33,.94), rgba(11,46,33,.6) 55%, rgba(11,46,33,.25)); }
.photo-band .pb-inner { position: relative; padding: clamp(1.8rem, 4vw, 3.2rem); color: #fff; max-width: 640px; }
.photo-band h2 { color: #fff; }
.photo-band p { color: #d3e4d9; margin: 1rem 0 1.6rem; }

@media (min-width: 720px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Responsive ---------- */
@media (min-width: 560px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .area-grid { grid-template-columns: repeat(3,1fr); }
  .matters { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 720px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 880px) {
  .nav-links { display: flex; }
  .nav-cta { display: flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none; }
  .mobile-bar { display: none; }
  .pad-bottom-mobile { padding-bottom: 0; }
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3,1fr); }
  .grid-4 { grid-template-columns: repeat(4,1fr); }
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .split { grid-template-columns: 1fr 1fr; }
  .split.rev > :first-child { order: 2; }
  .stats { grid-template-columns: repeat(4,1fr); }
  .reviews { grid-template-columns: repeat(3,1fr); }
  .area-grid { grid-template-columns: repeat(4,1fr); }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.3fr; }
}
@media (min-width: 1024px) {
  .matters { gap: 1.8rem; }
}
