* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1a1d22;
  --muted: #5c6470;
  --brand: #2f6d67;
  --accent: #e3a04f;
  --paper: #f7f4ef;
  --panel: #ffffff;
  --shadow: 0 16px 40px rgba(26, 29, 34, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background: var(--panel);
  padding: 22px 6vw 8px;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  background: var(--panel);
}

.hero-media,
.hero-content {
  flex: 1 1 50%;
  min-width: 280px;
}

.hero-media {
  background: #d8d2c8;
}

.hero-content {
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  margin: 0;
}

.hero p {
  color: var(--muted);
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  background: var(--brand);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.btn.secondary {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--brand);
  box-shadow: none;
}

.section {
  padding: 70px 6vw;
}

.section.alt {
  background: #ede8df;
}

.section.soft {
  background: #ffffff;
}

.section.mist {
  background: #e6e0d6;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 45%;
  min-width: 260px;
}

.panel {
  background: var(--panel);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 260px;
  min-width: 220px;
  background: var(--panel);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 600;
  color: var(--brand);
}

.quote {
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
  margin: 0;
}

.service-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-form label {
  font-weight: 600;
}

.service-form select,
.service-form input,
.service-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6d2cb;
  font-size: 1rem;
  background: #fff;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: var(--ink);
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
  z-index: 20;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw 60px;
  background: #131619;
  color: #f5f4f1;
}

.footer a {
  color: inherit;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px 20px;
  display: none;
  z-index: 50;
}

.cookie-banner.visible {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--brand);
  color: #fff;
}

.cookie-actions .reject {
  background: #ece7df;
  color: var(--ink);
}

.img-frame {
  background: #d6d0c6;
  border-radius: 20px;
  overflow: hidden;
}

.meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.section-title {
  margin: 0 0 18px;
  font-size: clamp(1.6rem, 2.3vw, 2.1rem);
}
