:root {
  --green: #1677ff;
  --blue: #1677ff;
  --blue-deep: #061641;
  --blue-mid: #0b4fd8;
  --blue-soft: #eaf4ff;
  --text: #505659;
  --muted: #6b7073;
  --dark: #0a1b3f;
  --light: #f3f8ff;
  --wrap: 1110px;
  --radius-pill: 200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: Roboto, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p { text-wrap: pretty; }

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes arrow-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}

@keyframes hero-slow-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

@keyframes success-pop {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.wrap {
  width: min(var(--wrap), calc(100% - 96px));
  margin: 0 auto;
}

.site-header {
  z-index: 10;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
}

.topbar {
  height: 38px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 700;
  color: #314461;
}

.nav {
  height: 108px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 242px;
  align-items: center;
  gap: 18px;
  padding: 0 28px;
}

.brand,
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-deep);
  font-weight: 900;
  font-size: 25px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 16px;
}

.brand-mark {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  border: 10px solid currentColor;
  border-right-color: transparent;
  display: inline-block;
}

.brand-mark.light { color: #fff; }

.nav-links {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 24px;
  align-items: center;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
  color: #111;
}

.nav-links a::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
}

.mobile-menu { display: none; }

.quote,
.outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 67px;
  padding: 0 50px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.quote::before,
.outline::before {
  content: "";
  width: 26px;
  height: 1px;
  margin-right: 17px;
  background: currentColor;
  opacity: .7;
}

.quote.small {
  min-height: 39px;
  padding: 0 18px;
  font-size: 13px;
}

.quote.small::before { display: none; }

.outline {
  background: #fff;
  color: var(--blue-deep);
  border: 1px solid #b9c7dc;
}

.quote:hover,
.outline:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 26px rgba(6,22,65,.2);
  filter: brightness(1.04);
}

.quote:active,
.outline:active {
  transform: translateY(-1px);
}

.hero {
  min-height: 960px;
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -24px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(4,18,46,.82), rgba(4,18,46,.56) 48%, rgba(4,18,46,.28)), url("assets/uniform-edits/sentra-office-cleaning-hero-uniform.jpg") center / cover no-repeat;
  animation: hero-slow-zoom 18s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 70% 45%, rgba(22,119,255,.18), transparent 32%);
}

.hero {
  position: relative;
}

.hero-content {
  width: min(760px, calc(100% - 40px));
  transform: translateY(-18px);
  position: relative;
  z-index: 1;
  animation: fade-up .8s ease both;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Roboto Condensed", Roboto, Arial, sans-serif;
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(52px, 7vw, 82px);
  color: #fff;
  text-shadow: 0 3px 0 rgba(0,0,0,.25);
}

.hero p {
  max-width: 750px;
  margin: 26px auto 34px;
  font-size: 25px;
  line-height: 1.45;
}

.down-arrow {
  display: block;
  width: 28px;
  height: 72px;
  margin: 110px auto 0;
  border-left: 2px solid #fff;
  position: relative;
  opacity: .9;
  animation: arrow-bounce 1.8s ease-in-out infinite;
}

.down-arrow::after {
  content: "";
  position: absolute;
  left: -8px;
  bottom: 0;
  width: 14px;
  height: 14px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.intro-band {
  padding: 130px 0;
  background: linear-gradient(#fff 0 48%, var(--dark) 48% 100%);
}

.intro-card {
  width: min(1110px, calc(100% - 96px));
  min-height: 840px;
  margin: 0 auto;
  padding: 110px 230px;
  background: #fff;
  text-align: center;
  box-shadow: 0 26px 60px rgba(0,0,0,.13);
  animation: fade-up .8s ease both;
}

.intro-card h2,
.process h2 {
  font-size: clamp(36px, 4vw, 50px);
}

.intro-card p {
  margin: 36px auto 0;
  color: #62686b;
}

.intro-card a,
.workplaces a,
.owners a {
  color: var(--blue);
  font-weight: 700;
}

.button-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 115px;
}

.button-row a { color: inherit; }

.intro-card a.quote,
.workplaces a.quote,
.owners a.quote {
  color: #fff;
}

.workplaces {
  padding: 132px 0 155px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: start;
}

.split h2 {
  font-size: clamp(38px, 4vw, 54px);
}

.split p {
  margin: 0;
  color: #5e6468;
}

.quote.block {
  margin-top: 72px;
  color: #fff;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 95px;
}

.facility-grid article {
  min-height: 460px;
  padding: 140px 54px 50px;
  border: 1px solid #ddd;
  background: #fff;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.facility-grid article:hover {
  transform: translateY(-8px);
  border-color: #bdd7f4;
  box-shadow: 0 18px 42px rgba(6,22,65,.12);
}

.icon {
  display: block;
  height: 55px;
  margin-bottom: 28px;
  font-family: "Roboto Condensed", Roboto, Arial, sans-serif;
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
}

.blue { color: #00abe6; }
.orange { color: #42a5ff; }
.lime { color: #78b7ff; }

.facility-grid h3 {
  font-size: 43px;
}

.facility-grid p {
  margin: 16px 0 0;
  color: #707579;
}

.process,
.thoughts {
  background: var(--light);
}

.process {
  padding: 136px 0 128px;
}

.center { text-align: center; }

.center > p {
  width: min(750px, 100%);
  margin: 32px auto 76px;
  color: #5f6568;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 72px;
}

.process-grid article {
  min-height: 440px;
  background: center / cover no-repeat;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  text-align: left;
  transition: transform .24s ease, filter .24s ease;
}

.process-grid article:hover {
  transform: translateY(-6px);
  filter: saturate(1.06);
}

.process-grid article::after,
.blog-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(22,119,255,0), rgba(22,119,255,.14));
}

.process-grid article::before,
.blog-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,22,65,.08), rgba(6,22,65,.72));
}

.process-grid h3 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 26px;
  text-shadow: 0 2px 8px rgba(0,0,0,.35);
}

.compact {
  min-height: 61px;
  padding: 0 42px;
}

.owners {
  padding: 136px 0 98px;
}

.seo-content {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 70px;
  padding: 40px 0 122px;
}

.seo-content h2 {
  font-size: clamp(34px, 4vw, 50px);
}

.seo-content h3 {
  color: var(--blue-deep);
  font-size: 32px;
}

.seo-content p {
  margin: 22px 0 0;
}

.seo-content .quote {
  margin-top: 34px;
}

.owner-photo {
  position: relative;
  margin-top: 94px;
  overflow: hidden;
}

.owner-photo img {
  width: 100%;
  height: 720px;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

.owner-photo:hover img {
  transform: scale(1.025);
  filter: contrast(1.03);
}

.thoughts {
  padding: 132px 0 128px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 82px;
}

.blog-grid img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.blog-grid article {
  position: relative;
  overflow: hidden;
}

.blog-grid div {
  position: absolute;
  left: 34px;
  right: 28px;
  bottom: 34px;
  z-index: 1;
  color: #fff;
}

.blog-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 10px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
}

.blog-grid h3 {
  font-size: 31px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.35);
}

.quote.left { margin-top: 66px; }

.cta {
  min-height: 650px;
  display: grid;
  place-items: center;
  padding: 80px 30px;
  background: linear-gradient(90deg, rgba(4,18,46,.82), rgba(4,18,46,.62)), url("assets/uniform-edits/sentra-service-carpet-floor-care-uniform.jpg") center / cover no-repeat;
  color: #fff;
  text-align: center;
}

.cta h2 {
  font-size: clamp(34px, 5vw, 52px);
  color: #fff;
}

.cta p {
  max-width: 860px;
  margin: 22px auto 42px;
  font-size: 17px;
  font-weight: 700;
}

.quote-page {
  min-height: 780px;
  padding: 110px 0;
  background: linear-gradient(90deg, rgba(6,22,65,.92), rgba(6,22,65,.62)), url("assets/uniform-edits/sentra-service-office-cleaning-uniform.jpg") center / cover no-repeat;
  color: #fff;
}

.quote-page-inner {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1fr);
  gap: 72px;
  align-items: center;
}

.quote-copy h1 {
  max-width: 620px;
  margin-top: 18px;
  font-size: clamp(46px, 5vw, 74px);
}

.quote-copy p {
  max-width: 610px;
  margin: 28px 0 0;
  font-size: 22px;
  line-height: 1.5;
}

.eyebrow {
  display: inline-flex;
  color: #9fd0ff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.quote-form {
  display: grid;
  gap: 22px;
  padding: 42px;
  background: #fff;
  color: var(--blue-deep);
  box-shadow: 0 24px 60px rgba(0,0,0,.26);
}

.form-trap {
  display: none !important;
}

.quote-form label,
.quote-form fieldset {
  display: grid;
  gap: 9px;
}

.quote-form span,
.quote-form legend {
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.quote-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  min-height: 56px;
  padding: 13px 16px;
  border: 1px solid #c6d3e3;
  border-radius: 0;
  color: var(--blue-deep);
  font: inherit;
  line-height: 1.35;
}

.quote-form textarea {
  min-height: 126px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(22,119,255,.22);
  border-color: var(--blue);
}

.form-grid,
.contact-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-choice label {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid #c6d3e3;
}

.contact-choice input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--blue);
}

.quote-form .form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.quote-form .form-submit.is-submitting {
  cursor: wait;
  filter: saturate(.8);
  opacity: .75;
}

.form-status {
  min-height: 24px;
  margin: -8px 0 0;
  color: #286147;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.form-status.is-error {
  color: #a3372f;
}

.form-success {
  min-height: 68px;
  display: grid;
  place-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(40,97,71,.25);
  background: #edf8f2;
  color: #215b40;
  font-size: 18px;
  text-align: center;
  animation: success-pop .36s ease both;
}

.faq-hero {
  padding: 110px 0 95px;
  background: linear-gradient(90deg, rgba(6,22,65,.9), rgba(6,22,65,.64)), url("assets/uniform-edits/sentra-service-window-glass-cleaning-uniform.jpg") center / cover no-repeat;
  color: #fff;
}

.faq-hero h1 {
  max-width: 760px;
  margin-top: 18px;
  font-size: clamp(46px, 6vw, 78px);
}

.faq-hero p {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: 22px;
  line-height: 1.5;
}

.faq-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 56px;
  padding: 105px 0 120px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid #d6e0ed;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.faq-item:hover {
  border-color: #bdd7f4;
  box-shadow: 0 12px 28px rgba(6,22,65,.08);
}

.faq-question {
  width: 100%;
  min-height: 82px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 26px;
  border: 0;
  background: transparent;
  color: var(--blue-deep);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  line-height: 1.25;
  text-align: left;
}

.faq-icon {
  width: 32px;
  height: 32px;
  position: relative;
  border: 2px solid var(--blue);
  border-radius: 50%;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 50%;
  height: 2px;
  background: var(--blue);
  transform: translateY(-50%);
}

.faq-icon::after {
  left: 50%;
  right: auto;
  top: 8px;
  bottom: 8px;
  width: 2px;
  height: auto;
  transform: translateX(-50%);
}

.faq-answer {
  display: none;
  padding: 0 26px 28px 78px;
  animation: fade-up .24s ease both;
}

.faq-answer p {
  margin: 0;
  color: #5e6468;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-icon::after {
  display: none;
}

.faq-cta {
  position: sticky;
  top: 28px;
  padding: 32px;
  background: var(--light);
  border: 1px solid #d6e0ed;
}

.faq-cta h2 {
  font-size: 36px;
}

.faq-cta p {
  margin: 16px 0 24px;
  color: #5e6468;
}

.faq-cta .quote {
  width: 100%;
  max-width: 100%;
  min-height: 64px;
  padding: 0 24px;
  white-space: normal;
  text-align: center;
}

.contact-page {
  min-height: 680px;
  display: grid;
  align-items: center;
  padding: 110px 0;
  background: linear-gradient(90deg, rgba(6,22,65,.9), rgba(6,22,65,.58)), url("assets/uniform-edits/sentra-service-carpet-floor-care-uniform.jpg") center / cover no-repeat;
  color: #fff;
}

.contact-panel {
  max-width: 900px;
}

.contact-panel h1 {
  max-width: 760px;
  margin-top: 18px;
  font-size: clamp(48px, 6vw, 82px);
}

.contact-panel p {
  max-width: 680px;
  margin: 24px 0 38px;
  font-size: 22px;
  line-height: 1.5;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.call-action {
  font-size: 18px;
}

.service-hero {
  min-height: 650px;
  display: grid;
  align-items: center;
  padding: 110px 0;
  background: linear-gradient(90deg, rgba(6,22,65,.9), rgba(6,22,65,.58)), url("assets/uniform-edits/sentra-office-cleaning-hero-uniform.jpg") center / cover no-repeat;
  color: #fff;
}

.office-service {
  background-image: linear-gradient(90deg, rgba(6,22,65,.9), rgba(6,22,65,.58)), url("assets/uniform-edits/sentra-service-office-cleaning-uniform.jpg");
}

.strata-service {
  background-image: linear-gradient(90deg, rgba(6,22,65,.9), rgba(6,22,65,.58)), url("assets/uniform-edits/sentra-service-strata-common-areas-uniform.jpg");
}

.after-hours-service {
  background-image: linear-gradient(90deg, rgba(6,22,65,.9), rgba(6,22,65,.58)), url("assets/uniform-edits/sentra-service-after-hours-cleaning-uniform.jpg");
}

.commercial-service {
  background-image: linear-gradient(90deg, rgba(6,22,65,.9), rgba(6,22,65,.58)), url("assets/uniform-edits/sentra-office-cleaning-hero-uniform.jpg");
}

.service-hero h1 {
  max-width: 820px;
  margin-top: 18px;
  font-size: clamp(46px, 6vw, 78px);
}

.service-hero p {
  max-width: 760px;
  margin: 24px 0 38px;
  font-size: 22px;
  line-height: 1.5;
}

.service-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 70px;
  padding: 105px 0 120px;
}

.service-content h2 {
  font-size: clamp(36px, 4vw, 54px);
}

.service-content h2:not(:first-child) {
  margin-top: 58px;
}

.service-content p {
  margin: 24px 0 0;
}

.service-content aside {
  padding: 30px;
  background: var(--light);
  border: 1px solid #d6e0ed;
}

.service-content aside h3 {
  color: var(--blue-deep);
  font-size: 30px;
}

.service-content aside p {
  margin-top: 14px;
  line-height: 1.55;
}

.service-content aside a {
  display: block;
  margin: 12px 0;
  color: var(--blue);
  font-weight: 900;
}

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

footer {
  background: var(--blue-deep);
  color: rgba(255,255,255,.78);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 110px;
  padding: 70px 0 85px;
}

.footer-logo {
  color: #fff;
  font-size: 28px;
}

.footer-logo img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  border-radius: 20px;
}

.phone {
  display: block;
  margin: 18px 0 60px;
  color: #fff;
  font-family: "Roboto Condensed", Roboto, Arial, sans-serif;
  font-size: 62px;
  line-height: 1;
}

footer h4 {
  margin: 34px 0 10px;
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
}

footer p {
  margin: 0;
  max-width: 640px;
  line-height: 1.75;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.footer-links a {
  display: block;
  margin: 5px 0;
}

.legal {
  min-height: 86px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.social {
  display: inline-flex;
  gap: 18px;
  font-size: 13px;
  opacity: .75;
}

@media (max-width: 1100px) {
  .wrap,
  .intro-card { width: min(92%, 1110px); }

  .topbar { display: none; }

  .nav {
    grid-template-columns: 1fr auto;
    height: 88px;
  }

  .nav-links,
  .nav .quote { display: none; }

  .mobile-menu {
    display: inline-flex;
    min-height: 42px;
    padding: 0 22px;
    border: 0;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--blue), var(--blue-mid));
    color: #fff;
    align-items: center;
    font-weight: 900;
    text-transform: uppercase;
  }

  .nav.menu-open {
    height: auto;
    min-height: 88px;
    padding-block: 18px;
  }

  .nav.menu-open .nav-links {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    padding-top: 14px;
    border-top: 1px solid #d6e0ed;
  }

  .nav.menu-open .nav-links a {
    display: flex;
    min-height: 48px;
    align-items: center;
    border-bottom: 1px solid #edf2f8;
  }

  .nav.menu-open .quote.small {
    grid-column: 1 / -1;
    display: inline-flex;
    width: 100%;
    margin-top: 14px;
  }

  .intro-card { padding: 85px 80px; }
  .facility-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-page-inner { grid-template-columns: 1fr; }
  .faq-page { grid-template-columns: 1fr; }
  .faq-cta { position: static; }
  .service-content { grid-template-columns: 1fr; }
  .seo-content { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; line-height: 1.65; }
  .wrap { width: min(90%, 1110px); }
  .nav { padding: 0 18px; }
  .brand { min-width: 0; font-size: 18px; }
  .brand span { overflow-wrap: anywhere; line-height: 1.05; }
  .brand img { width: 52px; height: 52px; border-radius: 14px; }
  .brand-mark { width: 32px; height: 32px; border-width: 8px; }
  .hero {
    min-height: 720px;
  }
  .hero::before {
    background: linear-gradient(rgba(4,18,46,.62), rgba(4,18,46,.66)), url("assets/uniform-edits/sentra-office-cleaning-hero-uniform.jpg") 58% center / cover no-repeat;
  }
  .hero-content {
    opacity: 1;
    transform: none;
  }
  h1 { font-size: 43px; }
  .hero p { font-size: 19px; }
  .down-arrow { margin-top: 70px; }
  .intro-band { padding: 70px 0; }
  .intro-card { min-height: 0; padding: 58px 26px; }
  .button-row,
  .split,
  .footer-main,
  .footer-links {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 28px;
  }
  .button-row { align-items: stretch; margin-top: 50px; }
  .quote, .outline { width: 100%; padding-inline: 22px; }
  .workplaces, .owners, .thoughts, .process { padding: 80px 0; }
  .seo-content { padding: 10px 0 80px; gap: 34px; }
  .facility-grid,
  .process-grid,
  .blog-grid { grid-template-columns: 1fr; }
  .facility-grid article { min-height: 330px; padding: 70px 34px 40px; }
  .owner-photo img { height: 460px; }
  .cta { min-height: 520px; }
  .quote-page { padding: 70px 0; }
  .quote-copy p { font-size: 18px; }
  .quote-form { padding: 28px 20px; }
  .form-grid,
  .contact-choice { grid-template-columns: 1fr; }
  .faq-hero { padding: 72px 0; }
  .faq-hero p { font-size: 18px; }
  .faq-page { padding: 70px 0; gap: 34px; }
  .faq-question {
    min-height: 74px;
    grid-template-columns: 30px 1fr;
    gap: 14px;
    padding: 18px;
  }
  .faq-icon { width: 29px; height: 29px; }
  .faq-answer { padding: 0 18px 22px 62px; }
  .contact-page { min-height: 560px; padding: 70px 0; }
  .contact-panel p { font-size: 18px; }
  .contact-actions { display: grid; }
  .service-hero { min-height: 560px; padding: 72px 0; }
  .service-hero p { font-size: 18px; }
  .service-content { padding: 70px 0; gap: 34px; }
  .service-content h2:not(:first-child) { margin-top: 42px; }
  .service-content aside { padding: 26px; }
  .service-content aside h3 { font-size: 28px; }
  .service-content aside p { margin-top: 12px; line-height: 1.5; }
  .phone { font-size: 46px; }
  .legal { flex-direction: column; align-items: flex-start; gap: 18px; padding: 28px 0; }
}
