*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --text: #1b1b1b;
  --muted: #5f6368;
  --primary: #2f5b4a;
  --accent: #d97a4f;
  --surface: #f6f3ee;
  --surface-strong: #efe9e1;
  --ink: #0d1a14;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a:focus {
  border-color: var(--accent);
}

.section {
  padding: 60px 6vw;
  position: relative;
}

.section--soft {
  background: var(--surface);
}

.section--strong {
  background: var(--surface-strong);
}

.section--hero {
  background: linear-gradient(120deg, #f6f1ea 0%, #ffffff 65%);
}

.section--image {
  background: url("https://images.unsplash.com/photo-1529516548873-9ce57c8f155e?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
  color: var(--white);
}

.section--image .split__content {
  background: rgba(18, 28, 22, 0.72);
  padding: 28px;
  border-radius: 16px;
}

.section.layered::before {
  content: "";
  position: absolute;
  inset: 14px 0 auto auto;
  width: 45%;
  height: 85%;
  background: rgba(217, 122, 79, 0.12);
  border-radius: 32px;
  z-index: 0;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.split.reverse {
  flex-direction: column;
}

.split__content {
  flex: 1;
}

.split__media {
  flex: 1;
}

.tag {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", "Georgia", serif;
  color: var(--ink);
  margin-top: 0;
}

h1 {
  font-size: clamp(2.3rem, 3vw, 3.4rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  line-height: 1.2;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

ul {
  padding-left: 20px;
  margin: 0 0 18px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(47, 91, 74, 0.22);
}

.btn-secondary {
  background: var(--accent);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.inline-cta {
  color: var(--primary);
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
}

.badge-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-row {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  padding: 8px 14px;
  background: rgba(47, 91, 74, 0.08);
  border-radius: 999px;
  font-size: 0.85rem;
}

.quote {
  padding: 18px;
  background: var(--white);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  margin-bottom: 16px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 19, 0.08);
}

.service-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.service-card strong {
  display: block;
  color: var(--ink);
}

.price {
  color: var(--accent);
  font-weight: 700;
}

.form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(13, 26, 20, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d7d4ce;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 20;
  background: var(--accent);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(217, 122, 79, 0.3);
}

.site-footer {
  padding: 40px 6vw 60px;
  background: #121c16;
  color: #e2e5e3;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  margin-top: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f2b24;
  color: #e8ece9;
  padding: 16px 6vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .section {
    padding: 80px 10vw;
  }

  .site-header {
    padding: 28px 10vw;
  }
}
