:root {
  color-scheme: light;
  --ink: #1b1a17;
  --muted: #5f5b52;
  --accent: #b44a2c;
  --accent-soft: #f2d7cf;
  --surface: #faf7f2;
  --surface-dark: #eee6db;
  --highlight: #f7efe0;
  --border: #d8cbbc;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-strip {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 24px 0;
}

.brand {
  font-size: 1.5rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-row a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-row a:hover {
  border-bottom-color: var(--accent);
  color: var(--ink);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-copy h1 {
  font-size: 2.4rem;
  margin: 0;
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button.outline {
  background: transparent;
  color: var(--ink);
}

.button.accent {
  background: var(--accent);
  border-color: var(--accent);
}

.button:hover {
  transform: translateY(-2px);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 0.95rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  z-index: 50;
}

.magazine-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 22px 24px;
}

.magazine-row.alt {
  background: var(--highlight);
}

.magazine-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.magazine-block h2,
.magazine-block h3,
.magazine-block h4 {
  margin: 0;
}

.magazine-block p {
  margin: 0;
  color: var(--muted);
}

.magazine-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--border);
}

.service-price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
}

.testimonial {
  border-left: 3px solid var(--accent);
  padding-left: 14px;
  color: var(--muted);
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-shell label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.95rem;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 1rem;
}

.form-message {
  font-size: 0.9rem;
  color: var(--accent);
}

.footer {
  margin-top: auto;
  padding: 30px 24px 40px;
  background: var(--surface-dark);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  right: 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 60;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width: 900px) {
  .top-strip {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    padding: 24px 60px 0;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
    padding: 32px 60px;
  }

  .hero-copy {
    flex: 1.1;
  }

  .hero-image {
    flex: 1;
  }

  .magazine-row {
    flex-direction: row;
    padding: 28px 60px;
  }

  .magazine-row.reverse {
    flex-direction: row-reverse;
  }

  .magazine-block {
    flex: 1;
  }

  .magazine-grid {
    flex: 1.2;
  }

  .magazine-grid.two-up {
    flex-direction: row;
  }

  .service-card {
    flex: 1;
  }

  .image-stack {
    flex-direction: row;
  }
}
