:root {
  --navy: #0f2433;
  --charcoal: #18242c;
  --slate: #52616b;
  --line: #d8e1e6;
  --soft: #f3f7f8;
  --white: #ffffff;
  --blue: #1b7fb8;
  --green: #2f9b72;
  --green-dark: #207052;
  --shadow: 0 18px 50px rgba(15, 36, 51, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 225, 230, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-weight: 800;
  font-size: 1.25rem;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 1.05rem;
  color: var(--navy);
}

.brand small {
  margin-top: 3px;
  color: var(--slate);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--slate);
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a:hover,
.text-link:hover {
  color: var(--blue);
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  font-weight: 800;
}

.header-call svg,
.btn svg,
.text-link svg,
.service-strip svg,
.feature-list svg,
.manager-points svg,
.schedule-grid svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 24, 34, 0.9), rgba(10, 24, 34, 0.72) 47%, rgba(10, 24, 34, 0.28)),
    linear-gradient(0deg, rgba(10, 24, 34, 0.24), rgba(10, 24, 34, 0.24));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 850px);
  padding: 110px clamp(20px, 5vw, 72px) 70px;
}

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

.hero .eyebrow,
.final-cta .eyebrow {
  color: #8ce0bd;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1.25;
}

.tagline {
  margin-bottom: 18px;
  color: #e9f5f8;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 700;
}

.hero-copy {
  max-width: 720px;
  color: #d7e5ea;
  font-size: 1.12rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 32px rgba(47, 155, 114, 0.28);
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.75);
}

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

.service-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
}

.service-strip span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #edf8fa;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.section {
  padding: clamp(70px, 9vw, 124px) clamp(20px, 5vw, 72px);
}

.intro-band {
  background: var(--navy);
  color: var(--white);
}

.intro-band h2,
.final-cta h2 {
  color: var(--white);
}

.intro-band p {
  color: #dce8ec;
}

.section-grid,
.manager-section,
.two-column,
.upholstery-section,
.local-section,
.value-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.section-heading {
  width: min(100%, 760px);
  margin-bottom: 38px;
}

.section-heading p {
  color: var(--slate);
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--green);
  font-weight: 800;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

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

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

.card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(15, 36, 51, 0.06);
}

.card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  color: var(--blue);
}

.card p {
  margin-bottom: 0;
  color: var(--slate);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
  background: var(--soft);
}

.split-image {
  min-height: 620px;
  border-radius: 8px;
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.split-content {
  align-self: center;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 30px;
}

.feature-list p,
.manager-points p {
  display: flex;
  gap: 12px;
  margin: 0;
  color: var(--slate);
}

.feature-list svg,
.manager-points svg {
  margin-top: 3px;
  color: var(--green);
}

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

.value-card {
  min-height: 430px;
  padding: clamp(30px, 5vw, 54px);
  border-radius: 8px;
  background: var(--soft);
}

.value-card p {
  color: var(--slate);
}

.accent-card {
  color: var(--white);
  background: var(--navy);
}

.accent-card h2,
.accent-card p {
  color: var(--white);
}

.promise-section {
  background: var(--soft);
}

.manager-section {
  background: var(--navy);
  color: var(--white);
}

.manager-section h2,
.manager-section p {
  color: var(--white);
}

.manager-points {
  display: grid;
  gap: 18px;
}

.two-column {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.78)),
    url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.two-column article {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(216, 225, 230, 0.88);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
}

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

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.process-list article {
  min-height: 250px;
  padding: 28px;
  border-right: 1px solid var(--line);
  background: var(--white);
}

.process-list article:last-child {
  border-right: 0;
}

.process-list span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--green);
  font-weight: 800;
}

.process-list p,
.upholstery-section p,
.local-section p {
  color: var(--slate);
}

.upholstery-section {
  background: var(--soft);
}

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

.schedule-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 92px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: var(--white);
  font-weight: 800;
  text-align: center;
}

.schedule-grid svg {
  color: var(--blue);
}

.local-section {
  background: var(--soft);
}

.final-cta {
  padding: clamp(76px, 10vw, 140px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(15, 36, 51, 0.94), rgba(15, 36, 51, 0.84)),
    url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.final-cta p {
  max-width: 720px;
  color: #dce8ec;
}

.final-cta h2 {
  max-width: 900px;
}

.contact-layout {
  width: min(100%, 920px);
  margin-top: 34px;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.quote-form label {
  display: grid;
  gap: 8px;
}

.quote-form span {
  color: #edf8fa;
  font-size: 0.9rem;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(216, 225, 230, 0.72);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--navy);
  background: var(--white);
  font: inherit;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form .full,
.form-footer,
.form-status {
  grid-column: 1 / -1;
}

.form-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #edf8fa;
  font-weight: 800;
}

.form-status[data-state="success"] {
  color: #8ce0bd;
}

.form-status[data-state="error"] {
  color: #ffd2d2;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  padding: 42px clamp(20px, 5vw, 72px);
  color: #dce8ec;
  background: #08151d;
}

.site-footer h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer p {
  margin-bottom: 8px;
}

.site-footer a:hover {
  color: #8ce0bd;
}

.footer-brand strong {
  color: var(--white);
}

.footer-brand small {
  color: #adc1c9;
}

@media (max-width: 1180px) {
  .industry-grid,
  .process-list,
  .schedule-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .process-list article {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 820px) {
  .site-header {
    position: relative;
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
    padding-top: 8px;
  }

  .header-call {
    padding: 0 12px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(10, 24, 34, 0.92), rgba(10, 24, 34, 0.74));
  }

  .section-grid,
  .manager-section,
  .two-column,
  .upholstery-section,
  .local-section,
  .value-section,
  .split-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .split-image {
    min-height: 380px;
  }

  .industry-grid,
  .card-grid,
  .process-list,
  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .process-list article {
    min-height: auto;
    border-right: 0;
  }

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

  .quote-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .header-call {
    width: 100%;
  }

  .hero-content {
    padding-top: 72px;
  }

  .hero-actions,
  .section-actions,
  .form-footer,
  .hero-actions .btn,
  .section-actions .btn,
  .form-footer .btn {
    width: 100%;
  }

  .service-strip span {
    width: 100%;
  }

  .card,
  .value-card,
  .two-column article {
    padding: 22px;
  }
}
