:root {
  --navy: #031129;
  --ink: #06172f;
  --blue: #085187;
  --blue-deep: #00204e;
  --green: #77b43b;
  --green-deep: #4d9043;
  --lime: #e6ee19;
  --cyan: #17bbfd;
  --magenta: #ff388c;
  --paper: #ffffff;
  --mist: #f3f7f4;
  --line: rgba(3, 17, 41, 0.12);
  --shadow: 0 22px 70px rgba(3, 17, 41, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(3, 17, 41, 0.08);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 12px 5vw;
  position: fixed;
  right: 0;
  top: 0;
  transition: box-shadow 180ms ease, background 180ms ease;
  z-index: 50;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 35px rgba(3, 17, 41, 0.12);
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 0;
}

.brand img {
  background: transparent;
  border: 0;
  border-radius: 0;
  height: 52px;
  object-fit: contain;
  padding: 0;
  width: 56px;
}

.brand span {
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 800;
  white-space: nowrap;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 6px;
}

.site-nav a {
  border-radius: 8px;
  color: rgba(3, 17, 41, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 10px 14px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(119, 180, 59, 0.13);
  color: var(--navy);
  outline: none;
}

.site-nav a.is-active {
  background: var(--navy);
  color: #fff;
}

.menu-button {
  align-items: center;
  background: var(--navy);
  border: 0;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  display: none;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  gap: 7px;
  padding: 10px 12px;
}

.menu-button span {
  background: currentColor;
  border-radius: 2px;
  display: block;
  height: 2px;
  width: 15px;
}

.hero {
  background: var(--navy);
  color: #fff;
  min-height: 84vh;
  overflow: hidden;
  padding: 116px 5vw 0;
  position: relative;
}

.rec-hero {
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--blue-deep) 58%, #0b5f88 100%);
  color: #fff;
  overflow: hidden;
  padding: 118px 5vw 0;
  position: relative;
}

.rec-hero::after {
  background: linear-gradient(90deg, var(--green), var(--lime), var(--blue));
  bottom: 0;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  right: 0;
}

.rec-hero-inner {
  align-items: center;
  display: grid;
  gap: 52px;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.74fr);
  margin: 0 auto;
  max-width: 1200px;
  padding-bottom: 56px;
  position: relative;
  z-index: 1;
}

.rec-hero .hero-logo {
  max-width: 210px;
}

.rec-hero-copy h1 {
  color: #fff;
  font-size: 4.25rem;
  line-height: 1;
  margin: 0;
  max-width: 820px;
}

.rec-hero-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
  max-width: 690px;
}

.rec-hero-visual {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 470px;
  position: relative;
}

.rec-hero-visual img {
  filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.26));
  height: auto;
  max-height: 500px;
  object-fit: contain;
  width: 100%;
}

.visual-badge {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  bottom: 38px;
  box-shadow: var(--shadow);
  color: var(--navy);
  max-width: 230px;
  padding: 16px;
  position: absolute;
  right: 0;
}

.visual-badge strong {
  color: var(--green-deep);
  display: block;
  font-size: 1.2rem;
}

.visual-badge span {
  color: rgba(6, 23, 47, 0.68);
  display: block;
  font-size: 0.88rem;
}

.rec-impact-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 -5vw;
  position: relative;
  z-index: 1;
}

.rec-impact-strip div {
  background: rgba(3, 17, 41, 0.72);
  min-height: 126px;
  padding: 26px 5vw;
}

.rec-impact-strip strong {
  color: #fff;
  display: block;
  font-size: 2.05rem;
  line-height: 1;
  margin-bottom: 10px;
}

.rec-impact-strip span {
  color: rgba(255, 255, 255, 0.74);
  display: block;
  max-width: 310px;
}

.partner-layout {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  margin: 0 auto;
  max-width: 1180px;
}

.partner-copy p:not(.section-kicker) {
  font-size: 1.02rem;
}

.partner-visual {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  min-height: 430px;
  overflow: hidden;
  padding: 18px;
}

.partner-visual img {
  max-height: 440px;
  object-fit: contain;
}

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

.projects {
  background:
    linear-gradient(180deg, rgba(243, 247, 244, 0.98), rgba(255, 255, 255, 0.98));
}

.project-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.project-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 250px;
  padding: 24px;
  position: relative;
}

.project-card::before {
  background: var(--green);
  content: "";
  height: 4px;
  left: 24px;
  position: absolute;
  right: 24px;
  top: 0;
}

.project-card:nth-child(2)::before,
.project-card:nth-child(4)::before {
  background: var(--blue);
}

.project-card span {
  color: rgba(3, 17, 41, 0.32);
  display: block;
  font-weight: 900;
  margin-bottom: 56px;
}

.project-card p {
  margin-bottom: 0;
}

.property-hero {
  background:
    radial-gradient(circle at 82% 22%, rgba(119, 180, 59, 0.24), transparent 26%),
    linear-gradient(135deg, var(--navy) 0%, var(--blue-deep) 58%, var(--blue) 100%);
  color: #fff;
  overflow: hidden;
  padding: 120px 5vw 82px;
  position: relative;
}

.property-hero::after {
  background: linear-gradient(90deg, var(--green), var(--lime), var(--blue));
  bottom: 0;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  right: 0;
}

.property-hero-inner {
  align-items: center;
  display: grid;
  gap: 58px;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  margin: 0 auto;
  max-width: 1180px;
  position: relative;
  z-index: 1;
}

.property-hero-copy h1 {
  color: #fff;
  font-size: 4rem;
  line-height: 1.02;
  margin: 0;
  max-width: 820px;
}

.property-hero-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
  max-width: 650px;
}

.property-visual {
  min-height: 480px;
  position: relative;
}

.building-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--navy);
  max-width: 360px;
  padding: 28px;
  position: absolute;
  right: 0;
  top: 22px;
  z-index: 2;
}

.building-card img {
  height: auto;
  margin-bottom: 26px;
  width: 148px;
}

.building-card strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.1;
}

.building-card p {
  margin-bottom: 0;
}

.building-lines {
  display: grid;
  gap: 9px;
  margin: 20px 0 24px;
}

.building-lines span {
  background: linear-gradient(90deg, var(--green), rgba(8, 81, 135, 0.22));
  border-radius: 99px;
  display: block;
  height: 8px;
}

.building-lines span:nth-child(2) {
  width: 82%;
}

.building-lines span:nth-child(3) {
  width: 58%;
}

.floor-plan {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  bottom: 0;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 0.72fr 0.92fr;
  grid-template-rows: 1fr 0.76fr;
  height: 300px;
  left: 0;
  padding: 14px;
  position: absolute;
  width: 86%;
}

.floor-plan span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(119, 180, 59, 0.48);
  border-radius: 8px;
}

.floor-plan span:first-child {
  grid-row: span 2;
}

.floor-plan span:nth-child(4) {
  background: rgba(119, 180, 59, 0.22);
  grid-column: span 2;
}

.property-card-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.property-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 245px;
  padding: 24px;
  position: relative;
}

.property-card::before {
  background: var(--green);
  content: "";
  height: 4px;
  left: 24px;
  position: absolute;
  right: 24px;
  top: 0;
}

.property-card:nth-child(2)::before,
.property-card:nth-child(4)::before {
  background: var(--blue);
}

.property-card span {
  color: rgba(3, 17, 41, 0.3);
  display: block;
  font-weight: 900;
  margin-bottom: 58px;
}

.property-card p {
  margin-bottom: 0;
}

.property-highlight {
  background: var(--navy);
  color: #fff;
}

.highlight-panel {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  margin: 0 auto;
  max-width: 1120px;
}

.highlight-panel h2 {
  color: #fff;
}

.highlight-panel p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 720px;
}

.highlight-stats {
  display: grid;
  gap: 12px;
}

.highlight-stats span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 5px solid var(--green);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.76);
  padding: 16px;
}

.highlight-stats strong {
  color: #fff;
  display: block;
  font-size: 1.2rem;
}

.hero-bg {
  background-image:
    linear-gradient(90deg, rgba(3, 17, 41, 0.95) 0%, rgba(3, 17, 41, 0.78) 43%, rgba(3, 17, 41, 0.35) 100%),
    url("assets/energy-presentation-visual.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  inset: 0;
  opacity: 0.92;
  position: absolute;
}

.hero::after {
  background:
    linear-gradient(90deg, var(--green), var(--lime) 42%, var(--blue));
  bottom: 0;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  right: 0;
}

.hero-inner {
  max-width: 760px;
  padding-bottom: 62px;
  position: relative;
  z-index: 1;
}

.hero-logo {
  background: transparent;
  border-radius: 0;
  filter: drop-shadow(0 10px 28px rgba(255, 255, 255, 0.26));
  height: auto;
  margin-bottom: 32px;
  max-width: 248px;
  padding: 0;
}

.eyebrow,
.section-kicker {
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 4.8rem;
  line-height: 0.96;
  margin: 0;
  max-width: 760px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
  margin: 24px 0 0;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
}

.button-primary {
  background: var(--green);
  color: #071124;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--lime);
  outline: none;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.hero-metrics {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 -5vw;
  position: relative;
  z-index: 1;
}

.hero-metrics div {
  background: rgba(3, 17, 41, 0.74);
  min-height: 130px;
  padding: 28px 5vw;
}

.hero-metrics strong {
  color: #fff;
  display: block;
  font-size: 2.35rem;
  line-height: 1;
  margin-bottom: 10px;
}

.hero-metrics span {
  color: rgba(255, 255, 255, 0.76);
  display: block;
  font-size: 0.95rem;
  max-width: 260px;
}

section {
  padding: 92px 5vw;
}

.section-band {
  background:
    linear-gradient(180deg, rgba(243, 247, 244, 0.98), rgba(255, 255, 255, 0.98));
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.section-grid {
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  margin: 0 auto;
  max-width: 1180px;
}

h2 {
  color: var(--navy);
  font-size: 2.75rem;
  line-height: 1.08;
  margin: 0;
}

h3 {
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.22;
  margin: 0;
}

p {
  color: rgba(6, 23, 47, 0.74);
}

.intro-copy {
  columns: 2 280px;
  gap: 34px;
}

.intro-copy p {
  font-size: 1.02rem;
  margin: 0 0 18px;
}

.section-heading {
  margin: 0 auto 44px;
  max-width: 930px;
  text-align: center;
}

.section-heading.compact {
  max-width: 760px;
}

.service-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1240px;
}

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

.service-card,
.case-card,
.momentum-item,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card {
  background: #fff;
  min-height: 278px;
  padding: 22px;
  position: relative;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-card::before {
  background: var(--green);
  content: "";
  height: 4px;
  left: 22px;
  position: absolute;
  right: 22px;
  top: 0;
}

.service-card:nth-child(2)::before,
.service-card:nth-child(5)::before {
  background: var(--blue);
}

.service-card:nth-child(3)::before {
  background: var(--lime);
}

.service-card:hover {
  border-color: rgba(8, 81, 135, 0.34);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-number {
  color: rgba(3, 17, 41, 0.32);
  display: block;
  font-size: 0.92rem;
  font-weight: 900;
  margin-bottom: 58px;
}

.service-card p {
  font-size: 0.94rem;
  margin: 16px 0 0;
}

.process-list {
  counter-reset: process;
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0 auto;
  max-width: 990px;
  padding: 0;
}

.process-list li {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 22px;
  grid-template-columns: 68px 1fr;
  min-height: 106px;
  padding: 18px 22px;
}

.process-list span {
  align-items: center;
  background: var(--navy);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-size: 1.25rem;
  font-weight: 900;
  height: 54px;
  justify-content: center;
  width: 54px;
}

.process-list p {
  margin: 8px 0 0;
}

.case-layout {
  display: grid;
  gap: 18px;
  margin: 0 auto;
  max-width: 1180px;
}

.case-feature {
  align-items: stretch;
  background: var(--navy);
  border-radius: 8px;
  color: #fff;
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  overflow: hidden;
}

.case-feature img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.case-feature > div {
  padding: 38px;
}

.case-feature h3 {
  color: #fff;
  font-size: 2rem;
}

.case-feature p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
}

.mini-stats {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}

.mini-stats span {
  border-left: 4px solid var(--green);
  color: rgba(255, 255, 255, 0.76);
  display: block;
  font-size: 0.9rem;
  padding: 0 12px;
}

.mini-stats strong {
  color: #fff;
  display: block;
  font-size: 1.3rem;
}

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

.case-card {
  background: #fff;
  padding: 28px;
}

.case-card > p {
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 900;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.case-card dl {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 24px 0 0;
}

.case-card dl div {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.case-card dt {
  color: rgba(3, 17, 41, 0.48);
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.case-card dd {
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 900;
  margin: 0;
}

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

.momentum-item {
  background: #fff;
  min-height: 150px;
  padding: 24px;
}

.momentum-item strong {
  color: var(--blue);
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 16px;
}

.momentum-item:nth-child(2) strong {
  color: var(--green-deep);
}

.momentum-item:nth-child(3) strong {
  color: var(--magenta);
}

.momentum-item span {
  color: rgba(6, 23, 47, 0.72);
}

.public-sector {
  align-items: center;
  background: var(--navy);
  color: #fff;
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  overflow: hidden;
  padding-bottom: 0;
  padding-top: 0;
}

.public-visual {
  align-self: stretch;
  min-height: 460px;
  overflow: hidden;
  position: relative;
}

.public-visual img {
  height: 100%;
  object-fit: cover;
  object-position: left center;
  width: 100%;
}

.public-content {
  max-width: 610px;
  padding: 76px 5vw 76px 0;
}

.public-content h2 {
  color: #fff;
}

.public-content p,
.public-content li {
  color: rgba(255, 255, 255, 0.76);
}

.public-content ul {
  margin: 24px 0 0;
  padding-left: 20px;
}

.public-content li + li {
  margin-top: 8px;
}

.contact {
  background:
    linear-gradient(135deg, rgba(8, 81, 135, 0.08), rgba(119, 180, 59, 0.13));
}

.contact-panel {
  align-items: end;
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  margin: 0 auto;
  max-width: 1120px;
  padding: 40px;
}

.contact-panel p {
  max-width: 680px;
}

address {
  display: grid;
  font-style: normal;
  gap: 10px;
}

address a {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  font-weight: 900;
  padding: 14px 16px;
  text-align: center;
}

address a:hover,
address a:focus-visible {
  background: var(--navy);
  color: #fff;
  outline: none;
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  color: rgba(6, 23, 47, 0.74);
  padding: 52px 5vw 24px;
}

.footer-inner {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(240px, 1.1fr) repeat(3, minmax(150px, 0.72fr));
  margin: 0 auto;
  max-width: 1180px;
}

.footer-brand img {
  height: auto;
  margin-bottom: 18px;
  max-width: 148px;
}

.footer-brand p {
  color: rgba(6, 23, 47, 0.7);
  margin: 0;
  max-width: 330px;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 9px;
}

.footer-links h2,
.footer-contact h2 {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 8px;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  color: rgba(6, 23, 47, 0.72);
  font-size: 0.94rem;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--blue);
  outline: none;
}

.footer-contact a {
  border: 0;
  border-radius: 0;
  font-weight: 700;
  padding: 0;
  text-align: left;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  background: transparent;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 38px auto 0;
  max-width: 1180px;
  padding-top: 18px;
}

.footer-bottom span {
  color: rgba(6, 23, 47, 0.58);
  font-size: 0.86rem;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .menu-button {
    display: inline-grid;
    grid-template-columns: repeat(3, 15px) auto;
  }

  .site-nav {
    background: #fff;
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 10px 5vw 18px;
    position: absolute;
    right: 0;
    top: 67px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .hero {
    min-height: 78vh;
    padding-top: 102px;
  }

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

  .hero-copy {
    font-size: 1.05rem;
  }

  .hero-metrics,
  .rec-impact-strip,
  .section-grid,
  .partner-layout,
  .case-feature,
  .case-grid,
  .public-sector,
  .contact-panel,
  .property-hero-inner,
  .highlight-panel {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    min-height: auto;
    padding: 22px 5vw;
  }

  .rec-impact-strip div {
    min-height: auto;
    padding: 22px 5vw;
  }

  .hero-metrics strong {
    font-size: 1.8rem;
  }

  .rec-impact-strip strong {
    font-size: 1.8rem;
  }

  section {
    padding: 70px 5vw;
  }

  h2 {
    font-size: 2.1rem;
  }

  .service-grid,
  .momentum-grid,
  .property-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .rec-hero-inner {
    grid-template-columns: 1fr;
  }

  .rec-hero-copy h1 {
    font-size: 3.25rem;
  }

  .rec-hero-visual {
    min-height: 360px;
  }

  .rec-hero-visual img {
    max-height: 380px;
  }

  .partner-visual {
    min-height: 320px;
  }

  .property-hero-copy h1 {
    font-size: 3rem;
  }

  .property-visual {
    min-height: 410px;
  }

  .public-content {
    max-width: none;
    padding: 0 5vw 70px;
  }

  .public-visual {
    min-height: 300px;
  }
}

@media (max-width: 620px) {
  .brand span {
    font-size: 0.82rem;
  }

  .brand img {
    height: 44px;
    width: 48px;
  }

  .menu-button {
    font-size: 0;
    grid-template-columns: repeat(3, 14px);
    padding: 12px 10px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 0;
  }

  .hero-bg {
    background-image:
      linear-gradient(180deg, rgba(3, 17, 41, 0.96) 0%, rgba(3, 17, 41, 0.82) 55%, rgba(3, 17, 41, 0.48) 100%),
      url("assets/energy-presentation-visual.png");
    background-position: 42% bottom;
  }

  .hero-logo {
    max-width: 190px;
  }

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

  .hero-actions {
    display: grid;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .rec-impact-strip,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .momentum-grid,
  .mini-stats,
  .case-card dl,
  .property-card-grid {
    grid-template-columns: 1fr;
  }

  .service-grid.rec-service-grid {
    grid-template-columns: 1fr;
  }

  .rec-hero {
    padding-top: 100px;
  }

  .rec-hero .hero-logo {
    max-width: 180px;
  }

  .rec-hero-copy h1 {
    font-size: 2.5rem;
  }

  .rec-hero-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .rec-hero-visual {
    min-height: 300px;
  }

  .visual-badge {
    bottom: 0;
    left: 0;
    max-width: none;
    right: auto;
    width: 82%;
  }

  .property-hero {
    padding-top: 100px;
  }

  .property-hero-copy h1 {
    font-size: 2.45rem;
  }

  .property-visual {
    min-height: 360px;
  }

  .building-card {
    left: 0;
    max-width: none;
    right: 0;
  }

  .floor-plan {
    width: 100%;
  }

  .process-list li {
    align-items: start;
    grid-template-columns: 48px 1fr;
    padding: 16px;
  }

  .process-list span {
    height: 42px;
    width: 42px;
  }

  .case-feature > div,
  .case-card,
  .contact-panel {
    padding: 24px;
  }

  .case-feature h3 {
    font-size: 1.55rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
