/* =========================================================
   UHRL — Upgraded Hotel Rooms
   Main stylesheet. Edit the colors below to update the brand.
   ========================================================= */

:root {
  --navy: #0a2e5c;
  --navy-dark: #061d3b;
  --navy-soft: #163f70;
  --gold: #c9a227;
  --gold-light: #e2ca79;
  --white: #ffffff;
  --ivory: #f6f4ef;
  --pale-blue: #edf2f7;
  --ink: #11233a;
  --muted: #5d6a7c;
  --line: #d9e0e8;
  --display: "Playfair Display", Georgia, serif;
  --body: "DM Sans", Arial, sans-serif;
  --shell: min(1180px, calc(100% - 32px));
  --shadow: 0 24px 60px rgba(6, 29, 59, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.nav-open,
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
.gold-period { color: var(--gold); }
h1, h2, h3 { line-height: 1.08; }
h1, h2 { font-family: var(--display); font-weight: 500; letter-spacing: -0.035em; }
h1 { font-size: clamp(3rem, 9vw, 6.25rem); }
h2 { font-size: clamp(2.35rem, 6.8vw, 4.75rem); }
h3 { font-size: 1.22rem; font-weight: 600; letter-spacing: -0.015em; }
p { color: var(--muted); }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: 88px; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: -60px;
  left: 16px;
  padding: 10px 15px;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
}
.skip-link:focus { top: 16px; }
.eyebrow {
  margin: 0 0 15px;
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 1px;
  margin-right: 10px;
  vertical-align: middle;
  background: var(--gold);
}
.eyebrow--light { color: var(--gold-light); }
.section-heading { max-width: 690px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading__text { max-width: 620px; font-size: 1.05rem; }
.section-heading--center .section-heading__text { margin-inline: auto; }

/* Buttons and text links */
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--navy); color: var(--white); }
.button--primary:hover { background: var(--navy-soft); }
.button--light { background: var(--white); color: var(--navy); }
.button--light:hover { background: var(--ivory); }
.button--secondary { border-color: var(--gold); background: transparent; color: var(--gold-light); }
.button--secondary:hover { background: rgba(201, 162, 39, 0.12); }
.text-link,
.service-card__link,
.project-card__button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 5px;
  border: 0;
  border-bottom: 1px solid var(--gold);
  background: transparent;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
}

/* Sticky navigation */
#site-header { position: sticky; z-index: 100; top: 0; }
.site-header-placeholder { min-height: 0; }
.site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(10, 46, 92, 0.12);
  box-shadow: 0 8px 26px rgba(6, 29, 59, 0.06);
  backdrop-filter: blur(12px);
  transition: background-color 240ms ease, border-color 240ms ease, box-shadow 240ms ease, backdrop-filter 240ms ease;
}
.home-page #site-header { position: fixed; right: 0; left: 0; }
.home-page .site-header:not(.site-header--scrolled) {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.home-page .site-header:not(.site-header--scrolled) .desktop-nav a,
.home-page .site-header:not(.site-header--scrolled) .menu-toggle { color: var(--white); }
.home-page .site-header:not(.site-header--scrolled) .brand-logo { filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.22)); }
.home-page.nav-open .site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(10, 46, 92, 0.12);
  box-shadow: 0 8px 26px rgba(6, 29, 59, 0.06);
  backdrop-filter: blur(12px);
}
.home-page.nav-open .site-header .menu-toggle { color: var(--navy); }
.site-header__inner {
  display: flex;
  height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand-mark {
  position: relative;
  display: flex;
  width: 108px;
  height: 72px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.brand-logo { width: 104px; height: 70px; object-fit: contain; }
.header-brand-logo { position: absolute; inset: 0; margin: auto; transition: opacity 220ms ease, filter 220ms ease; }
.header-brand-logo--light { opacity: 0; }
.home-page .site-header:not(.site-header--scrolled) .header-brand-logo--standard { opacity: 0; }
.home-page .site-header:not(.site-header--scrolled) .header-brand-logo--light { opacity: 1; }
.home-page.nav-open .header-brand-logo--standard { opacity: 1 !important; }
.home-page.nav-open .header-brand-logo--light { opacity: 0 !important; }
.brand-mark__monogram { color: var(--navy); font-size: 1.5rem; font-weight: 700; letter-spacing: 0.16em; }
.brand-mark__name { color: var(--muted); font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase; }
.desktop-nav,
.header-quote { display: none; }
.site-header__actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 1.7rem;
}
.mobile-nav {
  position: fixed;
  z-index: 101;
  top: 76px;
  right: 0;
  width: min(88vw, 420px);
  height: calc(100dvh - 76px);
  visibility: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--white);
  box-shadow: -24px 0 60px rgba(6, 29, 59, 0.18);
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 320ms;
}
.mobile-nav--open { visibility: visible; pointer-events: auto; transform: translateX(0); transition-delay: 0s; }
.mobile-nav__inner {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  padding: 38px clamp(24px, 7vw, 38px);
  text-align: left;
}
.mobile-nav__inner > a:not(.button) {
  width: 100%;
  padding: 12px 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.75rem;
}
.mobile-nav__cta { margin-top: 24px; align-self: flex-start; }

/* Homepage hero */
.home-hero {
  position: relative;
  display: grid;
  min-height: 760px;
  overflow: hidden;
  background-color: var(--navy-dark);
  background-image:
    linear-gradient(180deg, rgba(4, 20, 42, 0.72) 0%, rgba(4, 20, 42, 0.6) 58%, rgba(4, 20, 42, 0.78) 100%),
    url("../images/hero-room-background.webp");
  background-position: 60% center;
  background-size: cover;
  color: var(--white);
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(3, 17, 36, 0.42));
  pointer-events: none;
}
.home-hero__grid {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 760px;
  align-items: center;
  padding-block: 132px 82px;
}
.home-hero__content { max-width: 680px; }
.home-hero h1 { margin-bottom: 24px; color: var(--white); text-shadow: 0 3px 24px rgba(0, 0, 0, 0.28); }
.home-hero h1 em { color: var(--gold-light); font-weight: 500; }
.home-hero__lead { max-width: 610px; color: #edf2f7; font-size: 1.07rem; text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3); }
.home-hero__actions { display: flex; flex-direction: column; gap: 10px; margin: 30px 0; }
.home-hero__credibility { display: flex; align-items: center; gap: 10px; margin: 0; color: #edf2f7; font-size: 0.78rem; }
.home-hero__credibility > span { width: 30px; height: 1px; background: var(--gold); }

/* Credibility bar */
.trust-bar { padding-block: 28px; border-bottom: 1px solid var(--line); background: var(--white); }
.trust-bar > .shell { display: grid; gap: 17px; }
.trust-bar__statement { max-width: 420px; margin: 0; color: var(--navy); font-family: var(--display); font-size: 1.28rem; font-weight: 500; line-height: 1.25; }
.trust-bar__details { display: grid; gap: 9px; }
.trust-bar__label { margin: 0; color: var(--gold-dark); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.trust-bar__terms { display: flex; margin: 0; padding: 0; flex-wrap: wrap; gap: 7px 0; list-style: none; }
.trust-bar__terms li { display: inline-flex; align-items: center; color: var(--muted); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.055em; line-height: 1.4; text-transform: uppercase; }
.trust-bar__terms li + li::before { content: "·"; margin-inline: 9px; color: var(--gold); font-size: 0.95rem; line-height: 1; }

/* Who we are */
.intro-section { background: var(--white); }
.copy-desktop { display: none; }
.copy-mobile { display: inline; }
.intro-section__grid { display: grid; gap: 28px; }
.principles-grid { display: grid; gap: 0; border-bottom: 1px solid var(--line); background: transparent; }
.principles-grid article { padding: 16px 0; border-top: 1px solid var(--line); background: transparent; }
.audience-grid article > span { color: var(--gold); font-size: 0.7rem; font-weight: 700; }
.principle-image { display: block; width: 64px; height: 64px; margin: 0 auto 12px; object-fit: contain; }
.principles-grid h3 { margin: 0 0 4px; color: var(--ink); font-size: 1rem; }
.principles-grid p { margin-bottom: 0; font-size: 0.82rem; line-height: 1.55; }

/* Services */
.projects-preview,
.experience-section,
.pathway-section,
.contact-page { background: var(--ivory); }
.services-preview { background: var(--navy); color: var(--white); }
.services-preview h2 { color: var(--white); }
.services-preview .section-heading__text { color: #c7d3e0; }
.services-preview .text-link { color: var(--gold-light); }
.section-intro-row { display: grid; gap: 22px; margin-bottom: 34px; }
.section-intro-row .text-link { justify-self: start; }
.services-editorial { display: grid; gap: 40px; }
.services-editorial__intro .text-link { margin-top: 24px; }
.service-directory { border-top: 1px solid rgba(201, 162, 39, 0.36); }
.service-row { display: grid; grid-template-columns: 12px minmax(0, 1fr) auto; gap: 14px; align-items: start; padding: 19px 0; border-bottom: 1px solid rgba(201, 162, 39, 0.28); color: inherit; transition: background-color 180ms ease, padding 180ms ease; }
.service-row__mark { width: 7px; height: 7px; margin-top: 8px; border: 1px solid var(--gold-light); transform: rotate(45deg); }
.service-row__content h3 { margin: 0 0 5px; color: var(--white); font-family: var(--body); font-size: 1rem; font-weight: 650; line-height: 1.25; }
.service-row__content p { margin: 0; color: #c2cfdd; font-size: 0.8rem; line-height: 1.55; }
.service-row__arrow { color: var(--gold-light); font-size: 1.08rem; line-height: 1.2; transition: transform 180ms ease; }
.service-row:hover,
.service-row:focus-visible { padding-inline: 14px; background: rgba(255, 255, 255, 0.08); }
.service-row:hover .service-row__arrow,
.service-row:focus-visible .service-row__arrow { transform: translateX(4px); }
.service-row:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.icon-mark { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--gold); color: var(--navy); font-size: 0.72rem; font-weight: 700; }
.section-quote-cta { display: flex; justify-content: center; margin-top: 40px; }
.section-quote-cta .button { min-width: 180px; }
.section-quote-cta--on-dark { padding-top: 4px; }
.services-editorial > .section-quote-cta { grid-column: 1 / -1; }

/* Why UHRL */
.why-section { background: var(--ivory); }
.why-section__grid { display: grid; gap: 46px; }
.why-section__intro h2 { color: var(--navy); }
.why-section__intro > p:not(.eyebrow) { color: var(--muted); }
.differentiators-list { border-top: 1px solid var(--line); }
.differentiators-list article { display: grid; grid-template-columns: 34px 1fr; gap: 14px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.differentiators-list article > span { color: var(--gold-dark); font-size: 0.7rem; font-weight: 700; }
.differentiators-list h3 { margin-bottom: 7px; color: var(--navy); }
.differentiators-list p { margin-bottom: 0; color: var(--muted); font-size: 0.88rem; }

/* Detail-oriented room readiness */
.cleaning-section {
  --parallax-y: 0px;
  position: relative;
  display: flex;
  min-height: 820px;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  padding-block: 62px;
  background: var(--navy-dark);
}
.cleaning-section::before,
.cleaning-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.cleaning-section::before {
  z-index: 0;
  inset: -14% 0;
  background: url("../images/detail-oriented-room.webp") 47% center / cover no-repeat;
  transform: translate3d(0, var(--parallax-y), 0) scale(1.02);
  will-change: transform;
}
.cleaning-section::after {
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 20, 42, 0.08) 0%, rgba(4, 20, 42, 0.2) 42%, rgba(4, 20, 42, 0.7) 100%);
}
.cleaning-section__layout { position: relative; z-index: 2; display: flex; width: 100%; justify-content: flex-end; padding-inline: 8px; }
.cleaning-section__panel {
  width: 100%;
  padding: 30px 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(4, 23, 48, 0.9);
  box-shadow: 0 30px 75px rgba(2, 12, 26, 0.38);
  backdrop-filter: blur(14px);
}
.cleaning-section__panel h2 { color: var(--white); }
.cleaning-section__panel .section-heading__text { color: #d1dbe6; }
.check-grid { display: grid; gap: 10px; margin-top: 24px; }
.cleaning-section__panel .check-grid span { color: var(--white); font-size: 0.82rem; }
.cleaning-section__panel .check-grid span::first-letter { color: var(--gold-light); }
.disclaimer,
.data-note { font-size: 0.74rem !important; }

/* Process */
.process-section { background: linear-gradient(180deg, #fbfaf7 0%, #f5f2ec 100%); }
.process-timeline { display: grid; gap: 12px; margin: 38px 0 0; padding: 0; list-style: none; }
.process-timeline li { display: flex; min-height: 210px; flex-direction: column; align-items: center; padding: 25px 22px; border: 1px solid rgba(10, 46, 92, 0.11); border-radius: 8px; background: rgba(255, 255, 255, 0.78); text-align: center; box-shadow: 0 12px 30px rgba(6, 29, 59, 0.045); transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease; }
.process-timeline li:hover { border-color: rgba(201, 162, 39, 0.55); transform: translateY(-3px); box-shadow: 0 18px 38px rgba(6, 29, 59, 0.08); }
.process-timeline__number { display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold-dark); font-size: 0.72rem; font-weight: 700; }
.process-timeline h3 { margin: 17px 0 10px; color: var(--navy); font-family: var(--display); font-size: 1.38rem; line-height: 1.18; }
.process-timeline h3::after { content: ""; display: block; width: 25px; height: 1px; margin: 10px auto 0; background: var(--gold); }
.process-timeline p { margin: 0; color: var(--muted); font-size: 0.8rem; line-height: 1.55; }

/* Who we serve */
.audience-section { background: var(--white); }
.audience-grid { display: grid; gap: 1px; background: var(--line); }
.audience-grid article { min-height: 190px; padding: 24px; background: var(--white); }
.audience-grid h3 { margin: 30px 0 9px; color: var(--navy); }
.audience-grid p { margin-bottom: 0; font-size: 0.88rem; }

/* Sustainability */
.sustainability-preview {
  position: relative;
  display: flex;
  min-height: 650px;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--navy-dark) url("../images/responsible-removal-team.jpg") 67% center / cover no-repeat;
  color: var(--white);
}
.sustainability-preview::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 20, 42, 0.96) 0%, rgba(4, 20, 42, 0.88) 48%, rgba(4, 20, 42, 0.58) 72%, rgba(4, 20, 42, 0.3) 100%),
    linear-gradient(180deg, rgba(4, 20, 42, 0.08) 0%, rgba(4, 20, 42, 0.22) 100%);
}
.sustainability-preview__content {
  max-width: 600px;
  padding-block: 30px;
}
.sustainability-preview h2 { color: var(--white); }
.sustainability-preview p:not(.eyebrow) { color: #d3deea; }

/* Projects */
.projects-header { display: grid; gap: 30px; margin-bottom: 38px; }
.projects-header__heading { max-width: 800px; }
.projects-header__heading h2 { margin-bottom: 0; }
.projects-header__summary { max-width: 540px; }
.projects-header__summary p { margin-bottom: 0; color: var(--navy); }
.projects-header__summary p:first-child { font-size: 1.02rem; line-height: 1.7; }
.projects-header__summary p:last-child { font-size: 0.78rem; }
.projects-header__rule { display: block; width: 48px; height: 1px; margin-block: 22px; background: var(--gold); }
.projects-grid { display: grid; gap: 18px; }
.project-card {
  overflow: hidden;
  border: 1px solid rgba(10, 46, 92, 0.1);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(6, 29, 59, 0.09);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.project-card:hover {
  border-color: rgba(201, 162, 39, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(6, 29, 59, 0.16);
}
.project-card__image { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy-dark); }
.project-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.project-card__image--center img { object-position: center 55%; }
.project-card:hover .project-card__image img { transform: scale(1.025); }
.project-card__body { display: flex; min-height: 245px; flex-direction: column; padding: 26px; }
.project-card__eyebrow {
  margin-bottom: 14px;
  color: var(--gold-dark);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.project-card h3 { margin: 0 0 11px; color: var(--navy); font-family: var(--display); font-size: clamp(1.65rem, 2.3vw, 2rem); font-weight: 500; line-height: 1.14; }
.project-card__body > p:not(.project-card__eyebrow) { margin-bottom: 22px; font-size: 0.86rem; }

/* Final CTA */
.cta-section { padding-block: 78px; background: var(--navy-dark); color: var(--white); }
.cta-section__inner { display: grid; gap: 30px; }
.cta-section h2 { margin-bottom: 14px; color: var(--white); }
.cta-section p:not(.eyebrow) { max-width: 680px; margin-bottom: 0; color: #c2cedc; }
.cta-section__actions { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }

/* Internal page hero */
.page-hero { position: relative; overflow: hidden; padding-block: 58px; background: var(--navy-dark); color: var(--white); }
.page-hero__line { position: absolute; top: -210px; right: 7%; width: 320px; height: 520px; border: 1px solid rgba(201, 162, 39, 0.3); transform: rotate(28deg); }
.page-hero__inner { position: relative; display: grid; gap: 30px; }
.page-hero h1 { margin-bottom: 0; color: var(--white); font-size: clamp(2.8rem, 10vw, 5.5rem); }
.page-hero__summary { padding-left: 18px; border-left: 1px solid var(--gold); }
.page-hero__summary p { margin-bottom: 0; color: #c7d2df; }
.breadcrumbs ol { display: flex; align-items: center; gap: 8px; margin: 0 0 28px; padding: 0; list-style: none; color: #b8c5d5; font-size: 0.68rem; }
.breadcrumbs a { text-decoration: underline; text-underline-offset: 3px; }

/* Services page */
.services-page-intro { padding-bottom: 56px; }
.services-page-intro__grid { display: grid; gap: 25px; }
.services-page-intro h2 { margin-bottom: 0; }
.services-detail { padding-bottom: 90px; }
.service-detail { display: grid; gap: 18px; padding-block: 34px; border-top: 1px solid var(--line); scroll-margin-top: 90px; }
.service-detail:last-child { border-bottom: 1px solid var(--line); }
.service-detail__number { color: var(--gold); font-family: var(--display); font-size: 1.7rem; }
.service-detail__title .icon-mark { margin-bottom: 19px; }
.service-detail__title h2 { color: var(--navy); font-size: clamp(2rem, 7vw, 3.3rem); }
.service-detail__title p,
.service-detail dd { font-size: 0.88rem; }
.service-detail dl { margin: 0 0 22px; }
.service-detail dl > div { padding-block: 12px; border-bottom: 1px solid var(--line); }
.service-detail dt { margin-bottom: 4px; color: var(--navy); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.service-detail dd { margin: 0; color: var(--muted); }
.scope-note { padding-top: 0; }
.scope-note__inner { display: flex; gap: 18px; align-items: center; padding: 28px; border-left: 3px solid var(--gold); background: var(--ivory); }
.scope-note h2 { margin-bottom: 5px; font-size: 1.85rem; }
.scope-note p { margin-bottom: 0; }

/* Projects page and modal */
.editorial-notice { display: grid; gap: 3px; margin-bottom: 26px; padding: 15px 17px; border-left: 3px solid var(--gold); background: var(--white); font-size: 0.78rem; }
.editorial-notice span { color: var(--muted); }
.project-filters { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 28px; }
.project-filters button { padding: 8px 11px; border: 1px solid var(--line); border-radius: 3px; background: var(--white); color: var(--muted); font-size: 0.7rem; }
.project-filters button.active,
.project-filters button:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }
.project-modal[hidden] { display: none; }
.project-modal { position: fixed; z-index: 200; inset: 0; display: grid; place-items: center; padding: 14px; background: rgba(6, 29, 59, 0.8); }
.project-modal__panel { position: relative; width: min(880px, 100%); max-height: 94vh; overflow-y: auto; border-radius: 6px; background: var(--white); }
.project-modal__close { position: absolute; z-index: 3; top: 12px; right: 12px; display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid rgba(255, 255, 255, 0.5); border-radius: 50%; background: var(--navy-dark); color: var(--white); font-size: 1.5rem; }
.project-modal__content { padding: 28px 22px; }
.project-modal__content h2 { color: var(--navy); font-size: 2.35rem; }
.project-modal__content dl { display: grid; grid-template-columns: 1fr 1fr; margin-block: 23px; }
.project-modal__content dl > div { padding: 10px; border-top: 1px solid var(--line); }
.project-modal__content dt { color: var(--navy); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.project-modal__content dd { margin: 4px 0 0; color: var(--muted); font-size: 0.8rem; }
.project-modal__content ul { padding: 0; list-style: none; }
.project-modal__content li { margin-block: 6px; color: var(--muted); font-size: 0.85rem; }
.project-visual--compact { min-height: 260px; }

/* About page */
.story-section__grid,
.experience-section__grid,
.markets-section__grid,
.sustainability-intro__grid,
.sustainability-process__grid,
.contact-page__grid { display: grid; gap: 40px; }
.story-section__copy > p:first-child { color: var(--ink); font-family: var(--display); font-size: 1.55rem; line-height: 1.45; }
.photo-placeholder { position: relative; display: flex; min-height: 330px; align-items: flex-end; overflow: hidden; padding: 24px; border-radius: 6px; background: var(--navy); color: var(--white); box-shadow: var(--shadow); }
.photo-placeholder::before,
.photo-placeholder::after { content: ""; position: absolute; border: 1px solid rgba(201, 162, 39, 0.65); }
.photo-placeholder::before { top: 36px; right: 14%; width: 43%; height: 48%; }
.photo-placeholder::after { bottom: 0; left: 12%; width: 56%; height: 35%; border-bottom: 0; }
.photo-placeholder span { position: relative; padding: 5px 8px; border: 1px solid var(--gold-light); font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase; }
.experience-section h3 { margin-bottom: 8px; color: var(--navy); }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; margin-top: 38px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.values-grid article { min-height: 125px; padding: 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.values-grid span { color: var(--gold); font-size: 0.65rem; font-weight: 700; }
.values-grid h3 { margin-top: 22px; color: var(--navy); }
.leadership-section { background: var(--ivory); }
.leadership-grid { display: grid; gap: 28px; margin-top: 38px; }
.leadership-grid article { display: grid; grid-template-columns: 115px 1fr; column-gap: 20px; align-items: start; }
.leadership-photo { grid-row: span 3; display: grid; width: 115px; height: 155px; place-items: center; background: #dce2e8; color: var(--muted); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; }
.leadership-grid .eyebrow { margin: 6px 0; }
.leadership-grid h3 { margin-bottom: 7px; color: var(--navy); }
.leadership-grid p:last-child { font-size: 0.83rem; }
.markets-section { background: var(--navy); color: var(--white); }
.markets-section h2 { color: var(--white); }
.markets-section__grid > div:last-child { display: flex; flex-wrap: wrap; gap: 7px; align-content: flex-start; }
.markets-section__grid span { padding: 8px 10px; border: 1px solid rgba(226, 202, 121, 0.65); border-radius: 3px; color: var(--white); font-size: 0.77rem; }

/* Sustainability page */
.sustainability-intro__quote { padding: 30px; border-left: 3px solid var(--gold); background: var(--ivory); }
.sustainability-intro__quote p { margin: 20px 0 0; color: var(--ink); font-family: var(--display); font-size: 1.55rem; line-height: 1.35; }
.pathway-grid { display: grid; gap: 14px; margin-top: 38px; }
.pathway-grid article { padding: 24px; border-top: 2px solid var(--gold); border-radius: 3px; background: var(--white); }
.pathway-grid h3 { margin: 25px 0 8px; color: var(--navy); }
.pathway-grid p { margin-bottom: 0; font-size: 0.86rem; }
.sustainability-process { background: var(--navy-dark); color: var(--white); }
.sustainability-process h2 { color: var(--white); }
.sustainability-process p:not(.eyebrow) { color: #bdcad9; }
.sustainability-process ol { margin: 0; padding: 0; list-style: none; }
.sustainability-process li { display: grid; grid-template-columns: 38px 1fr; gap: 14px; padding-block: 15px; border-bottom: 1px solid rgba(201, 162, 39, 0.28); }
.sustainability-process li > span { color: var(--gold-light); font-size: 0.66rem; font-weight: 700; }
.sustainability-process h3 { margin: 0 0 4px; color: var(--white); }
.sustainability-process li p { margin: 0; font-size: 0.83rem; }
.careful-language { padding-top: 0; background: var(--navy-dark); }
.careful-language__inner { display: flex; gap: 17px; align-items: flex-start; padding: 28px; background: #0d376a; }
.careful-language h2 { margin-bottom: 6px; color: var(--white); font-size: 1.85rem; }
.careful-language p { margin-bottom: 0; color: #c7d2df; }

/* Contact form */
.contact-sidebar { padding: 28px; border-radius: 6px; background: var(--navy-dark); color: var(--white); }
.contact-sidebar h2 { color: var(--white); font-size: 2.5rem; }
.contact-sidebar > p:not(.eyebrow):not(.data-note) { color: #bdcad9; }
.contact-details { margin-block: 25px; }
.contact-details > div { display: flex; gap: 12px; padding-block: 14px; border-top: 1px solid rgba(201, 162, 39, 0.28); }
.contact-details .icon-mark { flex: 0 0 38px; width: 38px; height: 38px; border-color: var(--gold); color: var(--gold-light); }
.contact-details > div > span:last-child { display: flex; flex-direction: column; color: #d4deea; font-size: 0.78rem; }
.contact-details strong { color: var(--white); font-size: 0.6rem; letter-spacing: 0.09em; text-transform: uppercase; }
.data-note--dark { color: #9fb0c4 !important; }
.contact-form-wrap { padding: 27px 20px; border-radius: 6px; background: var(--white); }
.contact-form-wrap__header h2 { margin-bottom: 5px; color: var(--navy); font-size: 2.4rem; }
.form-grid { display: grid; gap: 16px; }
.contact-form label,
.contact-form legend { display: block; color: #34465d; font-size: 0.72rem; font-weight: 700; }
.contact-form input,
.contact-form textarea,
.contact-form select { width: 100%; padding: 11px; border: 1px solid #cbd4de; border-radius: 3px; outline: none; background: var(--white); color: var(--ink); font-weight: 400; }
.contact-form label > input,
.contact-form label > textarea,
.contact-form label > select { display: block; margin-top: 6px; }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(10, 46, 92, 0.12); }
.form-message { grid-column: 1 / -1; }
.form-message textarea { resize: vertical; }
.form-status[hidden] { display: none; }
.form-status { display: flex; gap: 9px; align-items: flex-start; margin-block: 16px; padding: 12px; font-size: 0.77rem; }
.form-status p { margin: 0; }
.form-status--success { background: #edf7f1; }
.form-status--success p { color: #195f3a; }
.form-status--error,
.form-status--setup { background: #fff8e6; }
.form-status--error p,
.form-status--setup p { color: #805d0f; }
.form-status--loading { background: var(--pale-blue); }
.form-submit { margin-top: 22px; }
.form-status:not([hidden]) + .form-submit { margin-top: 0; }
.form-required { margin: 9px 0 0; font-size: 0.66rem; }

/* Privacy and 404 */
.legal-page__content { max-width: 800px; }
.legal-page__notice { margin-bottom: 40px; padding: 15px; border-left: 3px solid var(--gold); background: var(--ivory); font-size: 0.78rem; }
.legal-page h2 { margin: 38px 0 10px; color: var(--navy); font-size: 2rem; }
.legal-page p { font-size: 0.9rem; }
.not-found { position: relative; display: grid; min-height: calc(100vh - 76px); place-items: center; overflow: hidden; padding-block: 70px; background: var(--navy-dark); color: var(--white); }
.not-found__content { position: relative; max-width: 760px; text-align: center; }
.not-found h1 { color: var(--white); }
.not-found p:not(.eyebrow) { color: #bdcad9; }
.not-found__architecture span { position: absolute; border: 1px solid rgba(201, 162, 39, 0.32); transform: rotate(30deg); }
.not-found__architecture span:nth-child(1) { top: -20%; left: 7%; width: 220px; height: 700px; }
.not-found__architecture span:nth-child(2) { right: 8%; bottom: -30%; width: 380px; height: 720px; }
.not-found__architecture span:nth-child(3) { top: 18%; right: 24%; width: 100px; height: 210px; }

/* One-page landing experience */
.home-page main > section[id] { scroll-margin-top: 88px; }
.landing-contact { overflow: hidden; background: var(--navy-dark); }
.landing-contact__grid { display: grid; gap: 42px; }
.landing-contact__intro { align-self: start; }
.landing-contact__intro h2 { max-width: 620px; color: var(--white); }
.landing-contact__intro > p:not(.eyebrow) { max-width: 590px; color: #bdcad9; }
.landing-contact__signals { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-block: 30px; background: rgba(201, 162, 39, 0.26); }
.landing-contact__signals span { padding: 15px 12px; background: var(--navy-dark); color: var(--white); font-size: 0.72rem; }
.landing-contact__signals span::before { content: ""; display: inline-block; width: 6px; height: 6px; margin-right: 9px; border: 1px solid var(--gold); transform: rotate(45deg); }
.landing-contact__area { padding-top: 20px; border-top: 1px solid rgba(201, 162, 39, 0.28); font-size: 0.75rem; }
.landing-contact .contact-form-wrap { box-shadow: 0 26px 70px rgba(0, 0, 0, 0.2); }

.info-modal[hidden] { display: none; }
.info-modal { position: fixed; z-index: 300; inset: 0; display: grid; place-items: center; padding: 10px; background: rgba(3, 15, 32, 0.84); backdrop-filter: blur(8px); }
.info-modal__panel { position: relative; width: min(1080px, 100%); max-height: calc(100dvh - 20px); overflow-y: auto; border-radius: 8px; outline: 0; background: var(--white); box-shadow: 0 36px 100px rgba(0, 0, 0, 0.38); }
.info-modal__close { position: absolute; z-index: 2; top: 14px; right: 14px; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255, 255, 255, 0.55); border-radius: 50%; background: rgba(4, 20, 42, 0.72); color: var(--white); font-size: 1.45rem; line-height: 1; transition: background-color 180ms ease, transform 180ms ease; }
.info-modal__close:hover { background: var(--navy); transform: rotate(6deg); }
.info-modal__close:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }
.info-modal__hero { padding: 78px 25px 42px; background: linear-gradient(135deg, var(--navy-dark), var(--navy-soft)); }
.info-modal__hero--sustainability { background: linear-gradient(135deg, #071a36, #164a56); }
.info-modal__hero h2 { max-width: 820px; margin-bottom: 18px; color: var(--white); font-size: clamp(2.35rem, 8vw, 4.7rem); }
.info-modal__hero > p:last-child { max-width: 690px; margin: 0; color: #cbd6e2; }
.info-modal__body { display: grid; gap: 34px; padding: 38px 25px 44px; }
.info-modal__story { max-width: 760px; }
.info-modal__story h3,
.info-modal__markets h3 { margin-bottom: 12px; color: var(--navy); font-size: clamp(1.65rem, 5vw, 2.5rem); }
.info-modal__story p:last-child { margin-bottom: 0; }
.info-modal__values { display: flex; flex-wrap: wrap; gap: 8px; padding-block: 24px; border-block: 1px solid var(--line); }
.info-modal__values span,
.info-modal__markets span { padding: 9px 12px; border: 1px solid var(--line); color: var(--navy); font-size: 0.75rem; font-weight: 600; }
.info-modal__markets > div { display: flex; flex-wrap: wrap; gap: 8px; }
.info-modal__pathways { display: grid; gap: 1px; background: var(--line); }
.info-modal__pathways article { padding: 22px; background: var(--ivory); }
.info-modal__pathways span { display: block; margin-bottom: 16px; color: var(--navy); font-family: var(--display); font-size: 1.55rem; }
.info-modal__pathways p { margin: 0; font-size: 0.82rem; }
.info-modal__note { margin: 0; padding: 18px 20px; border-left: 3px solid var(--gold); background: var(--ivory); font-size: 0.76rem; }
.info-modal__body > .button { justify-self: start; }

/* Footer */
.footer-placeholder { min-height: 300px; background: var(--navy-dark); }
.site-footer { padding-top: 66px; background: var(--navy-dark); color: var(--white); }
.site-footer__top { display: grid; gap: 42px; padding-bottom: 48px; }
.site-footer .brand-mark { width: 145px; height: 105px; justify-content: flex-start; }
.site-footer .brand-logo { width: 135px; height: 100px; }
.site-footer__brand > p { max-width: 440px; color: #aebdce; }
.site-footer__service-line { font-size: 0.66rem; letter-spacing: 0.05em; text-transform: uppercase; }
.site-footer__service-line span { color: var(--gold); }
.site-footer__links { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.site-footer__links > div { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; }
.site-footer__links h2 { margin: 0 0 11px; color: var(--gold-light); font-family: var(--body); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.site-footer__links a { color: #ced8e4; font-size: 0.8rem; }
.site-footer__links a:hover { color: var(--white); }
.site-footer__contact { grid-column: 1 / -1; }
.footer-project-link { padding-bottom: 6px; border-bottom: 1px solid var(--gold); font-family: var(--display); font-size: 1.3rem !important; }
.site-footer__contact p { margin-top: 9px; color: #8fa2b8; font-size: 0.72rem; }
.site-footer__bottom { padding-block: 21px; border-top: 1px solid rgba(201, 162, 39, 0.22); }
.site-footer__bottom p { margin: 0; color: #8498af; font-size: 0.67rem; }
.site-footer__bottom p + p { margin-top: 4px; }

/* Light reveal animation */
.reveal-ready [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal-ready [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* Tablet */
@media (min-width: 680px) {
  :root { --shell: min(1180px, calc(100% - 56px)); }
  .copy-mobile { display: none; }
  .copy-desktop { display: inline; }
  .intro-section__grid { gap: 42px; }
  .principles-grid { gap: 1px; border-bottom: 0; background: var(--line); }
  .principles-grid article { padding: 24px; border-top: 0; background: var(--white); }
  .principle-image { width: 76px; height: 76px; margin-bottom: 20px; }
  .principles-grid h3 { margin: 0 0 8px; font-size: 1.15rem; }
  .principles-grid p { font-size: 0.9rem; line-height: 1.7; }
  .home-hero__actions,
  .cta-section__actions { flex-direction: row; flex-wrap: wrap; }
  .principles-grid,
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid,
  .pathway-grid { grid-template-columns: repeat(2, 1fr); }
  .process-timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .check-grid,
  .form-grid { grid-template-columns: 1fr 1fr; }
  .info-modal__pathways { grid-template-columns: repeat(2, 1fr); }
  .project-card__meta { flex-direction: row; justify-content: space-between; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .leadership-grid article { grid-template-columns: 155px 1fr; }
  .leadership-photo { width: 155px; height: 190px; }
  .site-footer__links { grid-template-columns: 0.7fr 0.7fr 1.3fr; }
  .site-footer__contact { grid-column: auto; }
  .site-footer__bottom { display: flex; justify-content: space-between; gap: 20px; }
  .site-footer__bottom p + p { margin-top: 0; }
}

/* Desktop */
@media (min-width: 960px) {
  :root { --shell: min(1180px, calc(100% - 80px)); }
  .section { padding-block: 124px; }
  .site-header__inner { height: 92px; }
  .brand-mark { width: 132px; height: 88px; }
  .brand-logo { width: 126px; height: 86px; }
  .desktop-nav { display: flex; align-items: center; gap: 24px; }
  .desktop-nav a { position: relative; padding-block: 35px 31px; color: var(--navy); font-size: 0.77rem; font-weight: 600; }
  .desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: 24px; left: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 180ms ease; }
  .desktop-nav a:hover::after,
  .desktop-nav a.active::after,
  .desktop-nav a[aria-current="page"]::after { transform: scaleX(1); }
  .header-quote { display: inline-flex; min-height: 42px; padding: 9px 14px; }
  .menu-toggle { display: none; }
  .mobile-nav { display: none; }
  .home-hero {
    min-height: max(720px, 100svh);
    background-image:
      linear-gradient(90deg, rgba(4, 20, 42, 0.9) 0%, rgba(4, 20, 42, 0.74) 40%, rgba(4, 20, 42, 0.2) 76%, rgba(4, 20, 42, 0.12) 100%),
      url("../images/hero-room-background.webp");
    background-position: center;
  }
  .home-hero__grid { min-height: max(720px, 100svh); padding-block: 156px 92px; }
  .home-hero__content { max-width: 690px; }
  .home-hero__lead { font-size: 1.12rem; }
  .trust-bar > .shell { grid-template-columns: 0.85fr 2.15fr; align-items: center; }
  .trust-bar__statement { font-size: 1.42rem; }
  .trust-bar__terms { flex-wrap: nowrap; }
  .intro-section__grid,
  .why-section__grid,
  .story-section__grid,
  .experience-section__grid,
  .markets-section__grid,
  .sustainability-intro__grid,
  .sustainability-process__grid,
  .contact-page__grid { grid-template-columns: 0.9fr 1.1fr; gap: 88px; align-items: start; }
  .intro-section__grid { grid-template-columns: 0.82fr 1.18fr; align-items: center; }
  .principles-grid { grid-template-columns: repeat(3, 1fr); }
  .services-editorial { grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr); gap: clamp(64px, 7vw, 104px); align-items: start; }
  .services-editorial__intro { position: sticky; top: 126px; }
  .service-row { grid-template-columns: 12px minmax(180px, 0.8fr) minmax(220px, 1.2fr) auto; align-items: center; padding: 24px 0; }
  .service-row__content { display: contents; }
  .service-row__content h3 { margin: 0; }
  .service-row__content p { font-size: 0.82rem; }
  .section-intro-row { grid-template-columns: 1fr auto; align-items: end; margin-bottom: 48px; }
  .section-quote-cta { margin-top: 54px; }
  .why-section__grid { grid-template-columns: 0.78fr 1.22fr; }
  .why-section__intro { position: sticky; top: 130px; }
  .cleaning-section { min-height: 760px; align-items: center; padding-block: 92px; }
  .cleaning-section::before { inset: -18% 0; background-position: center; }
  .cleaning-section::after { background: linear-gradient(90deg, rgba(4, 20, 42, 0.04) 0%, rgba(4, 20, 42, 0.1) 48%, rgba(4, 20, 42, 0.56) 100%); }
  .cleaning-section__layout { padding-inline: 0; }
  .cleaning-section__panel { width: min(600px, 54%); margin-right: clamp(28px, 3vw, 48px); padding: 48px; border-radius: 24px; }
  .cleaning-section__panel .check-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 22px; }
  .process-timeline { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 58px; }
  .process-timeline li { min-height: 205px; align-items: flex-start; padding: 27px 25px; text-align: left; }
  .process-timeline h3 { min-height: 2.36em; margin-top: 16px; font-size: 1.28rem; }
  .process-timeline h3::after { margin-inline: 0; }
  .audience-grid { grid-template-columns: repeat(4, 1fr); }
  .audience-grid article { min-height: 220px; }
  .sustainability-preview { min-height: 740px; background-position: center; }
  .sustainability-preview::before {
    background:
      linear-gradient(90deg, rgba(4, 20, 42, 0.96) 0%, rgba(4, 20, 42, 0.88) 34%, rgba(4, 20, 42, 0.35) 62%, rgba(4, 20, 42, 0.08) 100%),
      linear-gradient(180deg, rgba(4, 20, 42, 0.04) 0%, rgba(4, 20, 42, 0.18) 100%);
  }
  .sustainability-preview__content { padding-block: 42px; }
  .projects-header { grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr); gap: clamp(56px, 7vw, 100px); align-items: end; margin-bottom: 50px; }
  .projects-grid { grid-template-columns: repeat(3, 1fr); }
  .project-card__image { aspect-ratio: 16 / 9; }
  .cta-section { padding-block: 92px; }
  .cta-section__inner { grid-template-columns: 1fr auto; align-items: end; }
  .page-hero { padding-block: 82px; }
  .page-hero__inner { grid-template-columns: 1.15fr 0.85fr; gap: 90px; align-items: end; }
  .services-page-intro__grid { grid-template-columns: 0.35fr 1fr 0.8fr; gap: 42px; }
  .service-detail { grid-template-columns: 75px 0.9fr 1.1fr; gap: 42px; padding-block: 48px; }
  .project-modal__panel { display: grid; grid-template-columns: 0.85fr 1.15fr; }
  .project-modal__content { padding: 42px; }
  .values-grid { grid-template-columns: repeat(4, 1fr); }
  .leadership-grid { grid-template-columns: repeat(2, 1fr); }
  .pathway-grid { grid-template-columns: repeat(4, 1fr); }
  .contact-page__grid { grid-template-columns: 0.75fr 1.25fr; gap: 28px; }
  .landing-contact__grid { grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr); gap: clamp(54px, 7vw, 96px); align-items: start; }
  .landing-contact__intro { position: sticky; top: 130px; }
  .contact-form-wrap { padding: 38px; }
  .info-modal { padding: 24px; }
  .info-modal__panel { max-height: calc(100dvh - 48px); }
  .info-modal__hero { padding: 88px 64px 56px; }
  .info-modal__body { grid-template-columns: 0.9fr 1.1fr; gap: 48px 70px; padding: 56px 64px 64px; }
  .info-modal__story { grid-column: 1 / -1; }
  .info-modal__values { grid-column: 1; align-content: start; }
  .info-modal__markets { grid-column: 2; }
  .info-modal__pathways { grid-column: 1 / -1; grid-template-columns: repeat(4, 1fr); }
  .info-modal__note { grid-column: 1 / -1; }
  .info-modal__body > .button { grid-column: 1 / -1; }
  .site-footer__top { grid-template-columns: 0.82fr 1.18fr; gap: 76px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal-ready [data-reveal] { opacity: 1; transform: none; }
  .cleaning-section::before { transform: none !important; }
}
