@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap");

:root {
  --bg: #f6f4ef;
  --bg-alt: #e9efe9;
  --bg-deep: #0f1f1a;
  --text: #1b1f1d;
  --muted: #5a665f;
  --accent: #2f6b4f;
  --accent-soft: #9cc9a7;
  --card: #ffffff;
  --warm: #f2ece2;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 8vw 18px;
}

.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
  border: 1px solid var(--accent-soft);
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--warm);
}

.hero {
  position: relative;
  display: flex;
  gap: 32px;
  padding: 36px 8vw 60px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1470770841072-f978cf4d019e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  z-index: 0;
}

.hero-content {
  position: relative;
  flex: 1 1 320px;
  background: rgba(255, 255, 255, 0.92);
  padding: 34px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(15, 31, 26, 0.15);
  z-index: 1;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 2.7rem;
  margin: 0 0 16px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.alt {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.hero-aside {
  position: relative;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1;
}

.media-card {
  background: var(--card);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(15, 31, 26, 0.12);
}

.media-card .media {
  background: var(--bg-alt);
}

.media-card .content {
  padding: 16px 20px;
}

.media-card img {
  width: 100%;
  height: 220px;
}

.floating-note {
  background: var(--bg-deep);
  color: #fff;
  padding: 18px 20px;
  border-radius: 18px;
  margin-left: auto;
}

.section {
  padding: 70px 8vw;
  position: relative;
}

.section.split {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin: 0 0 14px;
}

.offset-panel {
  background: var(--card);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 30px rgba(15, 31, 26, 0.08);
  margin-top: -40px;
}

.image-stack {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-stack .media {
  background: var(--warm);
  border-radius: 22px;
  overflow: hidden;
}

.image-stack img {
  width: 100%;
  height: 240px;
}

.col-large {
  flex: 1 1 320px;
}

.col-medium {
  flex: 1 1 260px;
}

.layered-band {
  background: var(--bg-alt);
}

.layered-band::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 120px;
  background: var(--accent-soft);
  bottom: -40px;
  left: 10%;
  border-radius: 40px;
  z-index: 0;
}

.layered-content {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.insight-card {
  flex: 1 1 240px;
  background: var(--card);
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 14px 24px rgba(15, 31, 26, 0.08);
}

.service-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 250px;
  background: var(--card);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 30px rgba(15, 31, 26, 0.08);
}

.service-card .media {
  background: #dfe9e0;
}

.service-card img {
  width: 100%;
  height: 180px;
}

.service-card .content {
  padding: 20px 22px 26px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.quote-line {
  font-style: italic;
  color: var(--muted);
  margin-top: 10px;
}

.cta-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: var(--bg-deep);
  color: #fff;
  padding: 30px 8vw;
  flex-wrap: wrap;
}

.cta-strip a {
  background: #fff;
  color: var(--bg-deep);
}

.form-wrap {
  background: var(--card);
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(15, 31, 26, 0.1);
  max-width: 520px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 12px 14px;
  border: 1px solid #c9d3cc;
  border-radius: 12px;
  font-family: inherit;
}

.form-row label {
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 14px 24px rgba(15, 31, 26, 0.2);
  z-index: 20;
}

.footer {
  background: #101815;
  color: #dfe5df;
  padding: 40px 8vw 60px;
  margin-top: auto;
}

.footer a {
  color: #dfe5df;
}

.footer-cols {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-note {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #b8c2bb;
}

.legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 360px;
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(15, 31, 26, 0.18);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1 1 auto;
}

.page-hero {
  background: var(--bg-alt);
  padding: 50px 8vw;
  position: relative;
  overflow: hidden;
}

.page-hero .media {
  background: #dbe6dd;
  border-radius: 26px;
  overflow: hidden;
  margin-top: 26px;
}

.page-hero img {
  width: 100%;
  height: 280px;
}

.contact-card {
  background: #fff;
  padding: 26px;
  border-radius: 22px;
  box-shadow: 0 16px 28px rgba(15, 31, 26, 0.08);
}

.highlight {
  color: var(--accent);
  font-weight: 600;
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-clean li {
  margin-bottom: 8px;
}

@media (max-width: 860px) {
  .hero {
    padding-bottom: 40px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    text-align: center;
  }
}
