* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2933;
  background: #f6f3ef;
  line-height: 1.6;
}

img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  background: #f6f3ef;
  gap: 24px;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #c8c2ba;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  transform: translateY(-2px);
  background: #fef4e8;
}

.ad-disclosure {
  font-size: 0.78rem;
  color: #5c5c5c;
  max-width: 320px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 40px 6vw 60px;
  background: #fef4e8;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-title {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.1;
}

.hero-image {
  flex: 1 1 320px;
  min-height: 320px;
  background: #d8d2c7;
  border-radius: 24px;
  overflow: hidden;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 60px 6vw;
  align-items: stretch;
}

.split--reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-visual {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split-visual {
  background: #e2dbd1;
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-atelier {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=800&q=80");
  background-size: cover;
  background-position: center;
}

.bg-discussion {
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=800&q=80");
  background-size: cover;
  background-position: center;
}

.bg-map {
  background-image: url("https://images.unsplash.com/photo-1485217988980-11786ced9454?w=800&q=80");
  background-size: cover;
  background-position: center;
}

.bg-quiet {
  background-image: url("https://images.unsplash.com/photo-1474631245212-32dc3c8310c6?w=800&q=80");
  background-size: cover;
  background-position: center;
}

.section-tag {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.75rem;
  color: #6b6b6b;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #2d2d2d;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta-primary {
  background: #2d2d2d;
  color: #fff;
}

.cta-primary:hover,
.cta-secondary:hover {
  transform: translateY(-2px);
}

.cta-secondary {
  background: transparent;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card-image {
  width: 100%;
  height: 150px;
  border-radius: 14px;
  overflow: hidden;
  background: #d6cec4;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: #1b3a57;
}

.stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stat {
  flex: 1 1 180px;
  background: #fdf6ee;
  border-radius: 16px;
  padding: 16px;
}

.testimonial {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #e2dbd1;
}

.form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-wrap label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc7bd;
  font-size: 1rem;
}

.form-wrap button {
  padding: 12px 16px;
  border-radius: 999px;
  border: none;
  background: #2d2d2d;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.form-wrap button:hover {
  transform: translateY(-2px);
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.footer {
  padding: 40px 6vw;
  background: #1f2933;
  color: #f2f2f2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: #f2f2f2;
  border-bottom: 1px solid transparent;
}

.footer-links a:hover {
  border-bottom: 1px solid #f2f2f2;
}

.disclaimer {
  font-size: 0.9rem;
  color: #d9d9d9;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1b3a57;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #1f2933;
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.cookie-actions button:hover {
  transform: translateY(-2px);
}

.cookie-actions .accept {
  background: #1f2933;
  color: #fff;
}

.page-header {
  padding: 40px 6vw 20px;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.page-content {
  padding: 20px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-item {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid #e2dbd1;
}

.two-column {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.two-column > div {
  flex: 1 1 280px;
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    text-align: center;
  }
}
