
:root {
  --brand: #153a19;
  --brand-dark: #0b1f0e;
  --brand-ink: #101610;
  --brand-soft: #e6efe3;
  --brand-sage: #a7b89d;
  --brand-mist: #f2f7ef;
  --stone: #f7f4ec;
  --sand: #d8cfbb;
  --line: #d7e0d1;
  --text: #121812;
  --muted: #5f6b5f;
  --white: #fff;
  --shadow: 0 18px 50px rgba(16, 22, 16, .14);
  --radius: 10px;
  --max: 1180px;
  --font-head: "Sora", "Manrope", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--stone);
  line-height: 1.6;
}
body.nav-open,
body.lightbox-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(21, 58, 25, .35);
  outline-offset: 3px;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--brand-dark);
  color: white;
  padding: 10px 14px;
  z-index: 999;
}
.skip-link:focus { left: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(21, 58, 25, .1);
  backdrop-filter: blur(14px);
  transition: box-shadow .2s, transform .2s;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(16, 22, 16, .1); }
.nav-wrap {
  max-width: var(--max);
  margin: auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 10px 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 190px;
  flex-shrink: 1;
}
.brand img {
  width: 210px;
  height: auto;
  border-radius: 6px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links > a {
  text-decoration: none;
  font-weight: 800;
  font-size: .9rem;
  padding: 10px 13px;
  border-bottom: 3px solid transparent;
}
.nav-links > a[aria-current="page"],
.nav-links > a:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(21, 58, 25, .16);
  border-radius: 999px;
  background: linear-gradient(180deg, #fbfcfa 0%, #f1f6ee 100%);
  box-shadow: 0 1px 2px rgba(21, 58, 25, .08), inset 0 1px 0 rgba(255, 255, 255, .92);
  flex-shrink: 0;
}
.language-switch a,
.language-switch span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 32px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .05em;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.language-switch a {
  color: rgba(21, 58, 25, .72);
}
.language-switch a:hover,
.language-switch a:focus-visible {
  color: var(--brand-dark);
  background: rgba(21, 58, 25, .08);
}
.language-switch span[aria-current="true"] {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 12px rgba(21, 58, 25, .28);
}
.header-cta {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  background: var(--brand);
  color: white;
  padding: 10px 14px;
  border-radius: 4px;
  font-weight: 800;
}
.menu-toggle {
  display: none;
  border: 0;
  background: var(--brand-ink);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  font-size: 1.4rem;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  margin: 4px auto;
}

.container { max-width: var(--max); margin: auto; padding: 0 22px; }
.section { padding: 58px 0; }
.section.tight,
.section-tight { padding: 38px 0; }
.eyebrow {
  text-transform: uppercase;
  font-weight: 900;
  color: var(--brand);
  letter-spacing: 0;
  font-size: .78rem;
  margin: 0 0 10px;
}
h1, h2, h3 {
  font-family: var(--font-head);
  letter-spacing: 0;
  line-height: 1.03;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.9rem); margin: 0; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.9rem); margin: 0; }
h3 { margin: 0; }
.lead { color: var(--muted); font-size: 1.08rem; }

.grid { display: grid; gap: 22px; }
.two, .grid-2 { grid-template-columns: 1.05fr .95fr; }
.three, .grid-3 { grid-template-columns: repeat(3, 1fr); }
.four, .grid-4 { grid-template-columns: repeat(4, 1fr); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid transparent;
  border-radius: 4px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 900;
  min-height: 48px;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary,
.btn-primary { background: var(--brand); color: white; }
.btn.primary:hover,
.btn-primary:hover { background: var(--brand-dark); }
.btn.secondary { background: white; color: var(--text); }
.btn.ghost,
.btn-ghost { border-color: rgba(255,255,255,.7); color: white; }
.btn.dark { background: var(--brand-ink); color: white; }
.btn-light { background: white; color: var(--brand-dark); }
.btn-outline { border-color: var(--brand); color: var(--brand); background: transparent; }

.hero {
  min-height: min(720px, calc(100vh - 78px));
  position: relative;
  color: white;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #111;
}
.hero picture,
.hero .hero-img,
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media img,
.hero .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media img:not(.is-active) { display: none; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.42) 48%, rgba(0,0,0,.18)),
    linear-gradient(0deg, rgba(0,0,0,.5), transparent 44%);
}
.hero-content,
.hero-grid {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: auto;
  width: 100%;
  padding: 44px 22px 42px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 44px;
  align-items: center;
}
.hero h1 { color: white; font-size: clamp(3rem, 5.6vw, 5rem); }
.hero p {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  max-width: 720px;
  color: #f3f1ec;
  margin: 18px 0 0;
}
.hero-actions,
.cta-row,
.chip-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.92);
  color: var(--brand-ink);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
  font-size: .84rem;
}
.trust-chip.dark { background: rgba(255,255,255,.14); color: white; }
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}
.hero-proof {
  background: rgba(247,244,236,.92);
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.proof-item {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 14px;
  align-items: center;
  text-decoration: none;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255,255,255,.65);
}
.proof-item + .proof-item { margin-top: 12px; }
.proof-item img { width: 118px; height: 86px; object-fit: cover; border-radius: 4px; }
.proof-item strong { display: block; color: var(--brand-ink); }
.proof-item span { color: var(--muted); font-weight: 700; font-size: .92rem; }

.trust-strip { background: var(--brand-ink); color: white; }
.trust-grid {
  max-width: var(--max);
  margin: auto;
  padding: 16px 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.trust-grid span { font-weight: 900; }

.service-area-band {
  background: #f3f6f0;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.area-grid span {
  min-height: 48px;
  display: grid;
  place-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(21, 58, 25, .16);
  background: #fff;
  color: var(--brand);
  font-weight: 900;
  text-align: center;
  border-radius: 6px;
}

.section-head,
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: end;
  margin-bottom: 28px;
}
.section-head p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.page-hero p { max-width: 680px; color: var(--muted); margin: 10px 0 0; }
.section-intro {
  max-width: 840px;
  margin: 0 auto 28px;
  text-align: center;
}
.section-intro p:not(.eyebrow) { color: var(--muted); margin: 14px auto 0; max-width: 680px; }
.expectation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.expectation {
  padding: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.expectation p {
  color: var(--muted);
  margin: 8px 0 0;
}
.value-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}
.value-list li {
  position: relative;
  padding-left: 28px;
}
.value-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--brand-sage);
  box-shadow: inset 0 0 0 4px var(--brand);
}

.card,
.service-card,
.project-card,
.contact-panel,
.contact-card,
.surface {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(16,22,16,.03);
}
.service-card,
.project-card { transition: transform .2s, box-shadow .2s; }
.service-card:hover,
.project-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.service-card img,
.project-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.card-body { padding: 20px; }
.card-body h3 { margin: 0 0 8px; font-size: 1.18rem; }
.card-body p { color: var(--muted); margin: 0 0 14px; }
.link-arrow { font-weight: 900; color: var(--brand); text-decoration: none; }
.image-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.image-card-caption {
  display: block;
  padding: 14px 16px;
  color: var(--muted);
}
.image-card-caption strong {
  display: block;
  color: var(--brand);
}

.service-rail { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 22px; }
.service-tile {
  display: block;
  position: relative;
  min-height: 255px;
  overflow: hidden;
  border-radius: var(--radius);
  color: white;
  text-decoration: none;
}
.service-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.service-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11,31,14,.86), rgba(11,31,14,.12));
}
.service-tile-body { position: absolute; z-index: 1; inset: auto 0 0; padding: 20px; }
.service-tile-body h3 { color: white; }
.service-tile-body p { color: rgba(255,255,255,.82); margin: 8px 0 0; }

.band,
.dark-band { background: var(--brand-ink); color: white; }
.band .eyebrow,
.dark-band .eyebrow { color: var(--brand-sage); }
.band h2,
.band h3,
.dark-band h2,
.dark-band h3 { color: white; }
.band p,
.dark-band p,
.dark-band li { color: #dfdfdf; }
.process { counter-reset: step; }
.step {
  border-top: 4px solid var(--brand);
  padding: 22px;
  background: #202820;
  border-radius: 4px;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  color: var(--brand-sage);
  font-weight: 900;
}
.step h3 { margin: 8px 0; }
.process-flow { display: block; }
.process-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.process-card { border: 0; background: transparent; padding: 0; text-align: left; color: inherit; }
.process-card-inner { display: block; }
.process-face {
  display: block;
  min-height: 190px;
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.process-face.back { display: none; }
.dark-band .process-face { background: #202820; color: white; border-color: rgba(255,255,255,.1); }
.process-num { color: var(--brand-sage); font-weight: 900; font-size: 2rem; }

.showcase { display: flex; gap: 16px; overflow: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; }
.showcase figure { min-width: min(420px,82vw); margin: 0; scroll-snap-align: start; background: white; border-radius: var(--radius); overflow: hidden; }
.showcase img { width: 100%; height: 260px; object-fit: cover; }
.showcase figcaption { padding: 14px 16px; font-weight: 900; }
.proof-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 22px; align-items: start; }
.proof-lead,
.proof-mini {
  display: block;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
}
.proof-lead img { width: 100%; height: 420px; object-fit: cover; }
.proof-stack { display: grid; gap: 14px; }
.proof-mini { display: grid; grid-template-columns: 165px 1fr; align-items: center; }
.proof-mini img { width: 165px; height: 125px; object-fit: cover; }
.proof-lead-content,
.proof-mini span { display: block; padding: 20px; }

.page-hero {
  position: relative;
  background: var(--brand-ink);
  color: white;
  padding: 52px 0 36px;
  overflow: hidden;
}
.page-hero-media { position: absolute; inset: 0; opacity: .35; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  color: white;
  max-width: 900px;
  font-size: clamp(2.55rem, 4.8vw, 4.45rem);
}
.page-hero p { color: #e7e2dc; }
.page-hero-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 44px; align-items: center; }
.hero-panel img { width: 100%; height: 300px; object-fit: cover; border-radius: var(--radius); }
.about-hero h1 {
  max-width: 860px;
  font-size: clamp(2.55rem, 4.5vw, 4.1rem);
}

.split-image { border-radius: var(--radius); overflow: hidden; min-height: 100%; }
.split-image img { height: 100%; width: 100%; object-fit: cover; }
.check-list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 10px; }
.check-list li { padding-left: 30px; position: relative; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 16px;
  height: 16px;
  background: var(--brand);
  clip-path: polygon(14% 52%,35% 72%,84% 20%,96% 32%,36% 92%,4% 62%);
}

.service-index-wrap {
  position: sticky;
  top: 78px;
  z-index: 20;
  background: rgba(247,244,236,.94);
  border-bottom: 1px solid var(--line);
}
.service-index {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-block: 12px;
  scrollbar-color: var(--brand) rgba(21, 58, 25, .12);
  scrollbar-width: thin;
}
.service-index a,
.filter-btn {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: white;
  border-radius: 4px;
  padding: 10px 14px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}
.service-index a:hover,
.service-index a.is-active,
.filter-btn[aria-pressed="true"],
.filter-btn:hover {
  background: var(--brand-ink);
  color: white;
}
.service-detail,
.service-row {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 22px;
  align-items: stretch;
  padding: 18px;
  border-top: 1px solid var(--line);
  background: white;
  scroll-margin-top: 145px;
}
.service-row {
  grid-template-columns: 300px 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 22px;
}
.service-detail img,
.service-row-media img {
  height: 100%;
  min-height: 210px;
  max-height: 260px;
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.service-row h2 { font-size: clamp(1.75rem, 3vw, 2.65rem); }
.facts { display: flex; gap: 8px; flex-wrap: wrap; padding: 0; margin: 14px 0; list-style: none; }
.facts li { background: var(--brand-soft); color: var(--brand); padding: 6px 10px; border-radius: 999px; font-weight: 900; }
.typical { color: var(--muted); }

.faq-section { background: var(--paper); }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}
.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.faq-item h3 { font-size: 1.08rem; margin-bottom: 10px; }
.faq-item p { color: var(--muted); margin: 0; }

.filters {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  margin-bottom: 26px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  scrollbar-color: var(--brand) rgba(21, 58, 25, .12);
  scrollbar-width: thin;
}
.filters::-webkit-scrollbar,
.service-index::-webkit-scrollbar {
  height: 9px;
}
.filters::-webkit-scrollbar-track,
.service-index::-webkit-scrollbar-track {
  background: rgba(21, 58, 25, .1);
  border-radius: 999px;
}
.filters::-webkit-scrollbar-thumb,
.service-index::-webkit-scrollbar-thumb {
  background: var(--brand);
  border-radius: 999px;
}
.project-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.project-card { border: 0; text-align: left; padding: 0; cursor: pointer; color: inherit; }
.project-card[hidden] { display: none; }
.project-card img { border-radius: var(--radius); aspect-ratio: 4/3; height: auto; }
.project-card h3 { font-size: 1rem; margin: 10px 0 2px; }
.project-card p { margin: 0; color: var(--muted); font-size: .92rem; }
.project-card-body { display: block; padding: 0 2px 8px; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 2.5vw, 26px);
}
.lightbox.open { display: flex; }
.lightbox figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  justify-items: center;
  width: min(1120px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  margin: 0;
  color: white;
}
.lightbox img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100dvh - 118px);
  margin: auto;
  border-radius: 4px;
  object-fit: contain;
}
.lightbox figcaption {
  width: 100%;
  margin-top: 12px;
  text-align: center;
}
.lightbox-close,
.lightbox-control {
  position: absolute;
  border: 0;
  border-radius: 4px;
  background: white;
  color: var(--brand-ink);
  font-size: 2rem;
  cursor: pointer;
}
.lightbox-close { top: 18px; right: 18px; width: 46px; height: 46px; }
.lightbox-control { top: 50%; width: 46px; height: 46px; transform: translateY(-50%); }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }

.contact-grid,
.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: start;
  gap: 22px;
}
.contact-panel,
.contact-card { padding: 24px; }
.contact-card h2 { font-size: clamp(1.8rem, 3.2vw, 3rem); }
.contact-panel img,
.contact-card.image-strip img { width: 100%; max-height: 320px; object-fit: cover; border-radius: 4px; margin-bottom: 16px; }
.contact-method { display: block; padding: 16px 0; border-bottom: 1px solid var(--line); text-decoration: none; overflow-wrap: anywhere; }
.contact-method strong { display: block; color: var(--brand); }
form { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
label { font-weight: 900; }
input, select, textarea {
  width: 100%;
  border: 1px solid #c9d2c4;
  border-radius: 4px;
  padding: 12px;
  font: inherit;
  background: white;
}
textarea { min-height: 150px; resize: vertical; }
.hp { position: absolute; left: -10000px; }
.form-status { padding: 12px; border-radius: 4px; display: none; }
.form-status.show { display: block; }
.form-status.success { background: var(--brand-soft); color: var(--brand-dark); }
.form-status.error { background: #f7e9df; color: #6f3315; }

.legal-layout { display: grid; grid-template-columns: 250px 1fr; gap: 22px; align-items: start; }
.legal-toc { padding: 20px; position: sticky; top: 110px; display: grid; gap: 10px; }
.legal article,
.legal-block {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 22px;
}
.legal-block p { color: var(--muted); }

.cta-band { background: var(--brand); color: white; border-radius: var(--radius); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 32px; }
.cta-band h2 { color: white; }
.cta-band p { color: rgba(255,255,255,.82); }
.cta-band .eyebrow { color: var(--brand-sage); }

.footer { background: #101610; color: white; padding: 48px 0 24px; }
.footer a { color: white; text-decoration: none; }
.footer a:hover { color: var(--brand-sage); }
.footer-grid { display: grid; grid-template-columns: 1.25fr .85fr 1fr 1.15fr; gap: 28px; }
.footer img.footer-logo,
.footer > .container > .footer-grid > div:first-child img { width: 220px; height: 62px; aspect-ratio: 800 / 225; object-fit: contain; margin-bottom: 12px; border-radius: 6px; }
.footer p,
.footer li { color: #d7d7d7; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-email { white-space: nowrap; font-size: .92rem; }
.social-links a { display: flex; align-items: center; gap: 8px; }
.social-links img { width: 16px; height: 16px; filter: none; }
.copyright { border-top: 1px solid rgba(255,255,255,.13); margin-top: 30px; padding-top: 18px; color: #cfcfcf; font-size: .92rem; }
.back-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  border: 0;
  background: var(--brand);
  color: white;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: .2s;
  z-index: 60;
}
.back-top.show { opacity: 1; pointer-events: auto; }

[data-animate],
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .66s cubic-bezier(.22, 1, .36, 1), transform .66s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}
.js [data-animate],
.js .reveal {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
}
.js [data-animate].in,
.js .reveal.in { opacity: 1; transform: none; }

.pos-bottom { object-position: 50% 78%; }
.pos-worker { object-position: 50% 28%; }
.pos-vanity { object-position: 50% 55%; }
.pos-storefront { object-position: 50% 45%; }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .nav-links {
    position: fixed;
    inset: 78px 0 auto 0;
    background: white;
    display: grid;
    padding: 18px 22px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    transition: transform .22s;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links > a { font-size: 1rem; }
  .nav-links > .language-switch {
    justify-self: center;
    margin: 10px auto 6px;
    padding: 5px;
    gap: 4px;
    background: rgba(255, 255, 255, .94);
    border-color: rgba(21, 58, 25, .2);
    box-shadow: 0 10px 28px rgba(21, 58, 25, .12), inset 0 1px 0 rgba(255, 255, 255, .95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
  .nav-links > .language-switch a,
  .nav-links > .language-switch span {
    min-width: 44px;
    min-height: 40px;
    padding: 8px 14px;
    font-size: .8rem;
    border: 0;
    background: transparent;
  }
  .nav-links > .language-switch span[aria-current="true"] {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 6px 16px rgba(21, 58, 25, .26);
  }
  .hero-grid,
  .page-hero-grid,
  .trust-grid,
  .area-grid,
  .expectation-grid,
  .three,
  .four,
  .two,
  .grid-2,
  .grid-3,
  .grid-4,
  .contact-grid,
  .contact-layout,
  .footer-grid,
  .service-rail,
  .process-cards,
  .project-grid,
  .legal-layout { grid-template-columns: 1fr 1fr; }
  .service-row { grid-template-columns: 1fr; }
  .section-head,
  .section-heading,
  .cta-band-inner { display: block; }
  .hero { min-height: 720px; }
}

@media (max-width: 620px) {
  .nav-wrap { padding: 10px 16px; }
  .brand { min-width: 0; }
  .brand img { width: 150px; }
  .hero-content,
  .hero-grid { padding: 44px 18px 34px; }
  .section { padding: 56px 0; }
  .container { padding: 0 18px; }
  .trust-grid,
  .area-grid,
  .expectation-grid,
  .three,
  .four,
  .two,
  .grid-2,
  .grid-3,
  .grid-4,
  .contact-grid,
  .contact-layout,
  .footer-grid,
  .service-rail,
  .process-cards,
  .project-grid,
  .legal-layout { grid-template-columns: 1fr; }
  .hero-actions .btn,
  .cta-row .btn { width: 100%; }
  .page-hero { padding: 58px 0 34px; }
  .service-detail,
  .service-row { padding: 18px; }
  .card-body { padding: 16px; }
  .footer { padding-top: 38px; }
  .footer-email { white-space: normal; overflow-wrap: anywhere; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
  [data-animate],
  .reveal,
  .js [data-animate],
  .js .reveal { opacity: 1; transform: none; }
}

/* Phase 2.2 polish: page motion, mobile navigation, gallery, and contact refinements. */
.js main {
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  transition: opacity .42s cubic-bezier(.22, 1, .36, 1), transform .42s cubic-bezier(.22, 1, .36, 1);
}

.js body.page-loaded main {
  opacity: 1;
  transform: none;
}

.nav-links > a,
.btn,
.filter-btn,
.service-index a,
.project-card,
.process-card,
.service-card,
.contact-method {
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, border-color .22s ease, color .22s ease, opacity .22s ease;
}

.nav-links > a:hover,
.nav-links > a:focus-visible,
.service-index a:hover,
.service-index a:focus-visible,
.filter-btn:hover,
.filter-btn:focus-visible {
  transform: translateY(-1px);
}

.hero-media img,
.page-hero-media img {
  opacity: 0;
  transform: scale(1.045);
  transition: opacity .9s ease, transform 5.8s ease;
  will-change: opacity, transform;
}

.hero-media img.is-active,
.page-hero-media img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-media img:not(.is-active) {
  display: block;
}

.hero-carousel {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 3;
  display: flex;
  gap: 9px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  background: rgba(11, 31, 14, .52);
  box-shadow: 0 18px 45px rgba(0,0,0,.24);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.hero-dot {
  width: 48px;
  height: 34px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  cursor: pointer;
  opacity: .72;
}

.hero-dot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-dot:hover,
.hero-dot:focus-visible,
.hero-dot[aria-current="true"] {
  opacity: 1;
  border-color: var(--brand-soft);
  transform: translateY(-2px);
}

.service-index-wrap {
  border-block: 1px solid rgba(21, 58, 25, .12);
  background: rgba(247, 244, 236, .82);
  backdrop-filter: blur(18px);
}

.service-index {
  gap: 10px;
  padding-block: 14px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-color: var(--brand) rgba(21, 58, 25, .12);
  scrollbar-width: thin;
}

.service-index a {
  scroll-snap-align: start;
  min-width: max-content;
  border-radius: 999px;
  border: 1px solid rgba(21, 58, 25, .16);
  background: rgba(255,255,255,.76);
  box-shadow: 0 10px 24px rgba(16, 22, 16, .06);
}

.service-index a.is-active,
.service-index a:hover,
.service-index a:focus-visible {
  color: white;
  background: var(--brand);
  border-color: var(--brand);
}

.gallery-toolbar {
  align-items: end;
  gap: 22px;
  margin-bottom: 24px;
  padding: 24px;
  border: 1px solid rgba(21, 58, 25, .12);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(230, 239, 227, .86), rgba(255,255,255,.92)),
    var(--white);
  box-shadow: 0 18px 45px rgba(16, 22, 16, .08);
}

.gallery-toolbar h2 { margin-bottom: 0; }

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-btn {
  border-radius: 999px;
  border: 1px solid rgba(21, 58, 25, .16);
  background: rgba(255,255,255,.78);
  box-shadow: 0 8px 20px rgba(16, 22, 16, .05);
}

.filter-btn[aria-pressed="true"] {
  color: white;
  background: var(--brand);
  border-color: var(--brand);
}

.project-grid {
  gap: 18px;
  align-items: stretch;
}

.project-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 4 / 3;
  background: var(--brand-dark);
  box-shadow: 0 16px 32px rgba(16, 22, 16, .12);
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 32%, rgba(11, 31, 14, .88)),
    radial-gradient(circle at 18% 16%, rgba(230, 239, 227, .18), transparent 28%);
  opacity: .9;
  transition: opacity .24s ease;
}

.project-card::after {
  content: "Open";
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: rgba(255,255,255,.9);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  transform: translateY(-8px);
  opacity: 0;
  transition: opacity .22s ease, transform .22s ease;
}

.project-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 0;
  transform: scale(1.012);
  transition: transform .55s cubic-bezier(.2, .8, .2, 1), filter .28s ease;
}

.project-card-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: block;
  padding: 54px 16px 16px;
  color: white;
}

.project-card h3 {
  margin: 0 0 2px;
  color: white;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.project-card p {
  color: rgba(255,255,255,.78);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.project-card:hover,
.project-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 28px 60px rgba(16, 22, 16, .2);
}

.project-card:hover::after,
.project-card:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.project-card:hover img,
.project-card:focus-visible img {
  transform: scale(1.075);
  filter: saturate(1.08) contrast(1.03);
}

.lightbox {
  backdrop-filter: blur(16px);
}

.lightbox figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  justify-items: center;
  width: min(1120px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px;
  box-shadow: 0 30px 90px rgba(0,0,0,.38);
  overflow: hidden;
  background: rgba(6, 16, 9, .96);
}

.lightbox img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100dvh - 118px);
  object-fit: contain;
  background: #061009;
}

.logo-contact-card {
  background:
    radial-gradient(circle at 80% 10%, rgba(167, 184, 157, .28), transparent 26%),
    linear-gradient(145deg, var(--brand-mist), white);
}

.contact-card.image-strip .contact-logo-img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  padding: clamp(18px, 4vw, 42px);
  border: 1px solid rgba(21, 58, 25, .14);
  border-radius: 14px;
  background: white;
  box-shadow: 0 18px 40px rgba(16, 22, 16, .08);
}

.dark-band {
  background:
    radial-gradient(circle at 88% 10%, rgba(167, 184, 157, .2), transparent 26%),
    linear-gradient(135deg, #102913, var(--brand-dark));
}

.dark-band .image-card {
  color: var(--text);
  background: rgba(255,255,255,.94);
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}

.dark-band .image-card-caption,
.dark-band .image-card-caption p {
  color: var(--muted);
}

.dark-band .image-card-caption strong {
  color: var(--brand);
}

.social-links a {
  gap: 10px;
}

.social-links img {
  width: 22px;
  height: 22px;
  padding: 4px;
  border-radius: 999px;
  background: var(--brand-soft);
  filter: none;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: var(--brand);
    box-shadow: 0 14px 28px rgba(21, 58, 25, .2);
  }

  .menu-toggle span {
    width: 20px;
    background: white;
  }

  .nav-links {
    position: fixed;
    inset: 72px 14px auto 14px;
    z-index: 60;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(21, 58, 25, .14);
    border-radius: 22px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 28px 80px rgba(16, 22, 16, .22);
    backdrop-filter: blur(20px);
    transform: translateY(-12px) scale(.96);
    transform-origin: top right;
    opacity: 0;
    pointer-events: none;
    transition: opacity .24s ease, transform .24s cubic-bezier(.2, .8, .2, 1);
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-links > a {
    padding: 14px 16px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-size: 1.03rem;
  }

  .nav-links > a:hover,
  .nav-links > a:focus-visible,
  .nav-links > a[aria-current="page"] {
    color: var(--brand-dark);
    background: var(--brand-soft);
    border-color: rgba(21, 58, 25, .12);
  }

  .gallery-toolbar {
    display: grid;
    align-items: start;
  }

  .filters {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .nav-wrap {
    gap: 10px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 54px);
  }

  .brand img {
    display: block;
    width: 100%;
    max-width: min(70vw, 260px);
    height: auto;
    max-height: 54px;
    object-fit: contain;
    object-position: left center;
  }

  .hero-carousel {
    bottom: 14px;
    gap: 7px;
    max-width: calc(100vw - 28px);
  }

  .hero-dot {
    width: 42px;
    height: 30px;
  }

  .gallery-toolbar {
    padding: 18px;
    border-radius: 16px;
  }

  .project-card {
    border-radius: 16px;
  }

  .footer-email {
    white-space: nowrap;
    overflow-wrap: normal;
    font-size: clamp(.78rem, 3.35vw, .94rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .js main,
  .js body.page-loaded main,
  .hero-media img,
  .page-hero-media img,
  .project-card img {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Final responsive structure pass: phone/tablet layout must stack intentionally. */
.hero-copy {
  max-width: 880px;
}

.hero h1 {
  max-width: 880px;
  font-size: clamp(3rem, 4.9vw, 4.45rem);
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

@media (max-width: 820px) {
  .hero h1 span {
    white-space: normal;
  }
}

.hero-grid {
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, .8fr);
  gap: clamp(24px, 3vw, 40px);
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 78px;
  }

  .nav-wrap {
    min-height: 68px;
    gap: 8px;
    padding: 8px 12px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 52px);
    overflow: visible;
  }

  .brand img {
    display: block;
    width: auto;
    min-width: 0;
    max-width: 100%;
    height: auto;
    max-height: 48px;
    object-fit: contain;
    object-position: left center;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 48px;
    width: 48px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(21, 58, 25, .18);
    border-radius: 14px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 12px 26px rgba(16, 22, 16, .12);
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0;
    border-radius: 999px;
    background: var(--brand);
    transition: transform .22s ease, opacity .18s ease, width .22s ease;
  }

  .menu-toggle span:nth-child(2) {
    width: 16px;
    align-self: center;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(.4);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    inset: 74px 12px auto 12px;
    max-height: calc(100dvh - 88px);
    overflow: auto;
    border-radius: 18px;
  }

  .hero {
    min-height: auto;
    align-items: start;
  }

  .hero-grid,
  .page-hero-grid,
  .proof-layout,
  .contact-layout,
  .legal-layout {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .hero-grid {
    gap: 20px;
    padding: 44px 18px 70px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 10.2vw, 3.15rem);
    line-height: .98;
  }

  .hero p {
    max-width: 100%;
    font-size: 1rem;
    margin-top: 14px;
  }

  .hero-actions,
  .chip-row {
    gap: 9px;
    margin-top: 18px;
  }

  .trust-chip {
    padding: 7px 10px;
    font-size: .78rem;
  }

  .hero-proof {
    width: 100%;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 12px;
    border-radius: 14px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .hero-proof::-webkit-scrollbar {
    display: none;
  }

  .proof-item {
    flex: 0 0 min(278px, 82vw);
    grid-template-columns: 88px 1fr;
    gap: 11px;
    padding: 8px;
    scroll-snap-align: start;
  }

  .proof-item + .proof-item {
    margin-top: 0;
  }

  .proof-item img {
    width: 88px;
    height: 66px;
  }

  .proof-item span {
    font-size: .84rem;
    line-height: 1.35;
  }

  .hero-carousel {
    bottom: 14px;
  }

  .page-hero {
    padding: 48px 0 34px;
  }

  .page-hero h1,
  .about-hero h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 9.5vw, 3rem);
    line-height: 1;
  }

  .page-hero p {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-panel img,
  .image-card img {
    height: 230px;
  }

  .service-rail,
  .process-cards,
  .expectation-grid,
  .project-grid,
  .trust-grid,
  .area-grid,
  .footer-grid,
  .grid-3,
  .grid-4,
  .three,
  .four {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .two,
  .grid-2 {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .proof-lead img {
    height: 260px;
  }

  .proof-mini {
    grid-template-columns: 118px 1fr;
  }

  .proof-mini img {
    width: 118px;
    height: 96px;
  }

  .proof-lead-content,
  .proof-mini span {
    padding: 16px;
  }

  .section {
    padding: 48px 0;
  }
}

@media (max-width: 620px) {
  .container {
    padding-inline: 18px;
  }

  .section {
    padding: 44px 0;
  }

  .section-tight {
    padding: 32px 0;
  }

  h2 {
    font-size: clamp(1.7rem, 7.4vw, 2.28rem);
  }

  .hero h1 {
    font-size: clamp(2.35rem, 10vw, 2.7rem);
  }

  .hero-grid {
    padding-top: 38px;
  }

  .hero-actions .btn,
  .cta-row .btn {
    width: 100%;
  }

  .service-rail,
  .process-cards,
  .expectation-grid,
  .trust-grid,
  .area-grid,
  .footer-grid,
  .grid-3,
  .grid-4,
  .three,
  .four {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px;
  }

  .project-card {
    border-radius: 14px;
  }

  .project-card-body {
    padding: 42px 10px 10px;
  }

  .project-card h3 {
    font-size: .86rem;
    line-height: 1.08;
  }

  .project-card p {
    font-size: .66rem;
  }

  .gallery-toolbar {
    padding: 16px;
  }

  .filters {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .filter-btn {
    padding: 9px 12px;
    font-size: .85rem;
  }

  .lightbox {
    padding: 10px;
  }

  .lightbox figure {
    width: calc(100vw - 20px);
    max-height: calc(100dvh - 20px);
    border-radius: 14px;
  }

  .lightbox img {
    max-height: calc(100dvh - 130px);
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
  }

  .lightbox-control {
    top: auto;
    bottom: 16px;
    transform: none;
  }

  .lightbox-prev {
    left: 16px;
  }

  .lightbox-next {
    right: 16px;
  }

  .service-index {
    padding-inline: 18px;
  }

  .service-index-wrap {
    position: static;
    top: auto;
  }

  .service-row {
    padding: 14px;
  }

  .service-row-media img,
  .service-detail img {
    min-height: 180px;
    max-height: 210px;
  }

  .proof-layout {
    gap: 16px;
  }

  .proof-lead img {
    height: 225px;
  }

  .proof-lead-content h2 {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }

  .proof-stack {
    gap: 10px;
  }

  .proof-mini {
    grid-template-columns: 104px 1fr;
  }

  .proof-mini img {
    width: 104px;
    height: 90px;
  }

  .proof-mini h3 {
    font-size: 1rem;
  }

  .proof-mini p {
    font-size: .9rem;
    margin: 6px 0 0;
  }

  .contact-card,
  .contact-panel {
    padding: 18px;
  }

  .contact-card h2 {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }

  .footer-email {
    white-space: nowrap;
    overflow-wrap: normal;
    font-size: clamp(.78rem, 3.35vw, .94rem);
  }

  .legal-toc {
    position: static;
  }
}

@media (max-width: 360px) {
  .brand {
    max-width: calc(100% - 52px);
  }

  .brand img {
    max-width: min(68vw, 210px);
    max-height: 46px;
  }

  .hero h1 {
    font-size: 2.22rem;
  }

  .project-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

/* Home hero centered composition. */
.hero-grid {
  grid-template-columns: minmax(0, 980px) !important;
  justify-content: center;
  justify-items: center;
  text-align: center;
}

.hero-copy {
  max-width: 880px;
  margin-inline: auto;
}

.hero h1,
.hero p {
  margin-inline: auto;
}

.hero-actions,
.hero .chip-row {
  justify-content: center;
}

.hero-proof {
  width: min(100%, 760px);
  margin-inline: auto;
}

.hero .proof-item {
  text-align: left;
}

@media (max-width: 820px) {
  .hero-proof {
    justify-content: flex-start;
  }

  .hero .proof-item {
    text-align: left;
  }
}

/* Home hero emphasis: larger animated green title and darker image treatment. */
.hero::after {
  background:
    linear-gradient(90deg, rgba(0,0,0,.94), rgba(0,0,0,.62) 48%, rgba(0,0,0,.38)),
    linear-gradient(0deg, rgba(0,0,0,.7), rgba(0,0,0,.18) 48%);
}

.hero-copy {
  max-width: min(1180px, 100%);
}

.hero h1 {
  max-width: 1180px;
  font-size: clamp(4.5rem, 7.35vw, 6.7rem);
  line-height: .92;
}

.hero h1 span {
  color: transparent;
  background-image: linear-gradient(90deg, #ffffff 0%, #e6efe3 20%, #b8dfad 45%, #78bd72 72%, #e6efe3 100%);
  background-size: 100% 100%;
  background-position: 50% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 18px 45px rgba(0,0,0,.28);
}

@media (max-width: 820px) {
  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 10.2vw, 3.2rem);
    line-height: 1;
  }

  .hero h1 span {
    white-space: normal;
    overflow-wrap: break-word;
  }

  .hero h1 span + span {
    font-size: 0.9em;
    letter-spacing: -0.01em;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: clamp(2rem, 9.2vw, 2.35rem);
  }

  .hero h1 span + span {
    font-size: 0.86em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero h1 span {
    background-position: 50% 50%;
  }
}

/* Mobile language pill — scoped so menu row styles never flatten EN/ES */
@media (max-width: 900px) {
  .nav-links > .language-switch {
    display: inline-flex !important;
    align-self: center;
    justify-self: center;
    width: auto;
    max-width: max-content;
    margin: 12px auto 8px;
    padding: 5px;
    gap: 4px;
    border: 1px solid rgba(21, 58, 25, .22);
    border-radius: 999px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 10px 28px rgba(21, 58, 25, .14), inset 0 1px 0 rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .nav-links > .language-switch a,
  .nav-links > .language-switch span {
    min-width: 44px !important;
    min-height: 40px !important;
    padding: 8px 14px !important;
    border: 0 !important;
    border-radius: 999px !important;
    font-size: .8rem !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    letter-spacing: .06em;
    background: transparent !important;
    transform: none !important;
  }

  .nav-links > .language-switch a {
    color: rgba(21, 58, 25, .7) !important;
  }

  .nav-links > .language-switch a:hover,
  .nav-links > .language-switch a:focus-visible {
    color: var(--brand-dark) !important;
    background: rgba(21, 58, 25, .1) !important;
  }

  .nav-links > .language-switch span[aria-current="true"] {
    background: var(--brand) !important;
    color: #fff !important;
    box-shadow: 0 6px 18px rgba(21, 58, 25, .3) !important;
  }
}
