:root {
  --bg: #f6f1ed;
  --ink: #2b2a28;
  --accent: #8f6b4d;
  --accent-2: #304346;
  --soft: #e9e0d8;
  --highlight: #f2e8dd;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}
a {
  color: inherit;
  text-decoration: none;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 7vw 10px;
}
.brand {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}
.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--soft);
}
.nav-links a:hover {
  background: var(--accent);
  color: white;
}
.ad-label {
  font-size: 0.8rem;
  background: var(--highlight);
  padding: 8px 12px;
  border-radius: 10px;
  max-width: 260px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
  padding: 30px 7vw 60px;
}
.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 30px;
  background: var(--highlight);
  border-radius: 22px;
  position: relative;
}
.hero-copy::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 30px;
  width: 60px;
  height: 60px;
  background: var(--accent);
  opacity: 0.15;
  border-radius: 14px;
}
.hero-media {
  flex: 1 1 320px;
  min-height: 340px;
  border-radius: 28px;
  background: #dcd0c3;
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  height: 100%;
}

.section {
  padding: 40px 7vw;
}
.section.alt {
  background: #efe6dc;
}
.section h2 {
  margin-top: 0;
}

.offset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.offset-row.reverse {
  flex-direction: row-reverse;
}
.offset-card {
  flex: 1 1 260px;
  padding: 26px;
  background: white;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}
.offset-media {
  flex: 1 1 260px;
  min-height: 260px;
  background: #cfc4b9;
  border-radius: 28px;
  overflow: hidden;
  transform: translateY(-12px);
}
.offset-media img {
  width: 100%;
  height: 100%;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.card {
  flex: 1 1 220px;
  background: white;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.card img {
  width: 100%;
  height: 160px;
  border-radius: 14px;
}
.card .price {
  font-weight: 700;
  color: var(--accent);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-weight: 600;
}
.btn.secondary {
  background: var(--accent-2);
}
.btn.light {
  background: white;
  color: var(--ink);
  border: 1px solid var(--soft);
}
.btn:hover {
  filter: brightness(0.95);
}

.inline-link {
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

.form-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  background: white;
  padding: 24px;
  border-radius: 20px;
}
.form-shell label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}
.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d8cfc6;
  font-size: 1rem;
  background: #fdfbf9;
}
.form-column {
  flex: 1 1 220px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent-2);
  color: white;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  z-index: 20;
}
.sticky-cta:hover {
  filter: brightness(0.9);
}

.footer {
  padding: 40px 7vw;
  background: #1f2021;
  color: #f8f3ee;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.footer a {
  color: inherit;
}
.footer .legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.notice {
  background: #fff6ec;
  border-left: 4px solid var(--accent);
  padding: 16px;
  border-radius: 12px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fffaf4;
  color: #2b2a28;
  border-radius: 18px;
  padding: 16px 18px;
  display: none;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
  z-index: 30;
}
.cookie-banner p {
  margin: 0;
  flex: 1 1 280px;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.media-block {
  background: #d5cabc;
  border-radius: 18px;
  overflow: hidden;
}

.section-bg {
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 36px;
  color: #fefaf5;
  position: relative;
  overflow: hidden;
}
.section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(34, 33, 31, 0.45);
}
.section-bg > * {
  position: relative;
  z-index: 1;
}
.bg-city {
  background-image: url("https://images.unsplash.com/photo-1493809842364-78817add7ffb?w=1400&q=80");
}
.bg-tailored {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
}
.bg-visit {
  background-image: url("https://images.unsplash.com/photo-1506377247377-2a5b3b417ebb?w=1400&q=80");
}

.page-hero {
  padding: 30px 7vw 20px;
}
.page-hero h1 {
  margin-bottom: 8px;
}

.list-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: white;
  border-radius: 18px;
  padding: 20px;
}

@media (max-width: 900px) {
  .sticky-cta {
    position: static;
    margin: 0 7vw 20px;
    display: inline-block;
  }
  .hero-media,
  .offset-media {
    transform: none;
  }
}
