:root {
  --ink: #17302e;
  --teal: #123f3b;
  --teal-light: #1f5953;
  --cream: #f4f0e6;
  --paper: #fbfaf6;
  --white: #fff;
  --stone: #dcd4c4;
  --sand: #b69a6a;
  --muted: #657471;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
  --shell: min(1180px, calc(100% - 40px));
  --shadow: 0 24px 65px rgba(23, 48, 46, .1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

::selection {
  color: var(--white);
  background: var(--teal-light);
}

body.menu-open {
  overflow: hidden;
}

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

*:focus-visible {
  outline: 2px solid var(--sand);
  outline-offset: 4px;
}

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

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

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

h1,
h2,
h3 {
  line-height: 1.05;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
}

h1 em,
h2 em {
  color: var(--teal-light);
  font-weight: 400;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--teal);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  color: rgba(255, 255, 255, .82);
  background: var(--teal);
  font-size: 11px;
  letter-spacing: .035em;
}

.announcement__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  text-align: center;
}

.announcement a {
  display: none;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(251, 250, 246, .96);
  border-bottom: 1px solid rgba(23, 48, 46, .1);
  backdrop-filter: blur(14px);
  transition: box-shadow .25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(23, 48, 46, .07);
}

.site-header__inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand__mark {
  width: 36px;
  height: 36px;
}

.brand__mark-bg {
  fill: var(--teal);
}

.brand__mark-star {
  fill: var(--cream);
  transform-origin: center;
  transition: transform .35s ease;
}

.brand__mark-dot {
  fill: var(--sand);
}

.brand:hover .brand__mark-star {
  transform: rotate(12deg) scale(.94);
}

.brand__name {
  font-family: var(--serif);
  font-size: 21px;
  line-height: .95;
  letter-spacing: -.025em;
}

.brand__name em {
  display: block;
  color: var(--teal-light);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.menu-button {
  position: relative;
  z-index: 2;
  width: 46px;
  height: 46px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-button > span:not(.sr-only) {
  position: absolute;
  right: 6px;
  width: 26px;
  height: 1px;
  background: var(--ink);
  transition: transform .25s ease, top .25s ease;
}

.menu-button > span:nth-child(2) {
  top: 18px;
}

.menu-button > span:nth-child(3) {
  top: 27px;
}

.menu-button[aria-expanded="true"] > span:nth-child(2) {
  top: 23px;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] > span:nth-child(3) {
  top: 23px;
  transform: rotate(-45deg);
}

.site-nav {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  display: flex;
  min-height: calc(100vh - 74px);
  flex-direction: column;
  gap: 6px;
  padding: 28px 20px 40px;
  visibility: hidden;
  background: var(--paper);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  counter-reset: navigation;
}

.site-nav.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.site-nav > a:not(.button) {
  position: relative;
  padding: 12px 4px;
  border-bottom: 1px solid var(--stone);
  font-family: var(--serif);
  font-size: 25px;
}

.site-nav > a:not(.button)::before {
  margin-right: 13px;
  color: var(--sand);
  content: "0" counter(navigation);
  counter-increment: navigation;
  font-family: var(--sans);
  font-size: 9px;
  font-style: normal;
  letter-spacing: .08em;
  vertical-align: middle;
}

.site-nav > a.is-active {
  color: var(--teal-light);
}

.site-nav .button {
  margin-top: 14px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 23px;
  color: var(--white);
  background: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .045em;
  text-align: center;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.button:hover {
  color: var(--white);
  background: var(--teal-light);
  transform: translateY(-2px);
}

.button--small {
  min-height: 44px;
  padding-inline: 20px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--teal-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  line-height: 1.4;
  text-transform: uppercase;
}

#services,
#standard,
#process,
#plans,
#service-area,
#quote {
  scroll-margin-top: 92px;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--cream);
}

.hero__image {
  position: absolute;
  inset: auto 0 0;
  height: 43%;
  background:
    linear-gradient(180deg, var(--cream) 0%, rgba(244, 240, 230, 0) 17%),
    url("/assets/images/odessa-cleaners-hero.webp") 60% center / cover no-repeat;
}

.hero__inner {
  position: relative;
}

.hero__content {
  max-width: 590px;
  padding: 70px 0 350px;
}

.hero h1 {
  max-width: 560px;
  margin-bottom: 24px;
  font-size: clamp(48px, 14vw, 76px);
}

.hero__lead {
  max-width: 530px;
  margin-bottom: 30px;
  color: #51625f;
  font-size: 17px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 3px;
  color: var(--teal);
  border-bottom: 1px solid rgba(18, 63, 59, .35);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .035em;
}

.text-link svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform .2s ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.hero__note {
  display: flex;
  max-width: 460px;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  color: #5d6e6a;
  font-size: 12px;
  line-height: 1.5;
}

.hero__note svg {
  width: 25px;
  min-width: 25px;
  fill: none;
  stroke: var(--teal-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.proof-strip {
  position: relative;
  z-index: 2;
  color: var(--white);
  background: var(--teal);
}

.proof-strip__grid {
  display: grid;
}

.proof-strip__grid > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.proof-strip__grid > div:last-child {
  border-bottom: 0;
}

.proof-strip__number {
  color: #b9a57c;
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
}

.proof-strip p {
  margin: 0;
  color: rgba(255, 255, 255, .65);
  font-size: 11px;
  letter-spacing: .02em;
  line-height: 1.55;
}

.proof-strip strong {
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
}

.section {
  padding: 90px 0;
}

.section-heading {
  margin-bottom: 45px;
}

.section-heading h2,
.standard h2,
.service-area h2,
.quote h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 11vw, 64px);
}

.section-heading > p {
  max-width: 470px;
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.service-feature-grid {
  display: grid;
  gap: 20px;
}

.service-feature {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  overflow: hidden;
}

.service-feature--residential {
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 11%, rgba(182, 154, 106, .22), transparent 28%),
    var(--cream);
}

.service-feature--commercial {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(123, 171, 163, .2), transparent 30%),
    var(--teal);
}

.service-feature__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.service-feature__index {
  color: var(--sand);
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
}

.service-feature__top svg {
  width: 48px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
  opacity: .7;
}

.service-feature h3 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -.035em;
}

.service-feature p:not(.eyebrow) {
  max-width: 470px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
}

.service-feature--commercial p:not(.eyebrow) {
  color: rgba(255, 255, 255, .68);
}

.service-feature--commercial .eyebrow,
.service-feature--commercial .service-feature__index {
  color: #cbb993;
}

.service-feature--commercial .text-link {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, .35);
}

.check-list {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 9px 0 9px 23px;
  border-top: 1px solid rgba(23, 48, 46, .14);
  font-size: 13px;
}

.check-list li::before {
  position: absolute;
  top: 10px;
  left: 1px;
  color: var(--sand);
  content: "✓";
}

.service-feature--commercial .check-list li {
  border-color: rgba(255, 255, 255, .14);
}

.service-links {
  display: grid;
  margin-top: 20px;
  border-top: 1px solid var(--stone);
}

.service-links > * {
  padding: 14px 0;
  border-bottom: 1px solid var(--stone);
}

.service-links > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.service-links a {
  display: flex;
  justify-content: space-between;
  font-family: var(--serif);
  font-size: 17px;
}

.service-links b {
  color: var(--sand);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
}

.standard {
  background: var(--cream);
}

.standard__grid {
  display: grid;
  gap: 60px;
}

.standard__visual {
  position: relative;
  display: grid;
  min-height: 350px;
  place-items: center;
  overflow: hidden;
}

.standard__orb {
  position: relative;
  z-index: 2;
  display: grid;
  width: 230px;
  aspect-ratio: 1;
  place-items: center;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.standard__orb svg {
  width: 130px;
  fill: none;
  stroke: #d1bf97;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform .5s ease;
}

.standard__visual:hover .standard__orb svg {
  transform: rotate(4deg) scale(1.03);
}

.standard__ring {
  position: absolute;
  border: 1px solid rgba(18, 63, 59, .16);
  border-radius: 50%;
}

.standard__ring--one {
  width: 320px;
  height: 320px;
}

.standard__ring--two {
  width: 430px;
  height: 430px;
}

.standard__lead {
  margin: 25px 0 35px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.principles {
  margin-bottom: 30px;
}

.principles > div {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid var(--stone);
}

.principles span {
  color: var(--sand);
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
}

.principles h3 {
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.principles p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
