:root {
  color-scheme: light;
  --ink: #15171a;
  --muted: #626a72;
  --paper: #f8f7f2;
  --white: #ffffff;
  --line: #dde2dc;
  --accent: #007f73;
  --accent-2: #ff6848;
  --soft: #eaf2ec;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.demo-shell {
  min-height: 100vh;
}

.demo-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 70px;
  padding: 0.9rem 4vw;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.demo-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 900;
  text-decoration: none;
}

.demo-logo span:first-child {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--white);
}

.demo-nav-links {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.demo-nav-links a,
.demo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.7rem 0.95rem;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.demo-nav-links a {
  color: var(--muted);
}

.demo-button {
  border: 1px solid transparent;
  background: var(--accent);
  color: var(--white);
}

.demo-button.alt {
  background: var(--ink);
}

.demo-button.ghost {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.demo-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  min-height: 640px;
  background: var(--soft);
}

.demo-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4vw;
}

.demo-kicker,
.demo-label {
  margin: 0 0 0.7rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.demo-hero h1 {
  max-width: 720px;
  margin: 0 0 1rem;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0;
}

.demo-hero p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.16rem;
}

.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.demo-photo {
  min-height: 520px;
  background:
    linear-gradient(135deg, rgba(21, 23, 26, 0.08), rgba(21, 23, 26, 0.4)),
    var(--demo-image) center/cover no-repeat;
}

.demo-section {
  padding: 4.8rem 4vw;
}

.demo-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2rem;
}

.demo-heading h2 {
  max-width: 720px;
  margin: 0;
  font-size: 2.35rem;
  line-height: 1.08;
  letter-spacing: 0;
}

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

.demo-card,
.demo-panel,
.demo-contact {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(21, 23, 26, 0.06);
}

.demo-card {
  padding: 1.2rem;
}

.demo-card strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.demo-card p,
.demo-contact p,
.demo-panel p {
  color: var(--muted);
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.price-row:last-child {
  border-bottom: 0;
}

.demo-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: 1rem;
  align-items: start;
}

.demo-panel,
.demo-contact {
  padding: 1.35rem;
}

.hours {
  display: grid;
  gap: 0.55rem;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--line);
}

.demo-status {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  color: var(--accent);
  font-weight: 800;
}

.demo-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 4vw;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

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

.pizza {
  --accent: #b83228;
  --accent-2: #1c8b67;
  --soft: #f5eadf;
}

.frisor {
  --accent: #6c4ad7;
  --accent-2: #00a58a;
  --soft: #eef0f8;
}

.blomster {
  --accent: #2d7a48;
  --accent-2: #d9576b;
  --soft: #edf4e6;
}

.kafe {
  --accent: #006e83;
  --accent-2: #e0aa2f;
  --soft: #e9f2f3;
}

.hud {
  --accent: #a44b68;
  --accent-2: #007f73;
  --soft: #f3edf0;
}

@media (max-width: 900px) {
  .demo-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .demo-nav-links {
    width: 100%;
    overflow-x: auto;
  }

  .demo-hero,
  .demo-split {
    grid-template-columns: 1fr;
  }

  .demo-hero h1 {
    font-size: 2.8rem;
  }

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

@media (max-width: 620px) {
  .demo-hero-copy,
  .demo-section {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .demo-hero h1 {
    font-size: 2.25rem;
  }

  .demo-heading {
    align-items: start;
    flex-direction: column;
  }

  .demo-heading h2 {
    font-size: 1.8rem;
  }

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

  .demo-footer {
    flex-direction: column;
  }
}
