* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c1c1a;
  --muted: #5d5b57;
  --sand: #f7f2ec;
  --olive: #5f6d3a;
  --brick: #c96f4b;
  --sky: #e7eff3;
  --paper: #ffffff;
  --shadow: 0 18px 45px rgba(17, 17, 17, 0.12);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 7%;
  background: var(--paper);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.brand span {
  color: var(--muted);
  font-size: 0.9rem;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-color: var(--ink);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 52px 7% 60px;
  background: linear-gradient(120deg, var(--sand), var(--sky));
}

.hero .hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: 2.3rem;
  line-height: 1.2;
}

.hero p {
  color: var(--muted);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-visual img {
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-visual .floating-card {
  position: absolute;
  left: 5%;
  bottom: -18px;
  background: var(--paper);
  padding: 16px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  max-width: 220px;
}

.section {
  padding: 60px 7%;
}

.section-muted {
  background: var(--sand);
}

.section-sky {
  background: var(--sky);
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.asym-row.reverse {
  flex-direction: column;
}

.asym-row .block {
  background: var(--paper);
  padding: 26px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.asym-row .block.offset {
  margin-left: 6%;
  border-left: 6px solid var(--brick);
}

.asym-row .block.offset-small {
  margin-right: 8%;
  border-left: 6px solid var(--olive);
}

.tag {
  display: inline-flex;
  background: rgba(95, 109, 58, 0.12);
  color: var(--olive);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
}

.btn-accent {
  background: var(--brick);
  color: var(--paper);
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--paper);
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  border-radius: 12px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: 16px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.service-item .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--olive);
}

.service-item .meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.quote {
  background: var(--paper);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border-left: 6px solid var(--brick);
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--paper);
  padding: 26px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 0.95rem;
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inline-link {
  color: var(--brick);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
  z-index: 10;
}

.footer {
  padding: 30px 7% 40px;
  background: #111;
  color: #f5f1ea;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.footer small {
  color: rgba(245, 241, 234, 0.7);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.mini-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.side-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.badge {
  background: rgba(201, 111, 75, 0.18);
  color: var(--brick);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .hero-content {
    flex: 1;
  }

  .hero-visual {
    flex: 1;
  }

  .asym-row {
    flex-direction: row;
    align-items: stretch;
  }

  .asym-row.reverse {
    flex-direction: row-reverse;
  }

  .asym-row .block {
    flex: 1;
  }

  .card-stack {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-item {
    flex: 1;
    min-width: 240px;
  }

  .split-list {
    flex-direction: row;
  }

  .form-shell {
    max-width: 520px;
  }

  .cookie-banner {
    left: auto;
    right: 30px;
    max-width: 420px;
  }
}
