* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f1e1c;
  --muted: #6b6964;
  --sand: #f6f1ea;
  --sun: #ffb347;
  --clay: #e7d8c6;
  --deep: #2b2b2b;
  --accent: #1a4d7a;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

body {
  font-family: "Manrope", "Inter", sans-serif;
  color: var(--ink);
  background: #fbfaf8;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 24px 6vw 12px;
  background: #fffdf9;
  border-bottom: 1px solid #efe5d7;
}

.nav-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.nav-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.nav-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--muted);
}

.nav-bottom span {
  padding: 6px 10px;
  border-radius: 999px;
  background: #f3ece2;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 32px 6vw 90px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: linear-gradient(120deg, rgba(255, 179, 71, 0.25), rgba(255, 255, 255, 0.4)),
    url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1600&q=80")
    center/cover;
  border-radius: 28px;
  padding: 48px;
  box-shadow: var(--shadow);
}

.hero-content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(255, 255, 255, 0.84);
  padding: 28px;
  border-radius: 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--muted);
}

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: 1px solid var(--accent);
}

.button-outline {
  background: transparent;
  color: var(--accent);
}

.hero-side {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--deep);
}

.hero-side-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 22px;
  border-radius: 20px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-title {
  font-size: 1.8rem;
  line-height: 1.2;
}

.columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.column {
  flex: 1 1 220px;
  background: #ffffff;
  padding: 24px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.column.dark {
  background: var(--deep);
  color: #fff;
}

.column.soft {
  background: var(--sand);
}

.image-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.image-row img {
  flex: 1 1 240px;
  height: 220px;
  object-fit: cover;
}

.signal-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.signal-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.signal-dot {
  width: 12px;
  height: 12px;
  margin-top: 6px;
  background: var(--sun);
  border-radius: 50%;
  flex-shrink: 0;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  height: 160px;
  object-fit: cover;
}

.card .price {
  font-weight: 700;
  font-size: 1.1rem;
}

.split-feature {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  background: #fff;
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.split-feature .text {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split-feature img {
  flex: 1 1 260px;
  height: 260px;
  object-fit: cover;
}

.quote {
  font-style: italic;
  color: var(--deep);
  font-size: 1.05rem;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 28px;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #d8d2c8;
  font-size: 1rem;
  background: #fffdf9;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  align-self: flex-start;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 20;
}

.sticky-cta button {
  border: none;
  background: var(--sun);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

footer {
  background: #1d1c1a;
  color: #f4f0ea;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
  color: #d6d0c8;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 280px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 999px;
  border: 1px solid var(--accent);
  padding: 8px 12px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  font-size: 0.85rem;
}

.cookie-actions button.reject {
  background: transparent;
  color: var(--accent);
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  padding: 26px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 240px;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  align-items: center;
}

.service-row .meta {
  flex: 2 1 260px;
}

.service-row .price {
  flex: 1 1 140px;
  font-weight: 700;
  font-size: 1.1rem;
}

.service-row .cta {
  flex: 1 1 140px;
}

.page-hero {
  padding: 32px;
  border-radius: 26px;
  background: var(--clay);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 860px) {
  header {
    padding: 20px 5vw 12px;
  }

  main {
    padding: 24px 5vw 90px;
  }

  .hero {
    padding: 26px;
  }

  .sticky-cta {
    left: 20px;
    right: auto;
    bottom: 90px;
  }
}
