:root {
  --ink: #10233f;
  --muted: #58708d;
  --line: #d7e6f8;
  --paper: #f4f9ff;
  --white: #ffffff;
  --blue: #0d71c8;
  --blue-dark: #073f8f;
  --blue-bright: #18a7e2;
  --blue-soft: #e1f3ff;
  --blue-pale: #f0f7ff;
  --sky: #cfe7ff;
  --green: #159a82;
  --green-bright: #35bea0;
  --green-soft: #e6f7f2;
  --shadow: 0 28px 80px rgba(16, 60, 116, 0.14);
  --soft-shadow: 0 12px 34px rgba(14, 68, 139, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0, var(--paper) 520px, #ffffff 100%);
  -webkit-font-smoothing: antialiased;
}

section[id] {
  scroll-margin-top: 90px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(215, 230, 248, 0.72);
  backdrop-filter: blur(22px) saturate(1.25);
  box-shadow: 0 8px 30px rgba(7, 63, 143, 0.05);
}

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

.brand-logo {
  display: block;
  width: auto;
  height: clamp(54px, 5vw, 64px);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  color: #24405f;
  transition: color 180ms ease, transform 180ms ease;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--green);
  transition: right 180ms ease;
}

.main-nav a:not(.nav-cta):hover::after {
  right: 0;
}

.main-nav a:hover {
  color: var(--blue-dark);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 12px 17px;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--blue-dark), var(--green));
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(7, 63, 143, 0.2);
}

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

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 820px);
  align-items: center;
  min-height: calc(92vh - 72px);
  padding: clamp(46px, 7vw, 96px) clamp(18px, 5vw, 72px);
  gap: clamp(28px, 6vw, 74px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(225, 243, 255, 0.88), rgba(255, 255, 255, 0.78) 44%, rgba(207, 231, 255, 0.62)),
    repeating-linear-gradient(90deg, rgba(13, 113, 200, 0.06) 0 1px, transparent 1px 92px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(247, 251, 255, 0.96) 0%, rgba(247, 251, 255, 0.82) 42%, rgba(247, 251, 255, 0.08) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(7,63,143,0.16));
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--blue-dark), var(--blue-bright), var(--green-bright));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 730px;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
}

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

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

h1 {
  margin-bottom: 22px;
  max-width: 700px;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1;
  font-weight: 750;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 750;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.hero-text,
.section-copy,
.product-panel p,
.quote-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-text {
  max-width: 680px;
  color: #385572;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 21px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(7, 63, 143, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(7, 63, 143, 0.2);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), var(--green));
}

.button.primary:hover {
  background: linear-gradient(135deg, #052f70, #117b70);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(13, 113, 200, 0.18);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(7, 63, 143, 0.08);
}

.hero-highlights span::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--green-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(53, 190, 160, 0.13);
}

.hero-visual {
  display: none;
}

.alori-standard {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(170px, 1fr));
  margin: -1px clamp(18px, 5vw, 72px) 0;
  background: var(--white);
  border: 1px solid rgba(13, 113, 200, 0.12);
  border-top: 0;
  box-shadow: 0 22px 56px rgba(14, 68, 139, 0.1);
}

.standard-intro,
.standard-item {
  min-height: 118px;
  padding: 24px;
}

.standard-intro {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}

.standard-intro p,
.standard-intro strong {
  margin: 0;
}

.standard-intro p {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.standard-intro strong {
  font-size: 17px;
  line-height: 1.35;
}

.standard-mark {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  background: var(--green-bright);
  clip-path: polygon(50% 0, 61% 38%, 100% 50%, 61% 62%, 50% 100%, 39% 62%, 0 50%, 39% 38%);
}

.standard-item {
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--line);
}

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

.standard-item svg {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.standard-item span,
.standard-item strong,
.standard-item small {
  display: block;
}

.standard-item strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 14px;
}

.standard-item small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.hero-logo-mark {
  position: absolute;
  top: 24px;
  right: 26px;
  width: min(300px, 58%);
  opacity: 0.13;
  filter: saturate(1.1);
}

.window {
  position: absolute;
  top: 46px;
  left: 44px;
  right: 44px;
  height: 155px;
  background: rgba(255, 255, 255, 0.68);
  border: 10px solid rgba(255,255,255,0.92);
  border-radius: 8px;
}

.room-card {
  position: absolute;
  left: 50%;
  bottom: 42px;
  width: min(78%, 420px);
  height: 270px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(12, 80, 160, 0.22);
  backdrop-filter: blur(12px);
}

.surface {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 44px;
  height: 30px;
  background: #dceaf9;
  border-radius: 8px;
}

.spray-bottle {
  position: absolute;
  left: 62px;
  bottom: 74px;
  width: 68px;
  height: 132px;
  background: linear-gradient(180deg, var(--blue-bright), var(--blue-dark));
  border-radius: 8px 8px 18px 18px;
}

.spray-bottle::before {
  content: "";
  position: absolute;
  top: -38px;
  left: 14px;
  width: 42px;
  height: 42px;
  background: var(--blue-bright);
  border-radius: 8px 8px 4px 4px;
}

.cloth {
  position: absolute;
  right: 58px;
  bottom: 72px;
  width: 145px;
  height: 70px;
  background: #83cdf7;
  border-radius: 48% 52% 44% 56%;
  transform: rotate(-8deg);
}

.sparkle {
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--blue);
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}

.sparkle-one {
  top: 56px;
  right: 82px;
}

.sparkle-two {
  top: 92px;
  right: 132px;
  width: 12px;
  height: 12px;
  background: var(--blue-bright);
}

.section {
  padding: clamp(68px, 9vw, 112px) clamp(18px, 5vw, 72px);
}

.intro-grid {
  align-items: start;
  background: #ffffff;
}

.section-copy {
  padding-left: clamp(20px, 3vw, 42px);
  border-left: 3px solid var(--green-bright);
}

.intro-grid,
.products,
.quote {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(24px, 6vw, 72px);
}

.services,
.why {
  background:
    linear-gradient(180deg, #ffffff, #f8fbff);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading p:not(.section-label) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.service-card {
  min-height: 260px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(225, 243, 255, 0.68), rgba(230, 247, 242, 0.72));
  border: 1px solid rgba(13, 113, 200, 0.1);
  border-top: 3px solid rgba(21, 154, 130, 0.42);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  cursor: pointer;
  opacity: 0.82;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, opacity 180ms ease, background 180ms ease;
}

.service-card:nth-child(3n + 2) {
  border-top-color: rgba(24, 167, 226, 0.48);
}

.service-card:nth-child(3n) {
  border-top-color: rgba(7, 63, 143, 0.4);
}

.service-card:hover,
.service-card:focus-visible,
.service-card.is-active {
  transform: translateY(-7px);
  opacity: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(230, 247, 242, 0.96));
  border-color: rgba(13, 113, 200, 0.38);
  box-shadow: 0 26px 56px rgba(14, 68, 139, 0.15);
}

.service-card:focus-visible {
  outline: 3px solid rgba(13, 113, 200, 0.2);
  outline-offset: 3px;
}

.service-card p,
.why-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.service-card h3,
.service-card p,
.service-card .service-icon {
  margin-left: 0;
  margin-right: 0;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(7, 63, 143, 0.78), rgba(21, 154, 130, 0.78));
  border-radius: 8px;
  font-weight: 900;
}

.service-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-card:hover .service-icon,
.service-card:focus-visible .service-icon,
.service-card.is-active .service-icon {
  background: linear-gradient(135deg, var(--blue-dark), var(--green-bright));
}

.service-table-wrap {
  margin-top: 28px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.service-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.service-table th,
.service-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.service-table th {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), var(--green));
  font-size: 14px;
  text-transform: uppercase;
}

.service-table td {
  color: var(--muted);
  line-height: 1.55;
}

.service-table td:first-child {
  color: var(--blue-dark);
  font-weight: 900;
}

.service-table tr:last-child td {
  border-bottom: 0;
}

.process {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(225, 243, 255, 0.72)),
    var(--paper);
}

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

.process-grid article {
  min-height: 240px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.process-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(21, 154, 130, 0.32);
  box-shadow: 0 22px 46px rgba(14, 68, 139, 0.12);
}

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), var(--green-bright));
  border-radius: 8px;
  font-weight: 900;
}

.process-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.service-marquee {
  position: relative;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96), rgba(225,243,255,0.78));
  box-shadow: var(--soft-shadow);
}

.service-marquee::before,
.service-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 80px;
  height: 100%;
  pointer-events: none;
}

.service-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff, rgba(255,255,255,0));
}

.service-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff, rgba(255,255,255,0));
}

.service-track {
  display: flex;
  width: max-content;
  gap: 12px;
  padding: 16px;
  animation: service-scroll 28s linear infinite;
}

.service-track span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid rgba(13, 113, 200, 0.16);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

@keyframes service-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.products {
  position: relative;
  overflow: hidden;
}

.products::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(244,249,255,0.96), rgba(244,249,255,0.72) 48%, rgba(244,249,255,0.92)),
    url("assets/products-cleaning-supplies.jpg") center / cover no-repeat;
  opacity: 0.72;
}

.product-panel {
  position: relative;
  z-index: 1;
  align-self: center;
  grid-column: 2;
  padding: clamp(26px, 5vw, 42px);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(215, 230, 248, 0.86);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 12px;
  margin: 0 0 26px;
}

.product-list span {
  padding: 10px 13px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(13, 113, 200, 0.18);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: var(--soft-shadow);
}

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

.why-grid div {
  padding: 26px;
  background: linear-gradient(180deg, #ffffff, var(--green-soft));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.why-grid div:hover {
  transform: translateY(-5px);
  border-color: rgba(21, 154, 130, 0.3);
  box-shadow: 0 22px 44px rgba(14, 68, 139, 0.11);
}

.why-icon {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  margin-bottom: 18px;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--green);
}

.why-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.why-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.25;
}

.service-areas {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(24px, 6vw, 72px);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(225,243,255,0.78)),
    var(--paper);
}

.service-areas-copy {
  max-width: 640px;
}

.service-areas-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.zip-checker {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 30px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.zip-button {
  width: 100%;
}

.zip-result {
  min-height: 28px;
  margin: 0;
  padding: 14px 16px;
  color: var(--blue-dark);
  background: linear-gradient(180deg, #ffffff, var(--blue-pale));
  border: 1px solid rgba(13, 113, 200, 0.16);
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.55;
}

.zip-result.is-covered {
  color: #0b6659;
  background: linear-gradient(135deg, var(--green-soft), #ffffff);
  border-color: rgba(21, 154, 130, 0.3);
}

.zip-result.is-uncovered {
  color: #6b3b00;
  background: #fff8ec;
  border-color: rgba(214, 140, 13, 0.24);
}

.quote {
  align-items: start;
  background:
    linear-gradient(135deg, var(--blue-dark), var(--blue) 52%, var(--green));
  color: var(--white);
}

.quote .section-label,
.quote h2,
.quote-copy p {
  color: var(--white);
}

.quote-copy p {
  opacity: 0.88;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(2, 24, 58, 0.26);
}

.form-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-dark);
  font-weight: 900;
}

.form-topline span {
  width: 42px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-dark), var(--green-bright));
  border-radius: 8px;
}

label {
  display: grid;
  gap: 8px;
  color: #213a5a;
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 14px;
  color: var(--ink);
  background: #fbfdff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(18, 104, 214, 0.18);
  border-color: var(--blue);
}

.estimate-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  background: linear-gradient(135deg, var(--blue-soft), #f7fbff);
  border: 1px solid rgba(13, 113, 200, 0.15);
  border-radius: 8px;
}

.estimate-box span {
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 800;
}

.estimate-box strong {
  color: var(--green);
  font-size: 18px;
  text-align: right;
}

.form-button {
  width: 100%;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--blue-dark);
  font-weight: 800;
}

.site-footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background:
    linear-gradient(180deg, #ffffff, var(--blue-pale));
  border-top: 1px solid var(--line);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-dark), var(--blue-bright), var(--green-bright));
}

.footer-logo {
  width: min(210px, 42vw);
  height: auto;
}

.site-footer p {
  margin: 0;
}

.footer-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer a {
  color: var(--blue-dark);
  font-weight: 800;
}

.footer-phone {
  white-space: nowrap;
  transition: color 180ms ease;
}

.footer-phone:hover {
  color: var(--green);
}

.social-link {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--blue) !important;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: color 180ms ease, transform 180ms ease;
}

.social-link svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.social-link:hover {
  color: var(--blue-dark) !important;
  transform: translateY(-2px);
}

.reveal-ready {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal-ready {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1060px) {
  .alori-standard {
    grid-template-columns: repeat(3, 1fr);
  }

  .standard-intro {
    grid-column: 1 / -1;
    min-height: 86px;
  }

  .main-nav {
    gap: 14px;
    font-size: 13px;
  }

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

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

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

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .alori-standard {
    grid-template-columns: 1fr;
    margin: 0;
    border-left: 0;
    border-right: 0;
  }

  .standard-intro {
    grid-column: auto;
  }

  .standard-intro,
  .standard-item {
    min-height: 88px;
  }

  .standard-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a {
    padding: 10px 0;
  }

  .nav-cta {
    text-align: center;
  }

  .hero,
  .intro-grid,
  .products,
  .service-areas,
  .quote {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 420px;
  }

  .products::before {
    opacity: 0.48;
  }

  .product-panel {
    grid-column: auto;
  }

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

@media (max-width: 560px) {
  .brand-logo {
    height: 54px;
  }

  .hero-actions,
  .site-footer,
  .footer-actions,
  .estimate-box {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

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

  .service-track {
    animation-duration: 22s;
  }

  .hero-visual {
    min-height: 340px;
  }

  .room-card {
    height: 220px;
  }
}
