* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f1e1b;
  background: #f6f3ee;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.nav {
  padding: 24px 0 12px;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 15px;
}

.ad-label {
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e0d6c8;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 24px;
  padding: 36px 0 56px;
}

.hero-text {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.hero-title {
  font-size: clamp(32px, 4vw, 48px);
  margin: 0;
}

.hero-subtitle {
  margin: 0;
  font-size: 18px;
}

.hero-media {
  flex: 1 1 380px;
}

.image-frame {
  background-color: #d8d0c4;
  padding: 10px;
  border-radius: 18px;
}

.image-frame img {
  width: 100%;
  border-radius: 12px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.cta-margin {
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1f1e1b;
  color: #f6f3ee;
  font-weight: 600;
  border: none;
}

.button.light {
  background: #efe7db;
  color: #1f1e1b;
}

.inline-link {
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.section {
  padding: 54px 0;
}

.section-alt {
  background: #efe7db;
}

.section-dark {
  background: #1f1e1b;
  color: #f6f3ee;
}

.section-photo {
  background-size: cover;
  background-position: center;
  color: #f6f3ee;
  position: relative;
}

.section-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 30, 27, 0.55);
}

.section-photo .container {
  position: relative;
  z-index: 1;
}

.bg-map {
  background-image: url("https://images.unsplash.com/photo-1481627834876-b7833e8f5570?w=1400&q=80");
}

.bg-postcards {
  background-image: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?w=1400&q=80");
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 360px;
}

.split-text h2 {
  margin-top: 0;
}

.split-media {
  flex: 1 1 320px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  color: #1f1e1b;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.card h3 {
  margin: 6px 0 0;
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #efe7db;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.quote {
  font-style: italic;
  padding: 12px 16px;
  border-left: 3px solid #c2b7a8;
  background: rgba(255, 255, 255, 0.2);
}

.form-wrap {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c2b7a8;
  font-size: 15px;
  font-family: inherit;
}

.form-note {
  font-size: 14px;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  margin-top: 32px;
  display: flex;
  justify-content: flex-end;
  padding: 0 4%;
  pointer-events: none;
}

.sticky-cta a {
  pointer-events: auto;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.footer {
  margin-top: auto;
  padding: 32px 0 44px;
  background: #efe7db;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  font-size: 14px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #ffffff;
  color: #1f1e1b;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.page-title {
  font-size: clamp(28px, 3vw, 40px);
  margin: 0 0 12px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.contact-card {
  background: #ffffff;
  color: #1f1e1b;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.notice {
  background: #efe7db;
  padding: 12px 14px;
  border-radius: 12px;
}

@media (max-width: 820px) {
  .hero {
    padding-top: 18px;
  }

  .sticky-cta {
    justify-content: center;
  }
}
