@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@600;700&family=Inter:wght@400;500;600&display=swap');

:root{
  --green-50:#eafbf0;
  --green-100:#cdf3da;
  --green-200:#9de6b6;
  --green-300:#65d38c;
  --green-400:#34bd66;
  --green-500:#0a9c34;
  --green-600:#08822c;
  --green-700:#0a6825;
  --green-800:#0d5220;
  --green-900:#0d431e;
  --ink-950:#0b0d0c;
  --ink-900:#141715;
  --ink-800:#212523;
  --ink-700:#333733;
  --ink-600:#4a4f4b;
  --ink-500:#666b67;
  --ink-400:#8a8f8b;
  --ink-300:#b3b8b4;
  --ink-200:#d6dad7;
  --ink-100:#ececea;
  --white:#ffffff;
  --color-primary:var(--green-500);
  --color-primary-hover:var(--green-600);
  --color-primary-active:var(--green-700);
  --color-primary-tint:var(--green-50);
  --color-ink:var(--ink-950);
  --color-body-text:var(--ink-800);
  --color-muted-text:var(--ink-500);
  --color-surface:var(--white);
  --color-surface-alt:var(--ink-100);
  --color-surface-sunken:#f4f6f4;
  --color-border:var(--ink-200);
  --color-border-strong:var(--ink-300);
  --color-focus-ring:var(--green-400);
  --color-danger:#c23b2c;
  --color-warning:#b8791b;
  --color-success:var(--green-600);

  /* Map palette — flat tints of the ink/green scales, no gradients */
  --map-bg:#f4f6f4;
  --map-park:var(--green-50);
  --map-road-lane:#e9edea;
  --map-road-minor:#e2e7e3;
  --map-road-mid:#d2d8d4;
  --map-road-major:#bfc6c1;
  --map-label:var(--ink-400);

  --font-display:'Archivo',Arial,sans-serif;
  --font-body:'Inter',Arial,sans-serif;
  --text-xs:12px;
  --text-sm:14px;
  --text-base:16px;
  --text-md:18px;
  --text-lg:22px;
  --text-xl:28px;
  --text-2xl:36px;
  --text-3xl:48px;
  --text-4xl:64px;
  --leading-tight:1.1;
  --leading-snug:1.3;
  --leading-normal:1.55;
  --tracking-tight:-0.02em;
  --tracking-wide:0.04em;
  --tracking-wider:0.08em;
  --weight-regular:400;
  --weight-medium:500;
  --weight-semibold:600;
  --weight-bold:700;

  --space-1:4px;
  --space-2:8px;
  --space-3:12px;
  --space-4:16px;
  --space-5:20px;
  --space-6:24px;
  --space-8:32px;
  --space-10:40px;
  --space-12:48px;
  --space-16:64px;
  --space-20:80px;
  --space-24:96px;
  --space-32:128px;
  --radius-sm:4px;
  --radius-md:8px;
  --radius-lg:14px;
  --radius-pill:999px;
  --shadow-sm:0 1px 2px rgba(11,13,12,0.08);
  --shadow-md:0 4px 12px rgba(11,13,12,0.10);
  --shadow-lg:0 12px 32px rgba(11,13,12,0.14);
  --ease-standard:cubic-bezier(.4,0,.2,1);
  --duration-fast:120ms;
  --duration-base:200ms;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:var(--font-body);color:var(--color-body-text);background:var(--color-surface)}
a{color:var(--color-primary);text-decoration:none}
a:hover{color:var(--color-primary-hover);text-decoration:underline}
h1,h2,h3,h4{font-family:var(--font-display);color:var(--color-ink);letter-spacing:var(--tracking-tight);margin:0}
img{max-width:100%;display:block}

.container{max-width:1024px;margin:0 auto;padding:0 24px}

/* Top utility bar */
.topbar{
  background:var(--color-ink);
  color:rgba(255,255,255,0.72);
  font-size:13px;
  padding:8px 48px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:8px;
}
.topbar a{color:#fff}
.topbar a:hover{color:var(--green-300)}

/* Header */
.site-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 48px;
  border-bottom:1px solid var(--color-border);
  background:var(--color-surface);
  position:sticky;
  top:0;
  z-index:10;
  gap:16px;
}
.site-header .logo-link{display:block;height:48px;overflow:hidden}
/* logo-green.png has ~50% built-in vertical whitespace above the mark, so
   the img is oversized and shifted up to re-centre the visible mark inside
   the unchanged 48px link box. */
.site-header .logo{display:block;height:64px;width:auto;margin-top:-18px}
.site-nav{
  display:flex;
  gap:28px;
  font-weight:600;
  font-size:14px;
}
.site-nav a{color:var(--color-body-text)}
.site-nav a:hover{color:var(--color-primary);text-decoration:none}
.nav-toggle{display:none}

/* Buttons */
.btn{
  font-family:var(--font-body);
  font-weight:600;
  border-radius:var(--radius-sm);
  cursor:pointer;
  transition:background var(--duration-fast) var(--ease-standard), color var(--duration-fast) var(--ease-standard);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  white-space:nowrap;
  flex-shrink:0;
  border:1px solid transparent;
  padding:10px 20px;
  font-size:var(--text-base);
  background:var(--color-primary);
  color:#fff;
}
.btn:hover{background:var(--color-primary-hover);text-decoration:none;color:#fff}
.btn:active{background:var(--color-primary-active)}
.btn-lg{padding:14px 28px;font-size:var(--text-md)}
.btn-sm{padding:6px 14px;font-size:var(--text-sm)}
.btn-outline{background:transparent;color:var(--color-ink);border:1px solid var(--color-border-strong)}
.btn-outline:hover{background:var(--color-surface-alt);color:var(--color-ink)}

/* Badge */
.badge{
  display:inline-flex;
  align-items:center;
  padding:3px 10px;
  border-radius:var(--radius-pill);
  font-size:var(--text-xs);
  font-weight:600;
  letter-spacing:var(--tracking-wide);
  background:var(--color-primary-tint);
  color:var(--green-700);
}

/* Card */
.card{
  background:var(--color-surface);
  border:1px solid var(--color-border);
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-sm);
  padding:var(--space-6);
}

/* Eyebrow / section heading */
.eyebrow{
  font-size:13px;
  font-weight:700;
  letter-spacing:var(--tracking-wider);
  text-transform:uppercase;
  color:var(--color-primary);
  margin-bottom:8px;
}
.section-title{font-size:34px;font-weight:700;color:var(--color-ink);margin:0 0 12px}
.section-lead{color:var(--color-muted-text);font-size:16px;max-width:560px;margin:0 0 28px}

section{padding:64px 48px}
.section-alt{background:var(--color-surface-alt)}

/* Hero */
.hero{
  display:flex;
  align-items:center;
  gap:48px;
  padding:72px 48px;
  background:var(--color-surface);
}
.hero-copy{flex:1}
.hero-copy h1{
  font-size:52px;
  font-weight:700;
  line-height:1.06;
  margin:16px 0;
}
.hero-copy p{
  font-size:17px;
  color:var(--color-muted-text);
  line-height:1.6;
  max-width:440px;
}
.hero-actions{display:flex;gap:12px;margin-top:26px;flex-wrap:wrap}
.hero-media{flex:1 1 0;min-width:0}
.hero-media img{width:100%;height:380px;object-fit:cover;border-radius:var(--radius-lg)}

/* Services */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.service-card svg,.service-card .icon{width:24px;height:24px;color:var(--color-primary);stroke:var(--color-primary)}
.service-card .service-name{font-family:var(--font-display);font-weight:700;font-size:17px;margin:12px 0 6px;color:var(--color-ink)}
.service-card .service-desc{font-size:14px;color:var(--color-muted-text);line-height:1.5}

/* Pricing */
.pricing-table{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0 48px;
  background:var(--color-surface);
  border:1px solid var(--color-border);
  border-radius:var(--radius-md);
  padding:8px 32px;
  box-shadow:var(--shadow-sm);
}
.pricing-row{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
  border-bottom:1px solid var(--color-border);
}
.pricing-row:last-child{border-bottom:none}
.pricing-row .item{font-size:15px;color:var(--color-body-text)}
.pricing-row .price{font-size:15px;font-weight:600;color:var(--color-ink);white-space:nowrap}
.pricing-note{font-size:14px;color:var(--color-muted-text);margin-top:18px}

/* About */
.about-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:56px;
  align-items:center;
}
.about-grid img{width:100%;height:420px;object-fit:cover;border-radius:var(--radius-lg)}
.about-copy p{font-size:16px;color:var(--color-muted-text);line-height:1.65;margin:0 0 16px}
.about-copy p:last-child{margin-bottom:0}

/* Contact */
.contact-section{background:var(--color-ink);color:#fff}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:56px}
.contact-section .eyebrow{color:var(--green-400)}
.contact-section h2{color:#fff}
.contact-section > .container > p, .contact-intro{color:rgba(255,255,255,0.6);font-size:16px;line-height:1.6;margin:0 0 28px;max-width:420px}
.contact-detail{margin-bottom:18px}
.contact-detail .label{font-size:12px;font-weight:700;letter-spacing:var(--tracking-wide);text-transform:uppercase;color:rgba(255,255,255,0.45);margin-bottom:4px}
.contact-detail .value{font-family:var(--font-display);font-size:18px;font-weight:600;color:#fff}

.contact-cta{margin-top:28px}

/* Map
   Geometry is real OpenStreetMap data for the streets around the shop,
   projected to the viewBox by tools/build-map.py and recoloured here. The SVG
   in index.html is generated — regenerate it rather than hand-editing. */
.contact-map-card{
  background:#fff;
  border-radius:var(--radius-lg);
  padding:12px 12px 4px;
  align-self:start;
}
.map-frame{
  border-radius:var(--radius-md);
  overflow:hidden;
  background:var(--map-bg);
}
.map-svg{display:block;width:100%;height:auto}

.map-park{fill:var(--map-park);stroke:none}
.map-road{
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
  vector-effect:non-scaling-stroke;
}
.map-road--lane{stroke:var(--map-road-lane);stroke-width:1}
.map-road--minor{stroke:var(--map-road-minor);stroke-width:1.4}
.map-road--mid{stroke:var(--map-road-mid);stroke-width:2.2}
.map-road--major{stroke:var(--map-road-major);stroke-width:3.4}
.map-road--errol{stroke:var(--color-primary);stroke-width:3.4}

/* Font size is in viewBox units, so it shrinks with the card. The value is
   tuned against LABEL_CHAR_W in tools/build-map.py — change both together. */
.map-label text{
  font-family:var(--font-body);
  font-size:16px;
  font-weight:600;
  fill:var(--map-label);
  text-anchor:middle;
  letter-spacing:.02em;
  /* Knock the road line out from behind the name it labels. */
  paint-order:stroke fill;
  stroke:var(--map-bg);
  stroke-width:4;
  stroke-linejoin:round;
}
.map-label .map-label--accent{fill:var(--green-700);font-weight:700}

.map-halo{fill:var(--color-primary);opacity:.12}
.map-pin{fill:var(--color-primary)}
.map-pin-dot{fill:#fff}

.map-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  padding:14px 8px 12px;
}
.map-address{font-family:var(--font-display);font-weight:600;font-size:15px;color:var(--color-ink)}
.map-cross{font-size:13px;color:var(--color-muted-text);margin-top:2px}
/* ODbL attribution for the OpenStreetMap geometry — required, keep it. */
.map-credit{font-size:11px;color:var(--ink-400);padding:0 8px 10px}
.map-credit a{color:inherit;text-decoration:underline}

/* Footer */
.site-footer{
  background:var(--color-ink);
  color:rgba(255,255,255,0.7);
  padding:40px 48px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:24px;
  font-size:14px;
}
.site-footer .logo{height:28px;margin-bottom:12px}
/* Flat green wordmark is near-invisible on ink; render it white on dark surfaces */
.logo-invert{filter:brightness(0) invert(1);opacity:.9}
.footer-contact{display:flex;flex-direction:column;gap:4px}
.footer-contact .heading{color:#fff;font-weight:600;margin-bottom:4px}
.footer-social{display:inline-flex;margin-top:6px;color:rgba(255,255,255,0.7)}
.footer-social .icon{width:20px;height:20px;stroke:currentColor}
.footer-social:hover{color:#fff}
.footer-copyright{align-self:flex-end;font-size:13px;color:rgba(255,255,255,0.4)}

@media (max-width:900px){
  .hero{flex-direction:column;padding:48px 24px}
  .hero-copy p{max-width:none}
  .hero-actions{width:100%}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .about-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  section{padding:48px 24px}
  .topbar,.site-header,.site-footer{padding-left:24px;padding-right:24px}
}

@media (max-width:640px){
  .services-grid{grid-template-columns:1fr}
  .pricing-table{grid-template-columns:1fr}
  .contact-cta{width:100%}
  .map-footer{justify-content:flex-start}
  /* The whole SVG scales down with the card, so bump the labels to keep them
     above ~11px rendered. */
  .map-label text{font-size:26px;stroke-width:6}
  /* No hamburger: with only four anchors the nav just wraps to its own row */
  .site-header{flex-wrap:wrap;padding-bottom:0}
  .site-nav{
    order:3;
    width:100%;
    justify-content:space-between;
    gap:0;
    font-size:13px;
    padding:10px 0;
    border-top:1px solid var(--color-border);
  }
  .site-header .logo-link{height:40px}
  .site-header .logo{height:54px;margin-top:-15px}
  .hero-copy h1{font-size:38px}
  .hero-actions{flex-direction:column}
  .hero-actions .btn{width:100%}
  .site-footer{flex-direction:column}
  .footer-copyright{align-self:flex-start}
}
