* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #191919;
  --muted: #6d6a67;
  --accent: #7a3b2e;
  --accent-dark: #55271f;
  --sand: #f4efe9;
  --sage: #d9e1d8;
  --cream: #fff9f2;
  --shadow: 0 18px 50px rgba(25, 25, 25, 0.08);
}

body {
  font-family: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

.page {
  overflow-x: hidden;
}

.floating-nav {
  position: absolute;
  top: 28px;
  right: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255, 255, 255, 0.92);
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  z-index: 10;
}

.floating-nav a {
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.floating-nav a.highlight {
  color: var(--accent);
  font-weight: 600;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 96px 6vw 72px;
  background: linear-gradient(120deg, #fff, var(--sand));
  position: relative;
}

.hero .hero-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 720px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.6rem);
  line-height: 1.1;
}

.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.hero-image {
  max-width: 900px;
  align-self: flex-end;
  box-shadow: var(--shadow);
}

.section {
  padding: 72px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.asymmetric {
  background: var(--cream);
  position: relative;
}

.section.asymmetric::after {
  content: "";
  position: absolute;
  right: 12%;
  top: 20%;
  width: 160px;
  height: 160px;
  background: var(--sage);
  border-radius: 40px;
  transform: rotate(12deg);
  z-index: 0;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .text-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 620px;
  z-index: 1;
}

.muted {
  color: var(--muted);
}

.panel {
  background: #fff;
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel.highlight {
  background: var(--accent);
  color: #fff;
}

.panel.highlight a {
  color: #fff;
  text-decoration: underline;
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  padding: 22px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.card img {
  border-radius: 16px;
}

.cta-strip {
  background: var(--ink);
  color: #fff;
  padding: 32px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing .service {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  padding: 22px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
}

.pricing .price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

.form-section {
  background: var(--sand);
  border-radius: 30px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

input,
select,
textarea {
  border: 1px solid #d8d2cc;
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 16px;
  background: #fff;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-hint {
  font-size: 13px;
  color: var(--muted);
}

.footer {
  padding: 48px 6vw 64px;
  background: #111;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
  color: #d8d2cc;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: var(--shadow);
  z-index: 12;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 15;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #ece6df;
  color: var(--ink);
}

.page-title {
  padding: 96px 6vw 48px;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.content-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.image-band {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-band img {
  border-radius: 28px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero .hero-top {
    width: 48%;
  }

  .hero-image {
    width: 46%;
  }

  .split {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .split .text-block {
    width: 52%;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .pricing {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .pricing .service {
    width: calc(50% - 12px);
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-grid .panel {
    flex: 1;
  }

  .image-band {
    flex-direction: row;
  }
}
