* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2a2e;
  background-color: #f6f3ee;
  line-height: 1.6;
}

a {
  color: #1f5f6b;
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus,
textarea:focus {
  outline: 2px solid #1f5f6b;
  outline-offset: 2px;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  background-color: #f6f3ee;
  gap: 20px;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: #1f5f6b;
}

.ad-label {
  font-size: 0.85rem;
  color: #5a5f62;
  background-color: #eee7dc;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  min-height: 70vh;
  padding: 40px 6vw;
  gap: 30px;
  align-items: stretch;
  background-color: #f0ebe2;
}

.hero-visual {
  flex: 1.2;
  border-radius: 24px;
  background-color: #c9c2b5;
  overflow: hidden;
  position: relative;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0));
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero h1 {
  font-size: 2.6rem;
  margin: 0;
}

.hero p {
  margin: 0;
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  background-color: #1f5f6b;
  color: #f6f3ee;
  border: none;
  padding: 12px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
}

.btn:hover {
  background-color: #184b54;
}

.btn-outline {
  background-color: transparent;
  color: #1f5f6b;
  border: 2px solid #1f5f6b;
}

.btn-outline:hover {
  background-color: #1f5f6b;
  color: #f6f3ee;
}

.section {
  padding: 50px 6vw;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.section.split {
  flex-direction: row;
  gap: 40px;
  align-items: center;
}

.section.light {
  background-color: #faf8f4;
}

.section.dark {
  background-color: #20363c;
  color: #f6f3ee;
}

.section.scenic-bg {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.section.scenic-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 31, 35, 0.72);
}

.section.scenic-bg > * {
  position: relative;
  z-index: 1;
}

.section.dark a {
  color: #f7d56b;
}

.panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel-image {
  flex: 1;
  border-radius: 22px;
  overflow: hidden;
  background-color: #c9c2b5;
  min-height: 240px;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.card-image {
  height: 140px;
  border-radius: 14px;
  overflow: hidden;
  background-color: #d3cbc0;
}

.price-tag {
  font-weight: 600;
  color: #1f5f6b;
}

.story-line {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 3px solid #1f5f6b;
  padding-left: 16px;
}

.form-wrap {
  background-color: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
}

.form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-wrap label {
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8c1b6;
  font-size: 1rem;
}

.form-wrap button {
  align-self: flex-start;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background-color: #f7d56b;
  color: #1f2a2e;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.sticky-cta:hover {
  background-color: #e9c355;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw;
  background-color: #1b252a;
  color: #e5dfd5;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer small {
  color: #c9c2b5;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  max-width: 360px;
  z-index: 20;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.page-hero {
  display: flex;
  gap: 30px;
  align-items: stretch;
  padding: 40px 6vw;
  background-color: #f0ebe2;
}

.page-hero .panel-image {
  min-height: 220px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-content ul {
  margin: 0;
  padding-left: 18px;
}

@media (max-width: 900px) {
  .hero,
  .section.split,
  .page-hero {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
