* {
  box-sizing: border-box;
}

:root {
  --sand: #f4f1ec;
  --clay: #e3d7c9;
  --stone: #2f2a25;
  --pine: #2f4a3c;
  --slate: #5c6a73;
  --sun: #d8b36a;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--stone);
  background: var(--sand);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.topbar {
  background: var(--stone);
  color: var(--sand);
  padding: 10px 0;
  font-size: 0.9rem;
}

.topbar .page {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.disclosure {
  font-size: 0.85rem;
  color: var(--clay);
}

header {
  padding: 24px 0 48px;
  background: var(--sand);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.hero .text {
  flex: 1 1 320px;
}

.hero .media {
  flex: 1 1 320px;
}

.hero h1 {
  font-size: clamp(2rem, 3.5vw, 3.3rem);
  margin: 0 0 16px;
}

.hero p {
  max-width: 32rem;
  margin: 0 0 24px;
  color: var(--slate);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  padding: 12px 20px;
  background: var(--pine);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: var(--sun);
  color: var(--stone);
}

.section {
  padding: 56px 0;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 320px;
}

.image-frame {
  background: var(--clay);
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
}

.label {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--slate);
  margin-bottom: 12px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: var(--white);
  border-radius: 16px;
  padding: 18px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.card h3 {
  margin: 0;
}

.price {
  font-weight: 700;
  color: var(--pine);
}

.panel-bg {
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.92), rgba(244, 241, 236, 0.82)), url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.inline-link {
  color: var(--pine);
  font-weight: 600;
  text-decoration: underline;
}

.form-box {
  background: var(--white);
  padding: 24px;
  border-radius: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

select,
input,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c9c4bd;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--stone);
  color: var(--sand);
  padding: 12px 0;
  z-index: 5;
}

.sticky-cta .page {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

footer {
  background: var(--stone);
  color: var(--sand);
  padding: 36px 0 60px;
  margin-top: 48px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.legal-note {
  font-size: 0.85rem;
  color: #d3ccc4;
  margin-top: 18px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 80px;
  background: var(--white);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.page-title {
  padding: 28px 0 10px;
}

.page-title h1 {
  margin: 0 0 8px;
}

.simple-section {
  padding: 32px 0;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  flex: 1 1 260px;
}

.muted {
  color: var(--slate);
}

.table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 768px) {
  .sticky-cta {
    position: static;
  }
}
