/* Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrap {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

header {
  padding: 24px 0 8px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f1e6d6;
}

.menu {
  display: flex;
  gap: 16px;
  font-size: 14px;
}

.menu a {
  padding: 8px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e7e2da;
}

main {
  flex: 1;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
  min-width: 260px;
}

.panel {
  padding: 40px;
  background: #fff;
  border-radius: 22px;
  border: 1px solid #ece6dd;
}

.panel.dark {
  background: #1f2a24;
  color: #f6f1ea;
  border-color: #1f2a24;
}

.panel.accent {
  background: #f1e6d6;
  border-color: #e2d6c6;
}

.hero-image,
.section-image {
  border-radius: 22px;
  overflow: hidden;
  min-height: 360px;
  background: #e6dfd4;
  background-size: cover;
  background-position: center;
}

.inline-image {
  border-radius: 18px;
  overflow: hidden;
  background: #e3ded4;
}

.section {
  padding: 36px 0;
}

.section.compact {
  padding: 18px 0 36px;
}

.kicker {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #7b6f63;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #1b1b1b;
  font-weight: 600;
  background: #fff;
}

.btn.secondary {
  background: #1b1b1b;
  color: #fff;
}

.btn.ghost {
  border-color: #d1c6b8;
  background: transparent;
}

.inline-cta {
  text-decoration: underline;
  font-weight: 600;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  min-width: 220px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e9e1d6;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-size: 20px;
  font-weight: 700;
}

.quote {
  font-style: italic;
  background: #fff;
  border-radius: 16px;
  border: 1px dashed #e0d6c8;
  padding: 16px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-step {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-step label {
  display: flex;
  gap: 10px;
  align-items: center;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d9d1c6;
  font-size: 14px;
  background: #fff;
}

.form-error {
  color: #b33a3a;
  font-size: 13px;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  display: flex;
  justify-content: flex-end;
  padding: 0 0 18px;
}

.sticky-cta .btn {
  background: #f1e6d6;
}

footer {
  padding: 36px 0 48px;
  font-size: 13px;
  color: #5c544b;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-grid > div {
  flex: 1 1 200px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(760px, 94vw);
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e7dfd3;
  padding: 16px;
  display: none;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.visible {
  display: flex;
  flex-direction: column;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #1b1b1b;
  background: #fff;
  font-weight: 600;
}

.cookie-actions button.secondary {
  background: #1b1b1b;
  color: #fff;
}

.meta-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Background images */
.hero-home {
  background-image: url("https://images.unsplash.com/photo-1485965120184-e220f721d03e?w=1400&q=80");
}

.hero-about {
  background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1400&q=80");
}

.hero-services {
  background-image: url("https://images.unsplash.com/photo-1452626038306-9aae5e071dd3?w=1400&q=80");
}

.hero-contact {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
}

.hero-privacy {
  background-image: url("https://images.unsplash.com/photo-1704907737667-61e8dbdf20d7?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5NzM4NDF8MHwxfHNlYXJjaHw2fHxGYWhycmFkdG91cmVuJTIwbWl0JTIwUGxhbnVuZyUyQyUyMFNpY2hlcmhlaXQlMjB1bmQlMjBlY2h0ZW0lMjBPcnRzd2lzc2VuLnxkZXwwfDB8fHwxNzg0MDM0MTM0fDA&ixlib=rb-4.1.0&q=80&w=1080");
}

.hero-gdpr {
  background-image: url("https://images.unsplash.com/photo-1499346030926-9a72daac6c63?w=1400&q=80");
}

.hero-cookies {
  background-image: url("https://images.unsplash.com/photo-1472214103451-9374bd1c798e?w=1400&q=80");
}

.hero-terms {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
}

.hero-thanks {
  background-image: url("https://images.unsplash.com/photo-1500522144261-ea64433bbe27?w=1400&q=80");
}

.section-scenic {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}
