/* Base */
:root {
  --ink: #1b1f22;
  --muted: #5a636b;
  --sand: #f2ede6;
  --sage: #dfe8e2;
  --stone: #e6e3df;
  --leaf: #2f6b4f;
  --sun: #e7c98a;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: var(--leaf);
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.9;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 24px 6vw 16px 6vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-size: 20px;
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ad-note {
  font-size: 13px;
  color: var(--muted);
  background: var(--stone);
  padding: 8px 12px;
  border-radius: 999px;
  width: fit-content;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 8px 6vw 64px 6vw;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.hero-content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0;
}

.hero-media {
  flex: 1 1 360px;
  position: relative;
  min-height: 360px;
}

.image-wrap {
  background-color: var(--sand);
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.image-wrap.sage {
  background-color: var(--sage);
}

.image-wrap.sun {
  background-color: var(--sun);
}

.offset-card {
  background: var(--stone);
  padding: 20px 24px;
  border-radius: 18px;
  margin-top: -24px;
  margin-left: 14%;
}

.inline-cta {
  font-weight: 600;
}

.section-split {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.section-split.reverse {
  flex-direction: row-reverse;
}

.section-panel {
  flex: 1 1 300px;
}

.section-panel.narrow {
  flex: 1 1 220px;
}

.section-panel.wide {
  flex: 1 1 420px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 220px;
  background: var(--sand);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: var(--leaf);
}

.testimonial-strip {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: var(--sage);
  border-radius: 18px;
}

.list-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.booking {
  background: var(--stone);
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

select,
input,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c9c9;
  font-size: 14px;
}

button {
  background: var(--leaf);
  color: var(--white);
  border: none;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.section-cta {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
}

.care-backdrop {
  background-color: var(--stone);
  background-image: url("https://images.unsplash.com/photo-1518378188025-22bd89516ee2?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  padding: 28px;
  color: var(--white);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--sun);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  font-weight: 600;
  z-index: 10;
}

footer {
  padding: 32px 6vw 40px 6vw;
  background: var(--sand);
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.disclaimer {
  font-size: 13px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button.secondary {
  background: var(--stone);
  color: var(--ink);
}

.content-card {
  background: var(--stone);
  padding: 20px;
  border-radius: 18px;
}

.simple-hero {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  background: var(--sage);
  border-radius: 18px;
}

.svg-icon {
  width: 48px;
  height: 48px;
  background: var(--sun);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.legal-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.notice {
  background: var(--sage);
  padding: 16px;
  border-radius: 16px;
}

@media (max-width: 720px) {
  .offset-card {
    margin-left: 0;
    margin-top: 12px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
