@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;450;500;550;600;650;700&family=Manrope:wght@400;500;600;650;700;750;800&display=swap');





:root {
  --background: #fafaf7;
  --foreground: #1b302b;
  --primary: #153f34;
  --primary-foreground: #fff;
  --popover: #fff;
  --muted: #eeefea;
  --muted-foreground: #64716b;
  --accent: #e7ede7;
  --border: #dce0d9;
  --gold: #ac8850;
  --radius: 4px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: 'Manrope', 'DM Sans', Arial, sans-serif;
  font-weight: 500;
}
em {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
}
button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}
::selection {
  background: #dfe7bf;
  color: #183b30;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  background: white;
  padding: 12px;
}
.skip-link:focus {
  top: 10px;
}
.site-header {
  height: 102px;
  border-bottom: 1px solid var(--border);
  background: var(--background);
}
.header-inner {
  max-width: 1440px;
  margin: auto;
  padding: 0 5%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 34px;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  min-width: 178px;
}
.brand-name {
  font-family: 'Manrope', sans-serif;
  font-size: 43px;
  font-weight: 800;
  line-height: 1.12;
}
.brand-name > span {
  color: var(--gold);
}
.brand-descriptor {
  font-size: 9px;
  letter-spacing: 1.9px;
  font-weight: 650;
  margin-top: 5px;
}
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
  margin-left: auto;
}
.desktop-nav > a {
  font-size: 13px;
  white-space: nowrap;
  padding: 10px 0;
  border-bottom: 1px solid transparent;
}
.desktop-nav > a:hover,
.desktop-nav > a.active {
  border-color: var(--primary);
  color: var(--primary);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 16px 23px;
  background: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 550;
  line-height: 1.3;
  min-height: 52px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #245b4a;
  transform: translateY(-2px);
}
.button.light {
  background: #f4f4e9;
  color: var(--primary);
  border-color: #f4f4e9;
}
.button.light:hover {
  background: #e5e7d4;
}
.button.outline {
  background: transparent;
  color: var(--primary);
  border-color: #b7c1b9;
}
.button.outline:hover {
  background: #e7ede7;
}
.header-cta {
  min-height: 44px;
  padding: 12px 19px;
  gap: 25px;
  white-space: nowrap;
}
.mobile-menu {
  display: none;
}
.hero {
  max-width: 1440px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 664px;
}
.hero-copy {
  padding: 66px 8% 65px 10%;
  align-self: center;
}
.hero h1 {
  font-size: 66px;
  line-height: 1.1;
  margin: 25px 0 23px;
  font-weight: 500;
}
.hero h1 em {
  color: #496148;
  font-size: 76px;
  line-height: 1.12;
}
.hero-lead {
  font-size: 17px;
  line-height: 1.6;
  font-weight: 500;
}
.hero-description {
  font-size: 14px;
  line-height: 1.8;
  color: #69736d;
  margin-top: 15px;
  max-width: 410px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 550;
  padding: 7px 0;
  border-bottom: 1px solid transparent;
}
.text-link:hover {
  border-color: currentColor;
}
.hero-signoff {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #737d73;
  font-size: 11px;
  margin-top: 32px;
}
.hero-signoff svg {
  color: #6b7b60;
}
.hero-visual {
  position: relative;
  min-height: 640px;
  isolation: isolate;
}
.hero-visual > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% center;
  z-index: -2;
}
.hero-visual:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 28, 23, 0.18) 25%,
    rgba(11, 28, 23, 0.1) 40%,
    rgba(11, 28, 23, 0.68)
  );
  z-index: -1;
}
.hero-image-caption {
  position: absolute;
  bottom: 142px;
  left: 38px;
  right: 35px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: #fff;
}
.hero-image-caption > span:first-child {
  font-family: 'Manrope';
  font-size: 28px;
  line-height: 1.25;
  font-weight: 400;
}
.hero-image-caption em {
  font-size: 34px;
}
.image-index {
  font-size: 8px;
  letter-spacing: 1.5px;
  line-height: 2.3;
  text-align: right;
}
.image-note {
  position: absolute;
  bottom: 10px;
  right: 18px;
  color: #ddd;
  font-size: 10px;
}
.location-chip {
  position: absolute;
  bottom: 40px;
  left: -25px;
  right: 35px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 21px 26px;
  background: #fafaf7;
  box-shadow: 0 4px 20px #16251916;
}
.location-chip div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.location-chip strong {
  font-size: 13px;
  font-weight: 600;
}
.location-chip span {
  font-size: 11px;
  color: #748077;
}
.location-chip > svg:last-child {
  margin-left: auto;
}
.value-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: #edf0e8;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 5%;
}
.value-strip > span {
  font-size: 9px;
  letter-spacing: 1.5px;
  color: #727b6e;
}
.value-strip > p {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Georgia, serif;
  font-size: 19px;
}
.value-strip svg {
  width: 19px;
  stroke-width: 1.3;
  color: #64745b;
}
.section {
  max-width: 1320px;
  margin: auto;
  padding: 88px 4.4%;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 70px;
  align-items: center;
  margin-top: 23px;
}
.section h2 {
  font-size: 38px;
  line-height: 1.25;
}
.section h2 em {
  font-size: 43px;
  color: #647258;
}
.section-heading > p {
  max-width: 425px;
  color: #70796f;
  font-size: 14px;
  line-height: 1.9;
}
.intro-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid var(--border);
}
.intro-bottom > span {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  color: #677460;
}
.site-footer {
  background: #eeefe8;
  padding: 58px 5% 0;
}
.footer-top {
  max-width: 1296px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 45px;
}
.footer-top > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}
.footer-top p:not(.footer-title) {
  font-size: 12px;
  color: #778074;
  line-height: 1.8;
}
.footer-top .brand {
  margin-bottom: 10px;
}
.footer-top a:not(.brand) {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}
.footer-top a:not(.brand):hover {
  text-decoration: underline;
}
.footer-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.4px;
  margin: 12px 0;
}
.footer-values {
  font-family: Georgia;
  font-size: 14px;
  margin-top: 8px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  max-width: 1296px;
  margin: auto;
  padding: 22px 0;
  border-top: 1px solid #d8ddd2;
  font-size: 10px;
  color: #737e6e;
}
.mobile-sheet {
  padding: 35px 25px;
}
.mobile-sheet nav {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.mobile-sheet nav a {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
}
@media (min-width: 1500px) {
  .hero-copy {
    padding-left: 7%;
  }
  .hero {
    padding: 0 32px;
  }
  .value-strip {
    padding-left: calc((100% - 1296px) /2);
    padding-right: calc((100% - 1296px) /2);
  }
}
@media (max-width: 1150px) {
  .header-inner {
    gap: 22px;
    padding: 0 4%;
  }
  .desktop-nav {
    gap: 18px;
  }
  .desktop-nav > a {
    font-size: 12px;
  }
  .brand {
    min-width: 155px;
  }
  .hero h1 {
    font-size: 54px;
  }
  .hero h1 em {
    font-size: 66px;
  }
  .hero-copy {
    padding: 45px 8%;
  }
  .hero-visual {
    min-height: 625px;
  }
  .actions {
    gap: 15px;
  }
  .strip-end {
    display: none;
  }
  .hero .text-link {
    font-size: 12px;
  }
}
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  .header-cta {
    margin-left: auto;
  }
  .mobile-menu {
    display: flex;
    background: none;
    border: 0;
    padding: 10px;
  }
  .site-header {
    height: 88px;
  }
  .hero h1 {
    font-size: 45px;
  }
  .hero h1 em {
    font-size: 58px;
  }
  .hero-copy {
    padding: 42px 7%;
  }
  .hero-lead {
    font-size: 15px;
  }
  .hero-description {
    font-size: 13px;
  }
  .hero-visual {
    min-height: 590px;
  }
  .hero-image-caption {
    left: 26px;
  }
  .hero-image-caption > span:first-child {
    font-size: 25px;
  }
  .image-index {
    display: none;
  }
  .location-chip {
    right: 22px;
    padding: 17px;
  }
  .location-chip span {
    font-size: 10px;
  }
  .section-heading {
    gap: 35px;
  }
  .section h2 {
    font-size: 31px;
  }
  .section h2 em {
    font-size: 36px;
  }
  .footer-top {
    grid-template-columns: 1.5fr 1fr;
    row-gap: 35px;
  }
  .value-strip > span {
    font-size: 8px;
  }
  .value-strip {
    gap: 18px;
  }
  .value-strip > p {
    font-size: 17px;
  }
}
@media (max-width: 640px) {
  .header-inner {
    padding: 0 6%;
    gap: 14px;
  }
  .brand-name {
    font-size: 36px;
  }
  .brand-descriptor {
    font-size: 8px;
    letter-spacing: 1.4px;
  }
  .brand {
    min-width: 140px;
  }
  .header-cta {
    font-size: 12px;
    gap: 13px;
    padding: 10px 13px;
    min-height: 40px;
  }
  .mobile-menu {
    padding: 7px 0 7px 7px;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding: 46px 7% 38px;
  }
  .hero h1 {
    font-size: 51px;
    margin-top: 24px;
  }
  .hero h1 em {
    font-size: 65px;
  }
  .hero-lead {
    font-size: 16px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-signoff {
    margin-top: 25px;
  }
  .hero-visual {
    min-height: 480px;
    margin: 0 6% 28px;
  }
  .hero-visual > img {
    object-position: center;
  }
  .hero-image-caption {
    bottom: 133px;
  }
  .hero-image-caption > span:first-child {
    font-size: 24px;
  }
  .hero-image-caption em {
    font-size: 30px;
  }
  .location-chip {
    left: -12px;
    right: 18px;
    bottom: 33px;
  }
  .value-strip {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 23px 6%;
  }
  .value-strip > span:first-child {
    width: 100%;
    text-align: center;
    font-size: 9px;
  }
  .value-strip > p {
    font-size: 15px;
    gap: 7px;
  }
  .value-strip svg {
    width: 16px;
  }
  .section {
    padding: 55px 7%;
  }
  .section-heading {
    display: block;
    margin-top: 22px;
  }
  .section h2 {
    font-size: 31px;
  }
  .section h2 em {
    font-size: 36px;
  }
  .section-heading > p {
    margin-top: 24px;
  }
  .intro-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }
  .intro-bottom > span {
    font-size: 11px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-top > div:first-child {
    grid-column: 1/-1;
  }
  .site-footer {
    padding: 42px 7% 0;
  }
  .footer-top > div:last-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 9px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Shared editorial sections */
.services-band {
  background: #eff1eb;
  border-top: 1px solid var(--border);
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 40px;
  border: 1px solid #cfd6cb;
}
.service-card {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #cfd6cb;
  transition: background 0.2s;
  min-height: 325px;
}
.service-card:last-child {
  border: 0;
}
.service-card:hover {
  background: #e4e9dd;
}
.card-number {
  display: flex;
  justify-content: space-between;
  color: #839079;
  font-size: 13px;
}
.service-card h3 {
  font-size: 23px;
  line-height: 1.3;
  margin: 42px 0 17px;
}
.service-card p {
  font-size: 14px;
  color: #6c7968;
  line-height: 1.8;
}
.card-bottom {
  margin-top: auto;
  padding-top: 28px;
  font-size: 9px;
  letter-spacing: 1px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
.report-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.report-presentation {
  background: #e7ece3;
  padding: 46px 40px 28px;
  position: relative;
}
.mini-report {
  background: #fff;
  padding: 28px;
  box-shadow: 0 10px 40px #33493412;
  transform: rotate(-3deg);
}
.mini-brand {
  font-family: Manrope;
  font-size: 25px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mini-brand > span {
  font-family: 'DM Sans';
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 1px;
}
.report-rule {
  height: 2px;
  background: var(--primary);
  margin: 15px 0 18px;
}
.micro {
  font-size: 8px;
  letter-spacing: 1.1px;
  color: #7f8a7c;
}
.mini-report h3 {
  font-size: 21px;
  margin-top: 5px;
}
.mini-subtitle {
  font-size: 9px;
  color: #8a9388;
}
.mini-status {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f8f1dc;
  padding: 10px;
  margin: 19px 0;
  font-size: 9px;
  color: #916e2e;
}
.mini-status > span:last-child {
  margin-left: auto;
  font-size: 7px;
}
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-dot.amber {
  background: #b38b38;
}
.status-dot.green {
  background: #568660;
}
.status-dot.red {
  background: #b8634d;
}
.mini-stat {
  display: flex;
  flex-direction: column;
  font-size: 10px;
  margin: 18px 0;
  gap: 5px;
}
.mini-stat > span {
  font-size: 7px;
  color: #8e9587;
  letter-spacing: 1px;
}
.mini-stat strong {
  font-weight: 550;
}
.mini-finding {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-top: 1px solid #eef0e9;
  padding: 13px 0;
}
.mini-finding > .status-dot {
  margin-top: 6px;
}
.mini-finding strong {
  font-size: 10px;
  font-weight: 550;
}
.mini-finding p {
  font-size: 9px;
  color: #7c8478;
  line-height: 1.7;
  margin-top: 3px;
}
.mini-report-bottom {
  border-top: 1px solid #d6ddd3;
  display: flex;
  gap: 5px;
  font-size: 7px;
  color: #75826e;
  padding-top: 13px;
  align-items: center;
}
.mini-report-bottom > span:last-child {
  margin-left: auto;
}
.report-footnote {
  display: block;
  text-align: center;
  font-size: 8px;
  letter-spacing: 1.2px;
  color: #798573;
  margin-top: 27px;
}
.report-copy h2 {
  margin: 23px 0;
}
.report-copy > p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #6d786c;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 23px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
}
.check-list svg {
  width: 16px;
  height: 22px;
  flex-shrink: 0;
  color: #819173;
}
.process-band {
  background: #173d32;
  color: #f5f5e9;
}
.process-band .section h2 em {
  color: #b9c9a7;
}
.process-band .section-heading p {
  color: #beccbc;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 45px;
  row-gap: 40px;
  margin-top: 55px;
}
.process-step {
  padding-top: 23px;
  border-top: 1px solid #cbd2c4;
}
.step-number {
  font-size: 14px;
  font-family: 'DM Sans';
  font-weight: 400;
  color: #8a946d;
}
.process-step h3 {
  font-size: 20px;
  line-height: 1.4;
  margin: 18px 0 13px;
}
.process-step p {
  font-size: 16px;
  color: #75806f;
  line-height: 1.8;
}
.process-band .process-step {
  border-color: #49604b;
}
.process-band .process-step p {
  color: #bfcabd;
  font-size: 14px;
}
.process-band .text-link {
  margin-top: 35px;
  color: #dce4d1;
}
.process-band .step-number {
  color: #adbda0;
}
.audience .section-heading > div {
  max-width: 480px;
}
.audience p {
  font-size: 16px;
  color: #76806f;
}
.city-list {
  margin-top: 22px;
  font-size: 12px;
  font-weight: 600;
}
.city-list span {
  padding: 0 5px;
  color: #a3ad90;
}
.about-band {
  background: #e9ece1;
}
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-preview h2 {
  margin-top: 22px;
}
.about-preview > div > p {
  color: #68775f;
  font-size: 16px;
}
.about-preview .text-link {
  margin-top: 15px;
}
.creative-preview {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 80px;
}
.creative-image {
  position: relative;
}
.creative-image img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
.creative-image > span {
  position: absolute;
  bottom: 10px;
  left: 15px;
  font-size: 10px;
  color: #fff;
}
.creative-preview h2 {
  margin: 23px 0;
}
.creative-preview p {
  font-size: 16px;
  color: #778170;
  max-width: 390px;
}
.creative-preview .text-link {
  margin-top: 20px;
}
.faq-preview {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 75px;
  border-top: 1px solid var(--border);
}
.faq-preview h2 {
  margin-top: 25px;
}
.faq-preview .text-link {
  margin-top: 26px;
}
.faq-trigger {
  font-size: 16px;
  line-height: 1.5;
  padding: 22px 0;
  border-radius: 0;
  gap: 22px;
  font-weight: 500;
  align-items: center;
}
.faq-answer {
  font-size: 16px;
  color: #6f7d6b;
  line-height: 1.9;
  padding: 0 20px 24px 0;
}
.faq-list {
  border-top: 1px solid var(--border);
}
.final-cta {
  background: #183f33;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  padding: 65px max(6%, calc((100% - 1175px) /2));
  color: #f4f5e9;
}
.final-cta h2 {
  font-size: 37px;
  line-height: 1.35;
  margin-top: 22px;
}
.final-cta h2 em {
  color: #becea9;
  font-size: 42px;
}
.final-cta p {
  color: #c2cbb8;
  margin-top: 18px;
  font-size: 14px;
}
.final-cta .button {
  white-space: nowrap;
}
/* Interior pages */
.page-intro {
  padding-top: 73px;
  padding-bottom: 65px;
}
.page-intro h1 {
  font-size: 57px;
  line-height: 1.2;
  margin: 27px 0;
}
.page-intro h1 em {
  font-size: 64px;
  color: #677b57;
}
.page-intro > p {
  font-size: 18px;
  line-height: 1.85;
  max-width: 690px;
  color: #6d7968;
}
.page-intro .button {
  margin-top: 30px;
}
.service-jump-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1200px;
  margin: auto;
  padding: 0 0 55px;
  border-bottom: 1px solid var(--border);
}
.service-jump-links > a {
  padding: 9px 13px;
  background: #eef0e8;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  border: 1px solid transparent;
}
.service-jump-links > a:hover {
  border-color: #7b8b71;
}
.service-details {
  padding-top: 0;
  padding-bottom: 0;
}
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 25px;
}
.service-detail h2 {
  font-size: 31px;
  margin: 15px 0;
}
.service-promise {
  font-family: Georgia;
  font-style: italic;
  color: #788367;
  font-size: 23px;
  line-height: 1.4;
}
.service-detail .button {
  margin-top: 28px;
}
.service-detail > div > p {
  font-size: 16px;
  line-height: 1.9;
  color: #6e7a66;
}
.service-detail h3 {
  font-size: 15px;
  font-weight: 600;
  margin-top: 26px;
}
.best-for {
  border-left: 2px solid #a5b58b;
  padding: 3px 0 3px 16px;
}
.best-for > span {
  font-size: 10px;
  letter-spacing: 1.4px;
  color: #6b7b60;
}
.best-for > p {
  font-size: 14px;
  color: #6d795f;
  margin-top: 4px;
}
.scope-note {
  font-size: 13px !important;
  color: #808b75 !important;
  line-height: 1.8;
  margin: 20px 0;
}
.scope-panel {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  background: #edf0e6;
  padding: 34px;
  margin: 50px auto;
}
.scope-panel > svg {
  flex-shrink: 0;
  color: #708361;
}
.scope-panel h2 {
  font-size: 24px;
  margin-bottom: 14px;
}
.scope-panel p {
  font-size: 16px;
  line-height: 1.9;
  color: #768369;
}
.service-details + .scope-panel {
  max-width: 1180px;
  margin-bottom: 65px;
}
.about-story {
  padding-top: 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: start;
}
.about-photo > img {
  width: 100%;
  height: 410px;
  object-fit: cover;
}
.about-photo > span {
  display: block;
  font-size: 11px;
  color: #8a9480;
  margin-top: 8px;
}
.about-photo blockquote {
  font-family: Georgia;
  font-size: 30px;
  font-style: italic;
  line-height: 1.5;
  margin: 35px 0;
  color: #647950;
}
.about-photo cite {
  display: block;
  font-family: 'DM Sans';
  font-style: normal;
  font-size: 9px;
  letter-spacing: 1.4px;
  margin-top: 20px;
}
.prose h2 {
  margin: 22px 0 28px;
}
.prose > p {
  font-size: 16px;
  line-height: 1.95;
  color: #6d7a64;
  margin: 20px 0;
}
.three-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 35px;
}
.three-columns > div {
  border-top: 1px solid var(--border);
  padding-top: 25px;
}
.three-columns h3 {
  font-family: Georgia;
  font-size: 29px;
  margin: 20px 0 15px;
}
.three-columns p {
  font-size: 16px;
  color: #738169;
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-top: 40px;
  margin-top: 60px;
  border-top: 1px solid var(--border);
}
.mission-grid > div > p {
  font-size: 20px;
  line-height: 1.7;
  margin-top: 20px;
  color: #536648;
}
.values-section {
  background: #f0f2eb;
}
.production-hero {
  position: relative;
  min-height: 600px;
  isolation: isolate;
  display: flex;
  align-items: center;
  color: white;
  background: #18251e;
}
.production-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.56;
}
.production-hero:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #071a14cf, #071a1420);
  z-index: -1;
}
.production-hero > div {
  padding: 75px max(7%, calc((100% - 1175px) /2));
  width: 100%;
}
.production-hero h1 {
  font-size: 66px;
  line-height: 1.18;
  margin: 30px 0 24px;
}
.production-hero h1 em {
  font-size: 76px;
  color: #d9ddbc;
}
.production-hero p {
  font-size: 18px;
  color: #d7dcce;
  max-width: 450px;
  margin-bottom: 30px;
}
.creative-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  margin-top: 65px;
}
.creative-services > div {
  border-top: 1px solid #cbd4c2;
  padding-top: 25px;
}
.creative-services svg {
  color: #80906b;
  stroke-width: 1.3;
}
.creative-services h3 {
  font-size: 22px;
  line-height: 1.4;
  margin: 30px 0 16px;
}
.creative-services p {
  font-size: 16px;
  color: #76836a;
}
.creative-note {
  background: #edf0e5;
  margin-bottom: 75px;
}
.creative-note h2 {
  margin: 24px 0;
}
.creative-note > p {
  font-size: 16px;
  max-width: 700px;
  color: #6f7f61;
  line-height: 1.9;
}
.creative-note > .button {
  margin-top: 15px;
}
.faq-page {
  max-width: 900px;
  padding-top: 0;
}
.faq-page > p {
  margin-top: 45px;
  margin-bottom: 20px;
  font-size: 18px;
}
/* Report */
.report-layout {
  padding-top: 0;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 65px;
  align-items: start;
}
.report-sidebar h2 {
  margin: 24px 0;
}
.report-sidebar > p {
  font-size: 16px;
  line-height: 1.9;
  color: #7a8670;
}
.report-sidebar .button {
  margin-top: 24px;
  font-size: 13px;
  gap: 15px;
}
.report-sidebar > .scope-note {
  margin: 13px 0;
}
.full-report {
  padding: 42px;
  background: white;
  border: 1px solid #dce1d5;
  box-shadow: 0 8px 30px #1c3a2810;
}
.report-masthead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 3px solid #1b4836;
}
.report-masthead > div {
  font-size: 9px;
  letter-spacing: 0.8px;
  text-align: right;
  color: #86927a;
}
.report-title {
  margin: 32px 0;
}
.report-title h2 {
  font-size: 33px;
  margin: 12px 0 5px;
}
.report-title > p {
  font-size: 14px;
  color: #8a957e;
}
.report-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 23px;
  background: #f2f4ed;
  margin: 0;
}
.report-meta dt {
  font-size: 9px;
  letter-spacing: 1px;
  color: #859374;
  margin-bottom: 6px;
}
.report-meta dd {
  font-size: 13px;
  margin: 0;
}
.status-pill {
  display: inline-block;
  font-size: 11px;
  padding: 3px 8px;
}
.status-pill.amber {
  background: #f1e9ce;
  color: #8b6926;
}
.report-section {
  padding-top: 28px;
  margin-top: 4px;
}
.report-section h3 {
  font-family: 'DM Sans';
  font-size: 14px;
  font-weight: 650;
  margin-bottom: 17px;
  border-bottom: 1px solid #e4e8dd;
  padding-bottom: 13px;
}
.report-section p,
.report-section li {
  font-size: 14px;
  color: #728067;
  line-height: 1.8;
}
.finding-block {
  padding: 18px 20px;
  background: #f3f5ef;
  margin-top: 12px;
  border-left: 2px solid #8da883;
}
.finding-block h4 {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
}
.finding-block ul {
  padding-left: 18px;
  margin-bottom: 0;
  margin-top: 8px;
}
.finding-block.attention {
  background: #faf7ef;
  border-color: #c7ac65;
}
.finding-block.specialist {
  background: #f8f2ef;
  border-color: #bf8a6f;
}
.finding-block.specialist p {
  margin-top: 9px;
}
.decision-list {
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.next-step {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  background: #edf3e7;
}
.next-step svg {
  color: #7d926a;
  flex-shrink: 0;
}
.report-disclaimer {
  font-size: 11px;
  color: #859176;
  line-height: 1.8;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e2e7d8;
}
.report-signoff {
  font-size: 8px;
  letter-spacing: 0.8px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  color: #7e8e6d;
}
/* Enquiries */
.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.5fr;
  gap: 80px;
  padding-top: 0;
}
.contact-layout > aside {
  padding-top: 25px;
}
.contact-layout > aside h2 {
  margin: 25px 0;
}
.contact-layout > aside > p {
  font-size: 16px;
  color: #768368;
  line-height: 1.85;
  margin-bottom: 34px;
}
.contact-method {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
}
.contact-method > svg {
  margin-top: 5px;
  color: #7c8c6b;
}
.contact-method div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-method strong {
  font-size: 15px;
  font-weight: 550;
}
.contact-method span,
.contact-method a {
  font-size: 14px;
  color: #7a896b;
}
.contact-method a:hover {
  text-decoration: underline;
}
.contact-assurance {
  background: #eef1e7;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 22px;
  margin-top: 25px;
}
.contact-assurance p {
  font-size: 13px;
  line-height: 1.8;
  color: #738362;
}
.contact-assurance svg {
  color: #889972;
  flex-shrink: 0;
}
.form-panel {
  padding: 38px;
  background: #fff;
  border: 1px solid #dce2d3;
}
.form-panel > h2 {
  font-size: 28px;
}
.form-intro {
  font-size: 14px;
  color: #7c8a6f;
  margin-top: 12px;
}
.preview-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f3f1e7;
  border: 1px solid #e9e4d0;
  padding: 15px;
  margin: 25px 0;
}
.preview-notice svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: #97834f;
}
.preview-notice p {
  font-size: 13px;
  line-height: 1.8;
  color: #817347;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 30px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 0;
}
.field label {
  font-size: 14px;
  color: #5a6a4f;
}
.field input,
.field textarea,
.form-select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #dce1d3;
  border-radius: 0;
  background: #fcfcfa;
  padding: 11px 13px;
  font-size: 16px;
  color: #354c2c;
  box-shadow: none;
}
.field textarea {
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #919986;
  font-size: 14px;
}
.form-select {
  height: auto;
  white-space: normal;
}
.form-select > span {
  white-space: normal;
  line-clamp: unset;
  -webkit-line-clamp: unset;
}
.full-field {
  grid-column: 1/-1;
}
.form-bottom {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.form-bottom p {
  font-size: 12px;
  color: #849175;
  max-width: 250px;
}
.form-bottom .button {
  white-space: nowrap;
  gap: 15px;
}
.form-error {
  color: #a84031;
  font-size: 14px;
  margin-top: 18px;
}
.enquiry-result {
  background: #eef4e9;
  border: 1px solid #c5d6b8;
  padding: 22px;
  margin-top: 30px;
}
.enquiry-result h3 {
  font-size: 19px;
}
.enquiry-result p {
  font-size: 14px;
  margin-top: 10px;
  color: #647556;
}
.enquiry-result pre {
  font-size: 13px;
  font-family: 'DM Sans';
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  margin: 20px 0;
}
.enquiry-result .button {
  font-size: 13px;
}
/* Insights */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  padding-top: 0;
}
.article-card {
  padding: 30px;
  border: 1px solid #d7e0cf;
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}
.article-card:hover {
  background: #eef2e7;
}
.article-index {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  color: #829272;
  margin-bottom: 50px;
}
.article-card h2 {
  font-size: 26px;
  line-height: 1.45;
  margin: 21px 0;
}
.article-card > p {
  font-size: 15px;
  color: #7b886f;
  line-height: 1.9;
}
.article-card .text-link {
  margin-top: auto;
  padding-top: 25px;
}
.article-layout {
  max-width: 850px;
}
.article-layout > .text-link {
  margin-bottom: 40px;
}
.article-layout h1 {
  font-size: 46px;
  line-height: 1.35;
  margin: 25px 0;
}
.article-lead {
  font-size: 20px;
  line-height: 1.8;
  color: #6c7d5e;
  margin-bottom: 45px;
}
.article-layout .prose > section {
  margin: 35px 0;
}
.article-layout .prose h2 {
  font-size: 26px;
  margin-bottom: 18px;
}
.article-layout .prose p {
  font-size: 17px;
  color: #6a7b5c;
  line-height: 1.95;
}
.article-layout > .scope-note {
  border-top: 1px solid var(--border);
  padding-top: 25px;
  margin-top: 45px;
}
.article-layout > .button {
  margin-top: 15px;
}
/* Type and accessibility refinements */
.desktop-nav > a {
  font-size: 14px;
}
.header-inner {
  gap: 27px;
}
.desktop-nav {
  gap: 23px;
}
.hero-description,
.section-heading > p {
  font-size: 16px;
}
.hero-signoff {
  font-size: 12px;
}
.location-chip strong {
  font-size: 14px;
}
.location-chip span {
  font-size: 12px;
}
.intro-bottom > span {
  font-size: 14px;
}
.footer-top a:not(.brand),
.footer-top p:not(.footer-title) {
  font-size: 14px;
}
.footer-bottom {
  font-size: 12px;
}
.footer-title {
  font-size: 12px;
}
.footer-values {
  font-size: 16px;
}
.hero-image-caption .image-index {
  font-size: 10px;
}
.value-strip > span {
  font-size: 10px;
}
.brand-descriptor {
  font-size: 10px;
  letter-spacing: 1.2px;
}
@media (max-width: 1150px) {
  .desktop-nav {
    gap: 16px;
  }
  .desktop-nav > a {
    font-size: 12px;
  }
  .header-inner {
    gap: 20px;
  }
  .service-jump-links {
    margin: 0 5%;
  }
  .service-detail {
    gap: 55px;
  }
  .report-feature,
  .creative-preview,
  .about-story {
    gap: 50px;
  }
  .service-card {
    padding: 22px 18px;
  }
  .service-card h3 {
    font-size: 21px;
  }
  .report-layout {
    gap: 35px;
    grid-template-columns: 255px minmax(0, 1fr);
  }
  .full-report {
    padding: 30px;
  }
  .contact-layout {
    gap: 40px;
  }
  .form-panel {
    padding: 28px;
  }
  .form-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .scope-panel {
    margin-left: 5%;
    margin-right: 5%;
  }
}
@media (max-width: 900px) {
  .service-cards {
    grid-template-columns: 1fr 1fr;
  }
  .service-card:nth-child(2) {
    border-right: 0;
  }
  .service-card:nth-child(-n + 2) {
    border-bottom: 1px solid #cfd6cb;
  }
  .report-feature {
    gap: 35px;
  }
  .report-presentation {
    padding: 25px 22px;
  }
  .mini-report {
    padding: 20px;
  }
  .mini-brand > span {
    max-width: 80px;
    text-align: right;
  }
  .mini-report h3 {
    font-size: 18px;
  }
  .mini-brand {
    font-size: 22px;
  }
  .report-copy h2 {
    font-size: 28px;
  }
  .report-copy h2 em {
    font-size: 32px;
  }
  .report-copy > p {
    font-size: 14px;
  }
  .check-list li {
    font-size: 14px;
  }
  .process-grid {
    gap: 35px;
  }
  .process-step h3 {
    font-size: 18px;
  }
  .about-preview {
    gap: 40px;
  }
  .faq-preview {
    gap: 35px;
  }
  .final-cta {
    padding: 50px 6%;
    gap: 30px;
  }
  .final-cta h2 {
    font-size: 30px;
  }
  .final-cta h2 em {
    font-size: 36px;
  }
  .final-cta .button {
    padding: 16px;
    gap: 16px;
  }
  .page-intro h1 {
    font-size: 47px;
  }
  .page-intro h1 em {
    font-size: 54px;
  }
  .service-detail {
    gap: 35px;
  }
  .service-detail h2 {
    font-size: 27px;
  }
  .about-story {
    gap: 35px;
  }
  .about-photo > img {
    height: 390px;
  }
  .about-photo blockquote {
    font-size: 26px;
  }
  .three-columns {
    gap: 30px;
  }
  .production-hero h1 {
    font-size: 57px;
  }
  .production-hero h1 em {
    font-size: 66px;
  }
  .creative-services {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .report-layout {
    grid-template-columns: 1fr;
  }
  .report-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-items: start;
  }
  .report-sidebar h2 {
    margin: 10px 0;
  }
  .report-sidebar > p:not(.scope-note) {
    grid-column: 2;
    grid-row: 1/4;
  }
  .report-sidebar .button {
    margin-top: 5px;
    justify-self: start;
  }
  .report-sidebar > .scope-note {
    grid-column: 2;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-layout > aside {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .contact-layout > aside h2 {
    grid-row: 2/4;
    margin: 0;
  }
  .contact-layout > aside > p {
    grid-column: 2;
    margin: 0;
  }
  .contact-method {
    padding: 15px 0;
  }
  .contact-assurance {
    margin: 0;
  }
  .articles-grid {
    gap: 18px;
  }
  .article-card {
    padding: 23px;
  }
  .article-card h2 {
    font-size: 22px;
  }
  .form-bottom {
    flex-direction: row;
    align-items: center;
  }
  .form-select {
    font-size: 14px;
  }
}
@media (max-width: 640px) {
  .hero-description {
    font-size: 16px;
  }
  .hero-signoff {
    font-size: 11px;
  }
  .location-chip span {
    font-size: 11px;
  }
  .brand-descriptor {
    font-size: 8px;
  }
  .service-cards {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
  .service-card {
    border-right: 0;
    border-bottom: 1px solid #cfd6cb !important;
    padding: 25px;
    min-height: 275px;
  }
  .service-card:last-child {
    border-bottom: 0 !important;
  }
  .service-card h3 {
    margin-top: 23px;
    font-size: 25px;
  }
  .service-card p {
    font-size: 16px;
  }
  .card-bottom {
    font-size: 10px;
  }
  .report-feature,
  .creative-preview,
  .about-preview,
  .faq-preview {
    grid-template-columns: 1fr;
    gap: 37px;
  }
  .report-feature {
    padding-top: 50px;
  }
  .report-presentation {
    padding: 38px 33px 25px;
  }
  .mini-report {
    padding: 25px;
    max-width: 350px;
    margin: auto;
  }
  .mini-report h3 {
    font-size: 21px;
  }
  .report-copy > p {
    font-size: 16px;
  }
  .check-list li {
    font-size: 15px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 35px;
  }
  .process-step {
    padding-top: 17px;
  }
  .process-step h3 {
    margin-top: 10px;
    font-size: 21px;
  }
  .process-band .process-step p {
    font-size: 16px;
  }
  .process-step p {
    font-size: 16px;
  }
  .city-list {
    font-size: 11px;
    line-height: 2;
  }
  .audience .section-heading > div {
    margin-top: 22px;
  }
  .creative-image img {
    height: 270px;
  }
  .faq-preview {
    gap: 30px;
  }
  .faq-trigger {
    font-size: 15px;
  }
  .final-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 48px 7%;
    gap: 30px;
  }
  .final-cta h2 {
    font-size: 29px;
  }
  .final-cta h2 em {
    font-size: 36px;
  }
  .final-cta p {
    font-size: 16px;
  }
  .page-intro {
    padding-top: 45px;
    padding-bottom: 42px;
  }
  .page-intro h1 {
    font-size: 38px;
    line-height: 1.25;
    margin: 24px 0;
  }
  .page-intro h1 em {
    font-size: 45px;
  }
  .page-intro > p {
    font-size: 16px;
  }
  .service-jump-links {
    margin: 0 7%;
    gap: 8px;
    padding-bottom: 35px;
  }
  .service-jump-links > a {
    font-size: 11px;
    gap: 10px;
    padding: 8px 10px;
  }
  .service-detail {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 42px 0;
  }
  .service-detail h2 {
    font-size: 28px;
  }
  .service-detail .button {
    margin-top: 23px;
  }
  .service-detail h3 {
    font-size: 16px;
  }
  .scope-panel {
    padding: 25px;
    gap: 16px;
    margin-top: 35px;
    margin-bottom: 35px;
  }
  .scope-panel h2 {
    font-size: 21px;
  }
  .scope-panel p {
    font-size: 15px;
  }
  .scope-panel > svg {
    width: 22px;
  }
  .about-story {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .about-photo > img {
    height: 330px;
  }
  .about-photo blockquote {
    font-size: 27px;
    margin-bottom: 0;
  }
  .three-columns,
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .mission-grid {
    margin-top: 40px;
    padding-top: 35px;
  }
  .mission-grid > div > p {
    font-size: 19px;
  }
  .production-hero {
    min-height: 580px;
  }
  .production-hero > div {
    padding: 55px 7%;
  }
  .production-hero h1 {
    font-size: 47px;
  }
  .production-hero h1 em {
    font-size: 59px;
  }
  .production-hero p {
    font-size: 17px;
  }
  .production-hero > .image-note {
    font-size: 9px;
  }
  .creative-services {
    grid-template-columns: 1fr;
    margin-top: 38px;
    gap: 30px;
  }
  .creative-services h3 {
    margin-top: 20px;
    font-size: 23px;
  }
  .creative-note {
    margin-bottom: 0;
  }
  .creative-note h2 {
    font-size: 28px;
  }
  .report-sidebar {
    display: block;
  }
  .report-sidebar > p {
    margin-bottom: 20px;
  }
  .report-sidebar h2 {
    margin: 20px 0;
  }
  .report-sidebar .button {
    margin: 5px 0;
  }
  .report-layout {
    gap: 35px;
    padding-left: 5%;
    padding-right: 5%;
  }
  .full-report {
    padding: 22px 18px;
  }
  .report-masthead .brand-name {
    font-size: 32px;
  }
  .report-masthead > div {
    font-size: 7px;
    letter-spacing: 0.3px;
    max-width: 130px;
  }
  .report-title h2 {
    font-size: 28px;
  }
  .report-meta {
    padding: 17px;
    gap: 20px;
  }
  .report-meta dd {
    font-size: 12px;
  }
  .report-meta dt {
    font-size: 8px;
  }
  .finding-block {
    padding: 15px;
  }
  .report-signoff {
    font-size: 7px;
    letter-spacing: 0.3px;
  }
  .contact-layout > aside {
    display: block;
    padding: 0;
  }
  .contact-layout > aside h2 {
    margin: 22px 0;
  }
  .contact-layout > aside > p {
    margin-bottom: 28px;
  }
  .contact-method {
    padding: 17px 0;
  }
  .contact-assurance {
    margin-top: 15px;
  }
  .form-panel {
    padding: 25px 20px;
  }
  .form-panel > h2 {
    font-size: 25px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .form-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .form-bottom p {
    max-width: none;
  }
  .form-bottom .button {
    width: 100%;
  }
  .preview-notice {
    padding: 13px;
    gap: 9px;
  }
  .preview-notice p {
    font-size: 12px;
  }
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .article-card {
    padding: 28px;
  }
  .article-card h2 {
    font-size: 26px;
  }
  .article-index {
    margin-bottom: 32px;
  }
  .article-card p {
    font-size: 16px;
  }
  .article-layout h1 {
    font-size: 33px;
  }
  .article-lead {
    font-size: 18px;
  }
  .article-layout .prose h2 {
    font-size: 25px;
  }
  .article-layout .prose p {
    font-size: 16px;
  }
  .intro-bottom > span {
    font-size: 12px;
  }
  .footer-bottom {
    font-size: 11px;
  }
  .footer-top a:not(.brand) {
    font-size: 14px;
  }
}
@media (max-width: 360px) {
  .brand {
    min-width: 119px;
  }
  .brand-name {
    font-size: 32px;
  }
  .header-inner {
    gap: 11px;
    padding: 0 5%;
  }
  .header-cta {
    padding: 10px;
    gap: 9px;
    font-size: 11px;
  }
  .hero h1 {
    font-size: 45px;
  }
  .hero h1 em {
    font-size: 58px;
  }
  .hero-copy {
    padding-left: 6%;
    padding-right: 6%;
  }
  .hero .actions {
    gap: 20px;
  }
  .hero .button {
    padding: 15px 18px;
  }
  .value-strip {
    gap: 15px;
  }
  .value-strip > p {
    font-size: 14px;
  }
  .mini-report {
    padding: 17px;
  }
  .page-intro h1 {
    font-size: 33px;
  }
  .page-intro h1 em {
    font-size: 40px;
  }
}
@media print {
  @page {
    size: A4;
    margin: 15mm;
  }
  .site-header,
  .site-footer,
  .report-page-intro,
  .report-sidebar,
  .final-cta,
  .skip-link {
    display: none !important;
  }
  body {
    background: #fff;
    font-size: 12px;
    color: #18352a;
  }
  .report-layout {
    display: block;
    max-width: none;
    padding: 0;
    margin: 0;
  }
  .full-report {
    border: 0;
    box-shadow: none;
    padding: 0;
  }
  .report-masthead {
    padding-bottom: 12px;
  }
  .report-title {
    margin: 20px 0;
  }
  .report-section {
    padding-top: 16px;
  }
  .report-section h3 {
    margin-bottom: 10px;
    padding-bottom: 8px;
  }
  .report-section p,
  .report-section li {
    font-size: 11px;
  }
  .finding-block {
    padding: 11px 15px;
    break-inside: avoid;
  }
  .report-meta {
    padding: 14px;
  }
  .report-disclaimer {
    font-size: 9px;
  }
  .report-signoff {
    font-size: 8px;
  }
  .next-step {
    padding: 12px;
  }
  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}
.recognition {
  border-top: 1px solid var(--border);
  background: #eef1e7;
}
.recognition .section-heading > div {
  max-width: 440px;
}
.recognition .section-heading > div > p {
  font-size: 17px;
  color: #687b58;
  line-height: 1.9;
}
.recognition .text-link {
  margin-top: 17px;
}
@media (max-width: 640px) {
  .recognition .section-heading > div {
    margin-top: 25px;
  }
}

/* Headings now lead each section directly. */
.hero h1,
.page-intro h1,
.production-hero h1,
.final-cta h2,
.section-heading,
.about-preview h2,
.creative-preview h2,
.faq-preview h2,
.report-copy h2,
.report-sidebar h2,
.prose h2:first-child,
.article-layout h1 {
  margin-top: 0;
}
.mission-grid h3 {
  font-size: 22px;
}

/* Native HTML controls and layout: no Tailwind, React or component library. */
[hidden] { display: none !important; }
button, input, textarea, select { font-family: inherit; }
svg { vertical-align: middle; flex-shrink: 0; }
.menu-open { overflow: hidden; }
.mobile-sheet { position: fixed; inset: 0 0 0 auto; margin: 0; width: min(88%, 390px); max-width: none; height: 100dvh; max-height: none; border: 0; background: var(--background); color: var(--foreground); padding: 30px 25px; overflow-y: auto; }
.mobile-sheet:not([open]) { display: none; }
.mobile-sheet::backdrop { background: #10251f88; }
.mobile-dialog-top { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.mobile-dialog-top h2 { font-size: 22px; }
#close-menu { border: 0; background: transparent; color: inherit; min-width: 44px; min-height: 44px; font-size: 32px; line-height: 1; }
.mobile-sheet nav a[aria-current="page"] { font-weight: 650; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; cursor: pointer; list-style: none; margin: 0; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle { flex-shrink: 0; font-size: 22px; font-weight: 400; transition: transform .2s; }
.faq-item[open] .faq-toggle { transform: rotate(45deg); }
.faq-item .faq-answer { padding-top: 0; }
.form-select { appearance: auto; line-height: 1.5; cursor: pointer; }
form input:focus, form textarea:focus, form select:focus { outline: 2px solid var(--gold); outline-offset: 2px; }
#enquiry-result .actions { margin-top: 20px; gap: 15px; }
@media print { #mobile-navigation { display: none !important; } }
