* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1d1b19;
  --muted: #5b5651;
  --cream: #f6f0e6;
  --sand: #efe4d4;
  --accent: #2f6b5f;
  --accent-soft: #cfe6df;
  --sun: #f2c361;
  --card: #ffffff;
  --shadow: 0 18px 40px rgba(34, 27, 20, 0.08);
  --radius: 24px;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}

.sidebar {
  width: 240px;
  background: var(--sand);
  padding: 32px 22px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.tagline {
  font-size: 14px;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.nav a span {
  font-size: 12px;
  color: var(--muted);
}

.sidebar-cta {
  margin-top: auto;
  padding: 16px;
  background: var(--accent);
  color: #fff;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
}

.content {
  flex: 1;
  padding: 36px 60px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}

.section.alt {
  background: var(--accent-soft);
}

.section.sun {
  background: #fff6df;
}

.split {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > * {
  flex: 1 1 260px;
}

.badge {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--accent);
  font-weight: 700;
}

h1 {
  font-size: 38px;
  line-height: 1.15;
}

h2 {
  font-size: 28px;
  line-height: 1.2;
}

h3 {
  font-size: 20px;
  line-height: 1.3;
}

p {
  color: var(--muted);
  font-size: 16px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.button.outline {
  background: transparent;
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.cards {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 210px;
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(34, 27, 20, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card img {
  width: 100%;
  border-radius: 14px;
  height: 140px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  color: var(--accent);
  font-size: 18px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list-item strong {
  min-width: 90px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
}

.stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.stat {
  flex: 1 1 180px;
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  text-align: center;
  border: 1px solid #efe4d4;
}

.stat span {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
}

.gallery {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.gallery img {
  width: 180px;
  height: 160px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(34, 27, 20, 0.12);
}

.form-shell {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.form-shell form {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d9cec0;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.note {
  font-size: 13px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--sun);
  color: var(--ink);
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(34, 27, 20, 0.18);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 30;
  max-width: 360px;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding-top: 12px;
  font-size: 14px;
  color: var(--muted);
}

.footer a {
  color: var(--muted);
  text-decoration: none;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 220px;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #efe4d4;
}

.hero-image {
  width: 100%;
  border-radius: 22px;
  height: 260px;
  object-fit: cover;
}

@media (max-width: 980px) {
  .site-shell {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .content {
    padding: 28px 24px 80px;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
