* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1a1a1a;
  --muted: #5a5a5a;
  --sand: #f2efe9;
  --stone: #e7e2d9;
  --clay: #d9d0c3;
  --coal: #222222;
  --accent: #6c4f3d;
  --accent-light: #f6efe9;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #faf8f5;
  line-height: 1.6;
}

img {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  background: #ffffff;
  border-bottom: 1px solid var(--stone);
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 260px;
  text-align: center;
}

.nav a {
  font-size: 0.95rem;
}

.main {
  flex: 1;
}

.section {
  padding: 72px 6vw;
}

.section-alt {
  background: var(--sand);
}

.section-dark {
  background: var(--coal);
  color: #ffffff;
}

.hero-backdrop {
  background-image: linear-gradient(135deg, rgba(34, 34, 34, 0.75), rgba(34, 34, 34, 0.2)), url("https://images.unsplash.com/photo-1497215728101-856f4ea42174?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.texture-band {
  background-image: linear-gradient(135deg, rgba(242, 239, 233, 0.85), rgba(242, 239, 233, 0.95)), url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.split {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.hero {
  position: relative;
  padding-top: 64px;
}

.hero-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  margin-top: 24px;
}

.media-frame {
  background: var(--clay);
  padding: 12px;
  border-radius: 18px;
}

.media-frame img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.offset-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-left: 10%;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card-row.spaced {
  margin-top: 28px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  object-fit: cover;
}

.price {
  font-weight: 600;
  color: var(--accent);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.cta-row.spaced {
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.light {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-link {
  font-weight: 600;
  color: var(--accent);
}

.form-wrapper {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--clay);
  font-size: 1rem;
  background: #ffffff;
}

.service-picker {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.service-option {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  background: var(--accent-light);
}

.footer {
  background: #ffffff;
  padding: 32px 6vw;
  border-top: 1px solid var(--stone);
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
  max-width: 320px;
  display: none;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.page-hero {
  padding: 56px 6vw 40px;
  background: var(--sand);
}

.legal-content {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.06);
}

@media (max-width: 860px) {
  .offset-block {
    margin-left: 0;
  }

  .nav {
    flex-direction: column;
    gap: 12px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
