:root {
  --ink: #132321;
  --teal: #165b57;
  --teal-dark: #0a3836;
  --cream: #f5f0e6;
  --sand: #d5b470;
  --white: #ffffff;
  --light: #faf9f6;
  --muted: #66736f;
  --line: rgba(19,35,33,.14);
  --shadow: 0 18px 48px rgba(12,42,39,.12);
  --page: min(1160px, calc(100% - 40px));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 1000;
  padding: 12px 16px;
  background: var(--sand);
  color: var(--teal-dark);
  font-weight: 800;
  transition: top .2s ease;
}
.skip-link:focus { top: 18px; }

.announcement {
  background: var(--teal-dark);
  color: rgba(255,255,255,.86);
  font-size: 12px;
  letter-spacing: .7px;
}
.announcement__inner {
  width: var(--page);
  min-height: 36px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.announcement a { color: var(--sand); font-weight: 800; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(19,35,33,.10);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
}
.site-header__inner {
  width: var(--page);
  min-height: 84px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
  color: var(--ink);
  text-decoration: none;
}
.brand__mark {
  display: block;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  overflow: hidden;
  border-radius: 9px;
}
.brand__mark img { width: 100%; height: 100%; object-fit: cover; }
.brand__name {
  display: block;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .6px;
  line-height: 1.15;
  text-transform: uppercase;
}
.brand__sub {
  display: block;
  margin-top: 4px;
  color: var(--teal);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; gap: 3px; }
.site-nav > a,
.nav-dropdown > button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 13px;
  border: 0;
  background: transparent;
  color: #33423f;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}
.site-nav > a:hover,
.site-nav > a[aria-current="page"],
.nav-dropdown > button:hover { color: var(--teal); }
.nav-dropdown { position: relative; }
.nav-dropdown > button::after {
  content: "";
  width: 7px;
  height: 7px;
  margin: -4px 0 0 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}
.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  padding: 9px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown__menu a {
  display: block;
  padding: 11px 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.nav-dropdown__menu a:hover { background: var(--cream); color: var(--teal); }
.header-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 17px;
  background: var(--teal);
  color: white;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .7px;
  text-decoration: none;
  text-transform: uppercase;
}
.header-cta:hover { background: var(--teal-dark); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform .2s ease;
}
.menu-toggle span { position: relative; }
.menu-toggle span::before { position: absolute; top: -6px; }
.menu-toggle span::after { position: absolute; top: 6px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.hero {
  position: relative;
  min-height: min(730px, calc(100vh - 120px));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--teal-dark);
  color: white;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(5,33,31,.96) 0%, rgba(5,33,31,.82) 43%, rgba(5,33,31,.24) 78%, rgba(5,33,31,.08) 100%), var(--hero-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: var(--page);
  padding: clamp(100px, 15vw, 180px) 0 clamp(72px, 9vw, 110px);
}
.hero__eyebrow,
.page-hero__eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--sand);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 650;
  letter-spacing: -.052em;
  line-height: .98;
}
.hero__lead {
  max-width: 740px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.65;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid var(--sand);
  background: var(--sand);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .7px;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); background: white; border-color: white; }
.button--outline { background: transparent; border-color: rgba(255,255,255,.55); color: white; }

.page-hero {
  position: relative;
  min-height: 470px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--teal-dark);
  color: white;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(5,33,31,.96), rgba(5,33,31,.68) 60%, rgba(5,33,31,.25)), var(--hero-image);
  background-position: center;
  background-size: cover;
}
.page-hero__inner { position: relative; z-index: 1; width: var(--page); padding: 105px 0 70px; }
.page-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 650;
  letter-spacing: -.045em;
  line-height: 1.03;
}
.page-hero__lead { max-width: 740px; margin: 19px 0 0; color: rgba(255,255,255,.8); font-size: 19px; }

.tt-section, .tt-section * { box-sizing: border-box; }
.tt-section {
  --tt-ink: var(--ink);
  --tt-teal: var(--teal);
  --tt-teal-dark: var(--teal-dark);
  --tt-cream: var(--cream);
  --tt-sand: var(--sand);
  --tt-white: var(--white);
  --tt-muted: var(--muted);
  --tt-line: var(--line);
  margin: 0;
  padding: clamp(60px, 7vw, 94px) 22px;
  font-family: inherit;
  line-height: 1.55;
}
.tt-section.tt-white { background: var(--white); color: var(--ink); }
.tt-section.tt-light { background: var(--light); color: var(--ink); }
.tt-section.tt-cream { background: var(--cream); color: var(--ink); }
.tt-section.tt-dark { background: linear-gradient(135deg, var(--teal-dark), var(--teal)); color: white; }
.tt-section .tt-wrap { width: min(1120px, 100%); margin: 0 auto; }
.tt-section .tt-narrow { width: min(800px, 100%); margin: 0 auto; }
.tt-section .tt-eyebrow { margin: 0 0 13px; color: var(--teal); font-size: 12px; font-weight: 800; letter-spacing: 2.4px; text-transform: uppercase; }
.tt-section.tt-dark .tt-eyebrow { color: var(--sand); }
.tt-section .tt-title { max-width: 880px; margin: 0; color: inherit; font-size: clamp(32px, 4.4vw, 54px); font-weight: 650; letter-spacing: -.035em; line-height: 1.08; }
.tt-section .tt-lead { max-width: 780px; margin: 18px 0 0; color: var(--muted); font-size: clamp(17px, 2vw, 20px); line-height: 1.65; }
.tt-section.tt-dark .tt-lead, .tt-section.tt-dark .tt-muted { color: rgba(255,255,255,.78); }
.tt-section .tt-center { text-align: center; }
.tt-section .tt-center .tt-title, .tt-section .tt-center .tt-lead { margin-left: auto; margin-right: auto; }
.tt-section .tt-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 38px; }
.tt-section .tt-grid.tt-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tt-section .tt-grid.tt-four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.tt-section .tt-card { min-width: 0; padding: 28px; background: rgba(255,255,255,.82); border: 1px solid var(--line); border-radius: 3px; box-shadow: 0 14px 34px rgba(17,41,38,.06); }
.tt-section.tt-dark .tt-card { background: rgba(255,255,255,.075); border-color: rgba(255,255,255,.17); box-shadow: none; }
.tt-section .tt-card-number { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; margin-bottom: 20px; border-radius: 50%; background: var(--cream); color: var(--teal); font-size: 13px; font-weight: 800; letter-spacing: 1px; }
.tt-section.tt-dark .tt-card-number { background: rgba(213,180,112,.16); color: var(--sand); }
.tt-section .tt-card h3 { margin: 0 0 10px; color: inherit; font-size: 21px; line-height: 1.25; }
.tt-section .tt-card p { margin: 0; color: var(--muted); font-size: 15px; }
.tt-section.tt-dark .tt-card p { color: rgba(255,255,255,.74); }
.tt-section .tt-card a { color: var(--teal); font-weight: 750; text-decoration: none; }
.tt-section.tt-dark .tt-card a { color: var(--sand); }
.tt-section .tt-split { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(32px, 6vw, 76px); align-items: center; }
.tt-section .tt-panel { padding: clamp(28px, 5vw, 46px); background: var(--white); border-left: 4px solid var(--sand); box-shadow: 0 18px 45px rgba(17,41,38,.08); }
.tt-section.tt-dark .tt-panel { background: rgba(255,255,255,.09); box-shadow: none; }
.tt-section .tt-panel h3 { margin: 0 0 16px; font-size: 25px; }
.tt-section .tt-panel p { margin: 0; color: var(--muted); }
.tt-section.tt-dark .tt-panel p { color: rgba(255,255,255,.76); }
.tt-section .tt-list { display: grid; gap: 13px; margin: 24px 0 0; padding: 0; list-style: none; }
.tt-section .tt-list li { position: relative; padding-left: 28px; color: var(--muted); }
.tt-section.tt-dark .tt-list li { color: rgba(255,255,255,.78); }
.tt-section .tt-list li::before { content: ""; position: absolute; left: 0; top: .52em; width: 10px; height: 6px; border-left: 2px solid var(--teal); border-bottom: 2px solid var(--teal); transform: rotate(-45deg); }
.tt-section.tt-dark .tt-list li::before { border-color: var(--sand); }
.tt-section .tt-process { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; margin-top: 42px; counter-reset: step; }
.tt-section .tt-step { position: relative; padding: 0 24px 0 0; counter-increment: step; }
.tt-section .tt-step:not(:last-child)::after { content: ""; position: absolute; top: 20px; right: 20px; width: calc(100% - 62px); border-top: 1px solid var(--line); transform: translateX(100%); }
.tt-section.tt-dark .tt-step:not(:last-child)::after { border-color: rgba(255,255,255,.18); }
.tt-section .tt-step::before { content: "0" counter(step); display: flex; width: 42px; height: 42px; align-items: center; justify-content: center; margin-bottom: 20px; border-radius: 50%; background: var(--teal); color: white; font-size: 12px; font-weight: 800; }
.tt-section.tt-dark .tt-step::before { background: var(--sand); color: var(--teal-dark); }
.tt-section .tt-step h3 { margin: 0 0 8px; font-size: 18px; }
.tt-section .tt-step p { margin: 0; color: var(--muted); font-size: 14px; }
.tt-section.tt-dark .tt-step p { color: rgba(255,255,255,.72); }
.tt-section .tt-faq { display: grid; gap: 12px; margin-top: 34px; }
.tt-section details { padding: 0 22px; background: var(--white); border: 1px solid var(--line); }
.tt-section summary { padding: 20px 34px 20px 0; cursor: pointer; color: var(--ink); font-size: 17px; font-weight: 750; }
.tt-section details p { margin: -2px 0 22px; color: var(--muted); }
.tt-section .tt-cta { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.tt-section .tt-cta-copy { max-width: 720px; }
.tt-section .tt-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.tt-section .tt-btn { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 14px 22px; border: 1px solid var(--teal); background: var(--teal); color: white; font-size: 13px; font-weight: 800; letter-spacing: .65px; text-decoration: none; text-transform: uppercase; transition: background .2s ease, color .2s ease, transform .2s ease; }
.tt-section .tt-btn:hover { background: var(--teal-dark); transform: translateY(-1px); }
.tt-section .tt-btn.tt-outline { background: transparent; color: var(--teal); }
.tt-section.tt-dark .tt-btn { border-color: var(--sand); background: var(--sand); color: var(--teal-dark); }
.tt-section.tt-dark .tt-btn:hover { background: white; border-color: white; }
.tt-section.tt-dark .tt-btn.tt-outline { background: transparent; color: white; border-color: rgba(255,255,255,.6); }
.tt-section .tt-brand-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.tt-section .tt-brand { padding: 13px 17px; border: 1px solid var(--line); background: rgba(255,255,255,.6); color: var(--ink); font-size: 13px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; }
.tt-section .tt-contact-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 34px; }
.tt-section .tt-contact-item { padding: 24px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.07); }
.tt-section .tt-contact-item small { display: block; margin-bottom: 7px; color: var(--sand); font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; }
.tt-section .tt-contact-item a, .tt-section .tt-contact-item span { color: white; font-size: 18px; font-weight: 700; text-decoration: none; }
.tt-section .tt-area-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 28px; }
.tt-section .tt-area-row span { padding: 10px 14px; background: white; border: 1px solid var(--line); color: var(--ink); font-size: 13px; font-weight: 750; }
.tt-section .tt-note { margin-top: 22px; color: var(--muted); font-size: 13px; }

.portfolio { padding: clamp(68px, 8vw, 105px) 22px; background: var(--cream); }
.portfolio__inner { width: min(1120px, 100%); margin: auto; }
.portfolio__head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
.portfolio h2 { max-width: 720px; margin: 0; font-size: clamp(34px, 4.5vw, 54px); letter-spacing: -.04em; line-height: 1.08; }
.portfolio__lead { max-width: 720px; color: var(--muted); font-size: 18px; }
.portfolio-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.portfolio-card { position: relative; min-height: 330px; grid-column: span 4; overflow: hidden; background: var(--teal-dark); color: white; }
.portfolio-card--wide { grid-column: span 8; }
.portfolio-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.portfolio-card:hover img { transform: scale(1.025); }
.portfolio-card::after { content: ""; position: absolute; inset: 40% 0 0; background: linear-gradient(transparent, rgba(4,28,27,.9)); pointer-events: none; }
.portfolio-card__caption { position: absolute; z-index: 1; left: 22px; right: 22px; bottom: 20px; }
.portfolio-card__caption small { display: block; margin-bottom: 5px; color: var(--sand); font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; }
.portfolio-card__caption strong { font-size: 20px; }

.impact-visuals { padding: clamp(62px, 8vw, 96px) 22px; background: var(--teal-dark); color: white; }
.impact-visuals__inner { width: var(--page); margin: auto; }
.impact-visuals__head { max-width: 780px; margin-bottom: 32px; }
.impact-visuals__head h2 { margin: 8px 0 12px; font-size: clamp(34px, 5vw, 54px); line-height: 1.04; letter-spacing: -.04em; }
.impact-visuals__head p { color: rgba(255,255,255,.7); }
.impact-visuals__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.impact-visuals figure { margin: 0; background: #082d2b; }
.impact-visuals img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.impact-visuals figcaption { padding: 15px 17px 18px; color: rgba(255,255,255,.75); font-size: 13px; }
.impact-visuals figcaption strong { display: block; margin-bottom: 3px; color: var(--sand); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }

.contact-section { padding: clamp(68px, 8vw, 105px) 22px; background: var(--light); }
.contact-section__inner { width: min(1040px, 100%); margin: auto; display: grid; grid-template-columns: .78fr 1.22fr; gap: 60px; align-items: start; }
.contact-copy h2 { margin: 0; font-size: clamp(36px, 5vw, 56px); letter-spacing: -.045em; line-height: 1.05; }
.contact-copy p { color: var(--muted); font-size: 17px; }
.contact-detail { margin-top: 24px; }
.contact-detail small { display: block; color: var(--teal); font-weight: 850; letter-spacing: 1.3px; text-transform: uppercase; }
.contact-detail a, .contact-detail span { display: inline-block; margin-top: 4px; color: var(--ink); font-size: 19px; font-weight: 750; text-decoration: none; }
.contact-form { padding: clamp(28px, 5vw, 46px); background: white; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 12px; font-weight: 850; letter-spacing: .65px; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: 12px 13px; border: 1px solid rgba(19,35,33,.22); border-radius: 0; background: white; color: var(--ink); }
.field textarea { min-height: 145px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid rgba(22,91,87,.23); border-color: var(--teal); }
.form-submit { min-height: 52px; padding: 14px 22px; border: 0; background: var(--teal); color: white; cursor: pointer; font-size: 12px; font-weight: 850; letter-spacing: .7px; text-transform: uppercase; }
.form-submit:hover { background: var(--teal-dark); }
.form-status { display: none; margin: 0 0 22px; padding: 14px 16px; border-left: 4px solid var(--teal); background: var(--cream); }
.form-status.is-visible { display: block; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.site-footer { background: #102724; color: white; }
.site-footer__main { width: var(--page); margin: auto; display: grid; grid-template-columns: 1.35fr .75fr .9fr; gap: 50px; padding: 68px 0 50px; }
.site-footer__brand { max-width: 430px; }
.site-footer__logo { width: min(310px, 100%); max-height: 145px; margin: 0 0 20px; object-fit: contain; object-position: left center; filter: brightness(0) invert(1); opacity: .94; }
.site-footer h2 { margin: 0 0 16px; font-size: 21px; }
.site-footer h3 { margin: 0 0 15px; color: var(--sand); font-size: 11px; letter-spacing: 1.7px; text-transform: uppercase; }
.site-footer p { color: rgba(255,255,255,.67); }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li + li { margin-top: 9px; }
.site-footer a { color: rgba(255,255,255,.78); text-decoration: none; }
.site-footer a:hover { color: white; }
.site-footer__bottom { width: var(--page); margin: auto; display: flex; justify-content: space-between; gap: 25px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.52); font-size: 12px; }

.legal { padding: 72px 22px 100px; }
.legal__inner { width: min(820px, 100%); margin: auto; }
.legal h2 { margin-top: 36px; font-size: 25px; }
.legal p, .legal li { color: var(--muted); }
.legal a { color: var(--teal); font-weight: 700; }
.legal__note { padding: 18px; border-left: 4px solid var(--sand); background: var(--cream); }

@media (max-width: 1040px) {
  .site-nav, .header-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .site-nav.is-open {
    position: fixed;
    inset: 121px 0 0;
    display: block;
    padding: 22px;
    overflow-y: auto;
    background: white;
  }
  .site-nav.is-open > a, .site-nav.is-open .nav-dropdown > button { width: 100%; min-height: 54px; justify-content: space-between; padding: 0 10px; border-bottom: 1px solid var(--line); font-size: 16px; }
  .site-nav.is-open .nav-dropdown__menu { position: static; display: none; min-width: 0; padding: 0 0 8px 20px; border: 0; box-shadow: none; opacity: 1; pointer-events: auto; transform: none; }
  .site-nav.is-open .nav-dropdown.is-open .nav-dropdown__menu { display: block; }
  .site-nav.is-open .nav-dropdown__menu a { padding: 14px 10px; }
  .tt-section .tt-grid.tt-four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tt-section .tt-process { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 18px; }
  .tt-section .tt-step:not(:last-child)::after { display: none; }
}

@media (max-width: 780px) {
  :root { --page: min(100% - 30px, 1160px); }
  .announcement__inner { justify-content: center; text-align: center; }
  .announcement__inner span:first-child { display: none; }
  .brand { min-width: 0; }
  .brand__name { font-size: 12px; }
  .hero { min-height: 650px; }
  .hero::before { background-image: linear-gradient(0deg, rgba(5,33,31,.96), rgba(5,33,31,.58)), var(--hero-image); background-position: 62% center; }
  .hero__inner { padding-top: 100px; }
  .page-hero { min-height: 430px; }
  .tt-section .tt-grid, .tt-section .tt-grid.tt-two, .tt-section .tt-grid.tt-four, .tt-section .tt-split, .tt-section .tt-contact-grid { grid-template-columns: 1fr; }
  .tt-section .tt-cta { align-items: flex-start; flex-direction: column; }
  .portfolio__head { display: block; }
  .portfolio-card, .portfolio-card--wide { grid-column: span 12; min-height: 310px; }
  .impact-visuals__grid { grid-template-columns: 1fr; }
  .contact-section__inner, .site-footer__main { grid-template-columns: 1fr; }
  .site-footer__main { gap: 32px; }
  .site-footer__bottom { flex-direction: column; }
}

@media (max-width: 520px) {
  .site-header__inner { min-height: 75px; }
  .site-nav.is-open { inset-block-start: 111px; }
  .brand__sub { display: none; }
  .hero h1 { font-size: 48px; }
  .hero__actions, .button { width: 100%; }
  .page-hero h1 { font-size: 40px; }
  .tt-section { padding: 50px 18px; }
  .tt-section .tt-title { font-size: 33px; }
  .tt-section .tt-card, .tt-section .tt-panel { padding: 24px; }
  .tt-section .tt-process { grid-template-columns: 1fr; }
  .tt-section .tt-actions, .tt-section .tt-btn { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .contact-form { padding: 24px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

