* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f6f4f0;
  --ink: #1d1c19;
  --muted: #5a5854;
  --accent: #2f5d62;
  --accent-2: #c9a36a;
  --surface: #ffffff;
  --soft: #ede8df;
  --border: #dad3c7;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  padding: 24px 6vw 8px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 8px;
  border-radius: 999px;
}

.nav-links a:hover {
  background: var(--soft);
}

main {
  flex: 1;
}

.section {
  padding: 56px 6vw;
}

.section.tight {
  padding-top: 32px;
  padding-bottom: 32px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > * {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--muted);
}

h1, h2, h3 {
  margin: 0 0 16px;
  line-height: 1.2;
}

h1 {
  font-size: clamp(32px, 4vw, 48px);
}

h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  border: 1px solid var(--accent);
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: #24484b;
  transform: translateY(-1px);
}

.btn.secondary {
  background: var(--surface);
  color: var(--accent);
  border-color: var(--accent);
}

.image-frame {
  background: var(--soft);
  border-radius: 18px;
  overflow: hidden;
}

.image-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  min-height: 360px;
  background-size: cover;
  background-position: center;
}

#hero-image {
  background-color: #d6d0c4;
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
}

.stat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.stat {
  flex: 1 1 160px;
  background: var(--surface);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 600;
  color: var(--accent);
}

.section-bg {
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

#trust-bg {
  background-color: #3f4c4f;
  background-image: url("https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=1400&q=80");
}

.section-bg .panel {
  background: rgba(29, 28, 25, 0.6);
  padding: 24px;
  border-radius: 18px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-panel {
  background: var(--surface);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input, select, textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 14px;
  background: #ffffff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
}

.site-footer {
  background: #1d1c19;
  color: #f7f2ea;
  padding: 32px 6vw 42px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.footer-grid > * {
  flex: 1 1 220px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.legal {
  font-size: 12px;
  color: #d4cbbd;
  margin-top: 20px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  display: none;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.cookie-banner .actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-banner button {
  border-radius: 999px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  background: var(--soft);
  cursor: pointer;
}

.cookie-banner button.primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.note-box {
  background: var(--soft);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--border);
}

.page-hero {
  padding: 40px 6vw 10px;
}

.simple-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.simple-grid > * {
  flex: 1 1 280px;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 18px 0;
}

.banner-image {
  min-height: 240px;
  background-size: cover;
  background-position: center;
}

#services-banner {
  background-color: #d7d1c7;
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
}

.center {
  text-align: center;
}

.muted {
  color: var(--muted);
}
