* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f252b;
  --muted: #5d6670;
  --sand: #f4f1ec;
  --stone: #e8dfd1;
  --slate: #dfe5ea;
  --olive: #e6ece2;
  --clay: #e9d7c9;
  --accent: #2f5d62;
  --accent-dark: #23464a;
  --line: #d7d7d7;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

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;
}

img.cover-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 20px 6vw;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--olive);
  padding: 6px 10px;
  border-radius: 999px;
}

.section {
  padding: 64px 6vw;
}

.section.alt {
  background: #ffffff;
}

.section.muted {
  background: var(--olive);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.content {
  flex: 1 1 320px;
}

.media {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero-title {
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  margin: 12px 0;
}

.section-title {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  margin-bottom: 12px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.button-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  background: var(--accent);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn.ghost {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.btn:hover,
.btn:active {
  background: var(--accent-dark);
  color: #ffffff;
}

.btn.secondary:hover,
.btn.secondary:active {
  background: var(--accent);
  color: #ffffff;
}

.btn.ghost:hover,
.btn.ghost:active {
  background: var(--accent-dark);
  color: #ffffff;
}

.image-frame {
  padding: 12px;
  border-radius: 18px;
  background: var(--stone);
}

.frame-sand {
  background: var(--stone);
}

.frame-slate {
  background: var(--slate);
}

.frame-olive {
  background: var(--olive);
}

.frame-clay {
  background: var(--clay);
}

.service-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  gap: 18px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  align-items: center;
  border: 1px solid var(--line);
}

.service-card img {
  width: 130px;
  height: 100px;
  border-radius: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.highlight-box {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.testimonial {
  padding: 18px;
  border-left: 3px solid var(--accent);
  background: #ffffff;
  margin-bottom: 16px;
}

.form-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

textarea {
  min-height: 120px;
}

.footer {
  padding: 48px 6vw;
  background: #1a1f24;
  color: #f7f7f7;
}

.footer a {
  color: #f7f7f7;
}

.footer-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 200px;
}

.disclaimer {
  margin-top: 24px;
  font-size: 0.9rem;
  color: #d2d7db;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.sticky-cta:hover,
.sticky-cta:active {
  background: var(--accent-dark);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid var(--line);
  max-width: 320px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  z-index: 11;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.inline-list {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  flex-wrap: wrap;
}

.page-hero {
  background: #ffffff;
  padding: 48px 6vw 24px;
}

.meta-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
}

.layered {
  position: relative;
  overflow: hidden;
}

.layered::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: var(--clay);
  opacity: 0.4;
  top: -80px;
  right: 8%;
}

.layered .content,
.layered .media {
  position: relative;
  z-index: 1;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

.map-box {
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
}
