* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2328;
  --muted: #5d6670;
  --paper: #f5f4f1;
  --accent: #2f6b5a;
  --accent-2: #1c3144;
  --sand: #e6e0d8;
  --mist: #e9eef2;
  --sun: #f1c85d;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 28px 6vw 12px;
}

.top-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.brand {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 12px;
  background: var(--sand);
  border-radius: 999px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.container {
  width: min(1100px, 88vw);
  margin: 0 auto;
}

.hero {
  position: relative;
  padding: 90px 6vw 110px;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 32, 0.55);
}

.hero-content {
  position: relative;
  width: min(700px, 90vw);
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--sun);
  color: #2a1f00;
  font-weight: 600;
  border: none;
}

.btn.secondary {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--paper);
}

.section.deep {
  background: var(--mist);
}

.section.image-layer {
  background-image: url("https://images.unsplash.com/photo-1515378791036-0648a3ef77b2?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.section.image-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 32, 0.55);
}

.section.image-layer .container {
  position: relative;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .visual {
  flex: 1 1 320px;
  position: relative;
}

.offset-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(23, 30, 40, 0.12);
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.image-frame {
  background: var(--sand);
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-tall {
  height: 360px;
}

.image-wide {
  height: 260px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #e7e1d8;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-price {
  font-weight: 600;
  color: var(--accent-2);
}

.quote {
  font-style: italic;
  background: #ffffff;
  border-left: 4px solid var(--accent);
  padding: 18px 20px;
}

.form-shell {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(31, 35, 40, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d8d3cc;
  font-size: 1rem;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #ffffff;
  padding: 10px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(31, 35, 40, 0.16);
}

.sticky-cta a {
  display: inline-flex;
  padding: 10px 16px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
}

footer {
  padding: 50px 6vw 70px;
  background: #0f1720;
  color: #d8dee6;
}

footer a {
  color: #d8dee6;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-col {
  flex: 1 1 220px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(20, 24, 32, 0.2);
  width: min(320px, 80vw);
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #ffffff;
}

.cookie-actions .reject {
  background: #e4e7ea;
  color: #1f2328;
}

.tagline {
  color: var(--muted);
  margin-top: 10px;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.muted {
  color: var(--muted);
}

.spacer {
  height: 24px;
}

@media (max-width: 900px) {
  .sticky-cta {
    display: none;
  }
}
