:root {
  --navy: #0A3A7A;
  --navy-2: #072C5C;
  --steel: #2F5FA3;
  --blue: #0A3A7A;
  --line: #E5E7EB;
  --muted: #F4F6F8;
  --text: #2D3748;
  --subtle: #6B7280;
  --white: #ffffff;
  --gold: #6FAFD8;
  --gold-hover: #4F9FCC;
  --gold-gradient: linear-gradient(135deg, #EAF7FF 0%, #A9D6F5 48%, #6FAFD8 100%);
  --hero-subtext: #D9E5F5;
  --shadow: 0 18px 45px rgba(7, 44, 92, 0.10);
  --shadow-hover: 0 24px 55px rgba(7, 44, 92, 0.16);
  --radius: 12px;
  --button-radius: 10px;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@keyframes fade-slide {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 82px;
  padding: 12px max(20px, calc((100vw - var(--container)) / 2 + 32px));
  border-bottom: 1px solid rgba(229, 231, 235, 0.95);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
}

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

.brand img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 1px solid rgba(10, 58, 122, 0.12);
  border-radius: 50%;
  background: var(--white);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--navy);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.brand small {
  color: var(--steel);
  font-size: 12px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.site-nav a {
  padding: 10px 13px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--blue);
}

.site-nav .nav-cta {
  margin-left: 6px;
  padding: 11px 16px;
  color: var(--navy-2);
  background: var(--gold-gradient);
  box-shadow: 0 10px 22px rgba(111, 175, 216, 0.24);
}

.site-nav .nav-cta:hover {
  color: var(--navy-2);
  background: linear-gradient(135deg, #D7EEFC 0%, var(--gold-hover) 100%);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: min(760px, calc(100vh - 76px));
  display: grid;
  align-items: center;
  padding: clamp(54px, 8vw, 96px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--navy-2);
}

.hero-home {
  min-height: min(620px, calc(100vh - 140px));
}

.home-hero {
  position: relative;
  padding: clamp(88px, 8vw, 112px) 0;
  background:
    linear-gradient(90deg, rgba(244, 246, 248, 0.96), rgba(255, 255, 255, 0.98)),
    var(--white);
}

.home-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(10, 58, 122, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 58, 122, 0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 72%);
}

.home-hero-grid,
.about-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 32px;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 32px;
}

.home-hero-copy {
  grid-column: span 5;
  max-width: 560px;
}

.home-hero .eyebrow,
.about-page-hero .eyebrow {
  margin-bottom: 20px;
}

.home-hero h1 {
  color: var(--navy);
  max-width: 540px;
  margin-bottom: 28px;
  font-size: clamp(2.6rem, 4vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.home-hero .lead {
  max-width: 580px;
  margin-bottom: 28px;
  color: var(--text);
  font-size: clamp(17px, 1.8vw, 21px);
}

.home-hero-visual {
  grid-column: span 7;
  width: 100%;
}

.hero-project-slider {
  position: relative;
  min-height: clamp(500px, 44vw, 620px);
  aspect-ratio: 1.12 / 1;
  overflow: hidden;
  border: 1px solid rgba(10, 58, 122, 0.12);
  border-radius: 24px;
  background: var(--navy-2);
  box-shadow: 0 28px 64px rgba(7, 44, 92, 0.18);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  margin: 0;
  opacity: 0;
  transform: translateX(22px) scale(1.015);
  transition: opacity 680ms ease, transform 820ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  z-index: 1;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-hero-visual .hero-slide:nth-child(1) img,
.home-hero-visual .hero-slide:nth-child(2) img {
  object-position: center 52%;
}

.home-hero-visual .hero-slide:nth-child(3) img {
  object-position: center 46%;
}

.about-hero-slider .hero-slide:nth-child(1) img {
  object-position: center 44%;
}

.about-hero-slider .hero-slide:nth-child(2) img {
  object-position: center 50%;
}

.about-hero-slider .hero-slide:nth-child(3) img {
  object-position: center;
}

.hero-slide::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 48%;
  content: "";
  background: linear-gradient(to top, rgba(5, 35, 75, 0.78) 0%, rgba(5, 35, 75, 0.34) 54%, rgba(5, 35, 75, 0) 100%);
  pointer-events: none;
}

.hero-slide figcaption {
  position: relative;
  z-index: 2;
  width: min(560px, calc(100% - 44px));
  margin: 22px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(7, 44, 92, 0.88);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.hero-slide span,
.before-after-copy span,
.interior-project-copy span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-slide strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-family: var(--heading-font);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.08;
}

.hero-slide p {
  max-width: 500px;
  margin: 12px 0 0;
  color: var(--hero-subtext);
  font-size: 15px;
  line-height: 1.55;
}

.hero-slider-dots {
  position: absolute;
  right: 24px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-slider-dots span {
  width: 30px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.hero-slider-dots span.is-active {
  background: var(--gold);
}

.whatsapp-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid rgba(20, 122, 61, 0.24);
  border-radius: 999px;
  color: #126C37;
  background: rgba(20, 122, 61, 0.08);
  box-shadow: 0 10px 24px rgba(7, 44, 92, 0.07);
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.whatsapp-text-link:hover {
  border-color: rgba(20, 122, 61, 0.38);
  background: rgba(20, 122, 61, 0.13);
  transform: translateY(-1px);
}

.whatsapp-text-link .icon {
  width: 17px;
  height: 17px;
}

.hero-premium {
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.72fr);
  gap: clamp(34px, 5vw, 72px);
}

.hero-home.hero-premium {
  grid-template-columns: minmax(0, 1fr);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(7, 44, 92, 0.94), rgba(7, 44, 92, 0.76) 42%, rgba(7, 44, 92, 0.38));
}

.hero-content,
.page-hero > div {
  position: relative;
  z-index: 1;
  max-width: 820px;
  animation: fade-slide 520ms ease both;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 680px;
  margin-top: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(14px);
}

.hero-proof div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-proof strong {
  display: block;
  color: var(--white);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 28px;
  line-height: 1;
}

.hero-proof span {
  display: block;
  margin-top: 8px;
  color: var(--hero-subtext);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 14px;
  max-width: 560px;
  justify-self: end;
  animation: fade-slide 620ms ease both;
}

.hero-showcase article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.22);
}

.hero-showcase article:nth-child(2) {
  grid-row: span 2;
}

.hero-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-showcase span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(7, 44, 92, 0.78);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--steel);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 700;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(36px, 5.4vw, 66px);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 800;
}

h2 {
  color: var(--navy);
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  font-size: 19px;
  line-height: 1.25;
}

p {
  margin-bottom: 16px;
}

.lead {
  max-width: 700px;
  color: var(--hero-subtext);
  font-size: clamp(18px, 2.1vw, 23px);
  line-height: 1.55;
}

.hero .eyebrow,
.page-hero .eyebrow,
.project-band .section-kicker {
  color: var(--gold);
}

.hero .lead strong,
.page-hero .lead strong,
.project-band p strong,
.site-footer strong {
  color: var(--white);
}

.section-heading p {
  max-width: 780px;
  color: var(--subtle);
  font-size: 17px;
}

.section strong {
  color: var(--navy);
  font-weight: 800;
}

.hero-actions,
.cta-section {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--button-radius);
  font-weight: 600;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.icon,
.service-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon-badge {
  display: inline-grid;
  place-items: center;
  line-height: 0;
}

.service-icon-badge .service-icon {
  display: block;
  margin: 0;
  overflow: visible;
}

.icon path,
.icon circle,
.icon rect,
.service-icon path,
.service-icon circle,
.service-icon rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--navy-2);
  box-shadow: 0 14px 28px rgba(111, 175, 216, 0.26);
}

.btn-primary .icon,
.btn-card .icon,
.mobile-cta-bar .icon {
  color: inherit;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #D7EEFC 0%, var(--gold-hover) 100%);
}

.btn-secondary {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--white);
}

.btn-secondary:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.btn-on-dark {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-on-dark:hover {
  border-color: var(--gold);
  background: var(--gold-gradient);
  color: var(--navy-2);
}

.btn-card {
  height: 38px;
  min-height: 38px;
  margin-top: 16px;
  padding: 8px 12px;
  background: var(--gold-gradient);
  color: var(--navy-2);
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: none;
}

.btn-card .icon {
  width: 16px;
  height: 16px;
  flex-basis: 16px;
}

.btn-card:hover {
  background: linear-gradient(135deg, #D7EEFC 0%, var(--gold-hover) 100%);
  color: var(--navy-2);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--navy-2);
  color: var(--white);
}

.trust-strip div {
  padding: 26px clamp(18px, 3vw, 40px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-strip strong {
  display: block;
  color: var(--white);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
}

.trust-strip span {
  display: block;
  margin-top: 8px;
  color: var(--hero-subtext);
  font-weight: 700;
}

.section {
  padding: clamp(72px, 10vw, 120px) clamp(20px, 5vw, 72px);
}

.section > * {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.section-muted {
  background: var(--muted);
}

.signature-section {
  background:
    linear-gradient(90deg, rgba(244, 246, 248, 0.88), rgba(255, 255, 255, 0.98)),
    var(--white);
}

.home-about-summary {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: center;
}

.home-about-summary > * {
  max-width: none;
}

.home-about-media {
  min-height: 500px;
}

.home-about-copy {
  max-width: 660px;
}

.home-about-copy p {
  color: var(--subtle);
  font-size: 17px;
}

.about-points {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
}

.about-points span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 800;
}

.about-points .icon {
  color: var(--gold);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.split p,
.two-panel p,
.service-detail p,
.feature-grid p,
.timeline p {
  color: var(--subtle);
}

.split p,
.two-panel p {
  font-size: 17px;
}

.text-link {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--steel);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.card-grid,
.feature-grid,
.project-grid,
.client-grid,
.services-grid {
  display: grid;
  gap: 18px;
}

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

.service-overview .section-heading {
  max-width: 900px;
}

.service-card,
.feature-grid article,
.timeline article,
.belief-grid article,
.two-panel article,
.contact-panel,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
  animation: fade-slide 460ms ease both;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(111, 175, 216, 0.58);
  box-shadow: 0 20px 46px rgba(7, 44, 92, 0.12);
}

.feature-grid article:hover,
.service-detail:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(10, 58, 122, 0.22);
}

.service-card > div {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.service-card span,
.service-detail span,
.timeline span {
  color: var(--blue);
  font-weight: 900;
}

.service-icon {
  width: 34px;
  height: 34px;
  color: var(--steel);
  margin-bottom: 18px;
}

.service-card .service-icon-badge {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  border-radius: 16px;
  color: var(--navy);
  background: rgba(111, 175, 216, 0.18);
}

.service-card .service-icon {
  display: block;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  margin-bottom: 0;
  padding: 0;
  color: currentColor;
  background: transparent;
}

.service-card:hover .service-icon-badge {
  color: var(--gold-hover);
  background: rgba(111, 175, 216, 0.26);
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  color: var(--subtle);
  font-size: 15px;
  line-height: 1.6;
}

.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.service-arrow .icon {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

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

.feature-grid article {
  padding: 26px;
  animation: fade-slide 460ms ease both;
}

.home-why {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.home-why > * {
  max-width: none;
}

.home-why-intro {
  position: sticky;
  top: 110px;
  max-width: 480px;
}

.home-why-intro p {
  color: var(--subtle);
  font-size: 17px;
}

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

.benefit-list article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.benefit-list article:nth-child(1),
.benefit-list article:nth-child(2) {
  border-top: 0;
}

.benefit-list span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.benefit-list h3 {
  margin-bottom: 7px;
}

.benefit-list p {
  margin: 0;
  color: var(--subtle);
  font-size: 15px;
  line-height: 1.55;
}

.project-band {
  background: var(--navy-2);
}

.project-band h2,
.project-band h3 {
  color: var(--white);
}

.project-band .section-heading {
  max-width: 980px;
}

.project-band .section-heading h2 {
  max-width: 900px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.14;
}

.project-band .section-heading p {
  color: var(--hero-subtext);
}

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

.project-card {
  position: relative;
  grid-column: span 6;
  min-height: 306px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  animation: fade-slide 460ms ease both;
}

.project-card-featured {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 638px;
}

.featured-project-card {
  position: relative;
  min-height: 638px;
  aspect-ratio: auto;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #082f63;
}

.project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.project-grid .project-card:nth-child(2),
.project-grid .project-card:nth-child(3) {
  grid-column: span 5;
}

.project-grid .project-card:nth-child(n + 4) {
  grid-column: span 6;
}

.project-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 52%;
  content: "";
  background: linear-gradient(180deg, rgba(7, 44, 92, 0), rgba(7, 44, 92, 0.78));
  pointer-events: none;
}

.featured-project-card::after {
  display: none;
}

.project-card:hover {
  border-color: rgba(111, 175, 216, 0.72);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}

.project-card:hover img {
  transform: scale(1.035);
}

.project-card > div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 24px;
}

.project-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.25;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.project-card p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.5;
}

.project-card-featured h3 {
  max-width: 520px;
  font-size: clamp(32px, 3.2vw, 50px);
}

.project-card-featured p {
  max-width: 560px;
  font-size: 15px;
}

.featured-project-image {
  object-fit: cover;
  object-position: center 48%;
  filter: none;
  transition: transform 250ms ease;
}

.featured-project-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 56%;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(5, 35, 75, 0.88) 0%,
    rgba(5, 35, 75, 0.48) 58%,
    rgba(5, 35, 75, 0) 100%
  );
  pointer-events: none;
}

.featured-project-card .featured-project-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  max-width: 78%;
  padding: 32px;
}

.featured-project-content .project-category {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.featured-project-content h3 {
  display: -webkit-box;
  max-width: 620px;
  margin: 0;
  overflow: hidden;
  color: var(--white);
  font-size: clamp(32px, 3vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.featured-project-content p {
  display: -webkit-box;
  max-width: 620px;
  margin: 14px 0 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media (hover: hover) {
  .featured-project-card:hover .featured-project-image {
    filter: none;
    transform: scale(1.03);
  }
}

.section-action {
  margin-top: 28px;
}

.interior-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(7, 44, 92, 0.98), rgba(10, 58, 122, 0.92)),
    var(--navy-2);
  color: var(--white);
}

.interior-feature > * {
  max-width: none;
}

.interior-feature-media {
  min-height: 520px;
}

.interior-feature-copy {
  max-width: 640px;
}

.interior-feature h2 {
  color: var(--white);
}

.interior-feature p {
  color: var(--hero-subtext);
  font-size: 17px;
}

.interior-feature strong {
  color: var(--white);
}

.specialty-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 26px;
}

.specialty-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
}

.specialty-list .icon {
  color: var(--gold);
}

.id-transformation-section {
  overflow: hidden;
}

.section-heading-split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.7fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  max-width: var(--container);
}

.section-heading-split p:not(.section-kicker) {
  margin: 0 0 22px;
  color: var(--subtle);
  font-size: 17px;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.before-after-card {
  overflow: hidden;
  border: 1px solid rgba(10, 58, 122, 0.12);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.before-after-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(10, 58, 122, 0.12);
}

.before-after-images figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: var(--navy-2);
}

.before-after-images img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

.before-after-images figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(234, 247, 255, 0.94);
  font-size: 12px;
  font-weight: 900;
}

.before-after-copy {
  padding: 22px;
}

.before-after-copy span {
  color: var(--gold-hover);
}

.before-after-copy h3 {
  margin: 9px 0 0;
  color: var(--navy);
  font-size: clamp(20px, 1.7vw, 25px);
  line-height: 1.18;
}

.clients {
  background: linear-gradient(180deg, var(--white), #eef5fb);
}

.clients .section-heading {
  margin-bottom: 24px;
}

.clients .section-heading h2 {
  margin-bottom: 0;
}

.trusted-clients-visual {
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(10, 58, 122, 0.12);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 22px 60px rgba(7, 44, 92, 0.12);
}

.trusted-clients-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.client-logo-grid article {
  display: flex;
  min-height: 168px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 22px 18px 20px;
  border: 1px solid rgba(10, 58, 122, 0.12);
  border-radius: 18px;
  background: var(--white);
  text-align: center;
  box-shadow: 0 14px 32px rgba(7, 44, 92, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.client-logo-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(111, 175, 216, 0.48);
  box-shadow: 0 18px 40px rgba(7, 44, 92, 0.11);
}

.client-logo-grid img {
  width: 100%;
  max-width: 190px;
  height: 72px;
  object-fit: contain;
  object-position: center;
}

.client-logo-grid span {
  display: block;
  width: 100%;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}

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

.client-grid span,
.pill-grid span {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  font-weight: 700;
  text-align: center;
  background: var(--muted);
}

.cta-section {
  justify-content: space-between;
  padding: clamp(48px, 7vw, 76px) clamp(20px, 5vw, 72px);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--text);
}

.cta-section h2 {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--navy);
}

.home-final-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px 40px;
  overflow: hidden;
  border: 0;
  background: var(--navy-2);
  color: var(--white);
}

.home-final-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  opacity: 0.18;
}

.home-final-cta::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(7, 44, 92, 0.96), rgba(7, 44, 92, 0.86));
}

.home-final-cta > div {
  position: relative;
  z-index: 1;
}

.home-final-cta h2 {
  color: var(--white);
}

.home-final-cta p:not(.section-kicker) {
  max-width: 640px;
  margin: 14px 0 0;
  color: var(--hero-subtext);
  font-size: 17px;
}

.home-final-cta .section-kicker {
  color: var(--gold);
}

.home-final-cta .btn-outline-gold {
  color: var(--navy-2);
  background: rgba(234, 247, 255, 0.96);
}

.home-final-cta .btn-primary,
.home-final-cta .btn-outline-gold {
  color: var(--navy-2);
}

.home-final-cta .btn-primary .icon,
.home-final-cta .btn-outline-gold .icon,
.about-final-cta .btn-primary .icon,
.about-final-cta .btn-outline-gold .icon,
.services-final-cta .btn-primary .icon,
.services-final-cta .btn-outline-gold .icon,
.cta-section .btn-primary .icon,
.cta-section .btn-outline-gold .icon {
  color: var(--blue);
}

.home-final-cta .cta-proof {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.home-final-cta .cta-proof span {
  display: inline-flex;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--hero-subtext);
  font-size: 13px;
  font-weight: 800;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-outline-gold {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-outline-gold:hover {
  background: var(--gold-gradient);
  color: var(--navy-2);
}

.footer-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0 clamp(20px, 5vw, 72px);
  background: var(--gold-gradient);
  color: var(--navy);
}

.footer-trust div {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 12px;
  padding: 18px clamp(12px, 2vw, 24px);
  border-right: 1px solid rgba(10, 58, 122, 0.22);
}

.footer-trust div:last-child {
  border-right: 0;
}

.footer-trust .icon {
  width: 28px;
  height: 28px;
  color: var(--navy);
}

.footer-trust strong {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.25;
  color: var(--navy);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(250px, 1.15fr) repeat(3, minmax(170px, 1fr));
  gap: clamp(24px, 3.2vw, 44px);
  align-items: start;
  padding: clamp(32px, 4.6vw, 48px) clamp(20px, 5vw, 72px);
  background: var(--navy-2);
  color: var(--hero-subtext);
}

.footer-logo {
  width: clamp(104px, 8vw, 128px);
  height: clamp(104px, 8vw, 128px);
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 14px;
  background: var(--white);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.22);
}

.site-footer h2,
.site-footer h3,
.site-footer strong {
  color: var(--white);
}

.site-footer h2 {
  margin-bottom: 8px;
  font-size: 24px;
}

.site-footer h3 {
  margin-bottom: 14px;
  font-size: 17px;
}

.footer-company p {
  display: -webkit-box;
  max-width: 440px;
  overflow: hidden;
  color: var(--hero-subtext);
  font-size: 14px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.footer-company-actions {
  display: none;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-company-actions .btn {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 13px;
}

.footer-col a,
.footer-col p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 10px;
  color: var(--hero-subtext);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-col .icon {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--gold);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-link svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: currentColor;
}

.contact-list .social-link {
  color: var(--blue);
}

.site-footer .social-link {
  display: flex;
}

.page-hero {
  min-height: 430px;
  background:
    linear-gradient(90deg, rgba(7, 44, 92, 0.94), rgba(7, 44, 92, 0.72)),
    url("assets/facility.jpg") center / cover;
}

.about-hero-premium {
  background:
    linear-gradient(90deg, rgba(7, 44, 92, 0.96), rgba(7, 44, 92, 0.65)),
    url("assets/steel.jpg") center / cover;
}

.about-intro {
  background:
    linear-gradient(180deg, var(--white), rgba(244, 246, 248, 0.72));
}

.about-intro-grid,
.about-interior-layout,
.about-standards-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: stretch;
}

.about-intro-copy {
  max-width: 780px;
}

.about-intro-copy p {
  color: var(--subtle);
  font-size: 17px;
}

.about-identity-card {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 24px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(111, 175, 216, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(7, 44, 92, 0.98), rgba(10, 58, 122, 0.9)),
    var(--navy-2);
  color: var(--white);
  box-shadow: var(--shadow-hover);
}

.about-identity-card img {
  width: min(210px, 60vw);
  border-radius: 50%;
  background: var(--white);
}

.about-identity-card div {
  max-width: 360px;
  text-align: center;
}

.about-identity-card span,
.about-capability-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-identity-card strong {
  display: block;
  color: var(--white);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: clamp(22px, 2.5vw, 31px);
  line-height: 1.18;
}

.about-identity-card p {
  margin: 12px 0 0;
  color: var(--hero-subtext);
}

.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.about-stat-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.about-stat-grid .icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  margin-bottom: 18px;
}

.about-stat-grid span {
  display: block;
  color: var(--blue);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.about-stat-grid strong {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  line-height: 1.25;
}

.about-stat-grid p {
  margin: 10px 0 0;
  color: var(--subtle);
  font-size: 14px;
  line-height: 1.55;
}

.about-capability-showcase {
  background:
    linear-gradient(180deg, rgba(244, 246, 248, 0.96), rgba(255, 255, 255, 0.84));
}

.about-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
}

.about-capability-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(7, 44, 92, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.about-capability-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 738px;
}

.about-capability-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.about-capability-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 52%;
  content: "";
  background: linear-gradient(180deg, rgba(7, 44, 92, 0), rgba(7, 44, 92, 0.76));
  pointer-events: none;
}

.about-capability-card:hover img {
  transform: scale(1.035);
}

.about-capability-card > div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 24px;
}

.about-capability-card .service-icon {
  color: var(--gold);
}

.about-capability-card h3 {
  margin: 0;
  color: var(--white);
}

.about-capability-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.55;
}

.belief-grid-premium article {
  position: relative;
  overflow: hidden;
  border-color: rgba(10, 58, 122, 0.14);
}

.belief-grid-premium article::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  content: "";
  background: var(--gold-gradient);
}

.about-interior-panel {
  background: var(--navy-2);
  color: var(--white);
}

.about-interior-panel h2,
.about-interior-panel h3 {
  color: var(--white);
}

.about-interior-panel p {
  color: var(--hero-subtext);
}

.about-interior-layout {
  margin-bottom: 26px;
}

.about-interior-media {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 14px;
  min-height: 420px;
}

.about-interior-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.22);
}

.about-interior-media img:last-child {
  margin-top: 46px;
}

.about-interior-panel .interior-steps article {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.about-interior-panel .interior-steps p {
  color: var(--hero-subtext);
}

.timeline-premium {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.timeline-premium article {
  position: relative;
  min-height: 250px;
}

.timeline-premium span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--navy-2);
  background: var(--gold-gradient);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

.about-standards-premium {
  background: var(--white);
}

.about-standards-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.standard-card {
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.standard-card-dark {
  border-color: rgba(111, 175, 216, 0.3);
  background:
    linear-gradient(160deg, rgba(7, 44, 92, 0.98), rgba(10, 58, 122, 0.92)),
    var(--navy-2);
}

.standard-card-dark h2,
.standard-card-dark h3 {
  color: var(--white);
}

.standard-card-dark p {
  color: var(--hero-subtext);
}

.standard-card .service-icon {
  color: var(--gold);
}

.about-page-hero {
  position: relative;
  padding: clamp(88px, 8vw, 112px) 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(244, 246, 248, 0.95), rgba(255, 255, 255, 0.98)),
    var(--white);
}

.about-page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(10, 58, 122, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 58, 122, 0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 70%);
}

.about-page-hero > * {
  position: relative;
  z-index: 1;
}

.about-hero-copy {
  grid-column: span 5;
  max-width: 520px;
}

.about-hero-copy h1 {
  color: var(--navy);
  max-width: 500px;
  margin-bottom: 28px;
  font-size: clamp(3.1rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.about-hero-copy .lead {
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--text);
  font-size: clamp(17px, 1.8vw, 21px);
}

.about-hero-visual {
  grid-column: span 7;
}

.project-story-visual {
  position: relative;
  min-height: clamp(500px, 44vw, 620px);
  aspect-ratio: 1.12 / 1;
  overflow: hidden;
  border: 1px solid rgba(10, 58, 122, 0.12);
  border-radius: 22px;
  background: var(--navy-2);
  box-shadow: 0 24px 58px rgba(7, 44, 92, 0.16);
}

.project-story-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-hero-visual.project-story-visual img {
  object-position: center 45%;
}

.project-story-visual::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 46%;
  content: "";
  background: linear-gradient(
    to top,
    rgba(5, 35, 75, 0.72) 0%,
    rgba(5, 35, 75, 0.3) 56%,
    rgba(5, 35, 75, 0) 100%
  );
  pointer-events: none;
}

.project-story-caption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  max-width: 520px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(7, 44, 92, 0.9);
  color: var(--white);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.project-story-caption span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-story-caption h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.08;
}

.project-story-caption p {
  margin: 12px 0 0;
  color: var(--hero-subtext);
  font-size: 15px;
  line-height: 1.55;
}

.project-story-compact,
.project-story-compact img {
  min-height: 500px;
}

.project-story-interior img {
  object-position: center 42%;
}

.about-profile-section,
.about-purpose-section,
.about-standards-redesign {
  padding-top: clamp(72px, 8vw, 100px);
  padding-bottom: clamp(72px, 8vw, 100px);
}

.about-profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.about-profile-layout,
.about-proof-strip,
.about-deliver-grid,
.about-purpose-grid,
.about-standards-split {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.about-profile-copy {
  max-width: 660px;
}

.about-profile-copy p {
  max-width: 620px;
  color: var(--subtle);
  font-size: 17px;
}

.about-credibility-panel {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(111, 175, 216, 0.32);
  border-radius: 18px;
  background:
    linear-gradient(150deg, rgba(7, 44, 92, 0.98), rgba(10, 58, 122, 0.92)),
    var(--navy-2);
  color: var(--white);
  box-shadow: var(--shadow-hover);
}

.about-credibility-panel img {
  width: 108px;
  height: 108px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--white);
}

.about-credibility-panel span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-credibility-panel strong {
  display: block;
  color: var(--white);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.18;
}

.about-credibility-panel p {
  margin: 10px 0 0;
  color: var(--hero-subtext);
  font-size: 14px;
  line-height: 1.55;
}

.about-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
}

.about-proof-strip div {
  display: flex;
  min-height: 86px;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: var(--white);
}

.about-proof-strip .icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.about-proof-strip strong {
  color: var(--navy);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.25;
}

.about-deliver-section {
  padding-top: clamp(76px, 8vw, 104px);
  padding-bottom: clamp(76px, 8vw, 104px);
}

.about-deliver-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
}

.about-deliver-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid rgba(10, 58, 122, 0.12);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(7, 44, 92, 0.08);
}

.about-deliver-card > span,
.about-deliver-featured span {
  color: var(--steel);
  font-weight: 900;
}

.about-deliver-card .service-icon-badge {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin: 20px 0 18px;
  border-radius: 14px;
  color: var(--steel);
  background: rgba(47, 95, 163, 0.08);
}

.about-deliver-card .service-icon {
  display: block;
  width: 25px;
  height: 25px;
  margin: 0;
  padding: 0;
  color: currentColor;
  background: transparent;
}

.about-deliver-card h3 {
  margin-bottom: 10px;
}

.about-deliver-card p {
  color: var(--subtle);
  font-size: 15px;
  line-height: 1.58;
}

.about-deliver-card .service-arrow {
  margin-top: auto;
}

.about-deliver-featured {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 538px;
  overflow: hidden;
  padding: 0;
  background: var(--white);
}

.about-deliver-featured > img {
  width: 100%;
  height: 285px;
  object-fit: cover;
  object-position: center;
  background: var(--muted);
}

.about-deliver-featured::after {
  content: none;
}

.about-deliver-featured > div {
  display: flex;
  min-height: calc(100% - 285px);
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: var(--navy-2);
}

.about-deliver-featured h3,
.about-deliver-featured p {
  color: var(--white);
}

.about-deliver-featured p {
  max-width: 560px;
  color: var(--hero-subtext);
}

.about-deliver-featured .service-icon-badge,
.about-deliver-featured span,
.about-deliver-featured .service-arrow {
  color: var(--gold);
}

.about-deliver-featured .service-icon-badge {
  background: rgba(111, 175, 216, 0.16);
}

.about-purpose-section {
  background: var(--white);
}

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

.about-purpose-card {
  min-height: 310px;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.about-purpose-card .service-icon {
  color: var(--gold);
}

.about-purpose-card h3 {
  max-width: 660px;
  margin-bottom: 14px;
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.22;
}

.about-purpose-card p:not(.section-kicker) {
  color: var(--subtle);
}

.about-purpose-dark {
  border-color: rgba(111, 175, 216, 0.28);
  background:
    linear-gradient(150deg, rgba(7, 44, 92, 0.98), rgba(10, 58, 122, 0.92)),
    var(--navy-2);
}

.about-purpose-dark h3,
.about-purpose-dark p:not(.section-kicker) {
  color: var(--white);
}

.about-purpose-dark p:not(.section-kicker) {
  color: var(--hero-subtext);
}

.about-interior-redesign {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(7, 44, 92, 0.98), rgba(10, 58, 122, 0.92)),
    var(--navy-2);
  color: var(--white);
}

.about-interior-redesign > * {
  max-width: none;
}

.about-interior-copy {
  max-width: 620px;
  justify-self: end;
}

.about-interior-redesign h2,
.about-interior-redesign h3 {
  color: var(--white);
}

.about-interior-redesign p {
  color: var(--hero-subtext);
  font-size: 17px;
}

.about-interior-visuals {
  min-height: 500px;
}

.about-process-section {
  padding-top: clamp(72px, 8vw, 100px);
  padding-bottom: clamp(72px, 8vw, 100px);
}

.about-process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.about-process-timeline::before {
  position: absolute;
  top: 23px;
  left: 9%;
  right: 9%;
  height: 2px;
  content: "";
  background: rgba(10, 58, 122, 0.16);
}

.about-process-timeline article {
  position: relative;
  z-index: 1;
  padding-top: 66px;
}

.about-process-timeline span {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--muted);
  border-radius: 50%;
  color: var(--navy-2);
  background: var(--gold-gradient);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.about-process-timeline h3 {
  margin-bottom: 8px;
  font-size: 17px;
}

.about-process-timeline p {
  margin: 0;
  color: var(--subtle);
  font-size: 14px;
  line-height: 1.55;
}

.about-standards-split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 18px;
}

.about-safety-panel,
.about-quality-panel {
  padding: clamp(28px, 4vw, 42px);
  border-radius: 18px;
}

.about-safety-panel {
  border: 1px solid rgba(111, 175, 216, 0.28);
  background:
    linear-gradient(150deg, rgba(7, 44, 92, 0.98), rgba(10, 58, 122, 0.92)),
    var(--navy-2);
  color: var(--white);
}

.about-quality-panel {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.about-safety-panel h2,
.about-safety-panel p:not(.section-kicker) {
  color: var(--white);
}

.about-safety-panel p:not(.section-kicker) {
  color: var(--hero-subtext);
}

.about-safety-panel .service-icon,
.about-quality-panel .service-icon {
  color: var(--gold);
}

.about-quality-panel .check-list {
  margin-top: 18px;
}

.about-final-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px 40px;
  align-items: center;
  overflow: hidden;
  padding: clamp(48px, 7vw, 76px) clamp(20px, 5vw, 72px) clamp(84px, 8vw, 104px);
  background: var(--navy-2);
  color: var(--white);
}

.about-final-cta > *:not(img) {
  position: relative;
  z-index: 1;
}

.about-final-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.about-final-cta::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(7, 44, 92, 0.97), rgba(7, 44, 92, 0.86));
}

.about-final-cta h2 {
  max-width: 760px;
  margin-bottom: 10px;
  color: var(--white);
}

.about-final-cta p:not(.section-kicker) {
  max-width: 660px;
  margin: 0;
  color: var(--hero-subtext);
  font-size: 17px;
}

.about-final-cta .section-kicker {
  color: var(--gold);
}

.about-final-cta .btn-outline-gold {
  color: var(--navy-2);
  background: rgba(234, 247, 255, 0.96);
}

.about-final-cta .btn-primary,
.about-final-cta .btn-outline-gold,
.cta-section .btn-primary,
.cta-section .btn-outline-gold {
  color: var(--navy-2);
}

.services-final-cta .btn-primary,
.services-final-cta .btn-outline-gold {
  color: var(--navy-2);
}

.split-visual {
  align-items: center;
}

.profile-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 210px 210px;
  gap: 12px;
  margin-top: 28px;
}

.profile-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.profile-mosaic img:first-child {
  grid-row: span 2;
}

.about-note {
  margin-top: 26px;
  padding: 22px;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: var(--muted);
}

.about-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

.about-note p {
  margin-bottom: 0;
}

.about-credibility {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(20px, 5vw, 72px);
  background: var(--navy-2);
  color: var(--white);
}

.about-credibility div {
  padding: clamp(28px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.045);
}

.about-credibility span {
  display: inline-flex;
  min-width: 54px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(111, 175, 216, 0.45);
  border-radius: 999px;
  color: var(--gold);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.about-credibility strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.25;
}

.about-credibility p {
  max-width: 320px;
  margin-bottom: 0;
  color: var(--hero-subtext);
}

.belief-grid p {
  color: var(--subtle);
  font-size: 17px;
}

.interior-process {
  background: var(--white);
}

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

.interior-steps article,
.capability-pillars article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.interior-steps p,
.capability-pillars p {
  color: var(--subtle);
}

.services-hero {
  background:
    linear-gradient(90deg, rgba(7, 44, 92, 0.94), rgba(7, 44, 92, 0.7)),
    url("assets/infrastructure.jpg") center / cover;
}

.services-hero-premium {
  background:
    linear-gradient(90deg, rgba(7, 44, 92, 0.97) 0%, rgba(7, 44, 92, 0.86) 45%, rgba(7, 44, 92, 0.54) 100%),
    url("assets/project-tanjung-concrete.jpg") center 48% / cover;
  min-height: min(640px, calc(100vh - 76px));
}

.services-hero-premium > div {
  max-width: 720px;
}

.services-hero-premium h1 {
  max-width: 680px;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.98;
}

.services-hero-premium .lead {
  max-width: 680px;
  color: var(--hero-subtext);
}

.services-hero-premium .hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.service-capability-band {
  background: linear-gradient(180deg, var(--white), var(--muted));
}

.capability-pillars {
  display: grid;
  gap: 20px;
}

.services-page .capability-pillars {
  grid-template-columns: 1fr;
}

.services-page .capability-pillars article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 18px;
  box-shadow: none;
}

.services-page .capability-pillars article:nth-child(even) {
  background: var(--muted);
}

.services-page .capability-pillars .pillar-featured {
  border-color: rgba(111, 175, 216, 0.42);
  background: linear-gradient(135deg, rgba(111, 175, 216, 0.12), rgba(255, 255, 255, 0.96));
}

.pillar-copy {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.services-page .service-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border: 1px solid rgba(111, 175, 216, 0.34);
  border-radius: 16px;
  color: var(--navy);
  background: rgba(111, 175, 216, 0.14);
}

.services-page .service-icon {
  width: 25px;
  height: 25px;
  flex-basis: 25px;
  color: currentColor;
}

.services-page .service-icon path {
  stroke: currentColor;
  stroke-width: 2;
}

.services-page .capability-pillars h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: clamp(22px, 2.2vw, 30px);
}

.services-page .capability-pillars p {
  margin: 0;
  max-width: 560px;
}

.services-page .capability-pillars ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-page .capability-pillars li,
.pill-grid span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(10, 58, 122, 0.12);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.services-page .service-arrow {
  justify-self: end;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}

.services-page .service-arrow .icon,
.pill-grid .icon {
  color: var(--gold);
}

.service-scope-intro {
  padding-top: clamp(76px, 8vw, 104px);
  padding-bottom: clamp(46px, 5vw, 68px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 246, 248, 0.92)),
    var(--white);
}

.service-scope-intro .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.7fr);
  gap: 18px clamp(28px, 5vw, 74px);
  align-items: end;
  max-width: var(--container);
  margin-bottom: 30px;
}

.service-scope-intro .section-heading .section-kicker {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0;
}

.service-scope-intro .section-heading h2 {
  grid-column: 1;
  grid-row: 2;
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.08;
}

.service-scope-intro .section-heading p:not(.section-kicker) {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  max-width: 460px;
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
}

.service-scope-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-scope-nav a {
  display: grid;
  min-height: 168px;
  align-content: space-between;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(10, 58, 122, 0.12);
  border-radius: 18px;
  background: var(--white);
  color: var(--navy);
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(7, 44, 92, 0.08);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-scope-nav a:hover {
  border-color: rgba(111, 175, 216, 0.48);
  box-shadow: 0 22px 46px rgba(7, 44, 92, 0.12);
  transform: translateY(-3px);
}

.service-scope-nav span {
  color: var(--gold-hover);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.service-scope-nav strong {
  display: block;
  font-family: var(--heading-font);
  font-size: 21px;
  line-height: 1.15;
}

.service-scope-nav small {
  display: block;
  color: var(--subtle);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(7, 44, 92, 0.94), rgba(7, 44, 92, 0.72)),
    url("assets/maintenance.jpg") center / cover;
}

.belief-grid,
.two-panel,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.belief-grid article,
.two-panel article {
  padding: clamp(28px, 4vw, 42px);
}

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

.timeline article {
  padding: 22px;
}

.timeline h3 {
  margin-bottom: 10px;
}

.check-list {
  margin: 0;
  padding-left: 20px;
  color: var(--subtle);
}

.check-list li {
  margin-bottom: 10px;
}

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

.service-detail {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-detail-featured {
  border-color: rgba(111, 175, 216, 0.52);
  box-shadow: 0 24px 58px rgba(111, 175, 216, 0.16);
}

.service-detail-featured h2 {
  color: var(--navy);
}

.service-detail img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--muted);
}

.service-detail > span,
.service-detail h2,
.service-detail p {
  display: block;
  margin-left: 22px;
  margin-right: 22px;
}

.service-detail .btn {
  align-self: flex-start;
  margin-left: 22px;
  margin-right: 22px;
  margin-bottom: 24px;
}

.service-detail > .service-icon {
  display: block;
  margin: 22px 22px 0;
}

.service-detail > span {
  margin-top: 20px;
}

.service-detail .btn span,
.service-card .btn span {
  display: inline;
  margin: 0;
}

.service-detail h2 {
  margin-bottom: 10px;
  font-size: 23px;
}

.service-detail p {
  margin-bottom: 24px;
}

.service-family {
  padding-top: clamp(76px, 8vw, 104px);
  padding-bottom: clamp(76px, 8vw, 104px);
}

.service-family-engineering,
.service-family-support {
  background: var(--muted);
}

.service-family-interior {
  background:
    linear-gradient(180deg, rgba(7, 44, 92, 0.98), rgba(10, 58, 122, 0.95)),
    url("assets/project-tea-kadai-detail.jpg") center / cover;
}

.service-family-header {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: 18px clamp(32px, 5vw, 70px);
  align-items: start;
  max-width: var(--container);
  margin-bottom: 30px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(10, 58, 122, 0.12);
}

.service-family-header .section-kicker {
  grid-row: span 2;
  margin-top: 7px;
}

.service-family-header h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(32px, 3.7vw, 50px);
  line-height: 1.07;
}

.service-family-header p:last-child {
  max-width: 650px;
  margin: 0;
  color: var(--subtle);
  font-size: 16px;
  line-height: 1.65;
}

.service-family-interior .section-kicker,
.service-family-interior .service-family-header h2 {
  color: var(--white);
}

.service-family-interior .service-family-header p:last-child {
  color: var(--hero-subtext);
}

.service-family-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: start;
}

.service-support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.services-page .service-detail {
  min-height: 100%;
  border-radius: 18px;
  box-shadow: none;
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

.services-page .service-family-grid > .service-detail,
.services-page .service-support-grid .service-detail {
  min-height: 0;
}

.services-page .service-support-grid .service-detail {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
}

.services-page .service-detail:hover {
  border-color: rgba(111, 175, 216, 0.42);
  box-shadow: 0 20px 42px rgba(7, 44, 92, 0.13);
  transform: translateY(-3px);
}

.services-page .service-detail img {
  aspect-ratio: 4 / 3;
  min-height: 0;
  transition: transform 250ms ease;
}

.services-page .service-support-grid .service-detail img {
  height: 100%;
  min-height: 230px;
  aspect-ratio: auto;
}

.services-page .service-detail:hover img {
  transform: scale(1.03);
}

.services-page .service-detail-featured img {
  min-height: 420px;
}

.services-page .service-detail-featured {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  align-self: start;
}

.services-page .service-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.services-page .service-detail-featured .service-content {
  padding: 30px;
}

.services-page .service-support-grid .service-content {
  padding: 20px;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.services-page .service-number {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0;
  color: var(--gold-hover);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-page .service-detail h2 {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.15;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.services-page .service-detail p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 24px;
  color: var(--subtle);
  font-size: 15px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.services-page .service-support-grid .service-detail p {
  margin-bottom: 18px;
  -webkit-line-clamp: 2;
}

.services-page .service-detail-featured p {
  font-size: 16px;
}

.services-page .service-detail .btn {
  width: 100%;
  min-height: 50px;
  margin: auto 0 0;
}

.services-page .service-detail .btn span {
  margin: 0;
}

.service-descriptor {
  background: linear-gradient(180deg, var(--white), #fbfcfd);
}

.services-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(7, 44, 92, 0.97), rgba(7, 44, 92, 0.87)),
    url("assets/gallery-roofing-refurbishment.jpg") center / cover;
  color: var(--white);
}

.services-final-cta h2 {
  max-width: 760px;
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(32px, 4vw, 54px);
}

.services-final-cta p {
  max-width: 680px;
  margin: 0;
  color: var(--hero-subtext);
}

.services-final-cta .section-kicker {
  color: var(--gold);
}

.services-final-cta .cta-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.services-final-cta .btn-primary,
.services-final-cta .btn-outline-gold {
  color: var(--navy-2);
}

.home-final-cta .btn-outline-gold,
.about-final-cta .btn-outline-gold,
.services-final-cta .btn-outline-gold,
.cta-section .btn-outline-gold {
  border-color: rgba(169, 214, 245, 0.98);
  background: rgba(234, 247, 255, 0.96);
  color: var(--navy-2);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.home-final-cta .btn-outline-gold:hover,
.about-final-cta .btn-outline-gold:hover,
.services-final-cta .btn-outline-gold:hover,
.cta-section .btn-outline-gold:hover {
  border-color: transparent;
  background: var(--gold-gradient);
  color: var(--navy-2);
}

.services-final-cta .btn-primary {
  background: var(--gold-gradient);
}

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

.interior-gallery-section {
  background:
    linear-gradient(180deg, rgba(7, 44, 92, 0.98), rgba(10, 58, 122, 0.95)),
    var(--navy-2);
}

.interior-gallery-section .section-kicker {
  color: var(--gold);
}

.interior-gallery-section .section-heading h2 {
  color: var(--white);
}

.interior-gallery-section .section-heading p:not(.section-kicker) {
  color: var(--hero-subtext);
}

.interior-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 260px;
  grid-auto-flow: dense;
  gap: 18px;
}

.interior-gallery article {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.interior-gallery article:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.interior-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 260ms ease;
}

.interior-gallery article:nth-child(2) img {
  object-position: center 35%;
}

.interior-gallery article::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 48%;
  content: "";
  background: linear-gradient(180deg, rgba(7, 44, 92, 0), rgba(7, 44, 92, 0.72));
  pointer-events: none;
}

.interior-gallery article:hover {
  box-shadow: 0 24px 48px rgba(7, 44, 92, 0.22);
  transform: translateY(-2px);
}

.interior-gallery article:hover img {
  transform: scale(1.035);
}

.interior-gallery div {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
}

.interior-gallery span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 9px;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(7, 44, 92, 0.82);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.interior-gallery strong {
  display: block;
  color: var(--white);
  font-family: var(--heading-font);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.2;
}

.interior-gallery p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  line-height: 1.5;
}

.interior-project-gallery {
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 0.9fr));
  grid-auto-rows: auto;
  align-items: stretch;
}

.interior-project-gallery .interior-project-card,
.interior-project-gallery .interior-project-card:first-child {
  display: flex;
  grid-column: auto;
  grid-row: auto;
  min-height: 0;
  flex-direction: column;
  color: var(--text);
  border: 1px solid rgba(217, 229, 245, 0.18);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
}

.interior-project-card::after {
  display: none;
}

.interior-project-gallery .interior-project-images {
  position: static;
  inset: auto;
  z-index: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(10, 58, 122, 0.12);
}

.interior-project-images figure {
  position: relative;
  min-height: 340px;
  margin: 0;
  overflow: hidden;
  background: var(--navy-2);
}

.interior-project-card-featured .interior-project-images figure {
  min-height: 430px;
}

.interior-project-images img,
.interior-project-gallery img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.interior-project-images figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 1;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(234, 247, 255, 0.94);
  font-size: 12px;
  font-weight: 900;
}

.interior-project-gallery .interior-project-copy {
  position: static;
  inset: auto;
  z-index: auto;
  padding: 22px;
}

.interior-project-copy span {
  display: block;
  margin-bottom: 10px;
  padding: 0;
  color: var(--gold-hover);
  background: transparent;
}

.interior-project-copy strong {
  color: var(--navy);
  font-size: clamp(20px, 1.6vw, 26px);
}

.interior-project-copy p {
  color: var(--subtle);
  font-size: 15px;
}

.contact-panel,
.contact-form {
  padding: clamp(28px, 4vw, 42px);
  box-shadow: var(--shadow);
}

.contact-intro,
.form-intro {
  color: var(--subtle);
  font-size: 16px;
}

.contact-form h2 {
  margin-bottom: 10px;
  font-size: clamp(25px, 3vw, 34px);
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 22px;
}

.map-card,
.map-details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-card {
  overflow: hidden;
  min-height: 420px;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.map-details {
  align-self: stretch;
  padding: clamp(28px, 4vw, 42px);
}

.map-details .service-icon {
  color: var(--gold);
}

.map-details p {
  color: var(--subtle);
  margin-bottom: 24px;
}

.contact-list {
  margin: 0;
}

.contact-list div {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.contact-list dt {
  color: var(--steel);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 4px 0 0;
  color: var(--text);
  font-weight: 700;
}

.contact-list a {
  color: var(--blue);
  text-decoration: none;
}

.contact-form label {
  display: block;
  margin: 14px 0 6px;
  color: var(--navy);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
  color: var(--text);
  background: var(--white);
  font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(47, 95, 163, 0.16);
  border-color: var(--steel);
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin: 8px 0 0;
  color: var(--subtle);
  font-size: 13px;
}

.contact-form .btn {
  margin-top: 18px;
}

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

.floating-whatsapp {
  position: fixed;
  z-index: 30;
  right: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 54px;
  height: 54px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--navy-2);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 18px 34px rgba(7, 44, 92, 0.24);
  transition: transform 180ms ease, background 180ms ease;
}

.floating-whatsapp .icon {
  width: 24px;
  height: 24px;
}

.floating-whatsapp {
  bottom: 22px;
  background: var(--gold-gradient);
}

.floating-whatsapp:hover {
  background: linear-gradient(135deg, #D7EEFC 0%, var(--gold-hover) 100%);
  transform: translateY(-1px);
}

.floating-whatsapp.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.mobile-cta-bar {
  display: none;
}

.mobile-cta-bar a {
  color: var(--navy-2);
  text-decoration: none;
}

@media (max-width: 1040px) {
  .home-about-summary,
  .home-why,
  .about-profile-layout,
  .about-interior-redesign,
  .about-standards-split,
  .hero-premium,
  .interior-feature {
    grid-template-columns: 1fr;
  }

  .about-intro-grid,
  .about-interior-layout,
  .about-standards-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    justify-self: start;
    width: 100%;
    max-width: 720px;
  }

  .service-preview,
  .feature-grid,
  .benefit-list,
  .services-grid,
  .interior-steps,
  .capability-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .home-hero-copy,
  .home-hero-visual,
  .home-about-copy,
  .home-why-intro {
    justify-self: start;
    max-width: 760px;
  }

  .home-hero-copy,
  .about-hero-copy,
  .home-hero-visual,
  .about-hero-visual {
    grid-column: span 6;
  }

  .home-hero h1 {
    font-size: clamp(3rem, 5vw, 4.4rem);
  }

  .hero-project-slider {
    min-height: 500px;
  }

  .before-after-grid,
  .interior-project-gallery {
    grid-template-columns: 1fr;
  }

  .before-after-card-wide {
    grid-column: auto;
  }

  .interior-project-card-featured .interior-project-images figure,
  .interior-project-images figure {
    min-height: 330px;
  }

  .about-hero-copy h1 {
    font-size: clamp(3rem, 4.8vw, 4.2rem);
  }

  .home-why-intro {
    position: static;
  }

  .home-final-cta {
    grid-template-columns: 1fr;
  }

  .about-stat-grid,
  .about-capability-grid,
  .about-proof-strip,
  .about-deliver-grid,
  .about-purpose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-deliver-featured {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 420px;
  }

  .about-interior-copy {
    justify-self: start;
    max-width: 760px;
  }

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

  .about-process-timeline::before {
    display: none;
  }

  .about-final-cta {
    grid-template-columns: 1fr;
  }

  .about-capability-large {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 420px;
  }

  .project-card-featured {
    grid-column: 1 / -1;
    grid-row: span 1;
    min-height: 460px;
  }

  .featured-project-card {
    min-height: 460px;
  }

  .project-grid .project-card,
  .project-grid .project-card:nth-child(2),
  .project-grid .project-card:nth-child(3),
  .project-grid .project-card:nth-child(n + 4) {
    grid-column: auto;
  }

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

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

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

  .interior-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 250px;
  }

  .interior-gallery article:first-child {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 390px;
  }

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

  .footer-trust div:nth-child(2) {
    border-right: 0;
  }

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

@media (max-width: 900px) {
  .site-header {
    min-height: 68px;
    padding: 12px 18px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 18px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

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

  .site-nav a {
    padding: 12px 0;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    padding: 12px 14px;
    text-align: center;
  }

}

@media (max-width: 760px) {
  body {
    padding-bottom: 78px;
  }

  .site-header {
    min-height: 68px;
    padding: 12px 18px;
  }

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

  .hero,
  .hero-home {
    min-height: 620px;
  }

  .home-hero {
    padding: 58px 0 68px;
  }

  .about-page-hero {
    min-height: auto;
    padding: 48px 0 60px;
  }

  .home-hero-grid,
  .about-hero-grid {
    grid-template-columns: 1fr;
    row-gap: 32px;
    padding-inline: 18px;
  }

  .home-hero-copy,
  .about-hero-copy,
  .home-hero-visual,
  .about-hero-visual {
    grid-column: 1;
    max-width: none;
  }

  .hero-project-slider {
    min-height: 430px;
    border-radius: 18px;
  }

  .hero-slide figcaption {
    width: calc(100% - 28px);
    margin: 14px;
    padding: 18px;
    border-radius: 16px;
  }

  .hero-slide strong {
    font-size: 24px;
  }

  .hero-slide p {
    font-size: 14px;
  }

  .hero-slider-dots {
    right: 18px;
    bottom: 18px;
  }

  .home-hero h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .about-hero-copy h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .project-story-visual,
  .project-story-visual img {
    min-height: 430px;
  }

  .project-story-caption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 18px;
    border-radius: 16px;
  }

  .project-story-caption h2 {
    font-size: 24px;
  }

  .project-story-caption p {
    font-size: 14px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(25px, 8vw, 34px);
  }

  .lead {
    font-size: 17px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(7, 44, 92, 0.94), rgba(7, 44, 92, 0.78));
  }

  .trust-strip,
  .home-about-summary,
  .home-about-media,
  .home-why,
  .about-profile-layout,
  .about-proof-strip,
  .about-deliver-grid,
  .about-purpose-grid,
  .about-interior-redesign,
  .about-standards-split,
  .benefit-list,
  .split,
  .about-stat-grid,
  .about-capability-grid,
  .belief-grid,
  .two-panel,
  .contact-layout,
  .map-layout,
  .about-credibility,
  .service-preview,
  .feature-grid,
  .project-grid,
  .client-grid,
  .client-logo-grid,
  .services-grid,
  .interior-steps,
  .capability-pillars,
  .interior-feature,
  .interior-gallery,
  .timeline,
  .pill-grid {
    grid-template-columns: 1fr;
  }

  .section-heading-split {
    grid-template-columns: 1fr;
  }

  .section-heading-split .btn {
    width: 100%;
  }

  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .interior-project-images {
    grid-template-columns: 1fr;
  }

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

  .before-after-images figure,
  .before-after-images img,
  .interior-project-images figure,
  .interior-project-images img,
  .interior-project-card-featured .interior-project-images figure {
    min-height: 240px;
  }

  .about-profile-section,
  .about-deliver-section,
  .about-purpose-section,
  .about-process-section,
  .about-standards-redesign {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .about-credibility-panel {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 16px;
  }

  .about-credibility-panel img {
    width: 82px;
    height: 82px;
  }

  .about-proof-strip div {
    min-height: 74px;
  }

  .about-deliver-featured,
  .about-deliver-card {
    grid-column: auto;
    grid-row: auto;
    min-height: 250px;
  }

  .about-deliver-featured {
    min-height: 360px;
  }

  .about-purpose-card {
    min-height: auto;
  }

  .about-interior-visuals {
    min-height: 360px;
  }

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

  .about-process-timeline article {
    padding: 0 0 24px 70px;
    border-left: 2px solid rgba(10, 58, 122, 0.16);
  }

  .about-process-timeline article:last-child {
    padding-bottom: 0;
  }

  .about-process-timeline span {
    left: -25px;
  }

  .about-final-cta {
    padding: 56px 18px 112px;
  }

  .about-final-cta .cta-actions .btn {
    width: 100%;
  }

  .benefit-list article,
  .benefit-list article:nth-child(2) {
    border-top: 1px solid var(--line);
  }

  .benefit-list article:first-child {
    border-top: 0;
  }

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

  .client-logo-grid article {
    min-height: 132px;
    padding: 18px 12px;
  }

  .client-logo-grid img {
    max-width: 132px;
    height: 58px;
  }

  .home-final-cta .cta-actions .btn {
    width: 100%;
  }

  .about-identity-card {
    justify-items: start;
  }

  .about-identity-card div {
    text-align: left;
  }

  .about-capability-large,
  .about-capability-card {
    grid-column: auto;
    grid-row: auto;
    min-height: 340px;
  }

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

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

  .hero-showcase,
  .about-interior-media,
  .profile-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .hero-showcase article,
  .hero-showcase article:nth-child(2),
  .profile-mosaic img:first-child {
    grid-row: auto;
  }

  .hero-showcase article {
    min-height: 220px;
  }

  .about-interior-media img,
  .profile-mosaic img {
    min-height: 260px;
  }

  .about-interior-media img:last-child {
    margin-top: 0;
  }

  .interior-gallery article,
  .interior-gallery article:first-child {
    grid-column: auto;
    min-height: 320px;
  }

  .interior-project-gallery .interior-project-card,
  .interior-project-gallery .interior-project-card:first-child {
    min-height: 0;
  }

  .interior-gallery {
    grid-auto-rows: auto;
  }

  .interior-gallery article:first-child {
    grid-row: auto;
    min-height: 360px;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .project-card,
  .project-card-featured {
    grid-column: auto;
    grid-row: auto;
    min-height: 320px;
  }

  .site-footer,
  .cta-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-company-actions,
  .footer-company-actions .btn {
    width: 100%;
  }

  .footer-trust {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .footer-trust div {
    min-height: 76px;
    border-right: 0;
    border-bottom: 1px solid rgba(10, 58, 122, 0.2);
  }

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

  .footer-logo {
    width: 108px;
    height: 108px;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -16px 32px rgba(7, 44, 92, 0.12);
  }

  .mobile-cta-bar a {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 10px;
    background: var(--gold-gradient);
    color: var(--navy-2);
    font-size: 12px;
    font-weight: 800;
    text-align: center;
  }

  .mobile-cta-bar a:hover {
    background: linear-gradient(135deg, #D7EEFC 0%, var(--gold-hover) 100%);
  }
}

@media (max-width: 1040px) {
  .featured-project-card {
    grid-column: 1 / -1;
    grid-row: span 1;
    min-height: 420px;
  }
}

@media (max-width: 768px) {
  .featured-project-card {
    min-height: 430px;
    aspect-ratio: 4 / 5;
  }

  .featured-project-card .featured-project-content {
    max-width: 100%;
    padding: 22px;
  }

  .project-grid .project-card,
  .project-grid .project-card:nth-child(2),
  .project-grid .project-card:nth-child(3),
  .project-grid .project-card:nth-child(n + 4) {
    grid-column: 1;
    min-height: 330px;
  }
}

@media (max-width: 1120px) {
  .services-page .capability-pillars article {
    grid-template-columns: 1fr;
  }

  .services-page .service-arrow {
    justify-self: start;
  }

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

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

  .service-family-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  }

  .services-page .service-detail-featured img {
    min-height: 360px;
  }
}

@media (max-width: 900px) {
  .service-scope-intro .section-heading {
    grid-template-columns: 1fr;
  }

  .service-scope-intro .section-heading .section-kicker,
  .service-scope-intro .section-heading h2,
  .service-scope-intro .section-heading p:not(.section-kicker) {
    grid-column: 1;
    grid-row: auto;
    max-width: 680px;
  }

  .service-family-header,
  .service-family-grid,
  .pill-grid {
    grid-template-columns: 1fr;
  }

  .service-family-header .section-kicker {
    grid-row: auto;
  }

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

  .services-page .service-support-grid .service-detail {
    display: flex;
    flex-direction: column;
  }

  .services-page .service-support-grid .service-detail img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .services-final-cta {
    grid-template-columns: 1fr;
  }

  .services-final-cta .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .services-hero-premium {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 76px;
    background-position: center;
  }

  .services-hero-premium h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .services-hero-premium .hero-actions,
  .services-final-cta .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .services-hero-premium .btn,
  .services-final-cta .btn {
    width: 100%;
  }

  .services-page .capability-pillars article {
    padding: 22px;
  }

  .pillar-copy {
    flex-direction: column;
  }

  .service-family {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .service-scope-intro {
    padding-bottom: 28px;
  }

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

  .service-scope-nav a {
    min-height: 0;
    gap: 10px;
    padding: 18px;
  }

  .service-support-grid,
  .pill-grid {
    grid-template-columns: 1fr;
  }

  .services-page .service-detail-featured {
    display: flex;
  }

  .services-page .service-detail-featured img {
    min-height: 0;
  }

  .services-page .service-content,
  .services-page .service-detail-featured .service-content {
    padding: 22px;
  }

  .services-page .service-detail h2 {
    font-size: 22px;
  }

  .pill-grid span {
    justify-content: flex-start;
  }

  .interior-gallery article:first-child {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-page .service-detail,
  .services-page .service-detail img,
  .interior-gallery img,
  .interior-gallery article,
  .hero-slide {
    transition: none;
  }

  .services-page .service-detail:hover,
  .services-page .service-detail:hover img,
  .interior-gallery article:hover,
  .interior-gallery article:hover img {
    transform: none;
  }
}
