:root {
  --forest: #16301f;
  --forest-2: #0f2417;
  --moss: #496856;
  --gold: #d4af37;
  --gold-2: #b8942f;
  --cream: #f7f5ef;
  --paper: #fffdf8;
  --clay: #9b5f3f;
  --ink: #19241d;
  --muted: #637165;
  --line: rgba(22, 48, 31, .16);
  --shadow: 0 24px 60px rgba(15, 36, 23, .16);
  --display: "Marcellus", Georgia, serif;
  --body: "Plus Jakarta Sans", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--gold);
  color: var(--forest);
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(22, 48, 31, .98);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 16px 34px rgba(15, 36, 23, .22);
  backdrop-filter: blur(16px);
}

.top-bar {
  background: var(--forest-2);
  color: #d8e4da;
  min-height: 36px;
  display: flex;
  align-items: center;
}

.top-bar__inner,
.nav-bar,
.section-inner,
.footer-inner,
.footer-bottom {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.market {
  color: var(--gold);
  font-weight: 800;
}

.nav-bar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
  flex: none;
}

.brand__name {
  font-family: var(--display);
  color: var(--paper);
  font-size: 27px;
  letter-spacing: .17em;
  white-space: nowrap;
}

.brand__tag {
  color: var(--gold-2);
  font-size: 10px;
  letter-spacing: .34em;
  margin-top: 7px;
  text-transform: uppercase;
  font-weight: 800;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 30px);
}

.desktop-nav a,
.mobile-nav a {
  text-decoration: none;
  font-weight: 700;
}

.desktop-nav a {
  color: #cbd8cd;
  font-size: 15px;
  border-bottom: 2px solid transparent;
  padding: 7px 0;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--paper);
  border-bottom-color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: none;
}

.nav-market {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-market::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 22px;
  margin-left: 22px;
  background: rgba(212, 175, 55, .36);
}

.button,
.quote-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 6px;
  border: 1px solid transparent;
  padding: 12px 22px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.button:hover,
.quote-button:hover,
.ghost-button:hover {
  transform: translateY(-1px);
}

.quote-button,
.button {
  background: var(--forest);
  color: #fffdf8;
}

.quote-button:hover,
.button:hover {
  background: var(--gold);
  color: var(--forest);
}

.quote-button {
  background: var(--gold);
  color: var(--forest);
}

.quote-button:hover {
  background: #e1c25c;
  color: var(--forest);
}

.ghost-button {
  color: #fffdf8;
  border-color: rgba(255, 253, 248, .58);
}

.ghost-button:hover {
  background: rgba(255, 253, 248, .12);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 6px;
  border: 1px solid rgba(212, 175, 55, .55);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(212, 175, 55, .24);
  background: var(--forest-2);
}

.mobile-panel[hidden] {
  display: none !important;
}

.mobile-nav {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 12px 0 22px;
  display: grid;
  gap: 4px;
}

.mobile-nav a {
  padding: 13px 4px;
  border-bottom: 1px solid rgba(255, 253, 248, .09);
  color: #cbd8cd;
}

.mobile-nav .quote-button {
  margin-top: 12px;
  color: var(--forest);
}

.hero {
  min-height: clamp(590px, 82vh, 760px);
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fffdf8;
  background: var(--forest);
}

.hero__image {
  position: absolute;
  inset: 0;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: slow-rise 22s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 36, 23, .9), rgba(15, 36, 23, .66) 46%, rgba(15, 36, 23, .22)),
    linear-gradient(0deg, rgba(15, 36, 23, .36), transparent 52%);
}

@keyframes slow-rise {
  from { transform: scale(1); }
  to { transform: scale(1.09); }
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0;
}

.eyebrow {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 800;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(42px, 7vw, 76px);
  max-width: 840px;
  margin: 20px 0 0;
}

.hero p {
  max-width: 610px;
  color: #d9e5db;
  font-size: clamp(16px, 2vw, 19px);
  margin: 24px 0 0;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.section {
  padding: clamp(66px, 9vw, 112px) 0;
}

.section--paper {
  background: var(--paper);
}

.section--forest {
  background: var(--forest);
  color: #fffdf8;
}

.section--clay {
  background: #eee6dc;
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-heading h2 {
  color: var(--forest);
  font-size: clamp(32px, 4.6vw, 50px);
  margin: 16px 0 0;
}

.section-heading p,
.lead {
  color: var(--muted);
  font-size: 17px;
  margin: 18px 0 0;
}

.section--forest .section-heading h2,
.section--forest h2,
.section--forest h3 {
  color: #fffdf8;
}

.section--forest .section-heading p,
.section--forest .lead {
  color: #b9cbbc;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: clamp(38px, 6vw, 76px);
  align-items: center;
}

.split__media {
  min-height: 470px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.split__media img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.stat strong {
  display: block;
  font-family: var(--display);
  font-size: 38px;
  color: var(--forest);
  font-weight: 400;
}

.stat span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 800;
}

.service-grid,
.project-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(22, 48, 31, .14);
  border: 1px solid rgba(22, 48, 31, .14);
}

.service-card,
.value-card {
  background: var(--paper);
  text-decoration: none;
  min-height: 100%;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card__image {
  aspect-ratio: 1.35;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.service-card:hover img {
  transform: scale(1.06);
}

.service-card__body,
.value-card {
  padding: clamp(24px, 3vw, 34px);
}

.service-card h3,
.value-card h3 {
  color: var(--forest);
  font-size: 24px;
  margin: 0;
}

.service-card p,
.value-card p {
  color: var(--muted);
  margin: 12px 0 0;
}

.text-link {
  display: inline-flex;
  margin-top: auto;
  padding-top: 22px;
  color: var(--gold-2);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 900;
  text-decoration: none;
}

.project-grid {
  background: transparent;
  border: 0;
  gap: clamp(20px, 3vw, 32px);
}

.project-card {
  text-decoration: none;
}

.project-card__image {
  aspect-ratio: 1.18;
  overflow: hidden;
  border-radius: 8px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-card h3 {
  font-size: 25px;
  margin: 18px 0 4px;
}

.project-card p {
  margin: 0;
  color: #a8bdaa;
  font-size: 13px;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-weight: 800;
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: #fffdf8;
  text-align: center;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(15, 36, 23, .82), rgba(15, 36, 23, .9)), url("../images/hero-landscape.jpg") center/cover;
}

.cta-band .section-inner {
  position: relative;
  max-width: 780px;
}

.cta-band h2 {
  font-size: clamp(34px, 5.2vw, 58px);
  margin: 16px 0 0;
}

.cta-band p {
  color: #d8e4da;
}

.page-hero {
  background: var(--forest);
  color: #fffdf8;
  padding: clamp(74px, 10vw, 124px) 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .42;
  background: linear-gradient(90deg, rgba(15, 36, 23, .94), rgba(15, 36, 23, .62)), var(--hero-image, url("../images/hero-landscape.jpg")) center/cover;
}

.page-hero .section-inner {
  position: relative;
}

.page-hero h1 {
  font-size: clamp(38px, 6vw, 66px);
}

.page-hero p {
  max-width: 680px;
  color: #d8e4da;
  font-size: 18px;
}

.two-column-list {
  columns: 2;
  column-gap: 48px;
  padding-left: 18px;
  color: var(--muted);
}

.two-column-list li {
  break-inside: avoid;
  margin-bottom: 10px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .8fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: start;
}

.quote-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--moss);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d8d2c2;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: 500 15px var(--body);
  padding: 13px 14px;
}

textarea {
  resize: vertical;
  min-height: 140px;
}

.form-status {
  min-height: 24px;
  color: var(--forest);
  font-weight: 800;
}

.direct-contact {
  background: var(--forest);
  color: #fffdf8;
  border-radius: 8px;
  padding: clamp(28px, 4vw, 42px);
}

.direct-contact h2 {
  margin: 0;
  font-size: 32px;
}

.contact-block {
  border-top: 1px solid rgba(212, 175, 55, .24);
  padding-top: 22px;
  margin-top: 22px;
}

.contact-block strong {
  display: block;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-block span,
.contact-block a {
  display: block;
  color: #d8e4da;
  margin-top: 6px;
  text-decoration: none;
}

.site-footer {
  background: var(--forest);
  color: #cbd8cd;
  border-top: 3px solid var(--gold);
}

.footer-inner {
  padding: 58px 0 44px;
  display: grid;
  grid-template-columns: minmax(240px, 1.3fr) repeat(3, minmax(150px, .7fr));
  gap: 38px;
}

.footer-title {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 16px;
}

.footer-inner a {
  display: block;
  color: #cbd8cd;
  text-decoration: none;
  margin: 0;
  padding: 5px 0;
}

.footer-inner span {
  display: block;
  margin-top: 8px;
}

.footer-inner a:hover {
  color: #fff;
}

.footer-brand {
  max-width: 330px;
}

.footer-brand .brand__name {
  color: #fffdf8;
  font-size: 22px;
}

.footer-brand p {
  color: #afc2b3;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #8ba090;
  font-size: 13px;
}

.footer-bottom span {
  display: block;
}

/* ── Trust cards ─────────────────────────────── */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
  margin-top: clamp(32px, 5vw, 48px);
}

.trust-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 3vw, 36px);
}

.trust-card--dark {
  background: rgba(255, 253, 248, .07);
  border-color: rgba(255, 253, 248, .12);
}

.trust-card--dark h3 {
  color: #fffdf8;
}

.trust-card--dark p {
  color: #b9cbbc;
}

.trust-card__icon {
  width: 52px;
  height: 52px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}

.trust-card__icon svg {
  width: 26px;
  height: 26px;
}

.trust-card h3 {
  color: var(--forest);
  font-size: 20px;
  margin: 0 0 12px;
}

.trust-card p {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}

/* ── Stats section ───────────────────────────── */

.stats-section {
  background: var(--forest);
  color: #fffdf8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-block {
  text-align: center;
  padding: clamp(40px, 6vw, 64px) clamp(20px, 3vw, 32px);
  border-right: 1px solid rgba(212, 175, 55, .2);
}

.stat-block:last-child {
  border-right: none;
}

.stat-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  line-height: 1;
}

.stat-number strong {
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 76px);
  color: var(--gold);
  font-weight: 400;
}

.stat-suffix {
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 44px);
  color: var(--gold);
  font-weight: 400;
}

.stat-label {
  display: block;
  color: #b9cbbc;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
  margin-top: 14px;
}

/* ── Section CTA ─────────────────────────────── */

.section-cta {
  text-align: center;
  margin-top: clamp(32px, 5vw, 48px);
}

.ghost-button-ink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 6px;
  border: 1.5px solid var(--forest);
  padding: 12px 26px;
  font-weight: 800;
  text-decoration: none;
  color: var(--forest);
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.ghost-button-ink:hover {
  background: var(--forest);
  color: var(--paper);
  transform: translateY(-1px);
}

/* ── Inline text link ────────────────────────── */

.text-link-inline {
  display: inline-flex;
  margin-top: 24px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: .06em;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: color .18s ease;
}

.text-link-inline:hover {
  color: var(--gold-2);
}

/* ── Testimonials ────────────────────────────── */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
}

.testimonial-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 17px;
  letter-spacing: 4px;
  margin-bottom: 18px;
}

.testimonial-card p {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 24px;
  font-style: italic;
  flex: 1;
}

.testimonial-author strong {
  display: block;
  color: var(--forest);
  font-size: 14px;
  font-weight: 800;
}

.testimonial-author span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ── Footer enhancements ─────────────────────── */

.footer-quote-link {
  display: inline-flex !important;
  margin-top: 14px !important;
  background: var(--gold);
  color: var(--forest) !important;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 13px;
  transition: background .18s ease;
}

.footer-quote-link:hover {
  background: #e1c25c !important;
}

.footer-markets {
  display: block;
  color: #8ba090 !important;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 12px;
}

/* ── Locations page ──────────────────────────── */

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 48px);
}

.location-grid--single {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
}

.location-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.location-card__flag {
  height: 120px;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.location-card__flag svg {
  width: 120px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}

.location-card__body {
  padding: clamp(28px, 4vw, 44px);
}

.location-card__body h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 12px 0 0;
  color: var(--forest);
}

.location-services {
  margin: 28px 0;
  display: grid;
  gap: 10px;
}

.location-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 15px;
}

.location-service-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}

.location-contact {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.location-contact strong {
  display: block;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.location-contact a {
  text-decoration: none;
}

.location-contact a.button {
  align-self: flex-start;
}

.location-contact a:not(.button) {
  color: var(--moss);
  font-size: 14px;
}

/* ── Desktop nav dropdown ────────────────────── */

.nav-dropdown {
  position: relative;
  display: inline-flex;
}

.nav-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  color: #cbd8cd;
  font: 700 15px var(--body);
  border-bottom: 2px solid transparent;
  padding: 7px 0;
}

.nav-dropdown__toggle:hover,
.nav-dropdown.is-open .nav-dropdown__toggle,
.nav-dropdown__toggle[aria-expanded="true"] {
  color: var(--paper);
  border-bottom-color: var(--gold);
}

.nav-dropdown__caret {
  font-size: 10px;
  transition: transform .2s ease;
}

.nav-dropdown.is-open .nav-dropdown__caret,
.nav-dropdown__toggle[aria-expanded="true"] .nav-dropdown__caret {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 210px;
  background: var(--forest-2);
  border: 1px solid rgba(212, 175, 55, .28);
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(15, 36, 23, .4);
  padding: 8px;
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 60;
}

.nav-dropdown__menu::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 16px;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__menu a {
  display: block;
  padding: 11px 14px;
  border-radius: 6px;
  color: #cbd8cd;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border-bottom: none;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible {
  background: rgba(212, 175, 55, .14);
  color: var(--paper);
}

/* ── Mobile nav dropdown ─────────────────────── */

.mobile-dropdown__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 253, 248, .09);
  cursor: pointer;
  color: #cbd8cd;
  font: 700 16px var(--body);
  padding: 13px 4px;
  text-align: left;
}

.mobile-dropdown__caret {
  font-size: 11px;
  transition: transform .2s ease;
}

.mobile-dropdown.is-open .mobile-dropdown__caret {
  transform: rotate(180deg);
}

.mobile-dropdown__menu {
  display: none;
  padding: 4px 0 4px 18px;
}

.mobile-dropdown.is-open .mobile-dropdown__menu {
  display: grid;
  gap: 2px;
}

.mobile-dropdown__menu a {
  padding: 11px 4px;
  border-bottom: 1px solid rgba(255, 253, 248, .07);
  color: #b9cbbc;
  font-size: 15px;
}

/* ── Markets grid ────────────────────────────── */

.markets-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 24px);
}

.market-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
}

.market-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--forest);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.market-card__icon svg {
  width: 24px;
  height: 24px;
}

.market-card h3 {
  color: var(--forest);
  font-size: 21px;
  margin: 0 0 10px;
}

.market-card p {
  color: var(--muted);
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.65;
}

.market-card__services {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 7px;
}

.market-card__services li {
  position: relative;
  padding-left: 18px;
  color: var(--moss);
  font-size: 13px;
}

.market-card__services li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.market-card .text-link {
  margin-top: auto;
  padding-top: 4px;
}

/* ── How It Works / process steps ────────────── */

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 36px);
  margin-bottom: clamp(34px, 5vw, 48px);
  counter-reset: step;
}

.process-step {
  text-align: center;
  padding: clamp(8px, 2vw, 16px);
}

.process-step__number {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 30px;
}

.section--forest .process-step__number {
  background: var(--gold);
  color: var(--forest);
}

.process-step h3 {
  font-size: 22px;
  margin: 0 0 12px;
}

.section--forest .process-step h3 {
  color: #fffdf8;
}

.process-step p {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}

.section--forest .process-step p {
  color: #b9cbbc;
}

.process-cta {
  text-align: center;
}

/* ── Built for Trust (3-up) ──────────────────── */

.trust-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* ── Stats text variant (honest, non-numeric) ── */

.stat-number--text strong {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
}

/* ── Markets-served preview band ─────────────── */

.markets-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(22, 48, 31, .14);
  border: 1px solid rgba(22, 48, 31, .14);
  border-radius: 8px;
  overflow: hidden;
}

.markets-preview__item {
  background: var(--paper);
  padding: clamp(20px, 2.6vw, 28px);
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  transition: background .18s ease;
}

.markets-preview__item:hover {
  background: var(--cream);
}

.markets-preview__item span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}

/* ── Project portfolio cards + filters ───────── */

.project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.filter-button {
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 9px 20px;
  font: 800 13px var(--body);
  letter-spacing: .04em;
  color: var(--moss);
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.filter-button:hover {
  border-color: var(--forest);
  color: var(--forest);
}

.filter-button.is-active {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--paper);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 30px);
}

.portfolio-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.portfolio-card__image {
  aspect-ratio: 1.4;
  overflow: hidden;
  position: relative;
}

.portfolio-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.portfolio-card:hover .portfolio-card__image img {
  transform: scale(1.06);
}

.portfolio-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(22, 48, 31, .92);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
}

.portfolio-card__body {
  padding: clamp(22px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.portfolio-card__body h3 {
  color: var(--forest);
  font-size: 22px;
  margin: 0 0 6px;
}

.portfolio-card__type {
  color: var(--gold-2);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 800;
  margin: 0 0 16px;
}

.portfolio-card__meta {
  display: grid;
  gap: 12px;
  margin-top: auto;
}

.portfolio-card__meta dt {
  color: var(--moss);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 3px;
}

.portfolio-card__meta dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.portfolio-note {
  margin-top: clamp(28px, 4vw, 40px);
  padding: 20px 24px;
  background: var(--cream);
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
}

/* ── Responsive ──────────────────────────────── */

@media (max-width: 980px) {
  .desktop-nav,
  .nav-actions {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-panel.is-open {
    display: block;
  }

  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .project-grid,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-block {
    border-right: none;
    border-bottom: 1px solid rgba(212, 175, 55, .2);
  }

  .stat-block:last-child,
  .stat-block:nth-child(3) {
    border-bottom: none;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .markets-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .trust-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .top-bar__inner {
    justify-content: center;
    text-align: center;
  }

  .top-bar__inner span:first-child {
    display: none;
  }

  .nav-bar {
    min-height: 70px;
  }

  .brand__name {
    font-size: 21px;
  }

  .brand__tag {
    font-size: 8px;
  }

  .hero {
    min-height: 640px;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(15, 36, 23, .92), rgba(15, 36, 23, .72));
  }

  .hero__actions,
  .cta-band .hero__actions {
    flex-direction: column;
  }

  .button,
  .quote-button,
  .ghost-button {
    width: 100%;
  }

  .service-grid,
  .project-grid,
  .values-grid,
  .form-row,
  .stats,
  .footer-inner,
  .trust-grid,
  .trust-grid--three,
  .stats-grid,
  .testimonials-grid,
  .location-grid,
  .markets-grid,
  .portfolio-grid,
  .markets-preview {
    grid-template-columns: 1fr;
  }

  .stat-block {
    border-right: none;
    border-bottom: 1px solid rgba(212, 175, 55, .2);
  }

  .stat-block:last-child {
    border-bottom: none;
  }

  .two-column-list {
    columns: 1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
