* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1c1c1c;
  background: #f7f5f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background: #f0ebe3;
}

.brand {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  padding: 6px 10px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e2d9cc;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link:focus {
  transform: translateY(-2px);
  background: #f8f1e7;
}

.ad-label {
  font-size: 0.85rem;
  color: #5a4f43;
  background: #fff0d8;
  padding: 6px 12px;
  border-radius: 18px;
  border: 1px solid #e8d6b5;
}

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 80px 6vw 60px;
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.15));
}

.hero-content {
  position: relative;
  max-width: 560px;
  background: rgba(15, 15, 15, 0.6);
  padding: 28px 30px;
  border-radius: 24px;
}

.hero h1 {
  margin: 0 0 12px;
  font-size: 2.5rem;
}

.hero p {
  margin: 0 0 20px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #f4d06f;
  color: #2d261a;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.secondary {
  background: #ffffff;
  color: #2d261a;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  background: #f8dd8b;
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: #f2ede4;
}

.section {
  padding: 70px 6vw;
  position: relative;
}

.section.alt {
  background: #ffffff;
}

.asym-row {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.col {
  flex: 1 1 320px;
}

.offset-card {
  background: #fffaf1;
  border-radius: 26px;
  padding: 28px;
  border: 1px solid #efe0c9;
  box-shadow: 0 20px 40px rgba(41, 30, 16, 0.12);
  transform: translateY(-20px);
}

.image-frame {
  background: #e7ded2;
  border-radius: 28px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-note {
  background: #faf0e1;
  border-radius: 22px;
  padding: 18px 22px;
  max-width: 320px;
  position: absolute;
  right: 8%;
  top: -18px;
  border: 1px solid #ead8bf;
}

.service-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 24px;
  padding: 20px;
  border: 1px solid #e5dbcf;
}

.service-card h3 {
  margin-top: 12px;
}

.price-tag {
  font-weight: 700;
  color: #6a4d28;
}

.inline-testimonial {
  background: #ffffff;
  border-radius: 20px;
  padding: 18px 22px;
  border: 1px solid #e4d7c7;
  margin-bottom: 18px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c98634;
  margin-top: 7px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 26px;
  padding: 30px;
  border: 1px solid #e4d7c7;
}

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.form-field label {
  font-weight: 600;
  margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d8cbb8;
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 10;
  background: #1c1c1c;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.sticky-cta:hover,
.sticky-cta:focus {
  transform: translateY(-2px);
  background: #3a332b;
}

.footer {
  background: #1c1c1c;
  color: #f7f5f2;
  padding: 50px 6vw;
}

.footer a {
  color: #f7f5f2;
  padding: 4px 0;
}

.footer-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid #e2d7c6;
  max-width: 360px;
  z-index: 20;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.banner-btn {
  padding: 8px 12px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: #f4d06f;
  color: #2d261a;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.banner-btn.secondary {
  background: #e8e0d4;
}

.banner-btn:hover,
.banner-btn:focus {
  transform: translateY(-1px);
  background: #f8dd8b;
}

.banner-btn.secondary:hover,
.banner-btn.secondary:focus {
  background: #dcd2c4;
}

.split-callout {
  display: flex;
  gap: 24px;
  align-items: stretch;
  flex-wrap: wrap;
}

.callout-panel {
  flex: 1 1 260px;
  background: #fffaf1;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid #efe0c9;
}

.image-strip {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.image-strip .image-frame {
  flex: 1 1 220px;
  min-height: 180px;
}

.legal-page h1 {
  margin-top: 0;
}

.contact-grid {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.contact-card {
  flex: 1 1 280px;
  background: #ffffff;
  border-radius: 22px;
  padding: 24px;
  border: 1px solid #e5dbcf;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.bg-horizon {
  background-image: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?w=1400&q=80");
}

.bg-trail {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
}
