/* Base */
:root {
  --bg: #f6f3ef;
  --ink: #1f1f1f;
  --muted: #5c5c5c;
  --accent: #0f766e;
  --accent-dark: #0b524d;
  --paper: #ffffff;
  --sand: #e9e2d8;
  --stone: #d4c7b6;
}

* {
  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 {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

/* Navigation */
.top-nav {
  background: var(--paper);
  border-bottom: 1px solid var(--sand);
}

.top-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  max-width: 220px;
  text-align: right;
}

/* Sections */
.section {
  padding: 64px 0;
}

.section.compact {
  padding: 40px 0;
}

.split-section {
  display: flex;
  align-items: stretch;
  gap: 34px;
  flex-wrap: wrap;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1 1 360px;
}

.panel {
  background: var(--paper);
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 20, 20, 0.08);
}

.panel.sand {
  background: var(--sand);
}

.panel.stone {
  background: var(--stone);
}

.tagline {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.2px;
  color: var(--muted);
}

.hero-title {
  font-size: clamp(32px, 4vw, 48px);
  margin: 8px 0 18px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: var(--accent-dark);
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.image-frame {
  border-radius: 18px;
  overflow: hidden;
  background: #d9cfc2;
}

.image-frame.tall {
  min-height: 420px;
}

.image-frame.short {
  min-height: 280px;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.split-list li {
  background: var(--paper);
  padding: 16px;
  border-radius: 12px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 260px;
  background: var(--paper);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 24px rgba(15, 20, 20, 0.08);
}

.service-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.cta-inline {
  font-weight: 600;
}

.process-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.process-step {
  background: var(--paper);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step-number {
  font-weight: 700;
  color: var(--accent);
}

.testimonial {
  background: var(--paper);
  border-radius: 14px;
  padding: 16px;
}

.form-card {
  background: var(--paper);
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 26px rgba(15, 20, 20, 0.08);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cfc6b9;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.split-bg {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #d1c4b6;
}

.split-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-bg-content {
  position: relative;
  padding: 26px;
  color: #fff;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  background: rgba(0, 0, 0, 0.25);
}

/* Footer */
.footer {
  background: var(--paper);
  padding: 40px 0;
  border-top: 1px solid var(--sand);
  margin-top: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.disclaimer {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: var(--accent-dark);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  z-index: 20;
}

.sticky-cta button {
  background: #fff;
  color: var(--accent-dark);
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 600;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: var(--paper);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  padding: 18px;
  max-width: 340px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  border-radius: 999px;
  padding: 10px 12px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: var(--sand);
  color: var(--ink);
}

.hidden {
  display: none;
}

@media (max-width: 860px) {
  .top-nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .ad-label {
    text-align: left;
    max-width: none;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
