:root {
  color-scheme: light;
  --ink: #20303a;
  --muted: #63717a;
  --line: #d9e2e5;
  --paper: #fffdf9;
  --soft: #f6efe6;
  --wash: #eaf6f8;
  --blue: #1d6f8b;
  --blue-dark: #15516b;
  --mint: #dff3ec;
  --shadow: 0 20px 60px rgba(32, 48, 58, 0.12);
  font-family: Arial, "Noto Sans Hebrew", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, "Noto Sans Hebrew", "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  min-height: 72px;
}

.brand {
  font-size: 1.08rem;
  font-weight: 800;
}

.header-phone {
  color: var(--blue-dark);
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(270deg, rgba(255, 253, 249, 0.96), rgba(255, 253, 249, 0.76)),
    url("assets/laundry-hero.png") center / cover;
}

.hero-content {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue-dark);
  font-size: 0.95rem;
  font-weight: 800;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: clamp(3rem, 11vw, 6.7rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.75rem, 5vw, 2.6rem);
  line-height: 1.18;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 30px;
  color: #33444e;
  font-size: clamp(1.15rem, 4vw, 1.55rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
}

.button.primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 28px rgba(29, 111, 139, 0.22);
}

.button.secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--blue-dark);
}

.button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(29, 111, 139, 0.32);
  outline-offset: 3px;
}

.section {
  padding: 72px 0;
}

.section.muted {
  background: var(--wash);
}

.section-inner,
.contact-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section-heading {
  max-width: 620px;
}

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

.service-card {
  min-height: 160px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(32, 48, 58, 0.06);
}

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

.service-card.wide {
  background: var(--mint);
}

.split,
.two-columns,
.contact-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: start;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 16px 44px 16px 18px;
  border: 1px solid rgba(29, 111, 139, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.65);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  right: 16px;
  top: 17px;
  content: "✓";
  color: var(--blue-dark);
  font-weight: 900;
}

.hours-list {
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
}

.hours-list div + div {
  border-top: 1px solid var(--line);
}

.hours-list dt,
.hours-list dd {
  margin: 0;
  font-weight: 800;
}

.hours-list dd {
  color: var(--blue-dark);
}

.contact {
  padding: 72px 0;
  background: var(--soft);
}

.contact-inner {
  padding: 34px;
  border: 1px solid rgba(32, 48, 58, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
}

.contact-text {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-details {
  display: grid;
  gap: 12px;
}

.contact-details a,
.contact-details span {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(32, 48, 58, 0.12);
  color: var(--ink);
  font-weight: 700;
}

.contact-actions {
  grid-column: 1 / -1;
}

.site-footer {
  min-height: 76px;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card.wide {
    grid-column: 1 / -1;
  }

  .split,
  .two-columns,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 64px;
  }

  .hero {
    min-height: 520px;
    background:
      linear-gradient(180deg, rgba(255, 253, 249, 0.97), rgba(255, 253, 249, 0.78)),
      url("assets/laundry-hero.png") center / cover;
  }

  .hero-content {
    padding: 50px 0 70px;
  }

  .section,
  .contact {
    padding: 54px 0;
  }

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

  .service-card {
    min-height: auto;
  }

  .actions,
  .button {
    width: 100%;
  }

  .contact-inner {
    padding: 24px;
  }

  .site-footer {
    flex-direction: column;
    justify-content: center;
    gap: 2px;
  }
}
