:root {
  color-scheme: light;
  --bg: #ffffff;
  --ink: #1c1c1c;
  --muted: #5e5e5e;
  --soft: #f4f2ef;
  --line: #e4e0da;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
}

.demo-storefront {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 42px 0 110px;
}

.demo-hero {
  min-height: 250px;
  display: grid;
  align-content: center;
  border-bottom: 1px solid var(--line);
}

.label {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 86px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

.demo-hero p:not(.label) {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  padding: 44px 0 120px;
}

.image-block {
  height: 300px;
  background: var(--soft);
}

.image-block.pale {
  background: linear-gradient(135deg, #efefed, #faf8f5);
}

.image-block.blush {
  background: linear-gradient(135deg, #f1ddd3, #fbf4ee);
}

.price {
  margin: 18px 0 12px;
  font-size: 20px;
}

.demo-grid h2 {
  max-width: 430px;
  margin: 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
}

.stars,
.bag {
  margin: 18px 0 0;
  font-size: 18px;
}

.bag {
  margin-top: 48px;
}

.services-preview {
  padding-top: 28px;
}

.services-preview h2 {
  margin: 0 0 44px;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

.service-tiles div {
  height: 360px;
  background: linear-gradient(135deg, #ded8cf, #f8f4ee);
}

@media (max-width: 720px) {
  .demo-storefront {
    width: min(100% - 28px, 1120px);
    padding-top: 28px;
  }

  .demo-grid,
  .service-tiles {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .demo-grid {
    padding-bottom: 70px;
  }
}
