* {
  box-sizing: border-box;
}

:root {
  --ink: #1e2a1f;
  --leaf: #3a6b4b;
  --moss: #5f7f5b;
  --sand: #f3efe8;
  --cloud: #f7f8f4;
  --stone: #d9dfd0;
  --sun: #f2c16b;
  --ink-soft: #3f4c40;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cloud);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  padding: 28px 6vw 18px;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--ink-soft);
  background: var(--stone);
  padding: 6px 10px;
  border-radius: 999px;
  align-self: flex-start;
}

.hero {
  padding: 30px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: linear-gradient(140deg, rgba(243, 239, 232, 0.95), rgba(247, 248, 244, 0.92));
}

.hero-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  padding: 18px 20px 18px 0;
}

.hero-image {
  flex: 1 1 360px;
  min-height: 320px;
  border-radius: 22px;
  overflow: hidden;
  background: #cdd8c7;
  position: relative;
}

.hero-image .overlay-card {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.88);
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.cta-primary,
.cta-secondary,
.cta-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cta-primary {
  background: var(--leaf);
  color: #fff;
}

.cta-secondary {
  background: var(--sun);
  color: #2a261c;
}

.cta-inline {
  padding: 0;
  border-radius: 0;
  background: none;
  color: var(--leaf);
  font-weight: 700;
}

.section {
  padding: 70px 6vw;
}

.section.alt {
  background: var(--sand);
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.image-card {
  flex: 1 1 260px;
  min-height: 260px;
  border-radius: 18px;
  overflow: hidden;
  background: #c5d0bf;
}

.content-stack {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.floating-panel {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(30, 42, 31, 0.08);
  margin-top: -30px;
  max-width: 420px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  box-shadow: 0 12px 24px rgba(30, 42, 31, 0.08);
}

.card-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--leaf);
}

.booking {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.booking-form {
  flex: 1 1 320px;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 18px 30px rgba(30, 42, 31, 0.08);
}

.booking-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd7cb;
  margin-bottom: 16px;
  font-family: inherit;
}

.sticky-cta {
  position: sticky;
  top: 20px;
  background: var(--sand);
  padding: 22px;
  border-radius: 16px;
  flex: 0 1 240px;
}

.testimonial {
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(30, 42, 31, 0.08);
}

.footer {
  background: var(--ink);
  color: #f3f1ea;
  padding: 40px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #f3f1ea;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  max-width: 340px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(30, 42, 31, 0.2);
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.page-hero {
  padding: 50px 6vw 40px;
  background: var(--sand);
}

.page-body {
  padding: 40px 6vw 70px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 260px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(30, 42, 31, 0.08);
}

.reference-list {
  font-size: 0.85rem;
  color: #d7dfd2;
}

@media (max-width: 900px) {
  .hero-layout,
  .asym-row {
    flex-direction: column;
  }

  .nav-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    position: static;
  }
}
