* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c1b1a;
  --muted: #5f5a57;
  --accent: #b85c38;
  --accent-dark: #93462a;
  --paper: #f8f4ef;
  --sand: #f0e6db;
  --fog: #fefcf9;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--fog);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6%;
  background: rgba(255, 255, 255, 0.9);
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.nav-links a:hover {
  background: var(--sand);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 72px 6%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 239, 0.92)),
    url("https://images.unsplash.com/photo-1487412720507-e7ab37603c6f?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  max-width: 680px;
}

.hero p {
  max-width: 640px;
  color: var(--muted);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  width: fit-content;
  font-weight: 600;
}

.hero-cta:hover {
  background: var(--accent-dark);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 64px 6%;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-media img {
  border-radius: 18px;
}

.accent-block {
  background: var(--sand);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stats-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
}

.card img {
  border-radius: 14px;
  height: 180px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

.cta-link {
  color: var(--accent);
  font-weight: 600;
}

.cta-link:hover {
  text-decoration: underline;
}

.form-section {
  background: var(--paper);
}

.form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e5e0d8;
  font-size: 1rem;
  background: #fff;
}

button {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
}

button:hover {
  background: var(--accent-dark);
}

.footer {
  padding: 40px 6%;
  background: #1f1c19;
  color: #f4efe8;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.footer small {
  color: rgba(244, 239, 232, 0.7);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 24px;
  background: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  color: var(--accent);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button.secondary {
  background: #e7e0d6;
  color: var(--ink);
}

.page-title {
  padding: 60px 6% 30px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.simple-section {
  padding: 48px 6%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.map-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e7e0d6;
  height: 260px;
}

.map-frame img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .stats-row {
    flex-direction: row;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }
}
