* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f2a2e;
  background-color: #f6f3ef;
}

a {
  color: #1c4e66;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.site-header {
  background-color: #eef2f1;
  border-bottom: 1px solid #d7ddd9;
}

.top-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  gap: 12px;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-disclosure {
  font-size: 0.9rem;
  color: #2e3f44;
  background-color: #dfe7e3;
  padding: 6px 12px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-direction: column;
  padding: 70px 6vw 80px;
  background-color: #e4ede9;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 620px;
}

.hero h1 {
  font-size: 2.7rem;
  margin: 0;
}

.hero p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.btn {
  border: none;
  background-color: #1c4e66;
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  text-align: center;
}

.btn.secondary {
  background-color: #dfe7e3;
  color: #1c4e66;
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.alt {
  background-color: #fdfaf6;
}

.scenic-bg {
  background-image: url("https://images.unsplash.com/photo-1517423440428-a5a00ad493e8?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.scenic-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(20, 30, 32, 0.55);
}

.scenic-bg .section-title,
.scenic-bg p,
.scenic-bg a {
  position: relative;
  z-index: 1;
}

.section.dense {
  padding: 50px 6vw;
}

.section-title {
  font-size: 2rem;
  margin: 0;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 320px;
  min-width: 280px;
}

.split-text p {
  line-height: 1.7;
}

.image-frame {
  flex: 1 1 320px;
  min-width: 260px;
  background-color: #dfe7e3;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  min-width: 220px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(31, 42, 46, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-box {
  background-color: #e9ece7;
  border-radius: 12px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card .image-box {
  height: 160px;
}

.price-tag {
  font-weight: 700;
  color: #1c4e66;
}

.inline-cta {
  font-weight: 600;
}

.highlight-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  background-color: #e9ece7;
  padding: 24px;
  border-radius: 18px;
}

.highlight-panel p {
  margin: 0;
  line-height: 1.6;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.testimonial {
  flex: 1 1 240px;
  background-color: #ffffff;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #e2e6e0;
}

.form-shell {
  background-color: #ffffff;
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 26px rgba(31, 42, 46, 0.08);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cfd6d1;
  font-size: 1rem;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}

.sticky-cta button {
  background-color: #f07a58;
}

.footer {
  background-color: #1f2a2e;
  color: #eef2f1;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #dfe7e3;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background-color: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(31, 42, 46, 0.2);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  z-index: 30;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.page-hero {
  background-color: #ece7e0;
  padding: 60px 6vw;
}

.about-hero {
  background-image: url("https://images.unsplash.com/photo-1507149833265-60c372daea22?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(24, 32, 34, 0.55);
}

.about-hero h1,
.about-hero p {
  position: relative;
  z-index: 1;
}

.services-hero {
  background-image: url("https://images.unsplash.com/photo-1525253086316-d0c936c814f8?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(24, 32, 34, 0.55);
}

.services-hero h1,
.services-hero p {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin: 0;
  font-size: 2.3rem;
}

.notice {
  background-color: #fdf1e8;
  border-left: 4px solid #f07a58;
  padding: 14px 16px;
  border-radius: 8px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-card {
  flex: 1 1 260px;
  background-color: #ffffff;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #e2e6e0;
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  background-color: #ffffff;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #e2e6e0;
}

.service-row .image-box {
  width: 160px;
  height: 120px;
}

.service-info {
  flex: 1 1 240px;
}

.service-info h3 {
  margin-top: 0;
}

.page-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.page-layout .content-block {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #e2e6e0;
}

.page-layout ul {
  margin: 0;
  padding-left: 20px;
}

@media (max-width: 860px) {
  .hero h1 {
    font-size: 2.1rem;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
