/* ===== Design tokens ===== */
:root {
  --green-700: #33492f;  /* deep forest — icons, strong green text, hovers */
  --green-600: #415d43;  /* primary brand green — buttons, links, accents */
  --green-500: #a7c8ad;  /* soft sage — accent borders / subtle highlights */
  --green-100: #dfeae1;  /* light sage — icon tiles */
  --green-50:  #eef4ef;  /* faint sage — subtle fills / hovers */

  --cta:       #2b8140;  /* brighter grass green — call-to-action buttons */
  --cta-hover: #236b34;  /* pressed / hover state */

  --ink-900: #230903;    /* near-black brown — headings & strong text */
  --ink-700: #3a241c;    /* body text */
  --ink-500: #6b564e;    /* muted / secondary text */
  --line:    #e7dee0;    /* warm hairline borders */

  --bg:      #ffffff;
  --bg-alt:  #f7f3f5;    /* warm off-white — alternating sections */

  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(35, 9, 3, .05), 0 8px 24px rgba(35, 9, 3, .06);
  --container: 1100px;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ===== Base ===== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink-700);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { color: var(--ink-900); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.3rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 750; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 1rem; }

a { color: var(--green-600); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.accent { color: var(--green-600); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--green-600);
  margin: 0 0 .6rem;
}

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--green-600); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0; z-index: 100;
}
.skip-link:focus { left: 0; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 22px; border-radius: 999px;
  font-weight: 650; font-size: .98rem;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .05s ease, background .15s ease, border-color .15s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 9px 16px; font-size: .9rem; }

.btn-primary { background: var(--cta); color: #fff; }
.btn-primary:hover { background: var(--cta-hover); }

.btn-ghost { background: transparent; color: var(--ink-900); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--green-500); color: var(--green-700); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink-900); font-weight: 800; }
.brand:hover { text-decoration: none; }
.brand-logo { height: 40px; width: auto; display: block; }
.brand-mark { color: var(--green-600); display: inline-flex; }
.brand-name { letter-spacing: -0.02em; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: var(--ink-700); font-weight: 550; font-size: .96rem; }
.nav a:hover { color: var(--green-700); text-decoration: none; }
.nav .nav-cta { color: #fff; }

@media (max-width: 640px) {
  .nav { gap: 10px; }
  /* hide the plain text links on mobile, keep the buttons (Portfolio + Get a quote) */
  .nav a:not(.btn) { display: none; }
}
@media (max-width: 380px) {
  .nav .btn-sm { padding: 8px 12px; font-size: .84rem; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #230903 url("assets/hero1.jpg") center 55% / cover no-repeat;
  padding: clamp(76px, 12vw, 132px) 0 clamp(64px, 10vw, 108px);
}

/* readability scrim: darkest behind the centred text, easing out toward the edges */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(115% 120% at 50% 46%, rgba(35,9,3,.62) 0%, rgba(35,9,3,.48) 55%, rgba(35,9,3,.38) 100%),
    linear-gradient(180deg, rgba(35,9,3,.30), rgba(35,9,3,.44));
  pointer-events: none;
}

/* halftone dot texture kept as a subtle overlay on top of the photo */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .028) 1px, transparent 1.5px);
  background-size: 13px 13px;
  -webkit-mask-image: radial-gradient(125% 125% at 50% 55%, #000 0%, rgba(0,0,0,.4) 42%, transparent 74%);
          mask-image: radial-gradient(125% 125% at 50% 55%, #000 0%, rgba(0,0,0,.4) 42%, transparent 74%);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; text-align: center; text-shadow: 0 2px 22px rgba(0, 0, 0, .55); }

/* rating badge in place of the eyebrow */
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  font-size: .98rem;
  color: #fff;
  text-decoration: none;
  transition: opacity .12s ease;
}
.hero-rating:hover { opacity: .85; text-decoration: none; }
.hero-rating-stars { color: #f5b301; letter-spacing: 2px; font-size: 1.05rem; }
.hero-rating-text strong { color: #fff; font-weight: 700; }
.hero h1 { color: #fff; }
.hero .eyebrow { color: #a7c8ad; }
.hero .accent { color: #a7c8ad; }
.lead { font-size: 1.2rem; color: rgba(255, 255, 255, .92); max-width: 60ch; margin-left: auto; margin-right: auto; }
@media (max-width: 560px) {
  .lead { font-size: .98rem; line-height: 1.55; }
}

.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 28px 0 32px; }

.hero .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, .45); background: rgba(255, 255, 255, .04); }
.hero .btn-ghost:hover { color: #fff; border-color: #fff; background: rgba(255, 255, 255, .14); }

.hero-trust {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 26px; color: rgba(255, 255, 255, .9); font-size: .95rem;
}
.hero-trust li { display: flex; align-items: center; gap: 8px; }
.hero-trust li::before {
  content: ""; width: 18px; height: 18px; flex: none;
  background: var(--green-100);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1.5px var(--green-500);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23415d43' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}

/* ===== Trust bar (forest green band) ===== */
.trustbar { background: var(--green-600); border-bottom: 1px solid rgba(35, 9, 3, .18); }
.trustbar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 22px;
  padding-bottom: 22px;
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 6px 18px;
}
.trust-icon {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink-900);
  color: #fff;
}
.trust-text { display: flex; flex-direction: column; line-height: 1.25; }
.trust-text strong { color: #fff; font-size: .98rem; font-weight: 750; letter-spacing: -0.01em; }
.trust-text span { color: rgba(255, 255, 255, .8); font-size: .82rem; }

@media (min-width: 721px) {
  .trust-item + .trust-item { border-left: 1px solid rgba(255, 255, 255, .2); }
}
@media (max-width: 720px) {
  .trustbar-inner { grid-template-columns: repeat(2, 1fr); gap: 20px 0; }
  .trust-item { padding: 6px 14px; }
  .trust-item:nth-child(even) { border-left: 1px solid rgba(255, 255, 255, .2); }
}
/* keep the trust bar 2×2 on phones instead of stacking into one tall column */
@media (max-width: 430px) {
  .trustbar-inner { gap: 16px 0; }
  .trust-item { gap: 10px; padding: 4px 8px; justify-content: flex-start; }
  .trust-icon { width: 36px; height: 36px; }
  .trust-icon svg { width: 18px; height: 18px; }
  .trust-text strong { font-size: .9rem; }
  .trust-text span { font-size: .74rem; }
}

/* ===== Sections ===== */
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-sage {
  background: linear-gradient(180deg, #eef5f0 0%, var(--green-100) 24%, var(--green-100) 76%, #eef5f0 100%);
  border-top: 1px solid rgba(35, 9, 3, .06);
  border-bottom: 1px solid rgba(35, 9, 3, .06);
}
#about { border-bottom: 1px solid var(--line); }
.section-head { max-width: 620px; margin: 0 0 40px; }
.section-sub { color: var(--ink-500); font-size: 1.08rem; margin: 0; }

/* ===== Grid & cards ===== */
.grid { display: grid; gap: 20px; }
.services-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* "Show more" only applies on mobile — desktop/tablet show all services */
.services-more { display: none; margin-top: 22px; text-align: center; }
@media (max-width: 560px) {
  .services-grid.is-collapsed .card:nth-child(n+4) { display: none; }
  .services-more { display: block; }
}

.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow);
  transition: border-color .15s ease, transform .15s ease;
}
.card:hover { border-color: var(--green-500); transform: translateY(-2px); }
.card h3 { margin-bottom: .4em; }
.card p { margin: 0; color: var(--ink-500); }

/* photo across the top of each service card */
.card-photo {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #aecdb5; /* soft fallback while the image loads */
  border-bottom: 1px solid rgba(35, 9, 3, .06);
}
.card-body { padding: 20px 22px 24px; }

/* service cards are links through to the services page */
a.card { text-decoration: none; color: inherit; }
a.card:hover { text-decoration: none; }
.card-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--green-600);
  font-weight: 650;
  font-size: .9rem;
}
.card-more::after { content: "\2192"; transition: transform .2s ease; }
.card:hover .card-more::after { transform: translateX(4px); }

/* ===== About ===== */
.about-inner { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 800px) { .about-inner { grid-template-columns: 1fr; gap: 32px; } }

.checklist { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 10px; }
.checklist li { display: flex; align-items: center; gap: 10px; color: var(--ink-700); }
.checklist li::before {
  content: ""; width: 20px; height: 20px; flex: none; border-radius: 50%;
  background: var(--green-100);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23415d43' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 13px; background-repeat: no-repeat; background-position: center;
}

.about-side { display: grid; gap: 14px; }

/* founder profile card */
.profile-card {
  margin: 0;
  background: #f0f1f2;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 26px 24px;
  text-align: center;
}
.profile-photo {
  width: min(190px, 62%);
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 16px;
  background: var(--green-100);
  box-shadow: 0 0 0 5px rgba(167, 200, 173, .5), 0 10px 26px rgba(35, 9, 3, .16);
}
.profile-body { margin: 0; }
.profile-name { margin: 0; font-size: 1.35rem; font-weight: 800; color: var(--ink-900); letter-spacing: -0.02em; }
.profile-role { margin: 3px 0 0; color: var(--green-700); font-weight: 650; font-size: .9rem; }
.profile-quote {
  margin: 16px 0 0;
  color: var(--ink-700);
  font-size: 1rem;
  line-height: 1.55;
  font-style: italic;
}
.profile-facts {
  list-style: none;
  margin: 22px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.profile-facts li { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.profile-facts li + li { border-left: 1px solid var(--line); }
.profile-facts strong { color: var(--ink-900); font-size: 1rem; font-weight: 800; }
.profile-facts span { color: var(--ink-500); font-size: .76rem; }

/* ===== Contact ===== */
/* compact, always 3-across — a supporting strip above the form (the form is the focus) */
.contact-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }

.contact-card {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  text-align: center;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 14px; box-shadow: var(--shadow); color: var(--ink-700);
  transition: border-color .15s ease, transform .15s ease;
}
a.contact-card:hover { border-color: var(--green-500); transform: translateY(-2px); text-decoration: none; }
.contact-icon {
  width: 40px; height: 40px; border-radius: 11px; margin-bottom: 2px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green-100); color: var(--green-700);
}
.contact-label { text-transform: uppercase; letter-spacing: .07em; font-size: .68rem; font-weight: 700; color: var(--ink-500); }
.contact-value { font-size: 1rem; font-weight: 700; color: var(--ink-900); line-height: 1.3; word-break: break-word; }

/* shrink the strip on tablets/phones so it never crowds the form */
@media (max-width: 640px) {
  .contact-grid { gap: 8px; }
  .contact-card { padding: 12px 7px; gap: 3px; border-radius: 12px; }
  .contact-icon { width: 32px; height: 32px; border-radius: 9px; margin-bottom: 1px; }
  .contact-icon svg { width: 17px; height: 17px; }
  .contact-label { font-size: .58rem; letter-spacing: .04em; }
  .contact-value { font-size: .72rem; font-weight: 650; }
}
@media (max-width: 380px) {
  .contact-value { font-size: .66rem; }
}

/* green halftone dots from bottom-right — very subtle on ALL cards as a base layer */
.stat, .contact-card, .card, .review-card { position: relative; overflow: hidden; isolation: isolate; }
.stat::before, .contact-card::before, .card::before, .review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(65, 93, 67, .12) 1px, transparent 1.5px);
  background-size: 12px 12px;
  -webkit-mask-image: radial-gradient(85% 100% at 100% 100%, #000 0%, rgba(0,0,0,.35) 40%, transparent 70%);
          mask-image: radial-gradient(85% 100% at 100% 100%, #000 0%, rgba(0,0,0,.35) 40%, transparent 70%);
  pointer-events: none;
}

/* interactive cards: a darker, denser green dot layer fades in on hover/focus */
a.contact-card::after, .card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(65, 93, 67, .32) 1.1px, transparent 1.6px);
  background-size: 12px 12px;
  -webkit-mask-image: radial-gradient(85% 100% at 100% 100%, #000 0%, rgba(0,0,0,.35) 40%, transparent 70%);
          mask-image: radial-gradient(85% 100% at 100% 100%, #000 0%, rgba(0,0,0,.35) 40%, transparent 70%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
a.contact-card:hover::after, a.contact-card:focus-visible::after, .card:hover::after { opacity: 1; }

/* Service cards: soft sage background with dot texture retuned to contrast against it */
.card { background: var(--green-100); border-color: rgba(35, 9, 3, .07); }
.card:hover { border-color: var(--green-600); }
.card::before { background-image: radial-gradient(rgba(51, 73, 47, .17) 1px, transparent 1.5px); }
.card::after { background-image: radial-gradient(rgba(51, 73, 47, .34) 1.1px, transparent 1.6px); }

.area-note {
  margin: 18px 0 0;
  color: var(--ink-500);
  font-size: .98rem;
}

/* ===== Reviews grid (masonry) ===== */
.reviews-summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: -18px 0 34px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg);
  box-shadow: var(--shadow);
  font-size: .96rem;
  color: var(--ink-700);
}
.reviews-summary-stars { color: #f5b301; letter-spacing: 2px; font-size: 1.1rem; }
.reviews-summary-text strong { color: var(--ink-900); font-weight: 700; }

.reviews-grid {
  column-count: 3;
  column-gap: 20px;
}
@media (max-width: 900px) { .reviews-grid { column-count: 2; } }
@media (max-width: 600px) {
  .reviews-grid { column-count: 2; column-gap: 12px; }
  .review-card { padding: 14px 14px; margin-bottom: 12px; }
  .review-card .stars { font-size: .85rem; letter-spacing: 2px; margin-bottom: 8px; }
  .review-card blockquote { font-size: .9rem; line-height: 1.5; }
}
@media (max-width: 360px) { .reviews-grid { column-count: 1; } }

.review-card {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin: 0 0 20px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 22px;
}
.review-card .stars {
  color: #f5b301;
  letter-spacing: 3px;
  font-size: 1.02rem;
  margin-bottom: 12px;
}
.review-card blockquote {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.55;
  color: var(--ink-900);
  font-weight: 500;
}

/* collapsed: show a first batch, hide the rest until "See more" */
.reviews-grid.is-collapsed .review-card:nth-child(n+7) { display: none; }

.reviews-more { margin-top: 28px; text-align: center; }
.reviews-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--bg);
  color: var(--ink-700);
  font: inherit; font-weight: 650; font-size: .96rem;
  cursor: pointer;
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.reviews-toggle:hover { border-color: var(--green-500); color: var(--green-700); background: var(--green-50); }
.reviews-toggle svg { transition: transform .2s ease; }
.reviews-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

/* ===== Contact form ===== */
.contact-form-wrap {
  margin-top: 34px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 34px);
}
.form-title { margin: 0 0 4px; }
.form-intro { margin: 0 0 22px; color: var(--ink-500); }

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 540px) { .contact-form .form-row { grid-template-columns: 1fr; } }

.contact-form .field { display: flex; flex-direction: column; margin-bottom: 16px; }
.contact-form label {
  font-size: .9rem;
  font-weight: 650;
  color: var(--ink-900);
  margin-bottom: 6px;
}
.contact-form .optional,
.contact-form .hint { font-weight: 500; color: var(--ink-500); font-size: .86em; }

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  font: inherit;
  color: var(--ink-900);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #a99b95; }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(65, 93, 67, .15);
}

/* custom dropdown chevron */
.contact-form select {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 40px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b564e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  background-size: 16px;
}
.contact-form select:invalid,
.contact-form select option[value=""] { color: #a99b95; }

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin-top: 6px;
}
.form-submit { min-width: 160px; }
.form-smallprint { margin: 0; font-size: .82rem; color: var(--ink-500); }

.form-result {
  margin: 16px 0 0;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 550;
}
.form-result.is-ok { background: var(--green-50); border: 1px solid var(--green-500); color: var(--green-700); }
.form-result.is-error { background: #fdecec; border: 1px solid #e7b4b4; color: #9a2b2b; }

/* ===== Footer ===== */
.site-footer { position: relative; overflow: hidden; background: var(--ink-900); color: #d7cfd0; padding: 44px 0 28px; }

/* subtle green halftone dots, fading in from the top-right */
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(167, 200, 173, .20) 1px, transparent 1.5px);
  background-size: 13px 13px;
  -webkit-mask-image: radial-gradient(120% 130% at 92% 0%, #000 0%, rgba(0,0,0,.4) 44%, transparent 72%);
          mask-image: radial-gradient(120% 130% at 92% 0%, #000 0%, rgba(0,0,0,.4) 44%, transparent 72%);
  pointer-events: none;
}
.site-footer .container { position: relative; z-index: 1; }
.site-footer .brand-name { color: #fff; font-size: 1.15rem; font-weight: 800; }
.footer-logo { height: 44px; width: auto; display: block; margin-bottom: 8px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.1fr;
  gap: 30px 28px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.footer-brand { min-width: 0; }
@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 440px) { .footer-inner { grid-template-columns: 1fr; } }

.footer-brand p { margin: 6px 0 0; color: #a7c8ad; max-width: 200px; }

.footer-heading {
  color: #fff;
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 14px;
}
.footer-col { display: grid; gap: 9px; align-content: start; }
.footer-col a { color: #cdd6cf; font-size: .95rem; width: fit-content; }
.footer-col a:hover { color: #fff; }
.footer-contact a { color: #edf2ee; }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px 16px;
  padding-top: 20px;
}
.footer-legal p { margin: 0; color: #a09296; font-size: .9rem; }
.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #a09296;
  font-size: .82rem;
}
.footer-credit img { height: clamp(24px, 4.5vw, 30px); width: auto; display: block; }

/* ===== Portfolio & Services pages ===== */
.page-intro { padding-bottom: clamp(24px, 4vw, 40px); }
.page-intro h1 { font-size: clamp(2rem, 5vw, 3rem); }

/* ----- Areas we cover page ----- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 820px) { .areas-grid { grid-template-columns: 1fr; } }

.area-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 24px;
}
.area-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green-100);
  color: var(--green-700);
  margin-bottom: 14px;
}
.area-card h2 { font-size: 1.25rem; margin-bottom: .3em; }
.area-card > p { color: var(--ink-500); margin: 0; }
.area-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
}
.area-chip {
  background: var(--green-100);
  color: var(--green-700);
  border-radius: 999px;
  padding: 6px 13px;
  font-size: .85rem;
  font-weight: 650;
}
.areas-note {
  margin-top: 26px;
  padding: 20px 24px;
  background: var(--green-50);
  border: 1px solid var(--green-500);
  border-radius: var(--radius);
  color: var(--ink-700);
}
.areas-note p { margin: 0; }
.areas-note strong { color: var(--ink-900); }

/* ----- Services page rows ----- */
.service-row { padding-top: clamp(44px, 7vw, 76px); padding-bottom: clamp(44px, 7vw, 76px); }
.service-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}
.service-media img {
  width: 100%;
  height: clamp(230px, 32vw, 380px);
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #aecdb5;
}
.service-text h2 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); margin-bottom: .5em; }
.service-text > p { color: var(--ink-700); max-width: 56ch; }
.service-text .checklist { margin: 18px 0 26px; }
@media (min-width: 761px) {
  .service-row.reverse .service-media { order: 2; }
}
@media (max-width: 760px) {
  .service-inner { grid-template-columns: 1fr; gap: 22px; }
}

.project-head { margin-bottom: 20px; }
.project-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  margin: 12px 0 0;
  padding: 0;
  color: var(--ink-500);
  font-size: .95rem;
}
.project-meta li { display: flex; align-items: center; }
.project-meta li + li::before {
  content: "";
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--green-500);
  margin-right: 14px;
}
.project-body { max-width: 68ch; }
.project-body p { color: var(--ink-700); }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 30px 0;
}
.gallery img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #aecdb5;
}
.gallery .wide { grid-column: span 2; }
@media (max-width: 800px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery .wide { grid-column: span 2; }
  .gallery img { height: 220px; }
}
@media (max-width: 520px) {
  .gallery { grid-template-columns: 1fr; }
  .gallery .wide { grid-column: auto; }
  .gallery img { height: 210px; }
}

.project-result {
  max-width: 68ch;
  margin: 0;
  padding: 18px 20px;
  background: var(--green-50);
  border: 1px solid var(--green-500);
  border-radius: var(--radius);
  color: var(--ink-700);
}
.project-result strong { color: var(--ink-900); }

.portfolio-cta { text-align: center; }
.portfolio-cta-inner h2 { margin-bottom: .3em; }
.portfolio-cta-inner p { color: var(--ink-500); margin: 0 0 22px; }

/* ----- Job cards (one per completed job) ----- */
.jobs { display: grid; gap: 28px; }
.job-card {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(20px, 3.5vw, 36px);
}
@media (max-width: 820px) { .job-card { grid-template-columns: 1fr; gap: 22px; } }

.job-tag {
  display: inline-block;
  margin: 0 0 12px;
  padding: 4px 12px;
  background: var(--green-100);
  color: var(--green-700);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.job-title { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: .5em; }
.job-text p { color: var(--ink-700); }
.job-signoff { color: var(--ink-500); font-style: italic; margin-bottom: 0; }

.job-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: clamp(86px, 12vw, 130px);
  gap: 8px;
}
.job-thumb {
  position: relative;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #aecdb5;
}
.job-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.job-thumb:hover img, .job-thumb:focus-visible img { transform: scale(1.06); }
.job-thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(35, 9, 3, 0);
  transition: background .2s ease;
}
.job-thumb:hover::after { background: rgba(35, 9, 3, .12); }
.job-thumb-big { grid-column: span 2; grid-row: span 2; }
.job-thumb-wide { grid-column: span 2; }

/* ----- Lightbox ----- */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center;
  padding: 4vw;
  background: rgba(12, 6, 2, .92);
}
.lightbox[hidden] { display: none; }
.lightbox-figure {
  margin: 0;
  display: flex; align-items: center; justify-content: center;
  max-width: 100%; max-height: 100%;
}
.lightbox-img {
  display: block;
  max-width: min(1000px, 90vw);
  max-height: 86vh;
  width: auto; height: auto;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .55);
}
.lightbox-btn {
  position: absolute;
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border: none; border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  cursor: pointer;
  transition: background .15s ease;
}
.lightbox-btn:hover { background: rgba(255, 255, 255, .3); }
.lightbox-close { top: 16px; right: 16px; }
.lightbox-prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 14px; top: 50%; transform: translateY(-50%); }
@media (max-width: 560px) {
  .lightbox-btn { width: 40px; height: 40px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ===== Scroll / load reveal animations ===== */
/* .reveal is only added by JS, so no-JS visitors always see content. */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2, .7, .2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
