:root {
  --forest: #033c21;
  --forest-dark: #071f13;
  --forest-soft: #16513a;
  --gold: #d3a43d;
  --gold-light: #efc76f;
  --ivory: #f7f3e9;
  --cream: #eee7d8;
  --white: #fff;
  --text: #1f2925;
  --muted: #66716c;
  --line: rgba(12, 59, 46, .14);
  --line-light: rgba(255,255,255,.16);
  --shadow: 0 22px 70px rgba(6, 35, 27, .13);
  --shadow-soft: 0 12px 34px rgba(6, 35, 27, .08);
  --radius: 10px;
  --shell: min(1240px, calc(100vw - 40px));
  --font-display: Georgia, 'Times New Roman', serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
address { font-style: normal; }

figure { margin: 0; }
:where(a, button, input, textarea, select):focus-visible {
  outline: 3px solid color-mix(in srgb, var(--gold) 72%, white);
  outline-offset: 3px;
}
h1, h2, h3 { text-wrap: balance; }
p, li { text-wrap: pretty; }


.shell { width: var(--shell); margin-inline: auto; }
.site-main { overflow: clip; }
.screen-reader-text {
  position: absolute!important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed!important; width: auto; height: auto; clip: auto; margin: 0;
  left: 14px; top: 14px; z-index: 9999; padding: 12px 16px; background: var(--white); color: var(--forest-dark);
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 .6em;
  color: var(--forest-dark);
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.03em;
}
h1 { font-size: clamp(3rem, 6.4vw, 6rem); }
h2 { font-size: clamp(2.25rem, 4.7vw, 4.6rem); }
h3 { font-size: clamp(1.45rem, 2.2vw, 2rem); }
p { margin: 0 0 1.2em; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow--light { color: var(--gold-light); }

.icon {
  width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: .92rem;
  font-weight: 750;
  letter-spacing: .02em;
  transition: transform .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
}
.button .icon { width: 18px; height: 18px; }
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--forest); color: var(--white); }
.button--primary:hover { background: var(--forest-dark); }
.button--gold { background: var(--gold); color: var(--forest-dark); }
.button--gold:hover { background: var(--gold-light); }
.button--ghost { border-color: var(--line); color: var(--forest); }
.button--outline-light { border-color: rgba(255,255,255,.5); color: var(--white); background: rgba(255,255,255,.04); }
.button--outline-light:hover { background: var(--white); color: var(--forest-dark); }
.button--header { min-height: 44px; padding: 10px 16px; background: var(--forest); color: var(--white); font-size: .84rem; }
.text-link {
  display: inline-flex; align-items: center; gap: 10px; color: var(--forest); font-weight: 800; border-bottom: 1px solid var(--gold);
  padding-bottom: 5px;
}
.text-link .icon { width: 18px; height: 18px; }

/* Header */
.site-topbar { background: var(--forest-dark); color: rgba(255,255,255,.78); font-size: .79rem; }
.site-topbar__inner { min-height: 37px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-topbar p { margin: 0; }
.site-topbar__links { display: flex; align-items: center; gap: 22px; }
.site-topbar__links a { display: flex; align-items: center; gap: 7px; transition: color .2s ease; }
.site-topbar__links a:hover { color: var(--gold-light); }
.site-topbar__links .icon { width: 15px; height: 15px; }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(245, 243, 235, .96);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, border-color .25s ease;
}
.admin-bar .site-header { top: 32px; }
.site-header.is-scrolled { box-shadow: 0 9px 34px rgba(5, 33, 25, .09); border-color: var(--line); }
.site-header__inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.site-brand { display: flex; align-items: center; gap: 13px; min-width: 250px; }
.site-brand__logo { width: 62px; height: 62px; object-fit: contain; background: transparent; filter: drop-shadow(0 5px 12px rgba(7,31,19,.08)); }
.site-brand__text { display: grid; line-height: 1.05; }
.site-brand__text strong { font-family: var(--font-display); font-size: 1.55rem; font-weight: 500; color: var(--forest-dark); }
.site-brand__text small { margin-top: 5px; color: var(--gold); font-size: .72rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav__list { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.site-nav__list a { position: relative; padding: 29px 0; color: var(--forest-dark); font-size: .9rem; font-weight: 700; }
.site-nav__list a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: 22px; height: 2px; background: var(--gold); transition: right .25s ease; }
.site-nav__list a:hover::after, .site-nav__list .current-menu-item > a::after { right: 0; }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--forest-dark); padding: 8px; }
.menu-toggle .icon { width: 28px; height: 28px; }
.menu-toggle__close { display: none; }

.site-nav__list a:focus-visible,
.site-brand:focus-visible,
.site-topbar__links a:focus-visible { border-radius: 2px; }


/* Hero */
.hero { position: relative; min-height: min(820px, calc(100vh - 121px)); display: flex; align-items: stretch; color: var(--white); background: var(--forest-dark); }
.hero__media, .hero__overlay { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 46%; }
.hero__overlay { background: linear-gradient(90deg, rgba(4, 38, 22, .90) 0%, rgba(4, 38, 22, .65) 46%, rgba(4,38,22,.18) 78%, rgba(4,38,22,.08) 100%), linear-gradient(0deg, rgba(4,38,22,.48), transparent 54%); }
.hero__inner { position: relative; z-index: 2; display: flex; align-items: center; padding-block: 100px 145px; }
.hero__content { max-width: 820px; }
.hero h1 { max-width: 790px; color: var(--white); margin-bottom: 24px; font-size: clamp(3.25rem, 6.1vw, 5.9rem); }
.hero__lead { max-width: 720px; color: rgba(255,255,255,.82); font-size: clamp(1.02rem, 1.4vw, 1.25rem); line-height: 1.7; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero__trust { position: absolute; z-index: 3; left: 0; right: 0; bottom: 0; background: rgba(8,39,31,.92); border-top: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(10px); }
.hero__trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.hero__trust-grid > div { padding: 22px 30px; border-left: 1px solid rgba(255,255,255,.13); }
.hero__trust-grid > div:last-child { border-right: 1px solid rgba(255,255,255,.13); }
.hero__trust-grid strong { display: block; color: var(--gold-light); font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; }
.hero__trust-grid span { display: block; margin-top: 5px; color: rgba(255,255,255,.65); font-size: .78rem; }

/* Sections */
.section { padding: clamp(76px, 9vw, 130px) 0; }
.section--intro { background: var(--ivory); }
.section--dark { background: var(--forest-dark); color: rgba(255,255,255,.7); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark .section-heading__text { color: rgba(255,255,255,.62); }
.section--projects { background: var(--cream); }
.section--concept { background: var(--white); }
.section--why { background: var(--ivory); }
.section--contact { background: var(--forest-dark); color: rgba(255,255,255,.72); }
.section--contact h2 { color: var(--white); }

.section-heading { max-width: 870px; margin: 0 auto 48px; text-align: center; }
.section-heading--left { margin-left: 0; text-align: left; }
.section-heading h2 { margin-bottom: 18px; }
.section-heading__text { max-width: 760px; margin: 0 auto; color: var(--muted); font-size: 1.02rem; }
.section-heading--left .section-heading__text { margin-left: 0; }

.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(45px, 7vw, 100px); }
.intro-copy h2 { max-width: 670px; }
.intro-copy > p:not(.eyebrow) { max-width: 650px; color: var(--muted); }
.intro-media { position: relative; }
.intro-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow); }
.intro-media::before { content: ''; position: absolute; inset: -18px 18px 18px -18px; border: 1px solid var(--gold); z-index: -1; }
.intro-media__badge { position: absolute; right: -24px; bottom: 28px; width: min(285px, 70%); padding: 22px; background: var(--forest-dark); color: var(--white); box-shadow: var(--shadow-soft); }
.intro-media__badge strong { display: block; font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; }
.intro-media__badge span { display: block; margin-top: 5px; color: rgba(255,255,255,.62); font-size: .8rem; }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.service-card { position: relative; min-height: 400px; padding: 34px 28px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); transition: background .25s ease, transform .25s ease; }
.service-card:hover { background: rgba(255,255,255,.045); transform: translateY(-5px); }
.service-card__icon { display: grid; place-items: center; width: 52px; height: 52px; color: var(--gold-light); border: 1px solid rgba(185,149,81,.45); }
.service-card__icon .icon { width: 27px; height: 27px; }
.service-card__number { position: absolute; right: 24px; top: 25px; color: rgba(255,255,255,.25); font-family: var(--font-display); font-size: 1.2rem; }
.service-card h3 { margin-top: 78px; font-size: 2rem; }
.service-card p { color: rgba(255,255,255,.58); font-size: .91rem; }
.service-card a { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; color: var(--gold-light); font-size: .84rem; font-weight: 800; }
.service-card a .icon { width: 17px; height: 17px; }

.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.process-grid::before { content: ''; position: absolute; top: 29px; left: 8%; right: 8%; height: 1px; background: var(--line); }
.process-step { position: relative; padding-top: 64px; text-align: center; }
.process-step > span { position: absolute; top: 0; left: 50%; transform: translateX(-50%); display: grid; place-items: center; width: 58px; height: 58px; background: var(--ivory); border: 1px solid var(--gold); color: var(--gold); font-family: var(--font-display); font-size: 1.1rem; z-index: 2; }
.process-step h3 { margin-top: 20px; }
.process-step p { color: var(--muted); font-size: .9rem; }

.project-gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 260px; gap: 18px; }
.project-card { position: relative; grid-column: span 4; overflow: hidden; background: var(--forest-dark); cursor: zoom-in; }
.project-card--large { grid-column: span 7; grid-row: span 2; }
.project-card--wide { grid-column: span 8; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease, filter .35s ease; }
.project-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,28,21,.82), rgba(4,28,21,0) 58%); }
.project-card:hover img { transform: scale(1.045); filter: saturate(.9); }
.project-card figcaption { position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 2; color: var(--white); }
.project-card figcaption span { display: block; color: var(--gold-light); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.project-card figcaption strong { display: block; margin-top: 4px; font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; }

.urban-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(45px, 7vw, 90px); }
.urban-media { position: relative; }
.urban-media img { width: 100%; min-height: 560px; object-fit: cover; box-shadow: var(--shadow); }
.urban-media::after { content: ''; position: absolute; left: -18px; bottom: -18px; width: 42%; height: 42%; border-left: 1px solid var(--gold); border-bottom: 1px solid var(--gold); }
.urban-copy p:not(.eyebrow) { color: var(--muted); }
.check-list { display: grid; gap: 12px; list-style: none; margin: 28px 0 34px; padding: 0; }
.check-list li { display: flex; align-items: flex-start; gap: 11px; }
.check-list .icon { width: 20px; height: 20px; margin-top: 2px; color: var(--gold); }

.concept-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.concept-card { margin: 0; border: 1px solid var(--line); background: var(--ivory); transition: transform .25s ease, box-shadow .25s ease; }
.concept-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.concept-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.concept-card figcaption { padding: 21px 22px 24px; }
.concept-card figcaption span { display: block; color: var(--gold); font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.concept-card figcaption strong { display: block; margin-top: 7px; color: var(--forest-dark); font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; }

.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.why-card { padding: 32px 28px; background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--gold); box-shadow: var(--shadow-soft); transition: transform .25s ease, box-shadow .25s ease; }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-card > span { color: var(--gold); font-family: var(--font-display); font-size: 1.05rem; }
.why-card h3 { margin-top: 30px; }
.why-card p { color: var(--muted); font-size: .9rem; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(42px, 7vw, 90px); align-items: center; }
.contact-copy > p:not(.eyebrow) { color: rgba(255,255,255,.62); }
.contact-direct { display: grid; gap: 14px; margin-top: 32px; }
.contact-direct a { display: flex; align-items: center; gap: 14px; color: var(--white); }
.contact-direct .icon { color: var(--gold-light); }
.contact-direct span { display: grid; }
.contact-direct small { color: rgba(255,255,255,.5); font-size: .72rem; }
.contact-form-card { background: var(--white); color: var(--text); padding: clamp(25px, 4vw, 44px); box-shadow: var(--shadow); }
.contact-form-card h2, .contact-form-card h3 { color: var(--forest-dark); }
.contact-form-card form, .contact-page__form form { display: grid; gap: 14px; }
.contact-form-card label, .contact-page__form label { color: var(--forest-dark); font-size: .84rem; font-weight: 700; }
.contact-form-card input, .contact-form-card textarea, .contact-form-card select,
.contact-page__form input, .contact-page__form textarea, .contact-page__form select {
  width: 100%; min-height: 48px; border: 1px solid var(--line); background: #fbfaf6; color: var(--text); padding: 12px 14px; border-radius: 2px; outline: none;
}
.contact-form-card textarea, .contact-page__form textarea { min-height: 130px; resize: vertical; }
.contact-form-card input:focus, .contact-form-card textarea:focus, .contact-form-card select:focus,
.contact-page__form input:focus, .contact-page__form textarea:focus, .contact-page__form select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(185,149,81,.12); }
.contact-form-card button, .contact-form-card input[type='submit'],
.contact-page__form button, .contact-page__form input[type='submit'] {
  min-height: 50px; padding: 12px 22px; border: 0; border-radius: 2px; background: var(--forest); color: var(--white); font-weight: 800; cursor: pointer;
}
.contact-fallback { display: flex; flex-wrap: wrap; gap: 12px; }
.contact-fallback p { flex: 0 0 100%; }

/* Page heroes */
.page-hero { position: relative; display: flex; align-items: flex-end; min-height: 520px; padding: 110px 0 76px; background: var(--forest-dark); color: var(--white); }
.page-hero--simple { min-height: 330px; background: linear-gradient(135deg, var(--forest-dark), var(--forest-soft)); align-items: center; }
.page-hero--contact { text-align: center; }
.page-hero--simple h1, .page-hero--image h1 { max-width: 1000px; color: var(--white); font-size: clamp(3rem, 6vw, 5.8rem); }
.page-hero--simple p:not(.eyebrow), .page-hero--image p:not(.eyebrow) { max-width: 790px; color: rgba(255,255,255,.7); font-size: 1.06rem; }
.page-hero--contact p:not(.eyebrow) { margin-inline: auto; }
.page-hero--image > img, .page-hero__overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.page-hero--image > img { object-fit: cover; }
.page-hero__overlay { background: linear-gradient(90deg, rgba(5,31,24,.9), rgba(5,31,24,.4)); }
.page-hero__content { position: relative; z-index: 2; }

/* About page */
.about-story { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(42px, 7vw, 90px); align-items: center; }
.about-story__copy p:not(.eyebrow) { color: var(--muted); }
.about-story__media img { width: 100%; min-height: 520px; object-fit: cover; box-shadow: var(--shadow); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.value-card { min-height: 290px; padding: 30px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.value-card > span { color: var(--gold-light); font-family: var(--font-display); }
.value-card h3 { margin-top: 58px; color: var(--white); }
.value-card p { color: rgba(255,255,255,.55); font-size: .9rem; }
.regions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.region-card { padding: clamp(30px, 5vw, 58px); background: var(--white); border: 1px solid var(--line); }
.region-card p:not(.eyebrow), .region-card address { color: var(--muted); }
.region-card address { margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line); font-weight: 700; }

/* Services page */
.services-detail .shell { display: grid; gap: 36px; }
.service-detail { display: grid; grid-template-columns: 90px 1fr 1fr; gap: 34px; align-items: center; padding: 42px; background: var(--white); border: 1px solid var(--line); }
.service-detail--reverse .service-detail__content { order: 3; }
.service-detail--reverse .service-detail__media { order: 2; }
.service-detail__number { align-self: start; color: var(--gold); font-family: var(--font-display); font-size: 2rem; }
.service-detail__content p:not(.eyebrow) { color: var(--muted); }
.service-detail__media img { width: 100%; min-height: 430px; object-fit: cover; }

.cta-band { padding: 70px 0; background: var(--forest); color: var(--white); }
.cta-band h2 { color: var(--white); max-width: 830px; font-size: clamp(2.1rem, 4vw, 3.8rem); }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }

/* Contact page */
.contact-page__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: start; }
.contact-page__info, .contact-page__form { padding: clamp(28px, 4vw, 48px); background: var(--white); border: 1px solid var(--line); }
.contact-page__form { box-shadow: var(--shadow-soft); }
.contact-page__form > p { color: var(--muted); }
.contact-info-row { display: flex; align-items: center; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-info-row .icon { color: var(--gold); }
.contact-info-row span { display: grid; }
.contact-info-row small, .contact-address-card small { color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; }
.contact-address-card { display: flex; align-items: flex-start; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-address-card .icon { color: var(--gold); margin-top: 3px; }
.contact-address-card div { display: grid; gap: 7px; }
.contact-address-card a { color: var(--gold); font-size: .82rem; font-weight: 800; }

.content-page { padding: 75px 0 110px; }
.content-page__inner { max-width: 900px; }
.archive-grid { padding: 70px 0 110px; display: grid; gap: 24px; }
.archive-card { padding: 28px; background: var(--white); border: 1px solid var(--line); }
.error-page { min-height: 62vh; display: grid; place-items: center; text-align: center; padding: 90px 0; }

/* Footer */
.site-footer { background: #071e18; color: rgba(255,255,255,.62); }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr .8fr 1fr 1fr; gap: 48px; padding-block: 72px 56px; }
.footer-brand__logo { display: flex; align-items: center; gap: 13px; color: var(--white); }
.footer-logo { width: 68px; height: 68px; object-fit: contain; background: transparent; }
.footer-brand__logo span { display: grid; line-height: 1.05; }
.footer-brand__logo strong { font-family: var(--font-display); font-size: 1.55rem; font-weight: 500; }
.footer-brand__logo small { margin-top: 5px; color: var(--gold-light); font-size: .72rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.footer-brand p { max-width: 370px; margin-top: 24px; }
.footer-column h2 { color: var(--white); font-size: 1.28rem; }
.footer-column p { font-size: .88rem; }
.footer-menu { display: grid; gap: 10px; list-style: none; margin: 0; padding: 0; }
.footer-menu a { font-size: .87rem; transition: color .2s ease; }
.footer-menu a:hover, .footer-map-link:hover { color: var(--gold-light); }
.footer-map-link { color: var(--gold-light); font-size: .8rem; font-weight: 800; }
.site-footer__contact { border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }
.site-footer__contact-inner { display: grid; grid-template-columns: repeat(3, 1fr); }
.site-footer__contact a { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 17px 22px; border-left: 1px solid rgba(255,255,255,.1); color: var(--white); font-size: .85rem; }
.site-footer__contact a:last-child { border-right: 1px solid rgba(255,255,255,.1); }
.site-footer__contact .icon { color: var(--gold-light); width: 18px; height: 18px; }
.site-footer__bottom-inner { min-height: 67px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: .76rem; }
.site-footer__bottom p { margin: 0; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 10000; display: grid; place-items: center; padding: 30px; background: rgba(3,15,12,.94); }
.lightbox[hidden] { display: none; }
.lightbox__image { max-width: min(1200px, 92vw); max-height: 88vh; object-fit: contain; box-shadow: 0 30px 80px rgba(0,0,0,.45); }
.lightbox__close { position: absolute; right: 24px; top: 24px; width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: transparent; color: var(--white); }

/* Animations */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto!important; animation-duration: .001ms!important; transition-duration: .001ms!important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* WordPress/SureForms cleanup */
.entry-content > * { max-width: 100%; }
.srfm-form-container, .srfm-form { max-width: 100%!important; }
.srfm-form .srfm-block, .srfm-form .wp-block-sureforms-input { margin-bottom: 12px!important; }
.srfm-error-message, .srfm-form-error { color: #a3342d!important; font-size: .78rem!important; }

@media (max-width: 1100px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .site-nav { gap: 16px; }
  .site-nav__list { gap: 17px; }
  .button--header { display: none; }
  .service-detail { grid-template-columns: 65px 1fr 1fr; padding: 34px; }
}

@media (max-width: 921px) {
  .admin-bar .site-header { top: 46px; }
  .site-topbar p { display: none; }
  .site-topbar__inner { justify-content: center; }
  .site-topbar__links a:last-child { display: none; }
  .site-header__inner { min-height: 74px; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .site-nav {
    position: fixed; top: calc(111px); right: 0; bottom: 0; width: min(420px, 100%); padding: 28px;
    background: var(--ivory); box-shadow: -20px 0 50px rgba(5,31,24,.16); display: block;
    transform: translateX(105%); transition: transform .3s ease; overflow-y: auto;
  }
  .admin-bar .site-nav { top: calc(111px + 46px); }
  .menu-open .site-nav { transform: none; }
  .menu-open .menu-toggle__open { display: none; }
  .menu-open .menu-toggle__close { display: block; }
  .site-nav__list { display: grid; gap: 0; }
  .site-nav__list li { border-bottom: 1px solid var(--line); }
  .site-nav__list a { display: block; padding: 18px 0; font-family: var(--font-display); font-size: 1.7rem; font-weight: 500; }
  .site-nav__list a::after { display: none; }
  .button--header { display: inline-flex; width: 100%; margin-top: 24px; }

  .hero { min-height: 760px; }
  .hero__inner { padding-block: 90px 195px; }
  .hero__overlay { background: linear-gradient(90deg, rgba(5,31,24,.88), rgba(5,31,24,.5)), linear-gradient(0deg, rgba(5,31,24,.65), transparent); }
  .hero__trust-grid { grid-template-columns: 1fr; }
  .hero__trust-grid > div { padding: 12px 20px; border-right: 0; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .hero__trust-grid > div:last-child { border-bottom: 0; }

  .intro-grid, .urban-grid, .about-story, .contact-grid, .contact-page__grid { grid-template-columns: 1fr; }
  .intro-media { margin-top: 15px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .process-grid::before { display: none; }
  .project-gallery { grid-auto-rows: 235px; }
  .project-card, .project-card--large, .project-card--wide { grid-column: span 6; grid-row: span 1; }
  .project-card--large { grid-row: span 2; }
  .concept-grid { grid-template-columns: 1fr; }
  .concept-card img { aspect-ratio: 16/9; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail, .service-detail--reverse { grid-template-columns: 55px 1fr; }
  .service-detail__content, .service-detail--reverse .service-detail__content { order: 2; }
  .service-detail__media, .service-detail--reverse .service-detail__media { grid-column: 1 / -1; order: 3; }
  .cta-band__inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 680px) {
  :root { --shell: min(100% - 28px, 1240px); }
  body { font-size: 15px; }
  .site-topbar__links { width: 100%; justify-content: center; }
  .site-brand { min-width: 0; gap: 9px; }
  .site-brand__logo { width: 50px; height: 50px; }
  .site-brand__text strong { font-size: 1.2rem; }
  .site-brand__text small { font-size: .58rem; letter-spacing: .14em; }
  .site-nav { top: 111px; }
  .admin-bar .site-nav { top: 157px; }

  h1 { font-size: clamp(2.7rem, 14vw, 4.4rem); }
  h2 { font-size: clamp(2.1rem, 10vw, 3.3rem); }
  .hero { min-height: 760px; }
  .hero__media img { object-position: 57% center; }
  .hero__inner { padding-block: 62px 210px; }
  .hero__lead { font-size: .98rem; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .hero__actions .button { width: 100%; }

  .section { padding: 70px 0; }
  .section-heading { margin-bottom: 34px; }
  .intro-media::before { display: none; }
  .intro-media__badge { right: 12px; bottom: 12px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 330px; }
  .service-card h3 { margin-top: 50px; }
  .process-grid, .why-grid, .values-grid, .regions-grid { grid-template-columns: 1fr; }
  .project-gallery { display: grid; grid-template-columns: 1fr; grid-auto-rows: auto; }
  .project-card, .project-card--large, .project-card--wide { grid-column: 1; grid-row: auto; min-height: 270px; }
  .urban-media img { min-height: 400px; }
  .contact-form-card, .contact-page__info, .contact-page__form { padding: 24px 18px; }
  .page-hero { min-height: 470px; padding: 100px 0 55px; }
  .page-hero--simple { min-height: 310px; }
  .service-detail, .service-detail--reverse { grid-template-columns: 1fr; padding: 24px 18px; gap: 18px; }
  .service-detail__number { font-size: 1.4rem; }
  .service-detail__content, .service-detail__media, .service-detail--reverse .service-detail__content, .service-detail--reverse .service-detail__media { grid-column: 1; }
  .service-detail__media img { min-height: 280px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 34px; padding-block: 54px 38px; }
  .site-footer__contact-inner { grid-template-columns: 1fr; }
  .site-footer__contact a { justify-content: flex-start; border: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .site-footer__contact a:last-child { border-right: 0; border-bottom: 0; }
  .site-footer__bottom-inner { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 16px; }
}


/* 1.1 refinements */
html { overflow-x: hidden; }
.site-brand__logo,
.footer-logo { flex: 0 0 auto; }
.site-brand__text strong,
.footer-brand__logo strong { letter-spacing: -.015em; }
.project-card:focus-visible { outline-offset: 5px; }
.contact-info-row:hover,
.contact-address-card a:hover { color: var(--gold); }

@media (max-width: 921px) {
  body.menu-open::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(3, 24, 14, .48);
    backdrop-filter: blur(2px);
  }
  .site-header { z-index: 1000; }
  .site-nav { z-index: 1001; }
}

@media (max-width: 680px) {
  .hero h1 { font-size: clamp(2.75rem, 13vw, 4.15rem); }
  .hero__trust-grid strong { font-size: 1.05rem; }
  .site-brand__text strong { font-size: 1.15rem; }
}