* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1f24;
  --muted: #5f6a72;
  --paper: #f7f6f2;
  --accent: #2f6f6a;
  --accent-2: #8b5e3c;
  --soft: #e9edf0;
  --edge: #d7dde2;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 20px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid var(--edge);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1454165205744-3b78555e5572?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 80px 6vw;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(22, 28, 32, 0.55);
}

.hero-content {
  position: relative;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: 2.6rem;
  margin: 0;
}

.btn,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 30px;
  border: 1px solid var(--accent);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.btn {
  background: var(--accent);
  color: #ffffff;
}

.btn-outline {
  color: var(--accent);
  background: transparent;
}

.section {
  padding: 60px 6vw;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.section-title {
  font-size: 1.8rem;
  margin: 0 0 16px;
}

.soft-bg {
  background: var(--paper);
}

.layered-bg {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.layered-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 24, 28, 0.62);
}

.layered-bg .split,
.layered-bg .section-content {
  position: relative;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: #ffffff;
  border: 1px solid var(--edge);
  border-radius: 16px;
  padding: 20px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.image-frame {
  background: var(--soft);
  border-radius: 14px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.inline-image {
  height: 280px;
  object-fit: cover;
  width: 100%;
  border-radius: 18px;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  background: #ffffff;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid var(--edge);
  font-size: 0.9rem;
}

.form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--edge);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--edge);
  font-family: inherit;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw;
  border-top: 1px solid var(--edge);
  background: #ffffff;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-columns div {
  flex: 1 1 220px;
}

.footer a {
  color: var(--ink);
  text-decoration: none;
}

.disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 20px;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #ffffff;
  border: 1px solid var(--edge);
  border-radius: 40px;
  padding: 10px 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 8px 30px rgba(16, 24, 32, 0.18);
  z-index: 20;
}

.sticky-cta span {
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  right: 16px;
  background: #ffffff;
  border: 1px solid var(--edge);
  border-radius: 16px;
  padding: 16px;
  display: none;
  z-index: 30;
  box-shadow: 0 8px 30px rgba(16, 24, 32, 0.12);
}

.cookie-banner.visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.simple-hero {
  padding: 60px 6vw 30px;
  background: var(--soft);
}

.page-section {
  padding: 30px 6vw 60px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.service-item {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid var(--edge);
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
}

.service-item img {
  width: 220px;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent-2);
}

.no-form-note {
  background: var(--paper);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--edge);
}
