* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c1a16;
  --muted: #5f5a52;
  --sand: #f7f2ec;
  --peach: #f2d9c2;
  --olive: #9e9b78;
  --smoke: #ece6df;
  --accent: #b84e3b;
  --accent-dark: #7c2e20;
  --line: #ded3c8;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(28, 26, 22, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fffdfb;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 7vw;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 251, 0.95);
}

.nav .brand {
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 0.95rem;
}

.nav-cta {
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 600;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 48px 7vw 60px;
  background: linear-gradient(120deg, var(--sand), #fff);
}

.hero-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.1;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-outline {
  border-color: var(--ink);
  background: transparent;
}

.hero-media {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.offset-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 60px 7vw;
  position: relative;
}

.offset-section .floating-tag {
  align-self: flex-start;
  background: var(--peach);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.offset-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-row .panel {
  background: var(--smoke);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.offset-row .panel.alt {
  background: #fff;
  border: 1px solid var(--line);
}

.split-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
}

.service-card .price {
  font-weight: 700;
  color: var(--accent-dark);
}

.testimonial-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--sand);
  padding: 36px 7vw;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

.story-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 60px 7vw;
  background: #fff;
}

.story-section .columns {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.image-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.image-row img {
  flex: 1 1 220px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.cta-slab {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 50px 7vw;
  background: var(--olive);
  color: #fdfbf8;
}

.cta-slab .btn {
  align-self: flex-start;
  background: #fdfbf8;
  color: var(--ink);
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 60px 7vw 80px;
  background: var(--smoke);
}

.form-card {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 7vw 40px;
  border-top: 1px solid var(--line);
  background: #fff;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-weight: 600;
}

.page-title {
  padding: 36px 7vw 12px;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.simple-section {
  padding: 32px 7vw 50px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card {
  background: var(--sand);
  padding: 24px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-page p {
  max-width: 780px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-top {
    max-width: 520px;
  }

  .offset-row {
    flex-direction: row;
  }

  .offset-row .panel {
    flex: 1;
  }

  .split-wrap {
    flex-direction: row;
    align-items: center;
  }

  .split-wrap.reverse {
    flex-direction: row-reverse;
  }

  .story-section .columns {
    flex-direction: row;
  }

  .story-section .columns > div {
    flex: 1;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 250px;
  }
}
