/* ---------- Tokens ---------- */
:root {
  --forest: #175A2C;      /* logo dark green */
  --forest-deep: #0F3F1E;
  --sage: #7EA45C;        /* logo light green */
  --sage-soft: #DCE7D0;
  --mist: #EEF2E9;
  --paper: #FAFBF7;
  --ink: #1A211C;
  --muted: #5C6660;
  --line: #D9DFD3;

  --font-display: "Newsreader", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --wrap: 1140px;
  --radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest); }
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; margin: 0 0 .5em; letter-spacing: -0.005em; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }
.wrap { width: min(var(--wrap), 100% - 2.5rem); margin-inline: auto; }

.skip { position: absolute; left: -999px; top: 8px; background: var(--forest); color: #fff; padding: .5rem 1rem; z-index: 100; }
.skip:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--sage); outline-offset: 3px; }

.eyebrow {
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; display: inline-block; width: 22px; height: 2px; background: var(--sage); vertical-align: middle; margin-right: .75rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: .85rem 1.6rem;
  font-weight: 600;
  font-size: .95rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background .2s, color .2s, border-color .2s;
}
.btn-primary { background: var(--forest); color: #fff; border-color: var(--forest); }
.btn-primary:hover { background: var(--forest-deep); border-color: var(--forest-deep); }
.btn-ghost { color: var(--forest); border-color: var(--forest); background: transparent; }
.btn-ghost:hover { background: var(--mist); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,251,247,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 1px 12px rgba(23,90,44,.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 1rem; }
.brand img { height: 46px; width: auto; }
.nav { display: flex; gap: 2rem; align-items: center; }
.nav a { text-decoration: none; color: var(--ink); font-weight: 600; font-size: .95rem; position: relative; padding: .25rem 0; }
.nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px; background: var(--sage); transition: right .25s; }
.nav a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { background: var(--forest); color: #fff !important; padding: .6rem 1.2rem !important; border-radius: var(--radius); }
.nav-cta:hover { background: var(--forest-deep); }
.nav-toggle { display: none; background: none; border: 0; padding: .5rem; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--forest); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 5.5rem 0 0; background: linear-gradient(180deg, var(--paper) 0%, var(--mist) 100%); }
.hero-mark {
  position: absolute; right: -4%; top: 4%; width: 52%; max-width: 680px;
  color: var(--sage-soft); opacity: .8; pointer-events: none;
}
.hero-mark svg { width: 100%; height: auto; }
.hero-inner { position: relative; max-width: 780px; margin-left: calc((100% - min(var(--wrap), 100% - 2.5rem)) / 2); }
.hero h1 { color: var(--forest-deep); max-width: 19ch; margin-bottom: 1.2rem; }
.lede { font-size: 1.15rem; color: var(--muted); max-width: 58ch; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; }
.hero-strip {
  position: relative;
  margin-top: 4.5rem;
  display: grid; grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  padding: 1.4rem 0;
}
.hero-strip div { display: flex; flex-direction: column; padding-right: 1rem; border-left: 2px solid var(--sage); padding-left: .9rem; }
.hero-strip strong { font-family: var(--font-display); font-weight: 500; font-size: 1.25rem; color: var(--forest); }
.hero-strip span { font-size: .8rem; color: var(--muted); letter-spacing: .04em; }

/* ---------- Sections ---------- */
.section { padding: 6rem 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1.35fr; gap: 4rem; align-items: start; }
.section-head { max-width: 680px; margin-bottom: 3rem; }
.section-intro { color: var(--muted); font-size: 1.08rem; }

/* About */
.about { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.about-copy p { font-size: 1.05rem; }
.values { list-style: none; padding: 0; margin: 2rem 0 0; border-top: 1px solid var(--line); }
.values li { padding: 1rem 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.values li span { display: block; font-family: var(--font-display); font-size: 1.2rem; color: var(--forest); margin-bottom: .15rem; }

.about-figure { margin: 2rem 0 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.about-figure img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.map-link { display: inline-block; margin-top: .3rem; font-size: .9rem; }

/* Band */
.band { background: url("../images/band.jpg") center/cover no-repeat var(--mist); padding: 5rem 0; border-top: 1px solid var(--line); }
.band h2 { color: var(--forest-deep); max-width: 22ch; }
.band-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2.5rem; }
.band-steps div { background: rgba(255,255,255,.82); backdrop-filter: blur(4px); border-radius: var(--radius); padding: 1.5rem 1.6rem; border-top: 3px solid var(--sage); }
.band-steps strong { font-family: var(--font-display); font-weight: 500; font-size: 1.35rem; color: var(--forest); display: block; margin-bottom: .4rem; }
.band-steps p { margin: 0; color: var(--muted); font-size: .97rem; }

/* Services */
.services { background: var(--paper); }
.service-list { display: grid; gap: 1.25rem; }
.service {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 2rem;
  padding: 2rem 2.25rem;
  transition: border-color .2s, box-shadow .2s;
}
.service:hover { border-color: var(--sage); box-shadow: 0 6px 24px rgba(23,90,44,.07); }
.service-head { display: flex; gap: .9rem; align-items: flex-start; }
.service h3 { margin: 0; font-size: 1.5rem; color: var(--forest-deep); }
.chev { flex: none; width: 18px; height: 18px; margin-top: .45rem; position: relative; }
.chev::before { content: ""; position: absolute; inset: 0; border-left: 3px solid var(--sage); border-bottom: 3px solid var(--sage); transform: rotate(-45deg) scale(.8); transform-origin: center; }
.service-body p { color: var(--muted); }
.service-body ul { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: .35rem 1.5rem; }
.service-body li { position: relative; padding-left: 1.1rem; font-size: .95rem; font-weight: 500; }
.service-body li::before { content: ""; position: absolute; left: 0; top: .6em; width: 6px; height: 6px; background: var(--sage); border-radius: 50%; }

/* Team */
.team { background: var(--forest-deep); color: #E8EFE3; }
.team .eyebrow { color: var(--sage); }
.team h2, .team h3 { color: #fff; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.team-grid-2 { grid-template-columns: repeat(2, 1fr); }
.person { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 1.9rem; }
.person p { color: #B9C7B0; font-size: .95rem; margin: 0; }
.person h3 { margin: 1.1rem 0 .15rem; font-size: 1.4rem; }
.role { font-family: var(--font-body); font-size: .78rem !important; letter-spacing: .12em; text-transform: uppercase; color: var(--sage) !important; margin-bottom: .9rem !important; }
.avatar {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--forest); color: #fff;
  font-family: var(--font-display); font-size: 1.35rem;
  display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18);
}
.avatar-light { background: var(--sage); color: var(--forest-deep); }
.sub-head { margin: 3rem 0 1.25rem; font-family: var(--font-body); font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--sage) !important; }

/* Contact */
.contact { background: #fff; }
.contact-details { margin: 2rem 0 0; display: grid; gap: 1.1rem; }
.contact-details div { border-left: 2px solid var(--sage); padding-left: 1rem; }
.contact-details dt { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.contact-details dd { margin: .15rem 0 0; }
.contact-details a { text-decoration: none; font-weight: 600; }
.contact-form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; display: grid; gap: 1.1rem; }
.contact-form label { display: grid; gap: .35rem; font-size: .9rem; font-weight: 600; }
.contact-form input, .contact-form select, .contact-form textarea {
  font: inherit; font-weight: 400; padding: .75rem .9rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; color: var(--ink); width: 100%;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--forest); outline: none; box-shadow: 0 0 0 3px rgba(126,164,92,.25); }
.contact-form button { justify-self: start; }

/* Footer */
.site-footer { background: var(--forest-deep); color: #B9C7B0; padding: 2.5rem 0; border-top: 1px solid rgba(255,255,255,.08); }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 1.5rem; align-items: center; }
.footer-mark { border-radius: 50%; }
.site-footer p { margin: 0; }
.site-footer a { color: #DCE7D0; text-decoration: none; }
.site-footer strong { color: #fff; font-family: var(--font-display); font-weight: 500; font-size: 1.15rem; }
.fine { font-size: .82rem; }
.copy { text-align: right; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
  .about h2 { position: static; }
  .team-grid, .team-grid-2 { grid-template-columns: 1fr 1fr; }
  .band-steps { grid-template-columns: 1fr; gap: 1rem; }
  .service { grid-template-columns: 1fr; gap: 1rem; }
  .hero-strip { grid-template-columns: repeat(3, 1fr); row-gap: 1.25rem; }
  .hero-mark { width: 80%; right: -25%; top: 0; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 4rem 0; }
  .header-inner { height: 72px; }
  .brand img { height: 38px; }
  .nav-toggle { display: flex; }
  .nav {
    position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0;
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 1rem 1.25rem; border-top: 1px solid var(--line); }
  .nav a::after { display: none; }
  .nav-cta { border-radius: 0; margin: 0; }
  .hero { padding-top: 3.5rem; }
  .hero-strip { grid-template-columns: repeat(2, 1fr); }
  .team-grid, .team-grid-2 { grid-template-columns: 1fr; }
  .service-body ul { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: left; }
  .copy { text-align: left; }
  .contact-form { padding: 1.4rem; }
}
