:root {
  --bg: #f7f5f2;
  --ink: #1b1a18;
  --muted: #5d5a55;
  --accent: #3a6b6f;
  --accent-soft: #d7e3e1;
  --warm: #efe6dc;
  --card: #ffffff;
  --shadow: 0 12px 30px rgba(27, 26, 24, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

header {
  padding: 24px 6vw 8px;
}

.topline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}

.brand {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.nav a {
  font-size: 14px;
}

.ad-label {
  background: var(--accent-soft);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
}

main {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding: 24px 6vw 80px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-row .text-block {
  flex: 1 1 320px;
}

.asym-row .media-block {
  flex: 1 1 320px;
  background: var(--warm);
  padding: 14px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.hero .hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero .hero-media {
  flex: 1 1 360px;
  background: var(--accent-soft);
  border-radius: 28px;
  padding: 16px;
  position: relative;
}

.hero .hero-media img {
  border-radius: 20px;
  height: 100%;
}

.hero .overlap-card {
  position: absolute;
  bottom: -18px;
  left: 24px;
  background: var(--card);
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 240px;
}

.button {
  background: var(--accent);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 15px;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--card);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 16px;
  background: var(--accent-soft);
}

.band {
  background: var(--warm);
  padding: 32px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.service-item .price {
  font-weight: 600;
  color: var(--accent);
}

.inline-cta {
  font-weight: 600;
}

.form-shell {
  background: var(--card);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d1ccc6;
  font-size: 14px;
  flex: 1 1 220px;
}

footer {
  background: #1f2322;
  color: #f4f4f2;
  padding: 40px 6vw;
}

footer a {
  color: #f4f4f2;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 200px;
}

.notice {
  font-size: 13px;
  color: #d6d6d6;
}

.sticky-cta {
  position: sticky;
  top: 12px;
  align-self: flex-start;
  background: var(--card);
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: none;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero {
  background: var(--accent-soft);
  padding: 28px;
  border-radius: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.page-hero img {
  border-radius: 18px;
  height: 220px;
  width: 100%;
  max-width: 360px;
  background: var(--warm);
}

.list-block {
  background: var(--card);
  padding: 20px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.disclaimer {
  background: #efe9e1;
  padding: 18px;
  border-radius: 18px;
  font-size: 14px;
}

@media (max-width: 720px) {
  .hero .overlap-card {
    position: static;
  }
}
