/* Base */
:root {
  color-scheme: light;
  --ink: #1f2a24;
  --muted: #5a6a60;
  --accent: #1c7a55;
  --accent-dark: #145a3f;
  --soft: #f4f3ef;
  --warm: #fff3e6;
  --shadow: rgba(19, 30, 24, 0.12);
  --sand: #ece5dc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

/* Navigation */
header {
  padding: 24px 0 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-size: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  background: var(--warm);
  border-radius: 999px;
  color: var(--accent-dark);
}

/* Hero */
.hero {
  position: relative;
  padding: 120px 0 90px;
  color: #fff;
  background-image: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 29, 22, 0.62);
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 48px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.hero__text {
  flex: 1 1 320px;
  max-width: 520px;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: 46px;
  line-height: 1.05;
}

.hero p {
  margin: 0 0 22px;
  font-size: 18px;
  color: #e5efe8;
}

.hero__card {
  flex: 1 1 280px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 18px 40px var(--shadow);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.button:hover,
.button:focus {
  background: var(--accent-dark);
}

.button--ghost {
  background: transparent;
  border: 1px solid #fff;
}

/* Sections */
.section {
  position: relative;
}

.section--offset-left {
  margin-left: clamp(0px, 6vw, 90px);
}

.section--offset-right {
  margin-right: clamp(0px, 6vw, 90px);
}

.section--split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.section__text {
  flex: 1 1 320px;
}

.section__media {
  flex: 1 1 280px;
}

.section h2 {
  margin: 0 0 12px;
  font-size: 32px;
}

.section p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.6;
}

.image-frame {
  background: var(--sand);
  border-radius: 20px;
  overflow: hidden;
}

.image-frame.tall {
  height: 360px;
}

.image-frame.wide {
  height: 260px;
}

.service-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 230px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 32px var(--shadow);
  display: flex;
  flex-direction: column;
}

.service-card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.backdrop {
  background-image: url("https://images.unsplash.com/photo-1498837167922-ddd27525d352?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  padding: 40px;
  color: #fff;
}

.backdrop p {
  color: #f1f3f1;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.testimonial {
  background: rgba(255, 255, 255, 0.16);
  padding: 14px 18px;
  border-radius: 14px;
}

/* Form */
.form-shell {
  background: var(--soft);
  border-radius: 26px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-field {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d6d9d5;
  font-family: inherit;
  font-size: 14px;
}

/* Footer */
footer {
  background: #151f1a;
  color: #cfd8d3;
  padding: 40px 0;
  margin-top: 40px;
}

.footer-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-block {
  flex: 1 1 240px;
}

.footer-block h3 {
  margin-top: 0;
  color: #fff;
}

.disclaimer {
  font-size: 13px;
  line-height: 1.5;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #fff;
  box-shadow: 0 18px 32px var(--shadow);
  padding: 14px 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 20;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 32px var(--shadow);
  padding: 16px;
  width: min(360px, 92vw);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.cookie-banner .button--ghost {
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

/* Utility */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #fff;
  border-radius: 999px;
  font-size: 13px;
  color: var(--accent-dark);
  box-shadow: 0 8px 20px var(--shadow);
}

.inline-link {
  text-decoration: underline;
  color: var(--accent-dark);
}

.muted {
  color: var(--muted);
}

/* Extra backgrounds */
.about-hero {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 90px 0;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(22, 28, 25, 0.6);
}

.about-hero .container {
  position: relative;
  z-index: 1;
}

.services-backdrop {
  background-image: url("https://images.unsplash.com/photo-1504754524776-8f4f37790ca0?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 26px;
  padding: 32px;
  color: #fff;
}

.contact-image {
  height: 280px;
}

.image-frame.contact-image {
  background: #e9efe8;
}

@media (max-width: 900px) {
  .sticky-cta {
    display: none;
  }
}
