:root {
  --sky: #62b8e6;
  --sky-dark: #389fd5;
  --sky-pale: #e7f6fd;
  --sky-soft: #d5effb;
  --graphite: #232d34;
  --graphite-2: #162027;
  --ink: #151b20;
  --muted: #5d6870;
  --line: #d9e1e6;
  --white: #fff;
  --orange: #ee9a72;
  --orange-dark: #dc7f55;
  --display: "Arial Narrow", "Bahnschrift Condensed", "Roboto Condensed", Arial, sans-serif;
  --body: Inter, Aptos, "Segoe UI", Arial, sans-serif;
  --shell: min(1180px, calc(100vw - 48px));
  --shadow: 0 22px 65px rgba(21, 27, 32, 0.13);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 16px;
  color: var(--white);
  background: var(--graphite);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: none;
}

.utility-bar {
  color: rgba(255, 255, 255, 0.82);
  background: var(--graphite-2);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.utility-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.utility-inner p {
  margin: 0;
}

.utility-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.utility-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.utility-links a:hover,
.utility-links a:focus-visible {
  color: var(--sky);
}

.utility-links svg {
  width: 16px;
  height: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(35, 45, 52, 0.1);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 52px;
  height: 52px;
}

.brand-roof {
  color: var(--sky-dark);
  fill: none;
  stroke-width: 4;
}

.brand-window {
  color: var(--graphite);
  stroke-width: 3;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 0.91;
  text-transform: uppercase;
}

.brand-top {
  color: var(--sky-dark);
  font-family: var(--display);
  font-size: 20px;
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: 0.025em;
}

.brand-name {
  color: var(--graphite);
  font-family: var(--display);
  font-size: 32px;
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: 0.035em;
}

.main-nav {
  height: 90px;
  display: flex;
  align-items: stretch;
  gap: 30px;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--graphite);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 4px;
  background: var(--sky);
  transition: right 0.25s var(--ease);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after {
  right: 0;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--graphite);
  background: transparent;
  border: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span:not(.sr-only) {
  width: 27px;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(440px, 43%) 1fr;
  overflow: hidden;
  background: var(--white);
}

.hero-copy-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 58px 0 64px;
  min-width: 0;
}

.hero-copy {
  width: min(500px, calc(100% - 48px));
  margin-right: clamp(20px, 4vw, 74px);
  min-width: 0;
}

.hero-lead {
  margin-bottom: 0;
  color: var(--graphite);
  font-family: var(--display);
  font-size: clamp(31px, 2.45vw, 47px);
  font-stretch: condensed;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 10px;
  color: var(--sky-dark);
  font-family: var(--display);
  font-size: clamp(76px, 7vw, 126px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.hero-services {
  max-width: 540px;
  margin-bottom: 20px;
  color: var(--graphite);
  font-size: clamp(19px, 1.45vw, 25px);
  font-weight: 520;
  line-height: 1.35;
}

.short-rule {
  width: 52px;
  height: 4px;
  margin: 23px 0 18px;
  background: var(--sky);
}

.hero-text {
  margin-bottom: 27px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.button svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.3;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--sky-dark);
  border-color: var(--sky-dark);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--graphite);
  border-color: var(--graphite);
}

.button-secondary {
  color: var(--sky-dark);
  background: var(--white);
  border-color: var(--sky);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--graphite);
  border-color: var(--graphite);
}

.hero-line {
  position: absolute;
  width: 1px;
  height: 360px;
  background: var(--sky);
  opacity: 0.65;
  transform: rotate(-24deg);
  transform-origin: center;
}

.hero-line-one {
  top: -25px;
  right: 40px;
}

.hero-line-two {
  top: 60px;
  right: 70px;
}

.hero-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--sky-pale);
}

.media-slice {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: 0;
  overflow: hidden;
  filter: drop-shadow(-12px 0 0 var(--white));
}

.media-slice img {
  transition: transform 1s var(--ease);
}

.hero:hover .media-slice img {
  transform: scale(1.025);
}

.media-slice-one {
  z-index: 1;
  left: -8%;
  width: 52%;
  clip-path: polygon(18% 0, 100% 0, 73% 100%, 0 100%);
}

.media-slice-one img {
  object-position: 57% center;
}

.media-slice-two {
  z-index: 2;
  left: 33%;
  width: 47%;
  clip-path: polygon(24% 0, 100% 0, 72% 100%, 0 100%);
}

.media-slice-two img {
  object-position: 58% center;
}

.media-slice-three {
  z-index: 3;
  left: 69%;
  width: 43%;
  clip-path: polygon(27% 0, 100% 0, 100% 100%, 0 100%);
}

.media-slice-three img {
  object-position: 35% center;
}

.trust-rail {
  position: relative;
  z-index: 5;
  color: var(--graphite);
  background: var(--sky-pale);
  border-top: 1px solid var(--sky);
  border-bottom: 1px solid rgba(56, 159, 213, 0.25);
}

.trust-grid {
  min-height: 128px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 25px 24px;
  border-right: 1px solid rgba(56, 159, 213, 0.42);
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-item svg {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  color: var(--sky-dark);
  stroke-width: 2.1;
}

.trust-item h2 {
  margin: 0 0 2px;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.trust-item p {
  margin: 0;
  color: #4f626d;
  font-size: 13px;
  line-height: 1.45;
}

.section-pad {
  padding: 112px 0;
}

.section-label {
  position: relative;
  margin-bottom: 18px;
  padding-left: 48px;
  color: var(--sky-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 34px;
  height: 3px;
  background: currentColor;
  transform: translateY(-50%);
}

.section-label-orange {
  color: var(--orange-dark);
}

.section-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 90px;
  margin-bottom: 66px;
}

.section-intro h2,
.outdoor-copy h2,
.about-copy h2,
.contact-section h2,
.process-heading h2 {
  margin: 0;
  color: var(--graphite);
  font-family: var(--display);
  font-size: clamp(48px, 5.1vw, 76px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.section-intro h2 span,
.outdoor-copy h2 span {
  color: var(--sky-dark);
}

.section-intro > p {
  max-width: 500px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.service-showcase {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  gap: 72px;
}

.service-showcase > *,
.outdoor-grid > *,
.about-grid > *,
.contact-grid > * {
  min-width: 0;
}

.service-visuals {
  position: relative;
  min-height: 680px;
}

.service-photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  background: var(--sky-pale);
  box-shadow: var(--shadow);
}

.service-photo::after {
  content: "";
  position: absolute;
  inset: 16px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.service-photo-large {
  inset: 0 76px 64px 0;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.service-photo-large img {
  object-position: 58% center;
}

.service-photo-small {
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 48%;
  height: 38%;
  border: 10px solid var(--white);
}

.service-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.25s var(--ease), border-color 0.25s ease;
}

.service-list article:first-child {
  border-top: 1px solid var(--line);
}

.service-list article:hover {
  padding-left: 8px;
  border-color: var(--sky);
}

.service-list span {
  color: var(--sky-dark);
  font-family: var(--display);
  font-size: 29px;
  font-weight: 900;
  line-height: 1;
}

.service-list h3 {
  margin: 0 0 5px;
  color: var(--graphite);
  font-family: var(--display);
  font-size: 25px;
  font-weight: 850;
  line-height: 1.1;
  text-transform: uppercase;
}

.service-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.outdoor-section {
  position: relative;
  padding: 0 0 112px;
  overflow: hidden;
  background: var(--white);
}

.outdoor-section::before {
  content: "";
  position: absolute;
  right: -180px;
  bottom: 0;
  width: 510px;
  height: 510px;
  border: 1px solid rgba(98, 184, 230, 0.45);
  transform: rotate(32deg);
}

.outdoor-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 86px;
}

.outdoor-image {
  position: relative;
  height: 590px;
  margin: 0;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 87% 100%, 0 100%);
}

.outdoor-image img {
  object-position: center;
}

.outdoor-image figcaption {
  position: absolute;
  left: 28px;
  bottom: 28px;
  padding: 10px 15px;
  color: var(--graphite);
  background: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.outdoor-copy {
  position: relative;
  z-index: 2;
  padding-right: 30px;
}

.outdoor-copy > p:not(.section-label) {
  max-width: 500px;
  margin: 28px 0 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.partner-lockup {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  padding: 18px 23px;
  color: var(--white);
  background: var(--graphite);
  border-left: 5px solid var(--orange);
}

.partner-lockup .partner-star {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--orange);
  font-size: 24px;
  line-height: 1;
}

.partner-lockup span:last-child {
  display: flex;
  flex-direction: column;
}

.partner-lockup strong {
  font-family: var(--display);
  font-size: 23px;
  line-height: 1;
  text-transform: uppercase;
}

.partner-lockup small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--graphite);
  font-size: 15px;
  font-weight: 800;
  border-bottom: 2px solid var(--sky);
}

.text-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.text-link:hover svg,
.text-link:focus-visible svg {
  transform: translate(3px, -3px);
}

.process-section {
  padding: 82px 0 88px;
  background: var(--sky-pale);
  border-block: 1px solid rgba(56, 159, 213, 0.25);
}

.process-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.process-heading .section-label {
  margin: 0 0 8px;
}

.process-heading h2 {
  font-size: clamp(40px, 4.5vw, 64px);
}

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

.process-grid article {
  min-height: 118px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  padding: 0 25px;
  border-right: 1px solid rgba(56, 159, 213, 0.42);
}

.process-grid article:first-child {
  padding-left: 0;
}

.process-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.process-grid strong {
  color: var(--sky-dark);
  font-family: var(--display);
  font-size: 38px;
  line-height: 0.9;
}

.process-grid h3 {
  margin: 0 0 7px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.process-grid p {
  margin: 0;
  color: #53636c;
  font-size: 13px;
  line-height: 1.55;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 96px;
}

.about-copy h2 {
  margin-bottom: 30px;
}

.about-large {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--graphite);
  font-weight: 700;
}

.check-list svg {
  width: 24px;
  height: 24px;
  padding: 4px;
  color: var(--sky-dark);
  border: 1px solid var(--sky);
  border-radius: 50%;
  stroke-width: 2.4;
}

.about-visual {
  position: relative;
  min-height: 520px;
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: -30px 80px 65px -30px;
  border: 1px solid var(--sky);
}

.about-visual figure {
  position: absolute;
  inset: 0 0 0 55px;
  margin: 0;
  overflow: hidden;
  clip-path: polygon(11% 0, 100% 0, 100% 100%, 0 100%);
  box-shadow: var(--shadow);
}

.about-note {
  position: absolute;
  left: 0;
  bottom: 38px;
  z-index: 2;
  min-width: 220px;
  padding: 20px 25px;
  color: var(--white);
  background: var(--graphite);
  border-left: 5px solid var(--sky);
}

.about-note span,
.about-note strong {
  display: block;
  font-family: var(--display);
  text-transform: uppercase;
}

.about-note span {
  color: var(--sky);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.about-note strong {
  font-size: 26px;
  line-height: 1;
}

.contact-section {
  position: relative;
  padding: 82px 0;
  color: var(--graphite);
  background: var(--sky);
  overflow: hidden;
}

.contact-section::before,
.contact-section::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 360px;
  background: rgba(255, 255, 255, 0.6);
  transform: rotate(-20deg);
}

.contact-section::before {
  top: -110px;
  left: 6%;
}

.contact-section::after {
  right: 8%;
  bottom: -170px;
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  align-items: center;
  gap: 90px;
}

.section-label-dark {
  color: var(--graphite);
}

.contact-section h2 {
  max-width: 750px;
  font-size: clamp(48px, 5vw, 74px);
}

.contact-section p:not(.section-label) {
  max-width: 650px;
  margin: 23px 0 0;
  color: rgba(22, 32, 39, 0.72);
  font-size: 18px;
}

.contact-actions {
  display: grid;
  gap: 14px;
}

.contact-card {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 25px;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: transform 0.22s var(--ease), background 0.22s ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateX(6px);
}

.contact-card svg {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  stroke-width: 1.8;
}

.contact-card span {
  display: flex;
  flex-direction: column;
}

.contact-card small {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-card strong {
  font-size: 20px;
}

.contact-card-light {
  color: var(--graphite);
  background: var(--white);
}

.contact-card-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.85);
}

.contact-card-outline:hover,
.contact-card-outline:focus-visible {
  color: var(--graphite);
  background: rgba(255, 255, 255, 0.15);
}

.site-footer {
  padding: 70px 0 24px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--graphite-2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 68px;
  padding-bottom: 52px;
}

.brand-footer {
  align-self: start;
}

.brand-footer .brand-roof,
.brand-footer .brand-window,
.brand-footer .brand-top {
  color: var(--sky);
}

.brand-footer .brand-name {
  color: var(--white);
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-grid h2 {
  margin: 0 0 10px;
  color: var(--sky);
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid span {
  font-size: 14px;
}

.footer-grid a {
  transition: color 0.2s ease;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  min-height: 54px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(98, 184, 230, 0.5);
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 40px, 1060px);
  }

  .main-nav {
    gap: 20px;
  }

  .main-nav a {
    font-size: 12px;
  }

  .hero {
    grid-template-columns: minmax(390px, 45%) 1fr;
  }

  .hero-copy {
    margin-right: 20px;
  }

  .trust-item {
    gap: 12px;
    padding-inline: 15px;
  }

  .trust-item svg {
    width: 37px;
    height: 37px;
    flex-basis: 37px;
  }

  .trust-item h2 {
    font-size: 16px;
  }

  .service-showcase,
  .outdoor-grid,
  .about-grid {
    gap: 54px;
  }

  .process-grid article {
    grid-template-columns: 45px 1fr;
    padding-inline: 16px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: calc(100% - 36px);
  }

  .utility-inner > p {
    display: none;
  }

  .utility-inner {
    justify-content: center;
  }

  .header-inner {
    min-height: 78px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-top {
    font-size: 16px;
  }

  .brand-name {
    font-size: 28px;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 117px 0 auto;
    height: calc(100vh - 117px);
    height: calc(100dvh - 117px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 26px 28px 40px;
    background: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.24s ease, transform 0.24s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav a {
    min-height: 64px;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 25px;
  }

  .main-nav a::after {
    left: auto;
    right: 0;
    width: 4px;
    height: auto;
    top: 17px;
    bottom: 17px;
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.22s var(--ease);
  }

  .main-nav a:hover::after,
  .main-nav a:focus-visible::after,
  .main-nav a.is-active::after {
    right: 0;
    transform: scaleY(1);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy-wrap {
    min-height: 570px;
    justify-content: flex-start;
    padding: 68px 0 72px;
  }

  .hero-copy {
    width: var(--shell);
    margin-inline: auto;
  }

  .hero-media {
    min-height: 470px;
  }

  .hero-line-one {
    right: 18%;
  }

  .hero-line-two {
    right: 23%;
  }

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

  .trust-item,
  .trust-item:first-child,
  .trust-item:last-child {
    min-height: 108px;
    padding: 22px;
    border-right: 1px solid rgba(56, 159, 213, 0.42);
    border-bottom: 1px solid rgba(56, 159, 213, 0.42);
  }

  .trust-item:nth-child(2n) {
    border-right: 0;
  }

  .trust-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .section-pad {
    padding: 88px 0;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 48px;
  }

  .service-showcase,
  .outdoor-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-visuals {
    min-height: 560px;
  }

  .outdoor-section {
    padding-bottom: 88px;
  }

  .outdoor-grid {
    gap: 48px;
  }

  .outdoor-image {
    height: 520px;
  }

  .outdoor-copy {
    max-width: 650px;
    padding: 0;
  }

  .process-heading {
    display: block;
  }

  .process-heading .section-label {
    margin-bottom: 17px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 0;
  }

  .process-grid article:nth-child(2) {
    border-right: 0;
  }

  .process-grid article:nth-child(3) {
    padding-left: 0;
  }

  .about-grid {
    gap: 56px;
  }

  .about-visual {
    min-height: 500px;
  }

  .contact-grid {
    gap: 46px;
  }

  .contact-actions {
    max-width: 520px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
  }

  .brand-footer {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .utility-links {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .utility-links a {
    font-size: 12px;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-top {
    font-size: 13px;
  }

  .brand-name {
    font-size: 24px;
  }

  .main-nav {
    inset: 110px 0 auto;
    height: calc(100vh - 110px);
    height: calc(100dvh - 110px);
  }

  .hero-copy-wrap {
    min-height: 515px;
    padding: 55px 0 60px;
  }

  .hero h1 {
    margin-bottom: 14px;
    font-size: clamp(46px, 12vw, 50px);
    line-height: 0.9;
  }

  .hero-lead {
    font-size: 27px;
  }

  .hero-services {
    font-size: 17px;
  }

  .hero-text {
    font-size: 14px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-media {
    min-height: 340px;
    width: 100%;
  }

  .media-slice-one {
    left: -12%;
    width: 69%;
  }

  .media-slice-two {
    left: 38%;
    width: 63%;
  }

  .media-slice-three {
    display: none;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:first-child,
  .trust-item:last-child,
  .trust-item:nth-child(2n),
  .trust-item:nth-last-child(-n + 2) {
    min-height: 96px;
    padding: 19px 5px;
    border-right: 0;
    border-bottom: 1px solid rgba(56, 159, 213, 0.42);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section-pad {
    padding: 72px 0;
  }

  .section-label {
    margin-bottom: 14px;
  }

  .section-intro h2,
  .outdoor-copy h2,
  .about-copy h2,
  .contact-section h2 {
    font-size: clamp(42px, 14vw, 60px);
  }

  .section-intro > p,
  .outdoor-copy > p:not(.section-label),
  .about-large,
  .contact-section p:not(.section-label) {
    font-size: 16px;
  }

  .service-showcase {
    gap: 40px;
  }

  .service-visuals {
    min-height: 410px;
  }

  .service-photo-large {
    inset: 0 36px 45px 0;
  }

  .service-photo-small {
    width: 47%;
    height: 34%;
    border-width: 7px;
  }

  .service-list article {
    grid-template-columns: 40px 1fr;
    gap: 14px;
    padding: 21px 0;
  }

  .service-list h3 {
    font-size: 21px;
  }

  .outdoor-section {
    padding-bottom: 72px;
  }

  .outdoor-image {
    width: calc(100% + 14px);
    height: 410px;
    margin-left: -14px;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
  }

  .partner-lockup {
    width: 100%;
  }

  .process-section {
    padding: 68px 0;
  }

  .process-heading h2 {
    font-size: 42px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-grid article,
  .process-grid article:first-child,
  .process-grid article:nth-child(3),
  .process-grid article:last-child {
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(56, 159, 213, 0.42);
  }

  .process-grid article:last-child {
    border-bottom: 0;
  }

  .about-visual {
    min-height: 390px;
  }

  .about-visual::before {
    inset: -18px 45px 50px -12px;
  }

  .about-visual figure {
    left: 26px;
  }

  .about-note {
    bottom: 24px;
    min-width: 195px;
    padding: 15px 20px;
  }

  .contact-section {
    padding: 70px 0;
  }

  .contact-card {
    min-height: 78px;
    padding: 15px 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 28px;
  }

  .brand-footer {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    padding-top: 22px;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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