* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1e1e1e;
  background-color: #f8f6f3;
  line-height: 1.6;
}

a {
  color: #1b4b5a;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  background: #0f2d33;
  color: #f8f6f3;
  font-size: 0.85rem;
  padding: 0.55rem 0;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar .ad-label {
  font-weight: 600;
}

header {
  background: #f0ece7;
  padding: 1.5rem 0 1rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.brand {
  font-size: 1.4rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #0f2d33;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
}

.hero {
  padding: 2.5rem 0 3rem;
  background: #f0ece7;
}

.split {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content,
.split .image-frame {
  flex: 1 1 420px;
}

.image-frame {
  background-color: #d9d2c6;
  border-radius: 24px;
  overflow: hidden;
  min-height: 260px;
}

.image-frame img {
  height: 100%;
}

.image-frame.small {
  min-height: 170px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.05rem;
  max-width: 520px;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.button {
  background: #1b4b5a;
  color: #f8f6f3;
  padding: 0.85rem 1.6rem;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.button.alt {
  background: #f2a65a;
  color: #1e1e1e;
}

.inline-link {
  font-weight: 600;
  border-bottom: 2px solid #1b4b5a;
}

.section {
  padding: 3.2rem 0;
}

.section.alt {
  background: #ffffff;
}

.scenic-background {
  background-image: linear-gradient(rgba(15, 45, 51, 0.75), rgba(15, 45, 51, 0.75)),
    url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f8f6f3;
}

.scenic-background .inline-link {
  color: #f8f6f3;
  border-bottom-color: #f8f6f3;
}

.section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14rem;
  font-size: 0.75rem;
  color: #6f6a63;
  font-weight: 600;
}

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0.5rem 0 1rem;
}

.service-list {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 260px;
  background: #fff7ef;
  border-radius: 20px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card h3 {
  margin: 0;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f2d33;
}

.feature-blocks {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.feature {
  flex: 1 1 240px;
  padding: 1.2rem 1.4rem;
  background: #eef3f2;
  border-radius: 18px;
}

.testimonial {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 18px;
  margin-top: 1rem;
  box-shadow: 0 10px 30px rgba(15, 45, 51, 0.08);
}

.form-wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-wrap label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px solid #d6d2cc;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.note {
  font-size: 0.9rem;
  color: #5c5b58;
}

.legal-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

footer {
  background: #0f2d33;
  color: #f8f6f3;
  padding: 2.5rem 0;
}

footer a {
  color: #f8f6f3;
}

.disclaimer {
  font-size: 0.85rem;
  color: #d6d2cc;
  margin-top: 1rem;
}

.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 45, 51, 0.95);
  color: #f8f6f3;
  padding: 1rem 0;
  display: none;
  z-index: 20;
}

.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
}

.cookie-button {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-button.accept {
  background: #f2a65a;
  color: #1e1e1e;
}

.cookie-button.reject {
  background: #ffffff;
  color: #0f2d33;
}

.contact-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.list {
  margin: 0;
  padding-left: 1.2rem;
}

.list li {
  margin-bottom: 0.4rem;
}

@media (max-width: 768px) {
  .floating-cta {
    right: 14px;
    bottom: 14px;
  }

  .nav-links {
    width: 100%;
  }

  .cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
